This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.6) | |
set( CPP_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp ) | |
file( GLOB ICUUC_SRC ${CPP_DIR}/icu/source/common/*.cpp ) | |
file( GLOB ICUI18N_SRC ${CPP_DIR}/icu/source/i18n/*.cpp ) | |
add_library(icu SHARED | |
${ICUUC_SRC} | |
${ICUI18N_SRC} | |
${CPP_DIR}/icu/source/stubdata/stubdata.cpp | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
from sys import argv | |
import os | |
import math | |
import urllib2 | |
import random | |
import os.path | |
def deg2num(lat_deg, lon_deg, zoom): |