Newer
Older
osmCoverage / src / osm / jp / postgis / CoverageData.java
@hayashi hayashi on 25 Feb 2018 847 bytes police.Coverage.java
package osm.jp.postgis;

public class CoverageData 
{
    /**
     * 以下はクラスのメンバ変数
     * setter/getterはめんどくさいのでつかわない
     */
    public int areacode;        // 1..47: 都道府県コード, 0: 全国合計
    public String name;         // 都道府県名称
    public long denominator;    // 分母(denominator)
    public long molecule;       // 分子(molecule)
    public double par;          // パーセンテージ
    public String tableName;

    /**
     * コンストラクタ
     * @param areacode
     * @param name 
     * @param tableName 
     */
    public CoverageData(int areacode, String name, String tableName) {
        this.areacode = areacode;
        this.name = name;
        this.denominator = 1L;
        this.molecule = 0L;
        this.par = 0.0D;
    }
    
}