Will Holmgren
Will Holmgren
I've gone back and forth on this and ultimately I guess it's ok. It seems unnecessarily hostile to users that actually went to the effort to read source code, and...
I ran into a similar issue with the publishing using github actions guide https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/#publishing-the-distribution-to-pypi-and-testpypi
@abhisheksparikh `sphinx` compiles the `.rst` documentation into html. I'm not aware of a vscode plugin that can do that on the fly. `pip install pvanalytics[doc]` should give you what you...
Ill-considered idea: create a new package under the pvlib organization (pvlib/pvplotting?) that embraces the junk drawer mentality and has a low barrier to entry.
Here's my half baked solution ```python def fix_st_to_dst(df): # assume duplicated only occurs at ST to DST transition duplicated = df.index.duplicated() num_duplicates = duplicated.sum() first_duplicate_index = np.argmax(duplicated) first_shift_point = first_duplicate_index...
> I wonder if these data have already been modified in an attempt to fix time stamp issues, since a similar flaw doesn't appear on 1-Nov-2020. I assumed it was...
I did this a few years ago and found the thresholds were difficult to tweak. I had more success converting POA to GHI using `pvlib.irradiance.gti_dirint` and then applying `pvlib.clearsky.detect_clearsky`.