• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

巨大森林を分割する


Commit MetaInfo

Revisión2cfef99ba205c11a6c36599a06cbead1dca8c6d3 (tree)
Tiempo2013-09-16 19:09:22
Autorhayashi.yuu <hayashi.yuu@gmai...>
Commiterhayashi.yuu

Log Message

FIX: 分割どうしを接続しない

Cambiar Resumen

Diferencia incremental

--- a/src/osm/jp/RelationCutter.java
+++ b/src/osm/jp/RelationCutter.java
@@ -377,7 +377,7 @@ public class RelationCutter {
377377 }
378378 else {
379379 OsmNode nextNode = nextway.waynodes.get(0);
380- if ((nextNode.idref != wayid) && (nextNode.lat == lastnode.lat) && (nextNode.lon == lon)) {
380+ if ((nextNode.idref != wayid) && (nextNode.lat.compareTo(lastnode.lat) == 0) && (nextNode.lon.compareTo(lon) == 0)) {
381381 // wayとnextwayを接続する。
382382 DbBigrelation.append_NDREF(con, way.idref, nextNode.idref);
383383 way.waynodes.add(nextNode);