Thats is OK
Ill check, but as example on link you have provided I have downloaded RU locale
My question is where did you generate regions, cities with geo data POSITIONS
REPLACE INTO /*TABLE_PREFIX*/t_country (pk_c_code, s_name, s_slug, s_phone_code, s_name_native, s_currency) VALUES
('RU', 'Russia', 'russia', '7', 'Россия', 'RUB');
REPLACE INTO /*TABLE_PREFIX*/t_region (pk_i_id, fk_c_country_code, s_name, b_active, s_slug) VALUES
(1001911, 'RU', 'Altai Krai', 1, 'altai-krai');
REPLACE INTO /*TABLE_PREFIX*/t_city (pk_i_id, fk_i_region_id, fk_c_country_code, s_name, b_active, s_slug, d_coord_lat, d_coord_long) VALUES
(1097586, 1001911, 'RU', 'Aleysk', 1, 'aleysk', 52.49260000, 82.78220000),
(1097587, 1001911, 'RU', 'Aleyskiy Rayon', 1, 'aleyskiy-rayon', 52.41667000, 82.75000000),
(1097603, 1001911, 'RU', 'Altayskoye', 1, 'altayskoye', 51.95333000, 85.33250000),
(1097641, 1001911, 'RU', 'Anton’yevka', 1, 'anton-yevka', 51.99610000, 83.97400000),
(1097726, 1001911, 'RU', 'Aya', 1, 'aya', 51.94532000, 85.80168000),
.....