Skip to content

Commit c965284

Browse files
Merge pull request #151 from NREL/plot_sparse_bug_fix
plot sparse analysis resolution argument
2 parents 82dff45 + de43e65 commit c965284

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pvdeg/geospatial.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1128,13 +1128,13 @@ def plot_sparse_analysis(
11281128
result: xr.Dataset,
11291129
data_var: str,
11301130
method="nearest",
1131-
res=100j,
1131+
resolution=100j,
11321132
cmap='viridis',
11331133
ax=None
11341134

11351135
) -> None:
11361136
grid_values, lat, lon = interpolate_analysis(
1137-
result=result, data_var=data_var, method=method, res=res
1137+
result=result, data_var=data_var, method=method, resolution=resolution
11381138
)
11391139

11401140
if ax is None:

0 commit comments

Comments
 (0)