GridInfo.java 1.01 KB
package com.bsth.entity;

public class GridInfo {

	private double minLon;
	
	private double maxLon;
	
	private double minLat;
	
	private double maxLat;
	
	private int row;
	
	private int column;
	
	private SectionGrid[][] grid;

	public double getMinLon() {
		return minLon;
	}

	public void setMinLon(double minLon) {
		this.minLon = minLon;
	}

	public double getMaxLon() {
		return maxLon;
	}

	public void setMaxLon(double maxLon) {
		this.maxLon = maxLon;
	}

	public double getMinLat() {
		return minLat;
	}

	public void setMinLat(double minLat) {
		this.minLat = minLat;
	}

	public double getMaxLat() {
		return maxLat;
	}

	public void setMaxLat(double maxLat) {
		this.maxLat = maxLat;
	}

	public int getRow() {
		return row;
	}

	public void setRow(int row) {
		this.row = row;
	}

	public int getColumn() {
		return column;
	}

	public void setColumn(int column) {
		this.column = column;
	}

	public SectionGrid[][] getGrid() {
		return grid;
	}

	public void setGrid(SectionGrid[][] grid) {
		this.grid = grid;
	}
}