terraintool-1.12a.orig/ 0000755 0001750 0001750 00000000000 11731620462 014515 5 ustar wookey wookey terraintool-1.12a.orig/src/ 0000755 0001750 0001750 00000000000 11730667474 015321 5 ustar wookey wookey terraintool-1.12a.orig/src/Tester.java 0000644 0001750 0001750 00000003007 11730070706 017414 0 ustar wookey wookey /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Mike
*/
import mccombe.mapping.*;
public class Tester {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
double lat = 58.0 ;
double lon = 3.0 ;
Position pos = new Position(new LatLong(lat,lon), 0.0, Ellipsoid.GRS80, Datum.WGS_1984);
// OSGB zz = new OSGB(pos,Ellipsoid.AIRY, Datum.OSGB_1936);
// double c1 = zz.gridConvergence();
// double c2 = zz.gc();
// System.out.printf("Calc Grid Convergence = %9.6f Measured = %9.6f%n", c1,c2);
// ENPair pr = z.toEN();
// System.out.printf("Example 1 E %9.1f N %9.1f%n",pr.east(), pr.north());
lat = -34.444066 ;
lon = 172.739194 ;
LatLong ll = new LatLong(lat, lon);
System.out.printf("Starting at = %s%n", ll.toString());
pos = new Position(ll, 0.0, Ellipsoid.INTERNATIONAL, Datum.NZGD_1949);
NZMG z = new NZMG(pos,Ellipsoid.INTERNATIONAL, Datum.NZGD_1949);
System.out.printf("Grid convergence = %9.6f%n", Math.toDegrees(z.gridConvergence()));
ENPair pr = z.toEN();
System.out.printf("Example 2 E %9.1f N %9.1f%n",pr.east(), pr.north());
NZMG z2 = new NZMG(pr, Ellipsoid.INTERNATIONAL, Datum.NZGD_1949);
LatLong latlon = z2.getPosition().toLatLong(Ellipsoid.INTERNATIONAL, Datum.NZGD_1949);
System.out.printf("Lat Long = %s%n", latlon.toString());
}
}
terraintool-1.12a.orig/src/mccombe/ 0000755 0001750 0001750 00000000000 11730667474 016726 5 ustar wookey wookey terraintool-1.12a.orig/src/mccombe/util/ 0000755 0001750 0001750 00000000000 11730667474 017703 5 ustar wookey wookey terraintool-1.12a.orig/src/mccombe/util/ErrorMessage.java 0000644 0001750 0001750 00000001445 11730070706 023132 0 ustar wookey wookey /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package mccombe.util;
/**
*
* @author Mike
*/
/**
*
* @author Mike
*/
public class ErrorMessage {
/** Creates a new instance of ErrorMessage */
public ErrorMessage() {
this("",Severity.ERROR);
}
public ErrorMessage(String error){
this(error,Severity.ERROR);
}
public ErrorMessage(String errorText, Severity level){
seriousness = level ;
text = errorText;
}
public String errorText() { return text ; };
public Severity severityLevel() { return seriousness ; };
public String toString() { return severityLevel() + " - " + errorText();};
private String text = "" ;
private Severity seriousness = Severity.ERROR ;
}
terraintool-1.12a.orig/src/mccombe/util/Severity.java 0000644 0001750 0001750 00000000562 11730070706 022345 0 ustar wookey wookey /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package mccombe.util;
/**
*
* @author Mike
*/
public enum Severity {
SUCCESS(0),
WARNING(1),
ERROR(2),
SERIOUS(3),
FATAL(4) ;
Severity(int value){
val = value ;
}
public int value() { return val ; };
private int val ;
}
terraintool-1.12a.orig/src/mccombe/terrain/ 0000755 0001750 0001750 00000000000 11730667474 020372 5 ustar wookey wookey terraintool-1.12a.orig/src/mccombe/terrain/LocationDialog.java 0000644 0001750 0001750 00000042501 11730070706 024111 0 ustar wookey wookey /*
* LocationDialog.java
*
* Created on 19 January 2008, 16:24
*/
package mccombe.terrain;
import java.awt.Component;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.InputVerifier;
import javax.swing.JComponent;
import javax.swing.JList;
import javax.swing.JTextField;
import mccombe.mapping.*;
import javax.swing.JLabel;
import javax.swing.ListCellRenderer;
import javax.swing.SwingConstants;
/**
*
* @author Mike
*/
public class LocationDialog extends javax.swing.JDialog {
private PropertySet properties;
/** Creates new form LocationDialog
* @param parent
* @param modal
* @param toolbox
* @param propertyset
*/
public LocationDialog(java.awt.Frame parent, boolean modal, MappingToolkit toolbox, PropertySet propertyset) {
super(parent, modal);
initComponents();
toolkit = toolbox;
properties = propertyset;
gridRefText.setInputVerifier(new GridRefVerifier());
ewText.setInputVerifier(new NumericVerifier());
nsText.setInputVerifier(new NumericVerifier());
spacingText.setInputVerifier(new NumericVerifier());
for (int i = 0; i < positions.length; i++) {
java.net.URL imageURL = TerrainFrame.class.getResource(String.format("images/pos%d.png", i + 1));
if (imageURL != null) {
PositionItem pos = new PositionItem(positions[i], new ImageIcon(imageURL));
posList.addItem(pos);
}
}
posList.setRenderer(new PositionRenderer());
ourParent = parent ;
}
int getReturnStatus() {
return returnStatus;
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// //GEN-BEGIN:initComponents
private void initComponents() {
gridRefText = new javax.swing.JTextField();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
okButton = new javax.swing.JButton();
cancelButton = new javax.swing.JButton();
exampleText = new javax.swing.JLabel();
jLabel5 = new javax.swing.JLabel();
coordNameText = new javax.swing.JTextField();
ewText = new javax.swing.JTextField();
nsText = new javax.swing.JTextField();
spacingText = new javax.swing.JTextField();
posList = new javax.swing.JComboBox();
jLabel6 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
gridRefText.setHorizontalAlignment(javax.swing.JTextField.TRAILING);
gridRefText.setText("ST430969");
jLabel1.setText("Grid Reference");
jLabel2.setText("E-W Range (m)");
jLabel3.setText("N-S Range (m)");
jLabel4.setText("Spacing (m)");
okButton.setText("OK");
okButton.setPreferredSize(new java.awt.Dimension(65, 23));
okButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
okButtonActionPerformed(evt);
}
});
cancelButton.setText("Cancel");
cancelButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cancelButtonActionPerformed(evt);
}
});
exampleText.setFont(new java.awt.Font("Arial", 0, 10));
exampleText.setHorizontalAlignment(javax.swing.SwingConstants.TRAILING);
jLabel5.setText("Selected Coordinate System");
coordNameText.setEditable(false);
coordNameText.setHorizontalAlignment(javax.swing.JTextField.TRAILING);
ewText.setHorizontalAlignment(javax.swing.JTextField.TRAILING);
nsText.setHorizontalAlignment(javax.swing.JTextField.TRAILING);
spacingText.setHorizontalAlignment(javax.swing.JTextField.TRAILING);
posList.setMaximumSize(new java.awt.Dimension(80, 40));
jLabel6.setText("Grid Ref is at");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel6)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 310, Short.MAX_VALUE)
.addComponent(posList, javax.swing.GroupLayout.PREFERRED_SIZE, 102, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 123, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel5, javax.swing.GroupLayout.PREFERRED_SIZE, 187, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 49, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(gridRefText, javax.swing.GroupLayout.DEFAULT_SIZE, 238, Short.MAX_VALUE)
.addComponent(coordNameText, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 238, Short.MAX_VALUE)))
.addGroup(layout.createSequentialGroup()
.addComponent(cancelButton)
.addGap(18, 18, 18)
.addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel4)
.addComponent(jLabel3)
.addComponent(jLabel2))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 270, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(spacingText)
.addComponent(ewText, javax.swing.GroupLayout.DEFAULT_SIZE, 131, Short.MAX_VALUE)
.addComponent(nsText)))
.addComponent(exampleText, javax.swing.GroupLayout.PREFERRED_SIZE, 134, javax.swing.GroupLayout.PREFERRED_SIZE))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(coordNameText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel5))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(gridRefText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(1, 1, 1)
.addComponent(exampleText, javax.swing.GroupLayout.PREFERRED_SIZE, 13, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(ewText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel2))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(nsText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel3))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(spacingText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel4))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(posList, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel6))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 50, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(cancelButton))
.addContainerGap())
);
pack();
}// //GEN-END:initComponents
private void cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cancelButtonActionPerformed
doClose(RET_CANCEL);
}//GEN-LAST:event_cancelButtonActionPerformed
private void okButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okButtonActionPerformed
GridRefVerifier checker = new GridRefVerifier();
if (checker.verify(gridRefText)) {
doClose(RET_OK);
}
else {
javax.swing.JOptionPane.showMessageDialog(ourParent,new String[] {"Incorrect format for grid reference","Please correct or cancel"}, "Warning", javax.swing.JOptionPane.WARNING_MESSAGE);
}
}//GEN-LAST:event_okButtonActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
LocationDialog dialog = new LocationDialog(new javax.swing.JFrame(), true, new MappingToolkit(), new PropertySet("terrain.properties", new DefaultProperties()));
dialog.addWindowListener(new java.awt.event.WindowAdapter() {
@Override
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}
});
dialog.setVisible(true);
}
});
}
public String getGridRef() {
return gridRefText.getText();
}
public String getEW() {
return ewText.getText();
}
public void setEW(String t) {
ewText.setText(t);
}
public String getNS() {
return nsText.getText();
}
public void setNS(String t) {
nsText.setText(t);
}
public String getSpacing() {
return spacingText.getText();
}
public void setSpacing(String t) {
spacingText.setText(t);
}
public void setGridRef(String sampleCoordinate) {
gridRefText.setText(sampleCoordinate);
}
public void setExample(String sampleCoordinate) {
exampleText.setText(sampleCoordinate);
}
public void setcoordName(String coordname) {
coordNameText.setText(coordname);
}
public class GridRefVerifier extends InputVerifier {
@Override
public boolean verify(JComponent input) {
JTextField field = (JTextField) input;
String val = field.getText().trim();
try {
String typename = properties.get(TerrainProperties.COORD);
String ename = properties.get(TerrainProperties.ELLIPSOID);
String dname = properties.get(TerrainProperties.DATUM);
Ellipsoid ellipse = toolkit.getEllipsoid(ename);
Datum datum = toolkit.getDatum(dname);
CoordinateSystem c = toolkit.makeCoordinateSystem(typename, val, ellipse, datum);
} catch (Exception ex) {
return false;
}
return true;
}
}
private class NumericVerifier extends InputVerifier {
@Override
public boolean verify(JComponent input) {
JTextField field = (JTextField) input;
String val = field.getText().trim();
java.text.NumberFormat nf = java.text.NumberFormat.getInstance();
java.text.ParsePosition pos = new java.text.ParsePosition(0);
int n = val.length();
double x = nf.parse(val, pos).doubleValue();
if (pos.getIndex() != n) {
return false;
}
field.setText(String.format(formatString, x));
return true;
}
}
private void doClose(int retStatus) {
returnStatus = retStatus;
setVisible(false);
dispose();
}
public int getNSAlignment() {
int i = posList.getSelectedIndex();
return verts[i];
}
public int getEWAlignment() {
int i = posList.getSelectedIndex();
return horzs[i];
}
/** A return status code - returned if Cancel button has been pressed */
public static final int RET_CANCEL = 0;
/** A return status code - returned if OK button has been pressed */
public static final int RET_OK = 1;
private class PositionRenderer extends JLabel implements ListCellRenderer {
public PositionRenderer() {
setOpaque(true);
setHorizontalAlignment(LEADING);
setVerticalAlignment(CENTER);
}
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
PositionItem p = (PositionItem) value;
if (isSelected) {
setBackground(list.getSelectionBackground());
setForeground(list.getSelectionForeground());
} else {
setBackground(list.getBackground());
setForeground(list.getForeground());
}
setIcon(p.getIcon());
setText(p.getText());
setFont(list.getFont());
return this;
}
}
public int getAlignment() {
return posList.getSelectedIndex();
}
public void setAlignment(int i) {
posList.setSelectedIndex(i);
}
private class PositionItem {
public PositionItem(String text, Icon pic) {
label = text;
image = pic;
}
public Icon getIcon() {
return image;
}
public String getText() {
return label;
}
private Icon image;
private String label;
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton cancelButton;
private javax.swing.JTextField coordNameText;
private javax.swing.JTextField ewText;
private javax.swing.JLabel exampleText;
private javax.swing.JTextField gridRefText;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JLabel jLabel5;
private javax.swing.JLabel jLabel6;
private javax.swing.JTextField nsText;
private javax.swing.JButton okButton;
private javax.swing.JComboBox posList;
private javax.swing.JTextField spacingText;
// End of variables declaration//GEN-END:variables
private int returnStatus = RET_CANCEL;
private static final String formatString = "%12.2f";
private MappingToolkit toolkit;
private String[] positions = {"SW", "S", "SE", "W", "Centre", "E", "NW", "N", "NE"};
private static final int[] verts = {SwingConstants.BOTTOM, SwingConstants.BOTTOM, SwingConstants.BOTTOM,
SwingConstants.CENTER, SwingConstants.CENTER, SwingConstants.CENTER,
SwingConstants.TOP, SwingConstants.TOP, SwingConstants.TOP
};
private static final int[] horzs = {SwingConstants.LEFT, SwingConstants.CENTER, SwingConstants.RIGHT,
SwingConstants.LEFT, SwingConstants.CENTER, SwingConstants.RIGHT,
SwingConstants.LEFT, SwingConstants.CENTER, SwingConstants.RIGHT
};
private java.awt.Frame ourParent ;
}
terraintool-1.12a.orig/src/mccombe/terrain/MosaicPanel.form 0000644 0001750 0001750 00000007103 11730070706 023435 0 ustar wookey wookey
terraintool-1.12a.orig/src/mccombe/terrain/UnixPathnames.java 0000644 0001750 0001750 00000002011 11730137250 023773 0 ustar wookey wookey /*
* Provide sensible pathnames for data files and properties for use with Unix platforms
*/
package mccombe.terrain;
/**
*
* @author Mike McCombe
*/
public class UnixPathnames implements Pathnames{
@Override
public String propertiesPath() {
if(confighome!=null){
return confighome + sep + "terraintool" + sep;
}
else {
return home + sep + ".config" + sep + "terraintool" + sep;
}
}
@Override
public String dataPath() {
if(datahome!=null){
return datahome + sep + "terraintool" + sep;
}
else {
return home + sep + ".local" + sep + "share" + sep + "terraintool" + sep;
}
}
private static String confighome = System.getenv("$XDG_CONFIG_HOME");
private static String datahome = System.getenv("$XDG_DATA_HOME");
private static String sep = System.getProperty("file.separator");
private static String home = System.getProperty("user.home");
}
terraintool-1.12a.orig/src/mccombe/terrain/OffsetDialog.java 0000644 0001750 0001750 00000025544 11730070706 023577 0 ustar wookey wookey /*
* OffsetDialog.java
*
* Created on 03 February 2008, 12:54
*/
package mccombe.terrain;
import java.text.ParseException;
import javax.swing.InputVerifier;
import javax.swing.JComponent;
import javax.swing.JTextField;
/**
*
* @author Mike
*/
public class OffsetDialog extends javax.swing.JDialog {
/** A return status code - returned if Cancel button has been pressed */
public static final int RET_CANCEL = 0;
/** A return status code - returned if OK button has been pressed */
public static final int RET_OK = 1;
/** Creates new form OffsetDialog
* @param parent the parent frame for the Dialog
* @param modal true if the Dialog is to be modal
* @param east - initialiser for the East offset field
* @param north - initialiser for the North offset field
* @param ht - initialiser for the height offset field
*/
public OffsetDialog(java.awt.Frame parent, boolean modal, double east, double north, double ht) {
super(parent, modal);
initComponents();
eastText.setInputVerifier(numbercheck);
northText.setInputVerifier(numbercheck);
heightText.setInputVerifier(numbercheck);
eastText.setText(String.format(formatString, east));
northText.setText(String.format(formatString, north));
heightText.setText(String.format(formatString, ht));
}
/** @return the return status of this dialog - one of RET_OK or RET_CANCEL */
public int getReturnStatus() {
return returnStatus;
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// //GEN-BEGIN:initComponents
private void initComponents() {
okButton = new javax.swing.JButton();
cancelButton = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
eastText = new javax.swing.JTextField();
northText = new javax.swing.JTextField();
heightText = new javax.swing.JTextField();
setTitle("Set offset values");
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
closeDialog(evt);
}
});
okButton.setText("OK");
okButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
okButtonActionPerformed(evt);
}
});
cancelButton.setText("Cancel");
cancelButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cancelButtonActionPerformed(evt);
}
});
jLabel1.setText("The following offsets will be added to data when it is saved");
jLabel2.setText("Easting");
jLabel3.setText("Northing");
jLabel4.setText("Height");
eastText.setHorizontalAlignment(javax.swing.JTextField.TRAILING);
eastText.setText("0.0");
northText.setHorizontalAlignment(javax.swing.JTextField.TRAILING);
northText.setText("0.0");
heightText.setHorizontalAlignment(javax.swing.JTextField.TRAILING);
heightText.setText("0.0");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap(250, Short.MAX_VALUE)
.addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, 67, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(cancelButton)
.addContainerGap())
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 325, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(65, Short.MAX_VALUE))
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 86, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel3)
.addComponent(jLabel4))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(heightText)
.addComponent(northText)
.addComponent(eastText, javax.swing.GroupLayout.DEFAULT_SIZE, 99, Short.MAX_VALUE))
.addContainerGap(201, Short.MAX_VALUE))
);
layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {cancelButton, okButton});
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addComponent(jLabel1)
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(eastText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3)
.addComponent(northText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel4)
.addComponent(heightText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 16, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(cancelButton)
.addComponent(okButton))
.addContainerGap())
);
pack();
}// //GEN-END:initComponents
private void okButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okButtonActionPerformed
eastOffset = parseDouble(eastText.getText());
northOffset = parseDouble(northText.getText());
heightOffset = parseDouble(heightText.getText());
doClose(RET_OK);
}//GEN-LAST:event_okButtonActionPerformed
private double parseDouble(String s){
String val = s.trim();
if (val.startsWith("+")) {
val = val.substring(1);
}
java.text.NumberFormat nf = java.text.NumberFormat.getInstance();
java.text.ParsePosition pos = new java.text.ParsePosition(0);
return nf.parse(val, pos).doubleValue();
}
private void cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cancelButtonActionPerformed
doClose(RET_CANCEL);
}//GEN-LAST:event_cancelButtonActionPerformed
/** Closes the dialog */
private void closeDialog(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_closeDialog
doClose(RET_CANCEL);
}//GEN-LAST:event_closeDialog
private void doClose(int retStatus) {
returnStatus = retStatus;
setVisible(false);
dispose();
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
OffsetDialog dialog = new OffsetDialog(new javax.swing.JFrame(), true, 0.0, 0.0, 0.0);
dialog.addWindowListener(new java.awt.event.WindowAdapter() {
@Override
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}
});
dialog.setVisible(true);
}
});
}
public double getEastOffset() {
return eastOffset;
}
public double getNorthOffset() {
return northOffset;
}
public double getHeightOffset() {
return heightOffset;
}
private class NumericVerifier extends InputVerifier {
@Override
public boolean verify(JComponent input) {
JTextField field = (JTextField) input;
String val = field.getText().trim();
if (val.startsWith("+")) {
val = val.substring(1);
}
java.text.NumberFormat nf = java.text.NumberFormat.getInstance();
java.text.ParsePosition pos = new java.text.ParsePosition(0);
int n = val.length();
double x = nf.parse(val, pos).doubleValue();
if (pos.getIndex() != n) {
return false;
}
field.setText(String.format(formatString, x));
return true;
/*
boolean res = val.trim().matches("[+-]?\\d+\\[,.]?\\d*$");
if (res) {
double x = Double.parseDouble(val.trim());
field.setText(String.format(formatString, x));
}
return res;
*/
}
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton cancelButton;
private javax.swing.JTextField eastText;
private javax.swing.JTextField heightText;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JTextField northText;
private javax.swing.JButton okButton;
// End of variables declaration//GEN-END:variables
private int returnStatus = RET_CANCEL;
private static final String formatString = "%12.1f";
private double eastOffset = 0.0;
private double northOffset = 0.0;
private double heightOffset = 0.0;
private NumericVerifier numbercheck = new NumericVerifier();
}
terraintool-1.12a.orig/src/mccombe/terrain/LatLongDialog.form 0000644 0001750 0001750 00000016423 11730070706 023727 0 ustar wookey wookey
terraintool-1.12a.orig/src/mccombe/terrain/TerrainProperties.java 0000644 0001750 0001750 00000004137 11730070706 024705 0 ustar wookey wookey package mccombe.terrain;
/**
*
* @author Mike McCombe
*/
public class TerrainProperties {
private TerrainProperties(String value) {
stringvalue = value;
}
@Override
public String toString() {
return stringvalue;
}
public static final TerrainProperties COORD = new TerrainProperties("coordinatesystem");
public static final TerrainProperties REGION = new TerrainProperties("region");
public static final TerrainProperties FTP = new TerrainProperties("ftpsite");
public static final TerrainProperties AUTO = new TerrainProperties("autodownload");
public static final TerrainProperties GRIDREF = new TerrainProperties("currentgridref");
public static final TerrainProperties EXAMPLE = new TerrainProperties("example");
public static final TerrainProperties ELLIPSOID = new TerrainProperties("ellipsoid");
public static final TerrainProperties DATUM = new TerrainProperties("datum");
public static final TerrainProperties EW = new TerrainProperties("e-w_range");
public static final TerrainProperties NS = new TerrainProperties("n-s_range");
public static final TerrainProperties SPACING = new TerrainProperties("spacing");
public static final TerrainProperties EASTOFFSET = new TerrainProperties("eastoffset");
public static final TerrainProperties NORTHOFFSET = new TerrainProperties("northoffset");
public static final TerrainProperties HEIGHTOFFSET = new TerrainProperties("heightoffset");
public static final TerrainProperties ALIGNMENT = new TerrainProperties("alignment");
public static final TerrainProperties LAT = new TerrainProperties("latitude");
public static final TerrainProperties LON = new TerrainProperties("longitude");
public static final TerrainProperties LOCALE = new TerrainProperties("locale");
public static final TerrainProperties ASTER = new TerrainProperties("useASTER");
public static final TerrainProperties THERIONCS = new TerrainProperties("therionCoordinateSet");
public static final TerrainProperties LEGACYASTER = new TerrainProperties("legacyASTER");
private String stringvalue;
}
terraintool-1.12a.orig/src/mccombe/terrain/SRTM2Reader.java 0000644 0001750 0001750 00000002655 11730070706 023221 0 ustar wookey wookey /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package mccombe.terrain;
import javax.swing.JComponent;
/**
*
* @author Mike McCombe
*/
public class SRTM2Reader extends DEMReader {
public SRTM2Reader(JComponent item) throws MissingDataFileException {
super(item);
}
public String datasetName() {
return name;
}
public boolean downloadable() {
return downloadable;
}
public int recordlength() {
return recordlength;
}
public String formatstring() {
return filenameformat;
}
public String extn() {
return extn;
}
public boolean littleendian() {
return littleendian;
}
public int missingValue() {
return missingValue;
}
public String zipEntryName(String name){
return name + ".hgt";
}
public String copyright() {
return copyright ;
}
private static final boolean downloadable = true;
private static final int recordlength = 1201;
private static final String filenameformat = "%1s%02d%1s%03d";
private static final String name = "Shuttle Radar Topography Mission";
private static final String extn = ".hgt.zip";
private static final boolean littleendian = false;
private static final int missingValue = -32768;
private static final String copyright = "SRTM DEM data is public-domain.";
}
terraintool-1.12a.orig/src/mccombe/terrain/Pathnames.java 0000644 0001750 0001750 00000000710 11730640716 023141 0 ustar wookey wookey package mccombe.terrain;
/**
* Define interface for specifying paths for locating the properties and data files.
*
* @author Mike McCombe
*/
public interface Pathnames {
/**
*
* @return String containing the pathname for terrain.properties
*/
public String propertiesPath();
/**
*
* @return String containing the pathname for the data-cache directory
*/
public String dataPath();
}
terraintool-1.12a.orig/src/mccombe/terrain/LocationDialog.form 0000644 0001750 0001750 00000025400 11730070706 024132 0 ustar wookey wookey
terraintool-1.12a.orig/src/mccombe/terrain/TherionCSDialog.form 0000644 0001750 0001750 00000012712 11730070706 024222 0 ustar wookey wookey
terraintool-1.12a.orig/src/mccombe/terrain/PropertySet.java 0000644 0001750 0001750 00000004503 11730070706 023521 0 ustar wookey wookey /*
* PropertySet.java
*
* Created on 12 May 2006, 10:08
*
*/
package mccombe.terrain;
import java.io.File;
import java.io.IOException;
/**
*
* @author Mike McCombe
*/
public class PropertySet {
/** Creates a new instance of PropertySet */
public PropertySet(String pathname, java.util.Properties defaults) {
File dir = new File(pathname);
if (!dir.isDirectory()) {
boolean madeDirectory = dir.mkdir();
if (!madeDirectory) {
return ;
}
}
String filename = pathname + "terrain.properties";
file = filename ;
boolean propflag = true;
properties = new java.util.Properties(defaults);
java.util.Properties prop = System.getProperties();
try {
properties.loadFromXML(new java.io.FileInputStream(filename));
java.util.Enumeration enums = properties.propertyNames();
while(enums.hasMoreElements()){
String s = (String) enums.nextElement();
String val = properties.getProperty(s);
prop.setProperty(s,val);
}
propflag = false ;
} catch (IOException ex) {
//Do nothing here. "propflag" causes new property file to be created.
}
if(propflag) {
try {
properties.storeToXML(new java.io.FileOutputStream(filename), "");
} catch (java.io.IOException ex) {
}
}
System.setProperties(prop);
valid = true ;
}
public String get(TerrainProperties key){
return properties.getProperty(key.toString());
}
public void set(TerrainProperties key, String value){
properties.setProperty(key.toString(), value);
}
private String getProperty(String name){
return properties.getProperty(name);
}
private void setProperty(String key, String value){
properties.setProperty(key, value);
}
public void save() throws java.io.IOException {
properties.storeToXML(new java.io.FileOutputStream(file),"");
}
public boolean isValid() { return valid; }
private java.util.Properties properties ;
private String file ;
private boolean valid = false ;
}
terraintool-1.12a.orig/src/mccombe/terrain/CompositeReader.java 0000644 0001750 0001750 00000020201 11730070706 024277 0 ustar wookey wookey /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package mccombe.terrain;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import mccombe.mapping.*;
import java.io.*;
import java.util.zip.*;
import javax.swing.JComponent;
/**
*
* @author Mike
*/
public class CompositeReader extends SRTM2Reader {
public CompositeReader(JComponent item) throws MissingDataFileException {
super(item);
subReader = new ASTERReader(item);
}
/* @Override
public double getHeight(LatLong place) throws MissingDataFileException {
double ht = mainReader.getHeight(place);
if (ht == MISSING) ht = subReader.getHeight(place);
return ht ;
} */
private DEMReader subReader;
@Override
public double getHeight(LatLong place) throws MissingDataFileException {
double lat = Math.floor(place.lat());
double lon = Math.floor(place.lon());
String ew = "E";
String ns = "N";
if (lat < 0) {
ns = "S";
}
if (lon < 0) {
ew = "W";
}
lat = Math.abs(lat);
lon = Math.abs(lon);
double x0 = tile(place.lon());
double y0 = (double) (recordlength() - 1) - tile(place.lat());
int xtile = (int) x0;
int ytile = (int) y0;
String pagename = makename(ns, (int) lat, ew, (int) lon);
double[] h = new double[3];
double[] x = new double[3];
double[] w = new double[3];
double[] y = new double[3];
int k = Math.max(ytile - 1, 0);
int m = 0;
while (m < 3 && k < recordlength() && k < ytile + 3) {
CacheEntry page = getRow(pagename, k, place);
if (page == null) {
return MISSING;
}
int i = 0;
int j = xtile;
while (i < 3 && j < recordlength() && j < xtile + 4) {
int v = page.getValue(j);
if (v != missingValue()) {
x[i] = (double) j;
h[i] = (double) v;
i++;
} else {
missing++;
}
j++;
}
j = xtile - 1;
while (i < 3 && j >= 0 && j > xtile - 3) {
int v = page.getValue(j);
if (v != missingValue()) {
x[i] = (double) j;
h[i] = (double) v;
i++;
} else {
missing++;
}
j--;
}
if (i == 3) {
java.awt.geom.Point2D.Double p0 = new java.awt.geom.Point2D.Double(x[0], h[0]);
java.awt.geom.Point2D.Double p1 = new java.awt.geom.Point2D.Double(x[1], h[1]);
java.awt.geom.Point2D.Double p2 = new java.awt.geom.Point2D.Double(x[2], h[2]);
y[m] = lagrangian(x0, p0, p1, p2);
w[m] = (double) k;
m++;
}
k++;
}
if (m == 3) {
java.awt.geom.Point2D.Double q0 = new java.awt.geom.Point2D.Double(w[0], y[0]);
java.awt.geom.Point2D.Double q1 = new java.awt.geom.Point2D.Double(w[1], y[1]);
java.awt.geom.Point2D.Double q2 = new java.awt.geom.Point2D.Double(w[2], y[2]);
double height = lagrangian(y0, q0, q1, q2);
resultcount++;
return height;
}
return MISSING;
}
protected CacheEntry getRow(String name, int ytile, LatLong place) throws MissingDataFileException {
tries++;
cycle++;
String shortname = String.format("%s#%04d", name, ytile);
if (cacheEnable) {
CacheEntry page = cache.get(shortname);
if (page != null) {
hits++;
page.setLastUsed();
return page;
}
}
// Record not in cache or cache not enabled
try {
String filename = DIRECTORY + name + extn();
File infile = new File(filename);
if (!infile.isFile()) {
String tempname = name + extn();
try {
downloadFile(tempname);
} catch (IOException e) {
throw new MissingDataFileException(String.format("Unable to dowload missing file %s%n%s%n", tempname, e.toString()));
}
}
in = new java.util.zip.ZipInputStream(new FileInputStream(infile));
String entryname = "";
do {
ZipEntry entry = in.getNextEntry();
if(entry==null) throw new MissingDataFileException(String.format("ZIP file %s does not contain expected entry %s",filename,zipEntryName(name)));
entryname = entry.getName();
} while (!entryname.equalsIgnoreCase(zipEntryName(name)));
int recordno = 0;
try {
int[] heights;
while (true) {
heights = readRecord();
int n = heights.length;
if (recordno == ytile) {
break;
}
recordno++;
}
for (int q = 0; q < heights.length; q++) {
if (heights[q] == missingValue()) {
double lat = Math.floor(place.lat()) + (1.0-frac(ytile));
double lon = Math.floor(place.lon()) + frac(q);
LatLong here = new LatLong(lat, lon);
double ht = subReader.getHeight(here);
int height = (int) Math.round(ht);
if (height == subReader.missing()) {
height = (int) MISSING;
}
heights[q] = height;
}
}
if (cacheEnable) {
if (cache.size() >= MAX_CACHE_SIZE) {
//Find the oldest entry and remove it
CacheEntry oldest = null;
long age = cycle;
for (CacheEntry test : cache.values()) {
if (test.lastUsed() < age) {
age = test.lastUsed();
oldest = test;
}
}
String key = oldest.getName();
cache.remove(key);
}
CacheEntry page = new CacheEntry(shortname, heights);
cache.put(shortname, page);
return page;
}
CacheEntry page = new CacheEntry(shortname, heights);
return page;
} catch (EOFException e) {
throw new MissingDataFileException("Hit end of file");
}
} catch (IOException e) {
throw new MissingDataFileException("Unable to read file - " + e.toString());
}
}
public String datasetName() {
if(useLegacy) return legacyDatasetName;
return name;
}
public boolean downloadable() {
return downloadable;
}
public int recordlength() {
return recordlength;
}
public String formatstring() {
return filenameformat;
}
public String extn() {
return extn;
}
public boolean littleendian() {
return littleendian;
}
public int missingValue() {
return missingValue;
}
public String copyright() {
return copyright;
}
private static final boolean downloadable = true;
private static final int recordlength = 1201;
private static final String filenameformat = "%1s%02d%1s%03d";
private static final String legacyDatasetName = "Shuttle Radar Topography Mission plus ASTER";
private static final String name = "Shuttle Radar Topography Mission plus ASTER V2";
private static final String extn = ".hgt.zip";
private static final boolean littleendian = false;
private static final int missingValue = -32768;
private static final String copyright = "ASTER GDEM is a product of METI and NASA";
}
terraintool-1.12a.orig/src/mccombe/terrain/AboutDialog.form 0000644 0001750 0001750 00000026010 11730070706 023432 0 ustar wookey wookey
terraintool-1.12a.orig/src/mccombe/terrain/DefaultProperties.java 0000644 0001750 0001750 00000002653 11730070706 024666 0 ustar wookey wookey /*
* DefaultsProperties.java
*
* Created on 12 May 2006, 10:59
*
*/
package mccombe.terrain;
/**
*
* @author Mike McCombe
*/
public class DefaultProperties extends java.util.Properties {
/** Creates a new instance of DefaultProperties */
public DefaultProperties() {
super();
this.setProperty("region", "Eurasia");
this.setProperty("ftpsite","http://dds.cr.usgs.gov/srtm/version2_1/SRTM3/");
this.setProperty("autodownload", "true");
this.setProperty("coordinatesystem", "OSGB");
this.setProperty("currentgridref", "ST 700600");
this.setProperty("example", "ST 700600");
this.setProperty("ellipsoid", "Airy Sphere 1830");
this.setProperty("datum", "Ordnance Survey of Great Britain 1936");
this.setProperty("eastoffset", "0.0");
this.setProperty("northoffset", "0.0");
this.setProperty("heightoffset", "0.0");
this.setProperty("e-w_range", "1000.00");
this.setProperty("n-s_range", "1000.0");
this.setProperty("spacing", "50.0");
this.setProperty("alignment","0");
this.setProperty("latitude","52.0");
this.setProperty("longitude","-2.0");
this.setProperty("locale", "GB");
this.setProperty("useASTER", "srtm");
this.setProperty("therionCoordinateSet","OSGB");
this.setProperty("legacyASTER","false");
}
}
terraintool-1.12a.orig/src/mccombe/terrain/MissingDataFileException.java 0000644 0001750 0001750 00000001142 11730070706 026077 0 ustar wookey wookey /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package mccombe.terrain;
/**
*
* @author Mike
*/
public class MissingDataFileException extends Exception {
/**
* Creates a new instance of MissingDataFileException
without detail message.
*/
public MissingDataFileException() {
}
/**
* Constructs an instance of MissingDataFileException
with the specified detail message.
* @param msg the detail message.
*/
public MissingDataFileException(String msg) {
super(msg);
}
}
terraintool-1.12a.orig/src/mccombe/terrain/InfoMessage.java 0000644 0001750 0001750 00000002164 11730070706 023422 0 ustar wookey wookey package mccombe.terrain;
import mccombe.util.Severity;
import javax.swing.JOptionPane;
/**
*
* @author Mike
*/
public class InfoMessage {
public InfoMessage(String title, Object[] msg, Severity status){
message = msg ;
level = status ;
heading = title ;
}
public InfoMessage(String title, String msg, Severity status){
message = new String[1] ;
message[0] = msg ;
level = status ;
heading = title ;
}
public void display(java.awt.Component parent){
JOptionPane.showMessageDialog(parent, message, heading, mapType(level));
}
public Severity getSeverity() { return level ; }
private int mapType(Severity s){
int i = s.value();
return msgTypes[i];
}
private static final int[] msgTypes = {
JOptionPane.INFORMATION_MESSAGE,
JOptionPane.WARNING_MESSAGE,
JOptionPane.ERROR_MESSAGE,
JOptionPane.ERROR_MESSAGE,
JOptionPane.ERROR_MESSAGE};
private Object[] message ;
private Severity level ;
private String heading ;
}
terraintool-1.12a.orig/src/mccombe/terrain/TherionCSDialog.java 0000644 0001750 0001750 00000017112 11730070706 024177 0 ustar wookey wookey /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* TherionCSDialog.java
*
* Created on 12-Jun-2010, 16:37:01
*/
package mccombe.terrain;
/**
*
* @author Mike
*/
public class TherionCSDialog extends javax.swing.JDialog {
/** A return status code - returned if Cancel button has been pressed */
public static final int RET_CANCEL = 0;
/** A return status code - returned if OK button has been pressed */
public static final int RET_OK = 1;
/** Creates new form TherionCSDialog */
public TherionCSDialog(java.awt.Frame parent, boolean modal) {
super(parent, modal);
initComponents();
}
/** @return the return status of this dialog - one of RET_OK or RET_CANCEL */
public int getReturnStatus() {
return returnStatus;
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// //GEN-BEGIN:initComponents
private void initComponents() {
okButton = new javax.swing.JButton();
cancelButton = new javax.swing.JButton();
jPanel1 = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
csName = new javax.swing.JTextField();
setTitle("Set Therion Coordinate Set Name");
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
closeDialog(evt);
}
});
okButton.setText("OK");
okButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
okButtonActionPerformed(evt);
}
});
cancelButton.setText("Cancel");
cancelButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cancelButtonActionPerformed(evt);
}
});
jLabel1.setText("Therion cs name");
csName.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
csNameActionPerformed(evt);
}
});
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addComponent(jLabel1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 27, Short.MAX_VALUE)
.addComponent(csName, javax.swing.GroupLayout.PREFERRED_SIZE, 130, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap())
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1)
.addComponent(csName, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addContainerGap())
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jPanel1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(layout.createSequentialGroup()
.addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, 67, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(cancelButton)))
.addContainerGap())
);
layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {cancelButton, okButton});
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 14, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(cancelButton)
.addComponent(okButton))
.addContainerGap())
);
pack();
}// //GEN-END:initComponents
private void okButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okButtonActionPerformed
doClose(RET_OK);
}//GEN-LAST:event_okButtonActionPerformed
private void cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cancelButtonActionPerformed
doClose(RET_CANCEL);
}//GEN-LAST:event_cancelButtonActionPerformed
/** Closes the dialog */
private void closeDialog(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_closeDialog
doClose(RET_CANCEL);
}//GEN-LAST:event_closeDialog
private void csNameActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_csNameActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_csNameActionPerformed
private void doClose(int retStatus) {
returnStatus = retStatus;
setVisible(false);
dispose();
}
public void setCSName(String s){
csName.setText(s);
}
public String getCSName() {
return csName.getText();
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
TherionCSDialog dialog = new TherionCSDialog(new javax.swing.JFrame(), true);
dialog.addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}
});
dialog.setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton cancelButton;
private javax.swing.JTextField csName;
private javax.swing.JLabel jLabel1;
private javax.swing.JPanel jPanel1;
private javax.swing.JButton okButton;
// End of variables declaration//GEN-END:variables
private int returnStatus = RET_CANCEL;
}
terraintool-1.12a.orig/src/mccombe/terrain/DefaultPathnames.java 0000644 0001750 0001750 00000001416 11730070706 024446 0 ustar wookey wookey /*
* Define default path names for the terraintool.properties file and the data cache. This
* class is platform-agnostic. Use an os-specific implementation of Pathnames interface to
* force files into os-dependent locations. See for example DebianPathnames.
*/
package mccombe.terrain;
/**
*
* @author Mike
*/
public class DefaultPathnames implements Pathnames {
@Override
public String propertiesPath() {
return home + sep + subdir + sep ;
}
@Override
public String dataPath() {
return home + sep + subdir + sep ;
}
private static String home = System.getProperty("user.home");
private static String sep = System.getProperty("file.separator");
private static String subdir = ".terraintool";
}
terraintool-1.12a.orig/src/mccombe/terrain/LatLongDialog.java 0000644 0001750 0001750 00000034543 11730070706 023710 0 ustar wookey wookey /*
* LatLongDialog.java
*
* Created on 25 February 2008, 16:46
*/
package mccombe.terrain;
import java.awt.event.ActionEvent;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.swing.DefaultComboBoxModel;
import javax.swing.InputVerifier;
import javax.swing.JComponent;
import javax.swing.JTextField;
import mccombe.mapping.*;
/**
*
* @author Mike
*/
public class LatLongDialog extends javax.swing.JDialog {
/** A return status code - returned if Cancel button has been pressed */
public static final int RET_CANCEL = 0;
/** A return status code - returned if OK button has been pressed */
public static final int RET_OK = 1;
/** Creates new form LatLongDialog */
public LatLongDialog(java.awt.Frame parent, boolean modal, MappingToolkit toolbox, Spherical location) {
super(parent, modal);
initComponents();
toolkit = toolbox;
datum = Datum.WGS_1984;
ellipsoid = Ellipsoid.GRS80;
java.util.Vector datumList = toolkit.getDatumList();
datumSet.setModel(new DefaultComboBoxModel(datumList));
datumSet.setSelectedItem(datum);
java.util.Vector ellipsoidList = toolkit.getEllipsoidList();
ellipsoidSet.setModel(new DefaultComboBoxModel(ellipsoidList));
ellipsoidSet.setSelectedItem(ellipsoid);
latText.setInputVerifier(new LatVerifier());
longText.setInputVerifier(new LonVerifier());
datumSet.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
datumSetActionPerformed(evt);
}
});
ellipsoidSet.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
ellipsoidSetActionPerformed(evt);
}
});
ellipsoid = (Ellipsoid) ellipsoidSet.getSelectedItem();
datum = (Datum) datumSet.getSelectedItem();
Spherical sph = location;
place = sph.getPosition();
String[] lls = sph.toString().trim().split("\\s+");
String initLat = String.format("%s %s %s %s", lls[0], lls[1], lls[2], lls[3]);
String initLon = String.format("%s %s %s %s", lls[4], lls[5], lls[6], lls[7]);
latText.setText(initLat);
longText.setText(initLon);
}
private void datumSetActionPerformed(ActionEvent evt) {
writeTextFields(place);
}
private void ellipsoidSetActionPerformed(ActionEvent evt) {
writeTextFields(place);
}
/** @return the return status of this dialog - one of RET_OK or RET_CANCEL */
public int getReturnStatus() {
return returnStatus;
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// //GEN-BEGIN:initComponents
private void initComponents() {
okButton = new javax.swing.JButton();
cancelButton = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
longText = new javax.swing.JTextField();
latText = new javax.swing.JTextField();
ellipsoidSet = new javax.swing.JComboBox();
datumSet = new javax.swing.JComboBox();
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
closeDialog(evt);
}
});
okButton.setText("OK");
okButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
okButtonActionPerformed(evt);
}
});
cancelButton.setText("Cancel");
cancelButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cancelButtonActionPerformed(evt);
}
});
jLabel1.setText("Latitude");
jLabel2.setText("Longitude");
jLabel3.setText("Ellipsoid");
jLabel4.setText("Datum");
longText.setText(" ");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel2)
.addComponent(jLabel1)
.addComponent(jLabel3)
.addComponent(jLabel4))
.addGap(14, 14, 14)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(datumSet, javax.swing.GroupLayout.Alignment.TRAILING, 0, 246, Short.MAX_VALUE)
.addComponent(longText, javax.swing.GroupLayout.DEFAULT_SIZE, 246, Short.MAX_VALUE)
.addComponent(ellipsoidSet, javax.swing.GroupLayout.Alignment.TRAILING, 0, 246, Short.MAX_VALUE)
.addComponent(latText, javax.swing.GroupLayout.DEFAULT_SIZE, 246, Short.MAX_VALUE)))
.addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, 67, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(cancelButton)
.addContainerGap())
);
layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {cancelButton, okButton});
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1)
.addComponent(latText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(longText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3)
.addComponent(ellipsoidSet, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel4)
.addComponent(datumSet, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 27, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(cancelButton)
.addComponent(okButton))
.addContainerGap())
);
pack();
}// //GEN-END:initComponents
private void okButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okButtonActionPerformed
if (parseTextFields()) {
doClose(RET_OK);
}
}//GEN-LAST:event_okButtonActionPerformed
private void cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cancelButtonActionPerformed
doClose(RET_CANCEL);
}//GEN-LAST:event_cancelButtonActionPerformed
/** Closes the dialog */
private void closeDialog(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_closeDialog
doClose(RET_CANCEL);
}//GEN-LAST:event_closeDialog
private void doClose(int retStatus) {
returnStatus = retStatus;
setVisible(false);
dispose();
}
public Datum getDatum() {
return (Datum) datumSet.getSelectedItem();
}
public void setDatum(Datum d) {
datumSet.setSelectedItem(d);
datum = d;
}
public Ellipsoid getEllipsoid() {
return (Ellipsoid) ellipsoidSet.getSelectedItem();
}
public void setEllipsoid(Ellipsoid e) {
ellipsoidSet.setSelectedItem(e);
ellipsoid = e;
}
public Position getPosition() {
return place;
}
public void setPosition(Position here) {
writeTextFields(here);
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
LatLongDialog dialog = new LatLongDialog(new javax.swing.JFrame(), true, new MappingToolkit(), new Spherical(new LatLong(0.0, 0.0), Ellipsoid.GRS80, Datum.WGS_1984));
dialog.addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}
});
dialog.setVisible(true);
}
});
}
private boolean parseTextFields() {
String latval = latText.getText().trim();
String lonval = longText.getText().trim();
boolean res = parseLatitude(latval) && parseLongitude(lonval);
if (!res) {
return false;
}
LatLong ll = new LatLong(lat, lon);
Spherical sph = new Spherical(ll, ellipsoid, datum);
place = sph.getPosition();
return true;
}
private void writeTextFields(Position p){
place = p;
ellipsoid = (Ellipsoid) ellipsoidSet.getSelectedItem();
datum = (Datum) datumSet.getSelectedItem();
Spherical sph = new Spherical(place, ellipsoid, datum);
String[] lls = sph.toString().trim().split("\\s+");
String initLat = String.format("%s %s %s %s", lls[0], lls[1], lls[2], lls[3]);
String initLon = String.format("%s %s %s %s", lls[4], lls[5], lls[6], lls[7]);
latText.setText(initLat);
longText.setText(initLon);
}
private boolean parseLatitude(String val) {
Matcher match1 = realRegex.matcher(val);
Matcher match2 = latDMSRegex.matcher(val);
if (match1.find()) {
String res = match1.group(0);
lat = Double.parseDouble(res);
return true;
} else if (match2.find()) {
String degs = match2.group(1);
String ns = match2.group(2);
String mins = match2.group(3);
String secs = match2.group(4);
int deg = Integer.parseInt(degs);
int min = Integer.parseInt(mins);
double sec = Double.parseDouble(secs);
try {
lat = LatLong.latDMS(ns, deg, min, sec);
return true;
} catch (LatLongFormatException e) {
}
}
return false;
}
private boolean parseLongitude(String val) {
Matcher match1 = realRegex.matcher(val);
Matcher match2 = lonDMSRegex.matcher(val);
if (match1.find()) {
lon = Double.parseDouble(val);
return true;
} else if (match2.find()) {
String degs = match2.group(1);
String ew = match2.group(2);
String mins = match2.group(3);
String secs = match2.group(4);
int deg = Integer.parseInt(degs);
int min = Integer.parseInt(mins);
double sec = Double.parseDouble(secs);
try {
lon = LatLong.lonDMS(ew, deg, min, sec);
return true;
} catch (LatLongFormatException e) {
}
}
return false;
}
private class LatVerifier extends InputVerifier {
@Override
public boolean verify(JComponent input) {
JTextField field = (JTextField) input;
String val = field.getText().trim();
return parseLatitude(val);
}
}
private class LonVerifier extends InputVerifier {
@Override
public boolean verify(JComponent input) {
JTextField field = (JTextField) input;
String val = field.getText().trim();
return parseLongitude(val);
}
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton cancelButton;
private javax.swing.JComboBox datumSet;
private javax.swing.JComboBox ellipsoidSet;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JTextField latText;
private javax.swing.JTextField longText;
private javax.swing.JButton okButton;
// End of variables declaration//GEN-END:variables
private MappingToolkit toolkit;
private Position place = null;
private double lat, lon;
private int returnStatus = RET_CANCEL;
private Ellipsoid ellipsoid;
private Datum datum;
private static final Pattern realRegex = Pattern.compile("^[\\-+]?\\d+(\\.\\d+)?$");
private static final Pattern latDMSRegex = Pattern.compile("^(\\d{1,2})\\s*([NS])\\s+(\\d{1,2})\\'?\\s+(\\d{1,2}(\\.\\d+)?)\"?$");
private static final Pattern lonDMSRegex = Pattern.compile("^(\\d{1,3})\\s*([EW])\\s+(\\d{1,2})\\'?\\s+(\\d{1,2}(\\.\\d+)?)\"?$");
}
terraintool-1.12a.orig/src/mccombe/terrain/MosaicPanel.java 0000644 0001750 0001750 00000030352 11730070706 023415 0 ustar wookey wookey /*
* MosaicPanel.java
*
* Created on 21 January 2008, 10:40
*/
package mccombe.terrain;
import java.awt.*;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionListener;
import java.awt.geom.Rectangle2D;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import javax.swing.JPanel;
import javax.swing.JViewport;
import mccombe.mapping.XYZ;
/**
* MosaicPanel is used to display a coloured relief map and a height key (in sensible units). It
* also handles mouse events, firing "mouse" PropertyChangeEvents as the mouse is moved over the
* map. Handling of this component's size etc. is left to the parent's LayoutManager.
*
* Mouse events contain a XYZ object where the x and y components indicate the position of the
* mouse as a proportion of the width and height of the map. These are double values between 0.0 and 1.0,
* with [0.0, 0.0] at the bottom-left. The z() component contains the height (or MISSING) contained in the
* databuffer. The value MOVED_OUT is fired when the mouse goes outside the bounds of the map.
*
*
* @author Mike McCombe
*/
public class MosaicPanel extends JPanel {
private double stepSize;
/** Creates new form BeanForm */
public MosaicPanel() {
initComponents();
stepSize = 0.0;
jScrollPane1.setViewportView(mapPanel);
}
/**
* Set the height data for the map and determine the height scale for the key
* @param buffer - a double[][] array containing the map data. First dimension is "northing", second is "easting"
*/
public void setDataTable(float[][] buffer) {
dataTable = buffer;
minval = 1.0E99;
maxval = -1.0E99;
for (float[] row : dataTable) {
for (float x : row) {
if (x != SRTM2Reader.MISSING) {
minval = Math.min(minval, x);
maxval = Math.max(maxval, x);
}
}
}
ydim = dataTable.length;
xdim = dataTable[0].length;
int digits = String.format("%d", (long) maxval).length();
double topLimit = Math.pow(10.0, digits);
if (topLimit / maxval > 5.2) {
topLimit /= 5.0;
} else if (topLimit / maxval > 2.0) {
topLimit /= 2.0;
}
stepSize = topLimit / 10.0;
}
/**
* Paint the key panel and background
*
* @param g - the Graphics object from awt
*/
@Override
public void paint(java.awt.Graphics g) {
super.paint(g);
if (stepSize == 0) {
return;
}
Font font = g.getFont().deriveFont(Font.PLAIN, 11.0f);
g.setFont(font);
Rectangle r = keyPanel.getBounds();
int dy = r.height / 15;
int xgap = 5;
double xbase = r.x + r.width / 2.0;
FontMetrics f = g.getFontMetrics();
g.setColor(Color.BLACK);
for (int i = 0; i < colours.length; i++) {
String val = String.format("%d", (int) (i * stepSize));
Rectangle2D siz = f.getStringBounds(val, g);
int x = (int) (xbase - siz.getWidth());
int y = (int) ((colours.length - i) * dy + siz.getHeight());
g.drawString(val, x, y);
g.setColor(colours[i]);
g.fillRect((int) (xbase + xgap), (int) (y + siz.getCenterY()), r.width / 4, dy);
g.setColor(Color.BLACK);
g.drawRect((int) (xbase + xgap), (int) (y + siz.getCenterY()), r.width / 4, dy);
}
}
/**
* Translate altitude into the requisite map colour
*
* @param altitude - in metres
* @return the corresponding Color
*/
private Color selectColour(float altitude) {
if (altitude == 0.0) {
return colours[0];
}
if (altitude == SRTM2Reader.MISSING) {
return Color.BLACK;
}
double range = maxval - minval;
double above = altitude - minval;
int i = 1 + (int) (altitude / stepSize);
return colours[i];
}
/**
* Add a PropertyChangeListener (for the "mouse" property changes)
* @param l
*/
@Override
public void addPropertyChangeListener(PropertyChangeListener l) {
pcs.addPropertyChangeListener(l);
}
/**
* Get this object's internal PropertyChangeListener (note: slightly non-standard)
*
* @return the current PropertyChangeListener
*/
public PropertyChangeListener getPropertyChangeListener() {
return listener;
}
/**
* Private class built on a JPanel to hold the map and handle mouse events
*/
private class MapPanel extends JPanel {
public MapPanel() {
super();
addMouseMotionListener(new MouseMotionListener() {
public void mouseDragged(MouseEvent e) {
Point p = e.getPoint();
convertPoint(p);
}
public void mouseMoved(MouseEvent e) {
Point p = e.getPoint();
convertPoint(p);
}
});
}
private void convertPoint(Point p) {
if (w == 0 || h == 0) {
return;
}
double dx = (p.getX() - (double) x0) / (double) w;
double dy = 1.0 - (p.getY() - (double) y0) / (double) h;
if (dx < 0.0 || dx >= 1.0 || dy <= 0.0 || dy >= 1.0) {
//If the mouse moves outside the edge of the map, fire a "mouse" event containing MISSING
//to tell other components. Used to erase the GridRef display in the parent frame.
double v = SRTM2Reader.MISSING ;
XYZ val = new XYZ(v, v, v);
pcs.firePropertyChange("mouse", oldPoint, val);
oldPoint = val;
return;
}
int ix = ((int) p.getX() - x0) / pixPerCell;
int iy = ydim - 1 - ((int) p.getY() - y0) / pixPerCell;
double z = dataTable[iy][ix];
XYZ val = new XYZ(dx, dy, z);
pcs.firePropertyChange("mouse", oldPoint, val);
oldPoint = val;
}
@Override
public void paint(Graphics g) {
JViewport v = jScrollPane1.getViewport();
Rectangle r = v.getViewRect();
float xscale = (float) r.width / xdim;
float yscale = (float) r.height / ydim;
float scale = Math.min(xscale, yscale);
pixPerCell = Math.max((int) scale, 1);
// int pixPerCell = 10;
w = xdim * pixPerCell;
h = ydim * pixPerCell;
x0 = r.x + (int) ((float) r.width / 2.0 - (float) (w) / 2.0);
y0 = r.y + (int) ((float) r.height / 2.0 - (float) (h) / 2.0);
for (int j = 0; j < ydim; j++) {
for (int i = 0; i < xdim; i++) {
float z = dataTable[j][i];
int xpos = x0 + i * pixPerCell;
int ypos = y0 + (ydim - 1 - j) * pixPerCell;
Color c = selectColour(z);
g.setColor(c);
g.fillRect(xpos, ypos, pixPerCell, pixPerCell);
}
}
}
private int x0 = 0;
private int y0 = 0;
private int w = 0;
private int h = 0;
private XYZ oldPoint = new XYZ(0.0, 0.0, 0.0);
private int pixPerCell = 0;
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// //GEN-BEGIN:initComponents
private void initComponents() {
jPanel2 = new javax.swing.JPanel();
keyPanel = new javax.swing.JPanel();
jSeparator1 = new javax.swing.JSeparator();
jScrollPane1 = new javax.swing.JScrollPane();
javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);
jPanel2.setLayout(jPanel2Layout);
jPanel2Layout.setHorizontalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 100, Short.MAX_VALUE)
);
jPanel2Layout.setVerticalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 100, Short.MAX_VALUE)
);
javax.swing.GroupLayout keyPanelLayout = new javax.swing.GroupLayout(keyPanel);
keyPanel.setLayout(keyPanelLayout);
keyPanelLayout.setHorizontalGroup(
keyPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 129, Short.MAX_VALUE)
);
keyPanelLayout.setVerticalGroup(
keyPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 299, Short.MAX_VALUE)
);
jSeparator1.setOrientation(javax.swing.SwingConstants.VERTICAL);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(keyPanel, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jSeparator1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 392, Short.MAX_VALUE)
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jSeparator1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 310, Short.MAX_VALUE)
.addGroup(layout.createSequentialGroup()
.addComponent(keyPanel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addContainerGap())
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 310, Short.MAX_VALUE)
);
}// //GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JPanel jPanel2;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JSeparator jSeparator1;
private javax.swing.JPanel keyPanel;
// End of variables declaration//GEN-END:variables
private static final Color PALE_BLUE = new Color(150, 150, 255);
private static final Color MID_GREEN = new Color(149, 255, 52);
private static final Color PALE_GREEN = new Color(200, 255, 150);
private static final Color PALE_YELLOW = new Color(255, 255, 102);
private static final Color PALE_ORANGE = new Color(255, 200, 50);
private static final Color MID_ORANGE = new Color(255, 153, 0);
private static final Color PALE_RED = new Color(255, 203, 203);
private static final Color MID_RED = new Color(255, 153, 153);
private static final Color MID_PURPLE = new Color(153, 102, 255);
private static final Color PALE_PURPLE = new Color(204, 153, 255);
private static final Color[] colours = {PALE_BLUE, MID_GREEN, PALE_GREEN, PALE_YELLOW, PALE_ORANGE,
MID_ORANGE, PALE_RED, MID_RED, MID_PURPLE, PALE_PURPLE, Color.WHITE
};
private float[][] dataTable = null;
private double minval = 1.0E99;
private double maxval = -1.0E99;
private int xdim = 0;
private int ydim = 0;
private MapPanel mapPanel = new MapPanel();
private PropertyChangeSupport pcs = new PropertyChangeSupport(this);
private PropertyChangeListener listener = new java.beans.PropertyChangeListener() {
public void propertyChange(java.beans.PropertyChangeEvent evt) {
String propertyName = evt.getPropertyName();
String propertyValue = evt.getNewValue().toString();
//Property change handling goes here, if needed.
}
};
public static final XYZ MOVED_OUT = new XYZ(SRTM2Reader.MISSING, SRTM2Reader.MISSING, SRTM2Reader.MISSING);
}
terraintool-1.12a.orig/src/mccombe/terrain/ASTERReader.java 0000644 0001750 0001750 00000003524 11730070706 023224 0 ustar wookey wookey /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package mccombe.terrain;
import java.io.EOFException;
import java.io.IOException;
import javax.swing.JComponent;
/**
*
* @author Mike
*/
public class ASTERReader extends DEMReader {
public ASTERReader(JComponent item) throws MissingDataFileException {
super(item);
}
public String datasetName() {
if(useLegacy) return legacyDatasetName;
return name;
}
public boolean downloadable() {
return downloadable;
}
public int recordlength() {
return recordlength;
}
public String formatstring() {
if(useLegacy) return legacyfilenameformat;
return filenameformat;
}
public String extn() {
return extn;
}
public boolean littleendian() {
return littleendian;
}
public int missingValue() {
return missingValue;
}
public String zipEntryName(String name){
return name + "_dem.tif";
}
public String copyright() {
return copyright ;
}
private static final boolean downloadable = false;
private static final int recordlength = 3601;
private static final String legacyfilenameformat = "ASTGTM_%1s%02d%1s%03d";
private static final String filenameformat = "ASTGTM2_%1s%02d%1s%03d";
private static final String name = "Advanced Spaceborne Thermal Emission and Reflection Radiometer (ASTER) Version 2";
private static final String legacyDatasetName = "Advanced Spaceborne Thermal Emission and Reflection Radiometer (ASTER)";
private static final String copyright = "ASTER GDEM is a product of METI and NASA";
private static final String extn = ".zip";
private static final boolean littleendian = true;
private static final int missingValue = -9999;
}
terraintool-1.12a.orig/src/mccombe/terrain/CoordinateDialog.java 0000644 0001750 0001750 00000020630 11730070706 024427 0 ustar wookey wookey /*
* CoordinateDialog.java
*
* Created on 19 January 2008, 16:46
*/
package mccombe.terrain;
import java.awt.event.ActionEvent;
import mccombe.mapping.*;
import javax.swing.DefaultComboBoxModel;
/**
*
* @author Mike
*/
public class CoordinateDialog extends javax.swing.JDialog {
/** Creates new form CoordinateDialog */
public CoordinateDialog(java.awt.Frame parent, boolean modal, MappingToolkit toolbox) {
super(parent, modal);
initComponents();
coordSet.addActionListener(new java.awt.event.ActionListener() {
@Override
public void actionPerformed(java.awt.event.ActionEvent evt) {
coordSetActionPerformed(evt);
}
});
toolkit = toolbox ;
java.util.List coordList = toolkit.getProjectionNames();
coordSet.setModel(new DefaultComboBoxModel(coordList.toArray(new String[0])));
java.util.List datumList = toolkit.getDatumList();
datumSet.setModel(new DefaultComboBoxModel(datumList.toArray(new Datum[0])));
java.util.List ellipsoidList = toolkit.getEllipsoidList();
ellipsoidSet.setModel(new DefaultComboBoxModel(ellipsoidList.toArray(new Ellipsoid[0])));
}
int getReturnStatus() {
return returnStatus;
}
void setSelectedCoordType(String currentCoordType) {
if (currentCoordType != null) {
coordSet.setSelectedItem(currentCoordType);
}
}
private void coordSetActionPerformed(ActionEvent evt) {
String selected = (String) coordSet.getSelectedItem();
Ellipsoid e = toolkit.defaultEllipsoid(selected);
ellipsoidSet.setSelectedItem(e);
Datum d = toolkit.defaultDatum(selected);
datumSet.setSelectedItem(d);
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// //GEN-BEGIN:initComponents
private void initComponents() {
okButton = new javax.swing.JButton();
cancelButton = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
coordSet = new javax.swing.JComboBox();
datumSet = new javax.swing.JComboBox();
ellipsoidSet = new javax.swing.JComboBox();
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
okButton.setText("OK");
okButton.setPreferredSize(new java.awt.Dimension(65, 23));
okButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
okButtonActionPerformed(evt);
}
});
cancelButton.setText("Cancel");
cancelButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cancelButtonActionPerformed(evt);
}
});
jLabel1.setText("Coordinate System");
jLabel2.setText("Datum");
jLabel3.setText("Ellipsoid");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel1)
.addComponent(jLabel2)
.addComponent(datumSet, 0, 380, Short.MAX_VALUE)
.addComponent(jLabel3)
.addComponent(ellipsoidSet, 0, 380, Short.MAX_VALUE)
.addComponent(coordSet, 0, 380, Short.MAX_VALUE)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addComponent(cancelButton)
.addGap(18, 18, 18)
.addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jLabel1)
.addGap(11, 11, 11)
.addComponent(coordSet, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(18, 18, 18)
.addComponent(jLabel2)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(datumSet, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jLabel3)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(ellipsoidSet, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(cancelButton))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
pack();
}// //GEN-END:initComponents
private void okButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okButtonActionPerformed
String coordSystemName = (String) coordSet.getSelectedItem();
doClose(RET_OK);
}//GEN-LAST:event_okButtonActionPerformed
private void cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cancelButtonActionPerformed
doClose(RET_CANCEL);
}//GEN-LAST:event_cancelButtonActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
CoordinateDialog dialog = new CoordinateDialog(new javax.swing.JFrame(), true, new MappingToolkit());
dialog.addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}
});
dialog.setVisible(true);
}
});
}
public String getExample() {
String typeName = (String) coordSet.getSelectedItem();
return toolkit.getExample(typeName);
}
public String getProjection() {
return (String) coordSet.getSelectedItem();
}
public Datum getDatum() {
return (Datum) datumSet.getSelectedItem();
}
public void setDatum(Datum d){
datumSet.setSelectedItem(d);
}
public Ellipsoid getEllipsoid() {
return (Ellipsoid) ellipsoidSet.getSelectedItem();
}
public void setEllipsoid(Ellipsoid e){
ellipsoidSet.setSelectedItem(e);
}
private void doClose(int retStatus) {
returnStatus = retStatus;
setVisible(false);
dispose();
}
public static final int RET_OK = 1;
public static final int RET_CANCEL = 0;
private int returnStatus = RET_CANCEL;
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton cancelButton;
private javax.swing.JComboBox coordSet;
private javax.swing.JComboBox datumSet;
private javax.swing.JComboBox ellipsoidSet;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JButton okButton;
// End of variables declaration//GEN-END:variables
private MappingToolkit toolkit ;
}
terraintool-1.12a.orig/src/mccombe/terrain/TerrainFrame.java 0000644 0001750 0001750 00000263434 11730137250 023610 0 ustar wookey wookey /*
* TerrainFrame.java
*
* Version 1.02 17th July 2009
* Fixes problems with parsing numbers in locales other than UK and US
*
* Please take time to read the licence terms below:-
*
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
* Created on 19 January 2008, 16:04
*/
package mccombe.terrain;
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.beans.*;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.TimeZone;
import java.util.concurrent.ExecutionException;
import javax.swing.Timer;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.SwingConstants;
import javax.swing.UnsupportedLookAndFeelException;
import mccombe.mapping.*;
import mccombe.util.*;
/**
*
* @author Mike
*/
public class TerrainFrame extends javax.swing.JFrame {
/**
* Creates new form TerrainFrame
*/
public TerrainFrame() {
initComponents();
try {
javax.swing.UIManager.setLookAndFeel(javax.swing.UIManager.getSystemLookAndFeelClassName());
} catch (UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
} catch (IllegalAccessException ex) {
ex.printStackTrace();
} catch (ClassNotFoundException ex) {
ex.printStackTrace();
} catch (InstantiationException ex) {
ex.printStackTrace();
}
// status bar initialization - message timeout, idle icon and busy animation, etc
int messageTimeout = 1000;
messageTimer = new Timer(messageTimeout, new ActionListener() {
public void actionPerformed(ActionEvent e) {
eraseMessage();
}
});
messageTimer.setRepeats(false);
int busyAnimationRate = 30;
for (int i = 0; i < busyIcons.length; i++) {
java.net.URL imageURL = TerrainFrame.class.getResource(String.format("images/busy-icon%d.png", i));
if (imageURL != null) {
busyIcons[i] = new ImageIcon(imageURL);
}
}
busyIconTimer = new Timer(busyAnimationRate, new ActionListener() {
public void actionPerformed(ActionEvent e) {
busyIconIndex = (busyIconIndex + 1) % busyIcons.length;
statusAnimationLabel.setIcon(busyIcons[busyIconIndex]);
}
});
java.net.URL imageURL = TerrainFrame.class.getResource("images/idle-icon.png");
if (imageURL != null) {
idleIcon = new ImageIcon(imageURL);
statusAnimationLabel.setIcon(idleIcon);
}
statusAnimationLabel.setVisible(true);
progressBar.setVisible(false);
// connecting action tasks to status bar via TaskMonitor
PropertyChangeListener listener = new java.beans.PropertyChangeListener() {
public void propertyChange(java.beans.PropertyChangeEvent evt) {
String propertyName = evt.getPropertyName();
String propertyValue = evt.getNewValue().toString();
if ("state".equalsIgnoreCase(propertyName)) {
if (propertyValue.equalsIgnoreCase("STARTED")) {
if (!busyIconTimer.isRunning()) {
statusAnimationLabel.setIcon(busyIcons[0]);
busyIconIndex = 0;
busyIconTimer.start();
processing = true;
}
progressBar.setVisible(true);
// progressBar.setIndeterminate(true);
} else if ("done".equalsIgnoreCase(propertyValue)) {
busyIconTimer.stop();
statusAnimationLabel.setIcon(idleIcon);
progressBar.setVisible(false);
progressBar.setValue(0);
processing = false;
}
} else if ("message".equals(propertyName)) {
String text = (String) (evt.getNewValue());
if (text == null || text.trim().length() == 0) {
eraseMessage();
return;
}
statusMessageLabel.setText(text);
messageTimer.restart();
} else if ("progress".equals(propertyName)) {
int value = (Integer) (evt.getNewValue());
progressBar.setIndeterminate(false);
progressBar.setValue(value);
} else if ("mouse".equals(propertyName)) {
XYZ point = (XYZ) evt.getNewValue();
if (point.equals(MosaicPanel.MOVED_OUT)) {
// statusMessageLabel.setText("");
gridrefdisplayed = false;
eraseMessage();
messageTimer.restart();
return;
}
if (processing) {
return;
}
gridrefdisplayed = true;
double east = e0 + wid * point.x();
double north = n0 + hgt * point.y();
double asl = point.z();
ENPair en = new ENPair(east, north);
try {
Projection project;
if (usedCentre instanceof UTM) {
int zone = ((UTM) usedCentre).getZone();
boolean northernHemisphere = ((UTM) usedCentre).getNorthernHemisphere();
project = (Projection) toolkit.makeCoordinateSystem(currentCoordType, en, zone, currentEllipsoid, currentDatum, northernHemisphere);
} else {
project = (Projection) toolkit.makeCoordinateSystem(currentCoordType, en, currentEllipsoid, currentDatum);
}
String heightString = "";
if (asl != SRTM2Reader.MISSING) {
heightString = String.format(" Z = %7.1fm", asl);
}
String text = project.toString() + heightString;
statusMessageLabel.setText(text);
messageTimer.restart();
} catch (Exception e) {
//Do nothing if an exception occurs in the toolkit
}
}
}
};
try {
if (useASTER.equalsIgnoreCase("aster")) {
reader = new ASTERReader(statusPanel);
asterMenuItem.getModel().setSelected(true);
legacyMenuItem.setEnabled(true);
} else if (useASTER.equalsIgnoreCase("both")) {
reader = new CompositeReader(statusPanel);
bothMenuItem.getModel().setSelected(true);
legacyMenuItem.setEnabled(true);
} else if (useASTER.equalsIgnoreCase("srtm")) {
reader = new SRTM2Reader(statusPanel); /////
srtmMenuItem.getModel().setSelected(true);
legacyMenuItem.setEnabled(false);
}
properties.set(TerrainProperties.ASTER, useASTER);
legacyMenuItem.getModel().setSelected(useLegacyASTER.equalsIgnoreCase("true"));
} catch (MissingDataFileException miss) {
InfoMessage error = new InfoMessage("Initialisation error", miss.getMessage(), Severity.FATAL);
error.display(this);
System.exit(0);
}
statusPanel.addPropertyChangeListener(listener);
pcs.addPropertyChangeListener(listener);
pcs.addPropertyChangeListener(mosaic.getPropertyChangeListener());
mosaic.addPropertyChangeListener(listener);
jPanel1.add(mosaic, BorderLayout.CENTER);
PropertyChangeListener[] readListen = reader.getPropertyChangeListeners();
for (PropertyChangeListener hear : readListen) {
pcs.addPropertyChangeListener(hear);
}
javax.swing.filechooser.FileNameExtensionFilter svxFilter = new javax.swing.filechooser.FileNameExtensionFilter("Survex raw survey data", "svx");
javax.swing.filechooser.FileNameExtensionFilter csvFilter = new javax.swing.filechooser.FileNameExtensionFilter("Comma-separated variables", "csv");
javax.swing.filechooser.FileNameExtensionFilter thFilter = new javax.swing.filechooser.FileNameExtensionFilter("Therion surface data", "th");
chooser.setAcceptAllFileFilterUsed(false);
chooser.addChoosableFileFilter(thFilter);
chooser.addChoosableFileFilter(csvFilter);
chooser.addChoosableFileFilter(svxFilter);
boolean auto = downloadSetting.equalsIgnoreCase("true");
autoDownloadMenuItem.setState(auto);
reader.setDownload(auto);
String datasource = properties.get(TerrainProperties.FTP);
if (datasource != null) {
properties.set(TerrainProperties.FTP, datasource); //Make sure data host appears in properties file
}
String t = properties.get(TerrainProperties.EW);
if (t != null) {
wid = Double.parseDouble(t);
}
t = properties.get(TerrainProperties.NS);
if (t != null) {
hgt = Double.parseDouble(t);
}
t = properties.get(TerrainProperties.SPACING);
if (t != null) {
spacing = Double.parseDouble(t);
}
this.addWindowListener(new MainFrameListener());
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
// //GEN-BEGIN:initComponents
private void initComponents() {
datasourceGroup = new javax.swing.ButtonGroup();
statusPanel = new javax.swing.JPanel();
statusAnimationLabel = new javax.swing.JLabel();
progressBar = new javax.swing.JProgressBar();
statusMessageLabel = new javax.swing.JLabel();
jSeparator1 = new javax.swing.JSeparator();
jPanel1 = new javax.swing.JPanel();
menuBar = new javax.swing.JMenuBar();
fileMenu = new javax.swing.JMenu();
createMenuItem = new javax.swing.JMenuItem();
latLongMenuItem = new javax.swing.JMenuItem();
saveAsMenuItem = new javax.swing.JMenuItem();
exitMenuItem = new javax.swing.JMenuItem();
optionsMenu = new javax.swing.JMenu();
coordMenuItem = new javax.swing.JMenuItem();
autoDownloadMenuItem = new javax.swing.JCheckBoxMenuItem();
regionMenuItem = new javax.swing.JMenuItem();
offsetMenuItem = new javax.swing.JMenuItem();
therionMenuItem = new javax.swing.JMenuItem();
jSeparator3 = new javax.swing.JSeparator();
srtmMenuItem = new javax.swing.JRadioButtonMenuItem();
asterMenuItem = new javax.swing.JRadioButtonMenuItem();
bothMenuItem = new javax.swing.JRadioButtonMenuItem();
jSeparator2 = new javax.swing.JPopupMenu.Separator();
legacyMenuItem = new javax.swing.JRadioButtonMenuItem();
helpMenu = new javax.swing.JMenu();
aboutMenuItem = new javax.swing.JMenuItem();
setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);
javax.swing.GroupLayout statusPanelLayout = new javax.swing.GroupLayout(statusPanel);
statusPanel.setLayout(statusPanelLayout);
statusPanelLayout.setHorizontalGroup(
statusPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, statusPanelLayout.createSequentialGroup()
.addContainerGap(220, Short.MAX_VALUE)
.addComponent(progressBar, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(statusAnimationLabel, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap())
.addComponent(jSeparator1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE)
.addGroup(statusPanelLayout.createSequentialGroup()
.addContainerGap()
.addComponent(statusMessageLabel)
.addContainerGap(390, Short.MAX_VALUE))
);
statusPanelLayout.setVerticalGroup(
statusPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(statusPanelLayout.createSequentialGroup()
.addComponent(jSeparator1, javax.swing.GroupLayout.PREFERRED_SIZE, 5, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(statusPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(progressBar, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(statusAnimationLabel, javax.swing.GroupLayout.DEFAULT_SIZE, 14, Short.MAX_VALUE)
.addComponent(statusMessageLabel))
.addContainerGap())
);
jPanel1.setLayout(new java.awt.BorderLayout());
fileMenu.setText("File");
fileMenu.setFont(fileMenu.getFont().deriveFont(fileMenu.getFont().getSize()-1f));
createMenuItem.setFont(createMenuItem.getFont().deriveFont(createMenuItem.getFont().getSize()-1f));
createMenuItem.setText("Create... ");
createMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
createMenuItemActionPerformed(evt);
}
});
fileMenu.add(createMenuItem);
latLongMenuItem.setFont(latLongMenuItem.getFont().deriveFont(latLongMenuItem.getFont().getSize()-1f));
latLongMenuItem.setText("Lat/Long...");
latLongMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
latLongMenuItemActionPerformed(evt);
}
});
fileMenu.add(latLongMenuItem);
saveAsMenuItem.setFont(saveAsMenuItem.getFont().deriveFont(saveAsMenuItem.getFont().getSize()-1f));
saveAsMenuItem.setText("Save As ... ");
saveAsMenuItem.setEnabled(false);
saveAsMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
saveAsMenuItemActionPerformed(evt);
}
});
fileMenu.add(saveAsMenuItem);
exitMenuItem.setFont(exitMenuItem.getFont().deriveFont(exitMenuItem.getFont().getSize()-1f));
exitMenuItem.setText("Exit");
exitMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
exitMenuItemActionPerformed(evt);
}
});
fileMenu.add(exitMenuItem);
menuBar.add(fileMenu);
optionsMenu.setText("Options");
optionsMenu.setFont(optionsMenu.getFont().deriveFont(optionsMenu.getFont().getSize()-1f));
coordMenuItem.setFont(coordMenuItem.getFont().deriveFont(coordMenuItem.getFont().getSize()-1f));
coordMenuItem.setText("Coordinates...");
coordMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
coordMenuItemActionPerformed(evt);
}
});
optionsMenu.add(coordMenuItem);
autoDownloadMenuItem.setFont(autoDownloadMenuItem.getFont().deriveFont(autoDownloadMenuItem.getFont().getSize()-1f));
autoDownloadMenuItem.setSelected(true);
autoDownloadMenuItem.setText("Auto Download ");
autoDownloadMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
autoDownloadMenuItemActionPerformed(evt);
}
});
optionsMenu.add(autoDownloadMenuItem);
regionMenuItem.setText("Region...");
regionMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
regionMenuItemActionPerformed(evt);
}
});
optionsMenu.add(regionMenuItem);
offsetMenuItem.setText("Offset...");
offsetMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
offsetMenuItemActionPerformed(evt);
}
});
optionsMenu.add(offsetMenuItem);
therionMenuItem.setText("Therion...");
therionMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
therionMenuItemActionPerformed(evt);
}
});
optionsMenu.add(therionMenuItem);
optionsMenu.add(jSeparator3);
datasourceGroup.add(srtmMenuItem);
srtmMenuItem.setSelected(true);
srtmMenuItem.setText("SRTM Only");
srtmMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
srtmMenuItemActionPerformed(evt);
}
});
optionsMenu.add(srtmMenuItem);
datasourceGroup.add(asterMenuItem);
asterMenuItem.setText("ASTER Only");
asterMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
asterMenuItemActionPerformed(evt);
}
});
optionsMenu.add(asterMenuItem);
datasourceGroup.add(bothMenuItem);
bothMenuItem.setText("SRTM plus ASTER");
bothMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
bothMenuItemActionPerformed(evt);
}
});
optionsMenu.add(bothMenuItem);
optionsMenu.add(jSeparator2);
legacyMenuItem.setText("Legacy ASTER Data");
legacyMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
legacyMenuItemActionPerformed(evt);
}
});
optionsMenu.add(legacyMenuItem);
menuBar.add(optionsMenu);
helpMenu.setText("Help");
helpMenu.setFont(helpMenu.getFont().deriveFont(helpMenu.getFont().getSize()-1f));
aboutMenuItem.setFont(aboutMenuItem.getFont().deriveFont(aboutMenuItem.getFont().getSize()-1f));
aboutMenuItem.setText("About ");
aboutMenuItem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
aboutMenuItemActionPerformed(evt);
}
});
helpMenu.add(aboutMenuItem);
menuBar.add(helpMenu);
setJMenuBar(menuBar);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(statusPanel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jPanel1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, 237, Short.MAX_VALUE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(statusPanel, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
);
pack();
}// //GEN-END:initComponents
private void exitMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_exitMenuItemActionPerformed
doExit();
}//GEN-LAST:event_exitMenuItemActionPerformed
private void createMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_createMenuItemActionPerformed
reader.resetCounts();
dlg.setGridRef(currentGridRef);
dlg.setcoordName(currentCoordType);
dlg.setExample("e.g. " + toolkit.getExample(currentCoordType));
dlg.setNS(String.format("%13.2f", hgt));
dlg.setEW(String.format("%13.2f", wid));
dlg.setSpacing(String.format("%13.2f", spacing));
dlg.setAlignment(alignment);
dlg.setVisible(true);
try {
if (dlg.getReturnStatus() == LocationDialog.RET_OK) {
currentGridRef = dlg.getGridRef();
properties.set(TerrainProperties.GRIDREF, currentGridRef);
wid = parseDouble(dlg.getEW());
hgt = parseDouble(dlg.getNS());
northSouthAlignment = dlg.getNSAlignment();
eastWestAlignment = dlg.getEWAlignment();
alignment = dlg.getAlignment();
properties.set(TerrainProperties.ALIGNMENT, String.format(java.util.Locale.UK, "%d", alignment));
spacing = parseDouble(dlg.getSpacing());
properties.set(TerrainProperties.EW, String.format(java.util.Locale.UK, "%10.2f", wid));
properties.set(TerrainProperties.SPACING, String.format(java.util.Locale.UK, "%10.2f", spacing));
properties.set(TerrainProperties.NS, String.format(java.util.Locale.UK, "%10.2f", hgt));
properties.set(TerrainProperties.REGION, region);
if (properties.get(TerrainProperties.ASTER).equalsIgnoreCase("aster")) {
reader = new ASTERReader(statusPanel);
containsASTER = true;
} else if (properties.get(TerrainProperties.ASTER).equalsIgnoreCase("both")) {
reader = new CompositeReader(statusPanel);
} else if (properties.get(TerrainProperties.ASTER).equalsIgnoreCase("srtm")) {
reader = new SRTM2Reader(statusPanel); /////
containsASTER = false;
}
String leg = properties.get(TerrainProperties.LEGACYASTER);
boolean v1 = leg.equalsIgnoreCase("true");
reader.setLegacy(v1);
CreateResults worker = new CreateResults();
PropertyChangeListener[] listeners = statusPanel.getPropertyChangeListeners();
for (PropertyChangeListener ear : listeners) {
worker.addPropertyChangeListener(ear);
}
worker.execute();
}
} catch (java.text.ParseException ex) {
String[] text = {ex.getClass().getName(), ex.getMessage()};
InfoMessage msg = new InfoMessage("Format error in numerical value", text, Severity.ERROR);
msg.display(this);
return;
} catch (MissingDataFileException miss) {
InfoMessage error = new InfoMessage("Initialisation error", miss.getMessage(), Severity.FATAL);
error.display(this);
System.exit(0);
}
}//GEN-LAST:event_createMenuItemActionPerformed
private void coordMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_coordMenuItemActionPerformed
currentCoordType = properties.get(TerrainProperties.COORD);
currentDatum = toolkit.getDatum(properties.get(TerrainProperties.DATUM));
currentEllipsoid = toolkit.getEllipsoid(properties.get(TerrainProperties.ELLIPSOID));
coordset.setSelectedCoordType(currentCoordType);
coordset.setEllipsoid(currentEllipsoid);
coordset.setDatum(currentDatum);
coordset.setVisible(true);
if (coordset.getReturnStatus() == CoordinateDialog.RET_OK) {
currentDatum = coordset.getDatum();
currentEllipsoid = coordset.getEllipsoid();
currentCoordType = coordset.getProjection();
properties.set(TerrainProperties.ELLIPSOID, currentEllipsoid.toString());
properties.set(TerrainProperties.DATUM, currentDatum.toString());
properties.set(TerrainProperties.COORD, currentCoordType);
properties.set(TerrainProperties.EXAMPLE, coordset.getExample());
try {
Projection latest = (Projection) toolkit.makeCoordinateSystem(currentCoordType, currentPosition(), currentEllipsoid, currentDatum);
String tempGridRef = latest.toString();
currentGridRef = tempGridRef;
properties.set(TerrainProperties.GRIDREF, currentGridRef);
return;
} catch (Exception ex) {
String[] text = {ex.getClass().getName(), ex.getMessage()};
InfoMessage msg = new InfoMessage("Failed to set coordinate type", text, Severity.ERROR);
msg.display(this);
return;
}
}
}//GEN-LAST:event_coordMenuItemActionPerformed
private void saveAsMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_saveAsMenuItemActionPerformed
int result = chooser.showOpenDialog(mainFrame);
if (result == javax.swing.JFileChooser.APPROVE_OPTION) {
Saver worker = new Saver();
PropertyChangeListener[] listeners = statusPanel.getPropertyChangeListeners();
for (PropertyChangeListener ear : listeners) {
worker.addPropertyChangeListener(ear);
}
worker.execute();
}
}//GEN-LAST:event_saveAsMenuItemActionPerformed
private void autoDownloadMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_autoDownloadMenuItemActionPerformed
String newValue = "false";
if (autoDownloadMenuItem.getState()) {
newValue = "true";
}
properties.set(TerrainProperties.AUTO, newValue);
setDownload(newValue);
downloadSetting = newValue;
}//GEN-LAST:event_autoDownloadMenuItemActionPerformed
private void regionMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_regionMenuItemActionPerformed
// String region = properties.get(TerrainProperties.REGION);
RegionSelect reg = new RegionSelect(this, true);
reg.select(region);
reg.setVisible(true);
if (reg.getReturnStatus() == RegionSelect.RET_OK) {
String newRegion = reg.getSelection();
if (!region.equalsIgnoreCase(newRegion)) {
properties.set(TerrainProperties.REGION, newRegion);
region = newRegion;
}
}
}//GEN-LAST:event_regionMenuItemActionPerformed
private void aboutMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_aboutMenuItemActionPerformed
AboutDialog box = new AboutDialog(this, true);
box.setVersion(versionID);
java.util.Calendar cal = java.util.Calendar.getInstance(TimeZone.getTimeZone("GMT"), java.util.Locale.UK);
cal.clear();
cal.set(BUILDYEAR, BUILDMONTH - 1, BUILDDAY);
String dateString = String.format("%1$Te-%1$tB-%1$TY", cal);
box.setDate(dateString);
box.setVisible(true);
}//GEN-LAST:event_aboutMenuItemActionPerformed
private void offsetMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_offsetMenuItemActionPerformed
OffsetDialog off = new OffsetDialog(this, true, eastOffset, northOffset, heightOffset);
off.setVisible(true);
if (off.getReturnStatus() == OffsetDialog.RET_OK) {
eastOffset = off.getEastOffset();
northOffset = off.getNorthOffset();
heightOffset = off.getHeightOffset();
properties.set(TerrainProperties.EASTOFFSET, String.format(java.util.Locale.UK, "%11.1f", eastOffset));
properties.set(TerrainProperties.NORTHOFFSET, String.format(java.util.Locale.UK, "%11.1f", northOffset));
properties.set(TerrainProperties.HEIGHTOFFSET, String.format(java.util.Locale.UK, "%11.1f", heightOffset));
}
}//GEN-LAST:event_offsetMenuItemActionPerformed
private void latLongMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_latLongMenuItemActionPerformed
latlondialog.setPosition(currentPosition());
latlondialog.setVisible(true);
if (latlondialog.getReturnStatus() == LatLongDialog.RET_CANCEL) {
return;
}
setCurrentPosition(latlondialog.getPosition());
try {
currentGridRef = "";
Projection newPoint = (Projection) toolkit.makeCoordinateSystem(currentCoordType, currentPosition(), currentEllipsoid, currentDatum);
currentGridRef = newPoint.toString();
} catch (NoSuchMethodException ex) {
} catch (GridFormatException ex) {
} catch (IllegalAccessException ex) {
} catch (IllegalArgumentException ex) {
} catch (InvocationTargetException ex) {
} catch (InstantiationException ex) {
}
}//GEN-LAST:event_latLongMenuItemActionPerformed
private void srtmMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_srtmMenuItemActionPerformed
if (srtmMenuItem.getModel().isSelected()) {
properties.set(TerrainProperties.ASTER, "srtm");
autoDownloadMenuItem.setEnabled(true);
legacyMenuItem.setEnabled(false);
}
}//GEN-LAST:event_srtmMenuItemActionPerformed
private void asterMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_asterMenuItemActionPerformed
if (asterMenuItem.getModel().isSelected()) {
properties.set(TerrainProperties.ASTER, "aster");
autoDownloadMenuItem.setEnabled(false);
legacyMenuItem.setEnabled(true);
}
}//GEN-LAST:event_asterMenuItemActionPerformed
private void bothMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_bothMenuItemActionPerformed
if (bothMenuItem.getModel().isSelected()) {
properties.set(TerrainProperties.ASTER, "both");
autoDownloadMenuItem.setEnabled(true);
legacyMenuItem.setEnabled(true);
}
}//GEN-LAST:event_bothMenuItemActionPerformed
private void therionMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_therionMenuItemActionPerformed
TherionCSDialog tdlg = new TherionCSDialog(this, true);
coordSystemString = properties.get(TerrainProperties.THERIONCS);
tdlg.setCSName(coordSystemString);
tdlg.setVisible(true);
if (tdlg.getReturnStatus() == TherionCSDialog.RET_OK) {
coordSystemString = tdlg.getCSName();
properties.set(TerrainProperties.THERIONCS, coordSystemString);
}
}//GEN-LAST:event_therionMenuItemActionPerformed
private void legacyMenuItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_legacyMenuItemActionPerformed
String res = "false";
if (legacyMenuItem.getModel().isSelected()) {
res = "true";
}
properties.set(TerrainProperties.LEGACYASTER, res);
}//GEN-LAST:event_legacyMenuItemActionPerformed
private Position currentPosition() {
return currentLocation.getPosition();
}
/*
* Parse a String for a double value using the current locale
*/
private double parseDouble(String s) throws java.text.ParseException {
java.text.NumberFormat nf = java.text.NumberFormat.getInstance();
return nf.parse(s.trim()).doubleValue();
}
private void setCurrentPosition(Position pos) {
currentLocation = new Spherical(pos, Ellipsoid.GRS80, Datum.WGS_1984);
LatLong latlon = currentLocation.toLatLong();
double lat = latlon.lat();
double lon = latlon.lon();
String latstr = String.format(java.util.Locale.UK, "%15.10f", lat);
String lonstr = String.format(java.util.Locale.UK, "%15.10f", lon);
properties.set(TerrainProperties.LAT, latstr);
properties.set(TerrainProperties.LON, lonstr);
}
public String getAutodownload() {
return downloadSetting;
}
public void setAutodownload(String flag) {
this.pcs.firePropertyChange("autodownload", downloadSetting, flag);
downloadSetting = flag;
}
private void eraseMessage() {
if (!gridrefdisplayed) {
statusMessageLabel.setText("");
messageTimer.restart();
}
}
private class CreateResults extends javax.swing.SwingWorker {
public InfoMessage doInBackground() {
try {
currentEllipsoid = toolkit.getEllipsoid(properties.get(TerrainProperties.ELLIPSOID));
currentDatum = toolkit.getDatum(properties.get(TerrainProperties.DATUM));
Projection startPoint = (Projection) toolkit.makeCoordinateSystem(currentCoordType, currentGridRef, currentEllipsoid, currentDatum);
ENPair en1 = startPoint.toEN();
if (eastWestAlignment == SwingConstants.LEFT) {
e0 = en1.east();
} else if (eastWestAlignment == SwingConstants.RIGHT) {
e0 = en1.east() - wid;
} else {
e0 = en1.east() - wid / 2.0;
}
if (northSouthAlignment == SwingConstants.BOTTOM) {
n0 = en1.north();
} else if (northSouthAlignment == SwingConstants.TOP) {
n0 = en1.north() - hgt;
} else {
n0 = en1.north() - hgt / 2.0;
}
ENPair en2 = new ENPair(e0 + wid / 2.0, n0 + hgt / 2.0);
int zone = 0;
boolean northernHemisphere = true;
if (startPoint instanceof UTM) {
zone = ((UTM) startPoint).getZone();
northernHemisphere = ((UTM) startPoint).getNorthernHemisphere();
usedCentre = (Projection) toolkit.makeCoordinateSystem(currentCoordType, en2, zone, currentEllipsoid, currentDatum, northernHemisphere);
} else {
usedCentre = (Projection) toolkit.makeCoordinateSystem(currentCoordType, en2, currentEllipsoid, currentDatum);
}
setCurrentPosition(startPoint.getPosition());
int xpoints = (int) (wid / spacing);
int ypoints = (int) (hgt / spacing);
resultsTable = new float[ypoints][xpoints];
long totpoints = xpoints * ypoints;
long donepoints = 0;
Projection point;
for (int j = ypoints - 1; j >= 0; j--) {
for (int i = 0; i < xpoints; i++) {
double x = e0 + i * spacing;
double y = n0 + j * spacing;
ENPair en = new ENPair(x, y);
String type = startPoint.getName();
if (startPoint instanceof UTM) {
point = (Projection) toolkit.makeCoordinateSystem(type, en, zone, currentEllipsoid, currentDatum, northernHemisphere);
} else {
point = (Projection) toolkit.makeCoordinateSystem(type, en, currentEllipsoid, currentDatum);
}
Position q = point.getPosition();
Spherical t = new Spherical(q, Ellipsoid.GRS80, Datum.WGS_1984);
LatLong latlon = t.toLatLong();
resultsTable[j][i] = (float) reader.getHeight(latlon);
donepoints++;
int percentdone = (int) ((donepoints * 100) / totpoints);
setProgress(percentdone);
}
}
double hitrate = (double) reader.hits() / (double) reader.tries();
String[] message = {String.format("Calculated %d points", reader.resultcount()),
String.format("Encountered %d missng data points", reader.missing()),
String.format("Cache hit-rate = %6.2f%%", hitrate * 100.0)
};
return new InfoMessage("Calculation complete", message, Severity.SUCCESS);
} catch (Exception ex) {
String[] msg = {"Unable to retrieve height data", ex.getClass().getName(), ex.getMessage()};
return new InfoMessage("Failed", msg, Severity.FATAL);
}
}
@Override
protected void done() {
try {
InfoMessage message = get();
unsaved = message.getSeverity() == Severity.SUCCESS;
//Save info about the Coordinates, in case the user changes CoordinateSystem
usedEllipsoid = currentEllipsoid;
usedDatum = currentDatum;
usedType = currentCoordType;
saveAsMenuItem.setEnabled(unsaved);
if (unsaved) {
mosaic.setDataTable(resultsTable);
}
mosaic.repaint();
message.display(mainFrame);
} catch (InterruptedException ex) {
} catch (ExecutionException ex) {
}
}
private void setMessage(String msg) {
firePropertyChange("message", lastMessage, msg);
lastMessage = msg;
}
private String lastMessage = "";
}
private class Saver extends javax.swing.SwingWorker {
public InfoMessage doInBackground() {
try {
extDefault = ((javax.swing.filechooser.FileNameExtensionFilter) (chooser.getFileFilter())).getExtensions()[0];
} catch (ClassCastException e) {
InfoMessage msg = new InfoMessage("Error", "Unsupported file type ", Severity.ERROR);
return msg;
}
String ext = "";
java.io.File outfile = chooser.getSelectedFile();
try {
String name = outfile.getCanonicalPath();
int j = name.lastIndexOf(".");
if (j < 0) {
name += "." + extDefault;
outfile = new java.io.File(name);
ext = extDefault;
} else {
ext = name.substring(j + 1);
}
if (outfile.isFile()) {
String s = String.format("File %s already exists. Do you want to overwrite it?", name);
int response = javax.swing.JOptionPane.showConfirmDialog(mainFrame, s, "Confirm Overwrite", javax.swing.JOptionPane.YES_NO_OPTION, javax.swing.JOptionPane.QUESTION_MESSAGE);
if (response == javax.swing.JOptionPane.NO_OPTION) {
return new InfoMessage("User abort", "Operation cancelled by user", Severity.SUCCESS);
}
}
java.io.PrintWriter out = new java.io.PrintWriter(outfile);
int ypoints = resultsTable.length;
int xpoints = resultsTable[0].length;
String saveMessage = String.format("Saving %s", outfile.getCanonicalPath());
setMessage(saveMessage);
java.util.Locale locale = java.util.Locale.UK;
if (ext.equalsIgnoreCase("svx")) {
//Create a Survex data file
//Generate comments containing info about the projection etc.
out.printf(locale, "; Survex terrain data created by TerrainTool version %s from %s data%n", versionID, reader.datasetName());
out.printf(locale, "; %s%n", reader.copyright());
out.printf(locale, "; Used coordinate system %s with ellipsoid \"%s\" and datum \"%s\"%n", usedType, usedEllipsoid.toString(), usedDatum.toString());
Position pt = usedCentre.getPosition();
Spherical sp = new Spherical(pt, Ellipsoid.GRS80, Datum.WGS_1984);
out.printf(locale, "; Grid centred at %s%n", usedCentre);
LatLong latlon = sp.toLatLong();
double lat = latlon.lat();
double lon = latlon.lon();
out.printf(locale, "; Lat/Long of centre = %s (%s %s) relative to WGS84/GRS80 datum%n", sp.toLatLongString(), LatLong.toDMS(lon, "EW"), LatLong.toDMS(lat, "NS"));
if (usedCentre instanceof TransverseMercator) {
double gc = Math.toDegrees(((TransverseMercator) usedCentre).gridConvergence());
out.printf(locale, "; Grid convergence at centre = %7.3f degrees (%s)%n", gc, LatLong.toDMS(gc, "EW"));
out.printf(locale, "; Point scale factor at centre = %10.7f%n", ((TransverseMercator) usedCentre).pointScaleFactor());
} else if (usedCentre instanceof Orthomorphic) {
double gc = Math.toDegrees(((Orthomorphic) usedCentre).gridConvergence());
out.printf(locale, "; Grid convergence at centre = %7.3f degrees (%s)%n", gc, LatLong.toDMS(gc, "EW"));
}
if (eastOffset != 0.0 || northOffset != 0 || heightOffset != 0) {
out.printf(locale, "; Output offset by adding (%10.2f,%10.2f,%8.2f) to calculated results", eastOffset, northOffset, heightOffset);
}
out.printf(";%n; TerrainTool (c) 2008 - 2012 Mike McCombe %n");
out.printf(";%n");
long toBeDone = 2 * ypoints + xpoints;
long doneSoFar = 0;
int q0 = name.lastIndexOf(java.io.File.separator);
String p0 = name.substring(q0 + 1);
int q1 = p0.indexOf(".");
String p1 = p0.substring(0, q1);
out.printf("*BEGIN %s%n", p1);
for (int k = 0; k < ypoints; k++) {
for (int i = 0; i < xpoints; i++) {
out.printf(locale, "*FIX N%dE%d %10.1f %10.1f %8.2f%n", k, i,
eastOffset + e0 + i * spacing,
northOffset + n0 + k * spacing,
heightOffset + resultsTable[k][i]);
}
doneSoFar++;
reportProgress(toBeDone, doneSoFar);
}
out.printf("*DATA nosurvey station%n");
out.printf("*FLAGS surface%n");
boolean broken = true;
for (int k = 0; k < ypoints; k++) {
for (int i = 0; i < xpoints; i++) {
if (resultsTable[k][i] != SRTM2Reader.MISSING) {
out.printf(locale, "N%dE%d %n", k, i);
broken = false;
} else if (!broken) {
out.printf("%n");
broken = true;
}
}
out.printf("%n");
doneSoFar++;
reportProgress(toBeDone, doneSoFar);
broken = true;
}
for (int i = 0; i < xpoints; i++) {
for (int k = 0; k < ypoints; k++) {
if (resultsTable[k][i] != SRTM2Reader.MISSING) {
out.printf(locale, "N%dE%d %n", k, i);
broken = false;
} else if (!broken) {
out.printf("%n");
broken = true;
}
}
out.printf("%n");
doneSoFar++;
reportProgress(toBeDone, doneSoFar);
}
out.printf("*END %s%n", p1);
out.close();
} else if (ext.equalsIgnoreCase("csv")) {
out.printf(locale, "%6d,", ypoints);
for (int i = 0; i < xpoints - 1; i++) {
out.printf(locale, "%10.2f,", e0 + i * spacing);
}
out.printf(locale, "%10.2f%n", eastOffset + e0 + (xpoints - 1) * spacing);
long toBeDone = ypoints;
long doneSoFar = 0;
for (int k = 0; k < ypoints; k++) {
out.printf(locale, "%10.2f,", northOffset + n0 + k * spacing);
for (int i = 0; i < xpoints - 1; i++) {
out.printf(locale, "%10.2f,", heightOffset + resultsTable[k][i]);
}
out.printf(locale, "%10.2f%n", resultsTable[k][xpoints - 1]);
doneSoFar++;
reportProgress(toBeDone, doneSoFar);
}
out.close();
} else if (ext.equalsIgnoreCase("th")) {
//Generate comments containing info about the projection etc.
out.printf(locale, "# Therion terrain data created by TerrainTool version %s from %s data%n", versionID, reader.datasetName());
out.printf(locale, "# %s%n", reader.copyright());
out.printf(locale, "# Used coordinate system %s with ellipsoid \"%s\" and datum \"%s\"%n", usedType, usedEllipsoid.toString(), usedDatum.toString());
Position pt = usedCentre.getPosition();
Spherical sp = new Spherical(pt, Ellipsoid.GRS80, Datum.WGS_1984);
out.printf(locale, "# Grid centred at %s%n", usedCentre);
LatLong latlon = sp.toLatLong();
double lat = latlon.lat();
double lon = latlon.lon();
out.printf(locale, "# Lat/Long of centre = %s (%s %s) relative to WGS84/GRS80 datum%n", sp.toLatLongString(), LatLong.toDMS(lon, "EW"), LatLong.toDMS(lat, "NS"));
if (usedCentre instanceof TransverseMercator) {
double gc = Math.toDegrees(((TransverseMercator) usedCentre).gridConvergence());
out.printf(locale, "# Grid convergence at centre = %7.3f degrees (%s)%n", gc, LatLong.toDMS(gc, "EW"));
out.printf(locale, "# Point scale factor at centre = %10.7f%n", ((TransverseMercator) usedCentre).pointScaleFactor());
} else if (usedCentre instanceof Orthomorphic) {
double gc = Math.toDegrees(((Orthomorphic) usedCentre).gridConvergence());
out.printf(locale, "# Grid convergence at centre = %7.3f degrees (%s)%n", gc, LatLong.toDMS(gc, "EW"));
}
if (eastOffset != 0.0 || northOffset != 0 || heightOffset != 0) {
out.printf(locale, "# Output offset by adding (%10.2f,%10.2f,%8.2f) to calculated results", eastOffset, northOffset, heightOffset);
}
out.printf("#%n# TerrainTool (c) 2008 - 2012 Mike McCombe %n");
out.printf("#%n");
out.println("surface");
out.printf(locale, "cs %s%n", coordSystemString);
out.println("grid-units meter");
out.printf(locale, "grid %10.2f %10.2f %.2f %.2f %d %d%n", e0 + eastOffset, n0 + northOffset, spacing, spacing, xpoints, ypoints);
long toBeDone = ypoints;
long doneSoFar = 0;
for (int k = ypoints - 1; k >= 0; k--) {
for (int i = 0; i < xpoints - 1; i++) {
out.printf(locale, "%10.2f ", heightOffset + resultsTable[k][i]);
}
out.printf(locale, "%10.2f%n", resultsTable[k][xpoints - 1]);
doneSoFar++;
reportProgress(toBeDone, doneSoFar);
}
out.println("endsurface");
out.close();
} else {
InfoMessage msg = new InfoMessage("Error", "Unsupported file type \"" + ext + "\"", Severity.ERROR);
return msg;
}
setMessage("Done");
return new InfoMessage("Operation complete", "File saved", Severity.SUCCESS);
} catch (IOException e) {
InfoMessage msg = new InfoMessage("I/O Exception", e.toString(), Severity.ERROR);
return msg;
}
}
private void setMessage(String msg) {
firePropertyChange("message", lastMessage, msg);
lastMessage = msg;
}
private void reportProgress(long toDo, long doneSoFar) {
int percent = (int) (doneSoFar * 100 / toDo);
setProgress(percent);
}
@Override
protected void done() {
progressBar.setVisible(false);
progressBar.setValue(0);
try {
InfoMessage message = get();
if (message.getSeverity() != Severity.SUCCESS) {
message.display(mainFrame);
}
unsaved = false;
} catch (InterruptedException ex) {
/// Logger.getLogger(SRTMView.class.getName()).log(Level.SEVERE, null, ex);
} catch (ExecutionException ex) {
/// Logger.getLogger(SRTMView.class.getName()).log(Level.SEVERE, null, ex);
}
}
private String extDefault;
}
private class MainFrameListener extends WindowAdapter {
@Override
public void windowClosing(WindowEvent e) {
doExit();
}
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
try {
TerrainFrame frame = new TerrainFrame();
frame.setVisible(true);
} catch (Exception e) {
if (!TerrainFrame.properties.isValid()) {
System.out.println("Fatal - failed to create properties file");
} else {
System.out.println("Unexpected fatal exception during initialisation");
System.out.println(e);
System.exit(0);
}
}
}
});
}
public void doExit() {
try {
if (unsaved) {
String[] message = {"The terrain data has not been saved", "Do you still wish to exit?"};
int retValue = javax.swing.JOptionPane.showConfirmDialog(mainFrame, message, "Warning", javax.swing.JOptionPane.OK_CANCEL_OPTION, javax.swing.JOptionPane.WARNING_MESSAGE);
okToExit = (retValue == javax.swing.JOptionPane.OK_OPTION);
if (!okToExit) {
return;
}
}
properties.save();
} catch (IOException ex) {
//if the properties file can't be updated, too bad!
}
System.exit(0);
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JMenuItem aboutMenuItem;
private javax.swing.JRadioButtonMenuItem asterMenuItem;
private javax.swing.JCheckBoxMenuItem autoDownloadMenuItem;
private javax.swing.JRadioButtonMenuItem bothMenuItem;
private javax.swing.JMenuItem coordMenuItem;
private javax.swing.JMenuItem createMenuItem;
private javax.swing.ButtonGroup datasourceGroup;
private javax.swing.JMenuItem exitMenuItem;
private javax.swing.JMenu fileMenu;
private javax.swing.JMenu helpMenu;
private javax.swing.JPanel jPanel1;
private javax.swing.JSeparator jSeparator1;
private javax.swing.JPopupMenu.Separator jSeparator2;
private javax.swing.JSeparator jSeparator3;
private javax.swing.JMenuItem latLongMenuItem;
private javax.swing.JRadioButtonMenuItem legacyMenuItem;
private javax.swing.JMenuBar menuBar;
private javax.swing.JMenuItem offsetMenuItem;
private javax.swing.JMenu optionsMenu;
private javax.swing.JProgressBar progressBar;
private javax.swing.JMenuItem regionMenuItem;
private javax.swing.JMenuItem saveAsMenuItem;
private javax.swing.JRadioButtonMenuItem srtmMenuItem;
private javax.swing.JLabel statusAnimationLabel;
private javax.swing.JLabel statusMessageLabel;
private javax.swing.JPanel statusPanel;
private javax.swing.JMenuItem therionMenuItem;
// End of variables declaration//GEN-END:variables
/*
* Pathnames object to point to properties file and data cache
*
*/
protected static Pathnames paths = new DefaultPathnames(); //Change this class to achieve os-specific behaviour
private final Timer messageTimer;
private final Timer busyIconTimer;
private Icon idleIcon = null;
private final Icon[] busyIcons = new Icon[15];
private int busyIconIndex = 0;
private JDialog aboutBox;
/// private SRTM2Reader reader = null; /////
private DEMReader reader = null; /////
private float[][] resultsTable = null;
private double e0, n0;
private double wid = Double.parseDouble(properties.get(TerrainProperties.EW));
private double hgt = Double.parseDouble(properties.get(TerrainProperties.NS));
private double spacing = Double.parseDouble(properties.get(TerrainProperties.SPACING));
private Projection usedCentre;
private String usedType = "";
private Ellipsoid usedEllipsoid;
private Datum usedDatum;
private javax.swing.JFileChooser chooser = new javax.swing.JFileChooser();
private MappingToolkit toolkit = new MappingToolkit();
private CoordinateDialog coordset = new CoordinateDialog(this, true, toolkit);
private String lastMessage = "";
private boolean unsaved = false;
private boolean okToExit = true;
private JFrame mainFrame = this;
private static final DefaultProperties defaults = new DefaultProperties();
public static PropertySet properties = new PropertySet(paths.propertiesPath(), defaults);
private String downloadSetting = properties.get(TerrainProperties.AUTO);
private String region = properties.get(TerrainProperties.REGION);
private String currentGridRef = properties.get(TerrainProperties.GRIDREF);
private String useLegacyASTER = properties.get(TerrainProperties.LEGACYASTER);
private MosaicPanel mosaic = new MosaicPanel();
private double currentLatitude = Double.parseDouble(properties.get(TerrainProperties.LAT));
private double currentLongitude = Double.parseDouble(properties.get(TerrainProperties.LON));
private Spherical currentLocation = new Spherical(new LatLong(currentLatitude, currentLongitude), Ellipsoid.GRS80, Datum.WGS_1984);
// private Position currentPosition = currentLocation.getPosition();
private Ellipsoid currentEllipsoid = toolkit.getEllipsoid(properties.get(TerrainProperties.ELLIPSOID));
private Datum currentDatum = toolkit.getDatum(properties.get(TerrainProperties.DATUM));
private String currentCoordType = properties.get(TerrainProperties.COORD);
private LocationDialog dlg = new LocationDialog(this, true, toolkit, properties);
private double eastOffset = Double.parseDouble(properties.get(TerrainProperties.EASTOFFSET));
private double northOffset = Double.parseDouble(properties.get(TerrainProperties.NORTHOFFSET));
private double heightOffset = Double.parseDouble(properties.get(TerrainProperties.HEIGHTOFFSET));
PropertyChangeSupport pcs = new PropertyChangeSupport(this);
private boolean gridrefdisplayed = false;
private boolean processing = false;
private int northSouthAlignment = SwingConstants.BOTTOM;
private int eastWestAlignment = SwingConstants.LEFT;
private int alignment = Integer.parseInt(properties.get(TerrainProperties.ALIGNMENT));
private LatLongDialog latlondialog = new LatLongDialog(this, true, toolkit, currentLocation);
private boolean allowDataChoice = true;
private String useASTER = properties.get(TerrainProperties.ASTER);
private String coordSystemString = properties.get(TerrainProperties.THERIONCS);
private boolean containsASTER = false;
/*
* Version information
*/
private static final String versionID = "1.12a"; // Version 1.12a 14th March 2012
private static final int BUILDYEAR = 2012;
private static final int BUILDMONTH = 3;
private static final int BUILDDAY = 14;
/**
* Holds value of property download.
*/
private String download;
/**
* Adds a PropertyChangeListener to the listener list.
*
* @param l The listener to add.
*/
public void addPropertyChangeListener(java.beans.PropertyChangeListener l) {
pcs.addPropertyChangeListener(l);
}
/**
* Removes a PropertyChangeListener from the listener list.
*
* @param l The listener to remove.
*/
public void removePropertyChangeListener(java.beans.PropertyChangeListener l) {
pcs.removePropertyChangeListener(l);
}
/**
* Getter for property download.
*
* @return Value of property download.
*/
public String getDownload() {
return this.download;
}
/**
* Setter for property download.
*
* @param download New value of property download.
*/
public void setDownload(String download) {
String oldDownload = this.download;
this.download = download;
pcs.firePropertyChange("download", oldDownload, download);
}
}
terraintool-1.12a.orig/src/mccombe/terrain/RegionSelect.java 0000644 0001750 0001750 00000013307 11730070706 023606 0 ustar wookey wookey /*
* RegionSelect.java
*
* Created on 20 January 2008, 17:07
*/
package mccombe.terrain;
/**
*
* @author Mike
*/
public class RegionSelect extends javax.swing.JDialog {
/** A return status code - returned if Cancel button has been pressed */
public static final int RET_CANCEL = 0;
/** A return status code - returned if OK button has been pressed */
public static final int RET_OK = 1;
/** Creates new form RegionSelect */
public RegionSelect(java.awt.Frame parent, boolean modal) {
super(parent, modal);
initComponents();
}
/** @return the return status of this dialog - one of RET_OK or RET_CANCEL */
public int getReturnStatus() {
return returnStatus;
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// //GEN-BEGIN:initComponents
private void initComponents() {
okButton = new javax.swing.JButton();
cancelButton = new javax.swing.JButton();
regionSet = new javax.swing.JComboBox();
setTitle("Select data region");
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
closeDialog(evt);
}
});
okButton.setText("OK");
okButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
okButtonActionPerformed(evt);
}
});
cancelButton.setText("Cancel");
cancelButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cancelButtonActionPerformed(evt);
}
});
regionSet.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Africa", "Australia", "Eurasia", "North_America", "South_America", "Islands" }));
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(27, 27, 27)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(regionSet, javax.swing.GroupLayout.PREFERRED_SIZE, 160, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(layout.createSequentialGroup()
.addComponent(cancelButton)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, 67, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap(22, Short.MAX_VALUE))
);
layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {cancelButton, okButton});
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(19, 19, 19)
.addComponent(regionSet, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(42, 42, 42)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(cancelButton)
.addComponent(okButton))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
pack();
}// //GEN-END:initComponents
private void okButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okButtonActionPerformed
doClose(RET_OK);
}//GEN-LAST:event_okButtonActionPerformed
private void cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cancelButtonActionPerformed
doClose(RET_CANCEL);
}//GEN-LAST:event_cancelButtonActionPerformed
/** Closes the dialog */
private void closeDialog(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_closeDialog
doClose(RET_CANCEL);
}//GEN-LAST:event_closeDialog
private void doClose(int retStatus) {
returnStatus = retStatus;
setVisible(false);
dispose();
}
public String getSelection(){
return (String)regionSet.getSelectedItem();
}
public void select(String region){
regionSet.setSelectedItem(region);
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
RegionSelect dialog = new RegionSelect(new javax.swing.JFrame(), true);
dialog.addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}
});
dialog.setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton cancelButton;
private javax.swing.JButton okButton;
private javax.swing.JComboBox regionSet;
// End of variables declaration//GEN-END:variables
private int returnStatus = RET_CANCEL;
}
terraintool-1.12a.orig/src/mccombe/terrain/TerrainFrame.form 0000644 0001750 0001750 00000040267 11730070706 023631 0 ustar wookey wookey
terraintool-1.12a.orig/src/mccombe/terrain/CoordinateDialog.form 0000644 0001750 0001750 00000014304 11730070706 024452 0 ustar wookey wookey
terraintool-1.12a.orig/src/mccombe/terrain/OffsetDialog.form 0000644 0001750 0001750 00000016243 11730070706 023615 0 ustar wookey wookey
terraintool-1.12a.orig/src/mccombe/terrain/RegionSelect.form 0000644 0001750 0001750 00000010501 11730070706 023621 0 ustar wookey wookey
terraintool-1.12a.orig/src/mccombe/terrain/images/ 0000755 0001750 0001750 00000000000 11730667474 021637 5 ustar wookey wookey terraintool-1.12a.orig/src/mccombe/terrain/images/busy-icon14.png 0000644 0001750 0001750 00000007002 11730070706 024403 0 ustar wookey wookey ‰PNG
IHDR ó˙a pHYs šś
OiCCPPhotoshop ICC profile xÚťSgTSé=÷ŢôBK€”KoR RB‹€‘&*! J!ˇŮQÁEEČ ŽŽ€ŚQ,Š
Řä!˘ŽŁŠĘűá{ŁkÖĽ÷ćÍţµ×>ç¬óťłĎŔ–H3Q5€©BŕÇÄĆáä.@
$p łd!sý# ř~<<+"Ŕľ xÓ ŔM›Ŕ0‡˙ęB™\€„Ŕt‘8K€ @zŽB¦ @F€ť&S