Skip to content
Snippets Groups Projects
Commit 8c966c5f authored by Junpei Xu's avatar Junpei Xu
Browse files

add comments: interpolation method class descriptions

parent 87c58134
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,11 @@ package de.mpg.mpimet.yacgui.xml.interpolation;
import de.mpg.mpimet.yacgui.xml.Dom;
import de.mpg.mpimet.yacgui.xml.interpolation.NNearestNeighborInterpolation.Weighted;
/**
* Definite interpolation method average
*
* @author Maxim Yastremsky
*/
public class AverageInterpolation extends Interpolation {
private boolean partialCoverage;
......
......@@ -2,6 +2,11 @@ package de.mpg.mpimet.yacgui.xml.interpolation;
import de.mpg.mpimet.yacgui.xml.Dom;
/**
* Definite interpolation method conservative
*
* @author Maxim Yastremsky
*/
public class ConservativeInterpolation extends Interpolation {
public enum Normalisation {
......
......@@ -2,6 +2,11 @@ package de.mpg.mpimet.yacgui.xml.interpolation;
import de.mpg.mpimet.yacgui.xml.Dom;
/**
* Definite interpolation method fixed value
*
* @author Maxim Yastremsky
*/
public class FixedValueInterpolation extends Interpolation {
private double userValue;
......
......@@ -2,6 +2,11 @@ package de.mpg.mpimet.yacgui.xml.interpolation;
import de.mpg.mpimet.yacgui.xml.Dom;
/**
* Definite interpolation method n nearest neighbor
*
* @author Maxim Yastremsky
*/
public class NNearestNeighborInterpolation extends Interpolation {
public enum Weighted {
......
......@@ -2,6 +2,11 @@ package de.mpg.mpimet.yacgui.xml.interpolation;
import de.mpg.mpimet.yacgui.xml.Dom;
/**
* Definite interpolation method patch recovery
*
* @author Maxim Yastremsky
*/
public class PatchRecoveryInterpolation extends Interpolation {
private boolean allowExtrapolation;
......
......@@ -4,7 +4,7 @@ import de.mpg.mpimet.yacgui.xml.Dom;
/**
* Definite the class of SmoothedPatchRecoveryInterpolation
* Definite interpolation method smoothed patch recovery
*
* @author Junpei Xu
* @update Junpei Xu 30/06/2016
......
......@@ -4,7 +4,7 @@ import de.mpg.mpimet.yacgui.xml.Dom;
/**
* source to target mapping in interpolation
* Define interpolation method source to target mapping
*
* @author Junpei Xu junpei.xu@mpimet.mpg.de
*/
......
......@@ -2,6 +2,11 @@ package de.mpg.mpimet.yacgui.xml.interpolation;
import de.mpg.mpimet.yacgui.xml.Dom;
/**
* Definite interpolation method user file
*
* @author Maxim Yastremsky
*/
public class UserFileInterpolation extends Interpolation {
public enum YacLocation {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment