Repository: climate Updated Branches: refs/heads/master c9e602f53 -> 2c81aa84b
to get esgf netCDF file name should drop distrib=false Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/9dd9bbb8 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/9dd9bbb8 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/9dd9bbb8 Branch: refs/heads/master Commit: 9dd9bbb8bfced3f1a3244a012fec56ae573c2856 Parents: 6ab02d8 Author: Maziyar Boustani <[email protected]> Authored: Wed May 27 10:57:32 2015 -0700 Committer: Maziyar Boustani <[email protected]> Committed: Wed May 27 10:57:32 2015 -0700 ---------------------------------------------------------------------- ocw/data_source/esgf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/9dd9bbb8/ocw/data_source/esgf.py ---------------------------------------------------------------------- diff --git a/ocw/data_source/esgf.py b/ocw/data_source/esgf.py index 3493fc0..b73e2d8 100644 --- a/ocw/data_source/esgf.py +++ b/ocw/data_source/esgf.py @@ -106,7 +106,7 @@ def load_dataset(dataset_id, def _get_file_download_data(dataset_id, variable, url=DEFAULT_ESGF_SEARCH): '''''' - url += '?distrib=false&type=File&dataset_id={}&variable={}' + url += '?type=File&dataset_id={}&variable={}' url = url.format(dataset_id, variable) r = requests.get(url)
