/*
 * Copyright 2013 georgeathanasopoulos.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package eu.dnetlib.espas.util.sat;

import java.sql.Timestamp;

/**
 * Holds the point data specified in each row of the satellite location file.
 * 
 * @author georgeathanasopoulos
 */
public class Point4D {
    
    private Timestamp time;
    private Double x; 
    private Double y; 
    private Double z;
    private String coordinateSystem;
    
    Point4D(Timestamp time, double x, double y, double z, String crsName) {
        this.time = time;
        this.x = x;
        this.y = y;
        this.z = z;
        this.coordinateSystem = crsName;
    }

    public Timestamp getTime() {
        return time;
    }

    public Double getX() {
        return x;
    }

    public Double getY() {
        return y;
    }

    public Double getZ() {
        return z;
    }

    public String getCoordinateSystem() {
        return coordinateSystem;
    }

    
}
