8faeccc79e77936fa63e9ef5753b3c450230e0a0,pykrige/ok.py,OrdinaryKriging,__init__,#OrdinaryKriging#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#,199
Before Change
elif coordinates_type == "geographic":
// Leave everything as is in geographic case.
// May be open to discussion?
print("Warning: Anisotropy is not compatible with geographic coordinates. "
"Ignoring user set anisotropy.")
self.XCENTER= 0.0
self.YCENTER= 0.0
self.anisotropy_scaling = 1.0
After Change
elif coordinates_type == "geographic":
// Leave everything as is in geographic case.
// May be open to discussion?
if anisotropy_scaling != 1.0:
warnings.warn("Anisotropy is not compatible with geographic "
"coordinates. Ignoring user set anisotropy.",
UserWarning)
self.XCENTER= 0.0
self.YCENTER= 0.0
self.anisotropy_scaling = 1.0
self.anisotropy_angle = 0.0
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: bsmurphy/PyKrige
Commit Name: 8faeccc79e77936fa63e9ef5753b3c450230e0a0
Time: 2017-03-03
Author: malte.ziebarth@fmvkb.de
File Name: pykrige/ok.py
Class Name: OrdinaryKriging
Method Name: __init__
Project Name: AllenCellModeling/pytorch_fnet
Commit Name: 4428ba7b4c5a20c584c03ce8adaef735bf00951b
Time: 2017-07-28
Author: chek.o@outlook.com
File Name: util/data/dataset.py
Class Name: DataSet
Method Name: _build_new_sets
Project Name: tensorflow/cleverhans
Commit Name: a932d6e460b9eb254ae41e0d3baeb1d1214d216f
Time: 2017-01-18
Author: goodfellow.ian@gmail.com
File Name: cleverhans/utils_tf.py
Class Name:
Method Name: model_train