/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package utils;

/**
 *
 * @author Brad
 */
public class StationResult {
    public String country;
        public String state;
        public int stateNum;
        public String name;
        public int stationId;
        public double stationX;
        public double stationY;
        public double distance;
        public double elevation;

        @Override
        public String toString() {
            return "{" + state + "|" + stationId + "|" + stationX + "|" + stationY + "|" + elevation + "}";
        }
}
