MCPcopy Create free account
hub / github.com/OSGeo/gdal / PrintAlgorithmAndOptions

Method PrintAlgorithmAndOptions

swig/java/apps/GDALGrid.java:76–90  ·  view source on GitHub ↗
(String algorithmAndOptions)

Source from the content-addressed store, hash-verified

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

Callers 1

ProcessLayerMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected