Package org.openstreetmap.osmosis.core.mysql.common

Source Code of org.openstreetmap.osmosis.core.mysql.common.TileCalculatorTest

// This software is released into the Public Domain.  See copying.txt for details.
package org.openstreetmap.osmosis.core.mysql.common;

import org.junit.Assert;
import org.junit.Test;
import org.openstreetmap.osmosis.core.util.TileCalculator;


/**
* Tests the quad tile calculator.
*
* @author Brett Henderson
*/
public class TileCalculatorTest {
  /**
   * Basic test.
   */
  @Test
  public void test() {
    Assert.assertEquals(
        "Incorrect tile value generated.",
        2062265654,
        new TileCalculator().calculateTile(51.4781325, -0.1474929));
  }
}
TOP

Related Classes of org.openstreetmap.osmosis.core.mysql.common.TileCalculatorTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.