We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fbf0a9 commit 1a6b801Copy full SHA for 1a6b801
1 file changed
src/main/java/mil/nga/crs/wkt/CRSPretty.java
@@ -202,6 +202,16 @@ public static void parseAndPrint(String wkt) throws IOException {
202
System.out.println(crsPretty);
203
}
204
205
+ String crsSingleLine = CRSWriter.write(crs);
206
+ if (!wkt.equals(crsSingleLine)) {
207
+ System.out.println();
208
+ System.out.println("---------------------------------");
209
+ System.out.println("CRS Well-Known Text (Single Line)");
210
211
212
+ System.out.println(crsSingleLine);
213
+ }
214
+
215
System.out.println();
216
System.out.println("-----------");
217
System.out.println("PROJ Params");
0 commit comments