You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@climate.apache.org by "Ibrahim Jarif (JIRA)" <ji...@apache.org> on 2016/04/29 07:28:12 UTC

[jira] [Created] (CLIMATE-785) RCMED.py: Optimize code

Ibrahim Jarif created CLIMATE-785:
-------------------------------------

             Summary: RCMED.py: Optimize code
                 Key: CLIMATE-785
                 URL: https://issues.apache.org/jira/browse/CLIMATE-785
             Project: Apache Open Climate Workbench
          Issue Type: Improvement
          Components: data sources
            Reporter: Ibrahim Jarif
            Assignee: Maziyar Boustani
            Priority: Trivial


In ocw/local/rcmed.py file
{code}
if time_step.lower() == 'monthly':
        if time.day != 1:
            start_time_string = time.strftime('%Y%m%d')
            start_time_string = start_time_string[:6] + '01'
            time = datetime.strptime(start_time_string, '%Y%m%d')
            ##TODO: Change the 3 lines above with this line:
            ##time = datetime(time.year, time.month, 1)
    elif time_step.lower() == 'daily':
        if time.hour != 0 or time.minute != 0 or time.second != 0:
            start_time_string = time.strftime('%Y%m%d%H%M%S')
            start_time_string = start_time_string[:8] + '000000'	
            time = datetime.strptime(start_time_string, '%Y%m%d%H%M%S')
            ##TODO: Change the 3 lines above with this line:
            ##time = datetime(time.year, time.month, time.day, 00, 00, 00)
{code}

The commented code can be used in place of the actual code.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)