* The parsed argument list.
*/
public static void preConstructorInit(Map<String, Collection<String>> args) {
try {
// Main.proj = new Epsg4326();
Main.proj = new Mercator();
} catch (final Exception e) {
e.printStackTrace();
JOptionPane
.showMessageDialog(
null,
tr("The projection could not be read from preferences. Using Mercartor"));
Main.proj = new Mercator();
}
try {
try {
String laf = Main.pref.get("laf");