From commits-return-2229-apmail-climate-commits-archive=climate.apache.org@climate.apache.org Fri Mar 4 06:56:46 2016 Return-Path: X-Original-To: apmail-climate-commits-archive@minotaur.apache.org Delivered-To: apmail-climate-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7504F181DB for ; Fri, 4 Mar 2016 06:56:45 +0000 (UTC) Received: (qmail 14345 invoked by uid 500); 4 Mar 2016 06:56:45 -0000 Delivered-To: apmail-climate-commits-archive@climate.apache.org Received: (qmail 14306 invoked by uid 500); 4 Mar 2016 06:56:45 -0000 Mailing-List: contact commits-help@climate.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@climate.apache.org Delivered-To: mailing list commits@climate.apache.org Received: (qmail 14297 invoked by uid 99); 4 Mar 2016 06:56:45 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Mar 2016 06:56:45 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 477DFE0044; Fri, 4 Mar 2016 06:56:45 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: huikyole@apache.org To: commits@climate.apache.org Date: Fri, 04 Mar 2016 06:56:45 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/3] climate git commit: CLIMATE-771 - Critical bugs in LAT_NAMES and LON_NAMES in local.py Repository: climate Updated Branches: refs/heads/master 212441de3 -> fd6debb27 CLIMATE-771 - Critical bugs in LAT_NAMES and LON_NAMES in local.py - 'x' in LAT_NAMES and 'y' in LON_NAMES in ocw/data_source/local.py have been switched with each other. Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/0f3e4f2f Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/0f3e4f2f Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/0f3e4f2f Branch: refs/heads/master Commit: 0f3e4f2fd80170585079f9755b9224cf755800e7 Parents: d9e3c7e Author: huikyole Authored: Thu Mar 3 22:41:21 2016 -0800 Committer: huikyole Committed: Thu Mar 3 22:41:21 2016 -0800 ---------------------------------------------------------------------- ocw/data_source/local.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/0f3e4f2f/ocw/data_source/local.py ---------------------------------------------------------------------- diff --git a/ocw/data_source/local.py b/ocw/data_source/local.py index 34738ac..6445ae9 100644 --- a/ocw/data_source/local.py +++ b/ocw/data_source/local.py @@ -31,8 +31,8 @@ import h5py import numpy import numpy.ma as ma -LAT_NAMES = ['x', 'rlat', 'rlats', 'lat', 'lats', 'latitude', 'latitudes'] -LON_NAMES = ['y', 'rlon', 'rlons', 'lon', 'lons', 'longitude', 'longitudes'] +LAT_NAMES = ['y', 'rlat', 'rlats', 'lat', 'lats', 'latitude', 'latitudes'] +LON_NAMES = ['x', 'rlon', 'rlons', 'lon', 'lons', 'longitude', 'longitudes'] TIME_NAMES = ['time', 'times', 'date', 'dates', 'julian']