| 74 | * Print algorithm and options. |
| 75 | */ |
| 76 | public static void PrintAlgorithmAndOptions(String algorithmAndOptions) { |
| 77 | |
| 78 | if (algorithmAndOptions == null) { |
| 79 | |
| 80 | System.out |
| 81 | .println("Algorithm name: not selected, using default Inverse Distance"); |
| 82 | } else { |
| 83 | |
| 84 | int firstColon = algorithmAndOptions.indexOf(':'); |
| 85 | System.out.println("Algorithm name: " |
| 86 | + algorithmAndOptions.substring(0, firstColon)); |
| 87 | System.out.println("Options are \"" |
| 88 | + algorithmAndOptions.substring(firstColon + 1) + "\""); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | /* |
| 93 | * ProcessGeometry |