You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@climate.apache.org by jo...@apache.org on 2013/08/27 18:10:37 UTC

svn commit: r1517862 - /incubator/climate/trunk/rcmet/src/main/python/rcmes/toolkit/process.py

Author: joyce
Date: Tue Aug 27 16:10:37 2013
New Revision: 1517862

URL: http://svn.apache.org/r1517862
Log:
CLIMATE-276 - Add deprecation info to create_mask_using_threshold

Modified:
    incubator/climate/trunk/rcmet/src/main/python/rcmes/toolkit/process.py

Modified: incubator/climate/trunk/rcmet/src/main/python/rcmes/toolkit/process.py
URL: http://svn.apache.org/viewvc/incubator/climate/trunk/rcmet/src/main/python/rcmes/toolkit/process.py?rev=1517862&r1=1517861&r2=1517862&view=diff
==============================================================================
--- incubator/climate/trunk/rcmet/src/main/python/rcmes/toolkit/process.py (original)
+++ incubator/climate/trunk/rcmet/src/main/python/rcmes/toolkit/process.py Tue Aug 27 16:10:37 2013
@@ -168,7 +168,8 @@ def do_regrid(q, lat, lon, lat2, lon2, o
 
 def create_mask_using_threshold(masked_array, threshold=0.5):
     """ 
-    This function has been moved to the ocw/dataset_processor module
+    .. deprecated:: 0.3-incubating
+       Use :func:`ocw.dataset_processor._rcmes_create_mask_using_threshold` instead.
     """
     from ocw import dataset_processor
     mask = dataset_processor._rcmes_create_mask_using_threshold(masked_array, threshold)