Newer
Older
osmCoverage / src / osm / jp / api / OsmnodeArea.java
@hayashi hayashi on 25 Sep 2017 845 bytes Caverage_fuel 完成
/*
 * 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 osm.jp.api;

import org.w3c.dom.Node;

/**
 * OSM.xml の「Area(way)」ノード
 * 例)
 * <pre>{@code 
 *  <way id="161877397">
 *   <nd ref="1738352013"/>
 *   <nd ref="1738351984"/>
 *   <nd ref="1738352019"/>
 *   <nd ref="1738352024"/>
 *   <nd ref="1738352017"/>
 *   <nd ref="1738352013"/>
 *   <tag k="amenity" v="fuel"/>
 *   <tag k="brand" v="出光"/>
 *   <tag k="name" v="出光"/>
 *   <tag k="name:en" v="Idemitsu"/>
 *   <tag k="opening_hours" v="24/7"/>
 * </way>
 * }</pre>
 * 
 * @author yuu
 */
public class OsmnodeArea {
    Node areanode = null;
    
    public OsmnodeArea(Node node) {
        this.areanode = node;
    }

}