Skip to content

Commit

Permalink
Merge pull request #366 from NREL/365_logic_clipping_warnings
Browse files Browse the repository at this point in the history
remove warnings from logic clip filter
  • Loading branch information
mdeceglie authored Apr 28, 2023
2 parents 07d6adf + 7eec866 commit c80c79a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rdtools/filtering.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,11 +515,11 @@ def logic_clip_filter(power_ac,
detection techniques in AC power time series", 2021 IEEE 48th Photovoltaic
Specialists Conference (PVSC). DOI: 10.1109/PVSC43889.2021.9518733.
'''
# Throw a warning that this is still an experimental filter
warnings.warn("The logic-based filter is an experimental clipping filter "
"that is still under development. The API, results, and "
"default behaviors may change in future releases (including "
"MINOR and PATCH). Use at your own risk!")
# Throw a warning that this is still an experimental filter. (Removed for 3.0.0)
#warnings.warn("The logic-based filter is an experimental clipping filter "
# "that is still under development. The API, results, and "
# "default behaviors may change in future releases (including "
# "MINOR and PATCH). Use at your own risk!")
# Format the time series
power_ac, index_name = _format_clipping_time_series(power_ac,
mounting_type)
Expand Down

0 comments on commit c80c79a

Please sign in to comment.