-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixed NOTE: Registering native routines - Fixed example ERROR in CRAN checks - Supported contiguity constraint based on geographic distance - Exporting region map and mean timeseries into NetCDF-4 file - Added example to export NetCDF-4 file - fastCor: Fixed row/col names of the correlation matrix - fastCor: Removed zero-variance data - fastCor: Introduced optBLAS - fastCor: Code cleanup - Reformatted R source code - Replaced "multi-variate" with "multivariate" - Renamed "weightedVar" to "weightMVC" - Updated dependencies and suggested packages - Updated package DESCRIPTION - Updated and fixed the examples - Updated CRU TS dataset citation - Updated citation information - Updated README and all URLs
- Loading branch information
Showing
11 changed files
with
27 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# $Id: HiClimR.R, v2.1.1 2019/01/02 12:00:00 hsbadr EPS JHU # | ||
# $Id: HiClimR.R, v2.1.2 2019/01/04 12:00:00 hsbadr EPS JHU # | ||
#-------------------------------------------------------------------------# | ||
# This is the main function of # | ||
# HiClimR (Hierarchical Climate Regionalization) R package # | ||
|
@@ -85,6 +85,7 @@ | |
# 2.0.0 | 12/22/18 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.0 | 01/01/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.1 | 01/02/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.2 | 01/04/19 | Updated | Hamada S. Badr | [email protected] # | ||
#-------------------------------------------------------------------------# | ||
# COPYRIGHT(C) 2013-2019 Earth and Planetary Sciences (EPS), JHU. # | ||
#-------------------------------------------------------------------------# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# $Id: HiClimR2nc.R, v2.1.1 2019/01/02 12:00:00 hsbadr EPS JHU # | ||
# $Id: HiClimR2nc.R, v2.1.2 2019/01/04 12:00:00 hsbadr EPS JHU # | ||
#-------------------------------------------------------------------------# | ||
# This function is a part of HiClimR R package. # | ||
#-------------------------------------------------------------------------# | ||
|
@@ -40,6 +40,7 @@ | |
# 2.0.0 | 12/22/18 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.0 | 01/01/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.1 | 01/02/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.2 | 01/04/19 | Updated | Hamada S. Badr | [email protected] # | ||
#-------------------------------------------------------------------------# | ||
# COPYRIGHT(C) 2013-2019 Earth and Planetary Sciences (EPS), JHU. # | ||
#-------------------------------------------------------------------------# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# $Id: coarseR.R, v2.1.1 2019/01/02 12:00:00 hsbadr EPS JHU # | ||
# $Id: coarseR.R, v2.1.2 2019/01/04 12:00:00 hsbadr EPS JHU # | ||
#-------------------------------------------------------------------------# | ||
# This function is a part of HiClimR R package. # | ||
#-------------------------------------------------------------------------# | ||
|
@@ -40,6 +40,7 @@ | |
# 2.0.0 | 12/22/18 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.0 | 01/01/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.1 | 01/02/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.2 | 01/04/19 | Updated | Hamada S. Badr | [email protected] # | ||
#-------------------------------------------------------------------------# | ||
# COPYRIGHT(C) 2013-2019 Earth and Planetary Sciences (EPS), JHU. # | ||
#-------------------------------------------------------------------------# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# $Id: fastCor.R, v2.1.1 2019/01/02 12:00:00 hsbadr EPS JHU # | ||
# $Id: fastCor.R, v2.1.2 2019/01/04 12:00:00 hsbadr EPS JHU # | ||
#-------------------------------------------------------------------------# | ||
# This function is a part of HiClimR R package. # | ||
#-------------------------------------------------------------------------# | ||
|
@@ -40,6 +40,7 @@ | |
# 2.0.0 | 12/22/18 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.0 | 01/01/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.1 | 01/02/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.2 | 01/04/19 | Updated | Hamada S. Badr | [email protected] # | ||
#-------------------------------------------------------------------------# | ||
# COPYRIGHT(C) 2013-2019 Earth and Planetary Sciences (EPS), JHU. # | ||
#-------------------------------------------------------------------------# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# $Id: geogMask.R, v2.1.1 2019/01/02 12:00:00 hsbadr EPS JHU # | ||
# $Id: geogMask.R, v2.1.2 2019/01/04 12:00:00 hsbadr EPS JHU # | ||
#-------------------------------------------------------------------------# | ||
# This function is a part of HiClimR R package. # | ||
#-------------------------------------------------------------------------# | ||
|
@@ -40,6 +40,7 @@ | |
# 2.0.0 | 12/22/18 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.0 | 01/01/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.1 | 01/02/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.2 | 01/04/19 | Updated | Hamada S. Badr | [email protected] # | ||
#-------------------------------------------------------------------------# | ||
# COPYRIGHT(C) 2013-2019 Earth and Planetary Sciences (EPS), JHU. # | ||
#-------------------------------------------------------------------------# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# $Id: grid2D.R, v2.1.1 2019/01/02 12:00:00 hsbadr EPS JHU # | ||
# $Id: grid2D.R, v2.1.2 2019/01/04 12:00:00 hsbadr EPS JHU # | ||
#-------------------------------------------------------------------------# | ||
# This function is a part of HiClimR R package. # | ||
#-------------------------------------------------------------------------# | ||
|
@@ -40,6 +40,7 @@ | |
# 2.0.0 | 12/22/18 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.0 | 01/01/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.1 | 01/02/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.2 | 01/04/19 | Updated | Hamada S. Badr | [email protected] # | ||
#-------------------------------------------------------------------------# | ||
# COPYRIGHT(C) 2013-2019 Earth and Planetary Sciences (EPS), JHU. # | ||
#-------------------------------------------------------------------------# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# $Id: minSigCor.R, v2.1.1 2019/01/02 12:00:00 hsbadr EPS JHU # | ||
# $Id: minSigCor.R, v2.1.2 2019/01/04 12:00:00 hsbadr EPS JHU # | ||
#-------------------------------------------------------------------------# | ||
# This function is a part of HiClimR R package. # | ||
#-------------------------------------------------------------------------# | ||
|
@@ -40,6 +40,7 @@ | |
# 2.0.0 | 12/22/18 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.0 | 01/01/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.1 | 01/02/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.2 | 01/04/19 | Updated | Hamada S. Badr | [email protected] # | ||
#-------------------------------------------------------------------------# | ||
# COPYRIGHT(C) 2013-2019 Earth and Planetary Sciences (EPS), JHU. # | ||
#-------------------------------------------------------------------------# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# $Id: validClimR.R, v2.1.1 2019/01/02 12:00:00 hsbadr EPS JHU # | ||
# $Id: validClimR.R, v2.1.2 2019/01/04 12:00:00 hsbadr EPS JHU # | ||
#-------------------------------------------------------------------------# | ||
# This function is a part of HiClimR R package. # | ||
#-------------------------------------------------------------------------# | ||
|
@@ -40,6 +40,7 @@ | |
# 2.0.0 | 12/22/18 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.0 | 01/01/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.1 | 01/02/19 | Updated | Hamada S. Badr | [email protected] # | ||
# 2.1.2 | 01/04/19 | Updated | Hamada S. Badr | [email protected] # | ||
#-------------------------------------------------------------------------# | ||
# COPYRIGHT(C) 2013-2019 Earth and Planetary Sciences (EPS), JHU. # | ||
#-------------------------------------------------------------------------# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ HiClimR | |
* [Citation](#citation) | ||
* [History](#history) | ||
* [Changes](#changes) | ||
* [2019-01-04: version 2.1.2](#2019-01-04-version-212) | ||
* [2019-01-02: version 2.1.1](#2019-01-02-version-211) | ||
* [2019-01-01: version 2.1.0](#2019-01-01-version-210) | ||
* [2018-12-22: version 2.0.0](#2018-12-22-version-200) | ||
|
@@ -223,11 +224,18 @@ https://cran.r-project.org/package=HiClimR. | |
| **2.0.0** | 12/22/18 | **Updated** | Hamada S. Badr | [email protected] | | ||
| **2.1.0** | 01/01/19 | **Updated** | Hamada S. Badr | [email protected] | | ||
| **2.1.1** | 01/02/19 | **Updated** | Hamada S. Badr | [email protected] | | ||
| **2.1.2** | 01/04/19 | **Updated** | Hamada S. Badr | [email protected] | | ||
|
||
[⇪](#hiclimr) | ||
|
||
## Changes | ||
|
||
#### 2019-01-04: version 2.1.2 | ||
|
||
* Fixed example ERROR in CRAN checks | ||
* Added example to export NetCDF-4 file | ||
* Updated dependencies and suggested packages | ||
|
||
#### 2019-01-02: version 2.1.1 | ||
|
||
* `fastCor`: Fixed row/col names of the correlation matrix | ||
|
@@ -236,7 +244,7 @@ https://cran.r-project.org/package=HiClimR. | |
|
||
#### 2019-01-01: version 2.1.0 | ||
|
||
* Added contiguity constraint based on geographic distance | ||
* Supported contiguity constraint based on geographic distance | ||
* Exporting region map and mean timeseries into NetCDF-4 file | ||
* Replaced `multi-variate` with `multivariate` | ||
* Renamed `weightedVar` to `weightMVC` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,6 +115,7 @@ | |
! 2.0.0 | 12/22/18 | Updated | Hamada S. Badr | [email protected] ! | ||
! 2.1.0 | 01/01/19 | Updated | Hamada S. Badr | [email protected] ! | ||
! 2.1.1 | 01/02/19 | Updated | Hamada S. Badr | [email protected] ! | ||
! 2.1.2 | 01/04/19 | Updated | Hamada S. Badr | [email protected] ! | ||
! ! | ||
!+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++! | ||
! ! | ||
|