Skip to content

Instantly share code, notes, and snippets.

@mthh
Last active May 14, 2017 10:35
Show Gist options
  • Save mthh/d2f248faa90344477de005168b49b279 to your computer and use it in GitHub Desktop.
Save mthh/d2f248faa90344477de005168b49b279 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
from selenium import webdriver
import time
import geopandas as gpd
try:
import ujson as json
except ImportError:
import json
def get_proj4_text(driver):
driver.find_element_by_id('s_proj4').click()
url_proj = driver.current_url
epsg_code = int(url_proj.replace('http://epsg.io/', ''))
proj4_value = driver.find_element_by_id('s_proj4_text').text
proj_name = driver.find_element_by_css_selector('#title_kind > h2').text
try:
proj_bounds = driver.find_elements_by_css_selector('.cac-inner > p')[2].text
proj_bounds = proj_bounds.replace('WGS84 bounds:\n', '').replace('\n', ' ')
except:
proj_bounds = None
print('Missing WGS84 bounds')
return {"epsg": epsg_code, 'url': url_proj,
'value': proj4_value, 'projection_name': proj_name,
'WGS84_bounds': proj_bounds}
def get_proj4_country(driver, country_name):
result = {}
driver.get('http://www.epsg.io')
input_search = driver.find_element_by_css_selector("#q")
input_search.clear()
input_search.send_keys(country_name)
input_search.parent.find_element_by_css_selector('input[value="search"]').click()
try:
results = driver.find_elements_by_css_selector('#results-container > .results > li')
except Exception as err:
print(err)
results = []
for i in range(len(results)):
try:
results[i].find_element_by_css_selector('h2 > a').click()
except Exception as err:
print(err)
continue
try:
result = get_proj4_text(driver)
break
except:
driver.back()
results = driver.find_elements_by_css_selector('#results-container > .results > li')
continue
result['country_name'] = country_name
return result
def main():
t = time.time()
gdf = gpd.read_file('country.shp')
country_names = gdf.NAMEen.values.tolist()
driver = webdriver.PhantomJS(executable_path='p/phantomjs')
driver.implicitly_wait(2)
results_projection = []
for i, name in enumerate(country_names):
results_projection.append(get_proj4_country(driver, name))
print('.', end='')
with open('results.json', 'w') as f:
f.write(json.dumps(results_projection))
print('{:.2f}s'.format(time.time()-t))
from collections import Counter
count = Counter([d.get('epsg', None) for d in results_projection])
a = list(sorted(
[[d[0], d[1]] for d in count.items() if d[1]],
key=lambda x: x[1], reverse=True))
ix = 0
if a[0][0] == None:
print('Missing projections: {}'.format(a[0][1]))
ix += 1
print('''Requested projections: {}'''.format(len(country_names)))
print('''Different projections: {}'''.format(len(a) - ix))
print('''Most used projections:\n'''
'''EPSG:{} ({} times)\nEPSG:{} ({} times)\nEPSG:{} ({} times)'''
.format(a[ix][0], a[ix][1],
a[ix+1][0], a[ix+1][1],
a[ix+2][0], a[ix+2][1]))
[{"value":"+proj=utm +zone=32 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 32N","url":"http:\/\/epsg.io\/32632","WGS84_bounds":"6.0 0.0 12.0 84.0","country_name":"Equatorial Guinea","epsg":32632},{"value":"+proj=merc +lon_0=150 +k=1 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ PDC Mercator","url":"http:\/\/epsg.io\/3832","WGS84_bounds":"98.69 -60.0 -68.0 66.67","country_name":"Tuvalu","epsg":3832},{"value":"+proj=longlat +ellps=intl +towgs84=-133,-321,50,0,0,0,0 +no_defs ","projection_name":"Gan 1970","url":"http:\/\/epsg.io\/4684","WGS84_bounds":"","country_name":"Maldives","epsg":4684},{"value":"+proj=utm +zone=31 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ETRS89 \/ UTM zone 31N","url":"http:\/\/epsg.io\/25831","WGS84_bounds":"-16.1 32.88 39.65 84.17","country_name":"Andorra","epsg":25831},{"value":"+proj=utm +zone=20 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 20N","url":"http:\/\/epsg.io\/32620","WGS84_bounds":"-66.0 0.0 -60.0 84.0","country_name":"Antigua and Barbuda","epsg":32620},{"value":"+proj=lcc +lat_1=49 +lat_2=46 +lat_0=47.5 +lon_0=13.33333333333333 +x_0=400000 +y_0=400000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ETRS89 \/ Austria Lambert","url":"http:\/\/epsg.io\/3416","WGS84_bounds":"-16.1 32.88 39.65 84.17","country_name":"Austria","epsg":3416},{"value":"+proj=lcc +lat_1=49.83333333333334 +lat_2=51.16666666666666 +lat_0=50.797815 +lon_0=4.359215833333333 +x_0=649328 +y_0=665262 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ETRS89 \/ Belgian Lambert 2008","url":"http:\/\/epsg.io\/3812","WGS84_bounds":"-16.1 32.88 39.65 84.17","country_name":"Belgium","epsg":3812},{"value":"+proj=utm +zone=39 +ellps=intl +towgs84=-143,-236,7,0,0,0,0 +units=m +no_defs ","projection_name":"Ain el Abd \/ Bahrain Grid","url":"http:\/\/epsg.io\/20499","WGS84_bounds":"34.51 15.61 55.67 32.16","country_name":"Bahrain","epsg":20499},{"value":"+proj=longlat +ellps=clrk66 +towgs84=-2,151,181,0,0,0,0 +no_defs ","projection_name":"Cape Canaveral","url":"http:\/\/epsg.io\/4717","WGS84_bounds":"","country_name":"Bahamas","epsg":4717},{"value":"+proj=tmerc +lat_0=13.17638888888889 +lon_0=-59.55972222222222 +k=0.9999986 +x_0=30000 +y_0=75000 +ellps=clrk80 +towgs84=31.95,300.99,419.19,0,0,0,0 +units=m +no_defs ","projection_name":"Barbados 1938 \/ Barbados National Grid","url":"http:\/\/epsg.io\/21292","WGS84_bounds":"-59.71 13.0 -59.37 13.39","country_name":"Barbados","epsg":21292},{"value":"+proj=somerc +lat_0=46.95240555555556 +lon_0=7.439583333333333 +k_0=1 +x_0=600000 +y_0=200000 +ellps=bessel +towgs84=674.4,15.1,405.3,0,0,0,0 +units=m +no_defs ","projection_name":"CH1903 \/ LV03 -- Swiss CH1903 \/ LV03","url":"http:\/\/epsg.io\/21781","WGS84_bounds":"5.96 45.82 10.49 47.81","country_name":"Switzerland","epsg":21781},{"value":"+proj=longlat +ellps=intl +towgs84=-963,510,-359,0,0,0,0 +no_defs ","projection_name":"Grand Comoros","url":"http:\/\/epsg.io\/4646","WGS84_bounds":"","country_name":"Comoros","epsg":4646},{"value":"+proj=lcc +lat_1=15 +lat_2=16.66666666666667 +lat_0=15.83333333333333 +lon_0=-24 +x_0=161587.83 +y_0=128511.202 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ Cape Verde National","url":"http:\/\/epsg.io\/4826","WGS84_bounds":"-28.85 11.47 -19.53 20.54","country_name":"Cape Verde","epsg":4826},{"value":"+proj=lcc +lat_1=48.66666666666666 +lat_2=53.66666666666666 +lat_0=51 +lon_0=10.5 +x_0=0 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ETRS89 \/ LCC Germany (E-N)","url":"http:\/\/epsg.io\/5243","WGS84_bounds":"-16.1 32.88 39.65 84.17","country_name":"Germany","epsg":5243},{"value":"+proj=longlat +ellps=clrk80 +towgs84=725,685,536,0,0,0,0 +no_defs ","projection_name":"Dominica 1945","url":"http:\/\/epsg.io\/4602","WGS84_bounds":"","country_name":"Dominica","epsg":4602},{"value":"+proj=tmerc +lat_0=0 +lon_0=15 +k=1 +x_0=800000 +y_0=-5000000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ETRS89 \/ DKTM4","url":"http:\/\/epsg.io\/4096","WGS84_bounds":"-16.1 32.88 39.65 84.17","country_name":"Denmark","epsg":4096},{"value":"+proj=lcc +lat_1=40 +lat_0=40 +lon_0=0 +k_0=0.9988085293 +x_0=600000 +y_0=600000 +a=6378298.3 +b=6356657.142669561 +pm=madrid +units=m +no_defs ","projection_name":"Madrid 1870 (Madrid) \/ Spain","url":"http:\/\/epsg.io\/2062","WGS84_bounds":"-9.37 35.95 3.39 43.82","country_name":"Spain","epsg":2062},{"country_name":"Faeroe Islands"},{"value":"+proj=longlat +ellps=intl +towgs84=647,1777,-1124,0,0,0,0 +no_defs ","projection_name":"Kusaie 1951","url":"http:\/\/epsg.io\/4735","WGS84_bounds":"","country_name":"Micronesia","epsg":4735},{"value":"+proj=tmerc +lat_0=49.5 +lon_0=-2.416666666666667 +k=0.999997 +x_0=47000 +y_0=50000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ETRS89 \/ Guernsey Grid","url":"http:\/\/epsg.io\/3108","WGS84_bounds":"-16.1 32.88 39.65 84.17","country_name":"Guernsey","epsg":3108},{"value":"+proj=longlat +ellps=clrk80 +towgs84=72,213.7,93,0,0,0,0 +no_defs ","projection_name":"Grenada 1953","url":"http:\/\/epsg.io\/4603","WGS84_bounds":"","country_name":"Grenada","epsg":4603},{"value":"+proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 +x_0=400000 +y_0=-100000 +ellps=airy +towgs84=446.448,-125.157,542.06,0.15,0.247,0.842,-20.489 +units=m +no_defs ","projection_name":"OSGB 1936 \/ British National Grid -- United Kingdom Ordnance Survey","url":"http:\/\/epsg.io\/27700","WGS84_bounds":"-8.74 49.81 1.84 60.9","country_name":"Isle of Man","epsg":27700},{"value":"+proj=tmerc +lat_0=0 +lon_0=9 +k=0.9996 +x_0=1500000 +y_0=0 +ellps=intl +towgs84=-104.1,-49.1,-9.9,0.971,-2.917,0.714,-11.68 +units=m +no_defs ","projection_name":"Monte Mario \/ Italy zone 1","url":"http:\/\/epsg.io\/3003","WGS84_bounds":"6.62 37.86 18.58 47.1","country_name":"Italy","epsg":3003},{"value":"+proj=tmerc +lat_0=49.225 +lon_0=-2.135 +k=0.9999999000000001 +x_0=40000 +y_0=70000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ETRS89 \/ Jersey Transverse Mercator","url":"http:\/\/epsg.io\/3109","WGS84_bounds":"-16.1 32.88 39.65 84.17","country_name":"Jersey","epsg":3109},{"value":"+proj=longlat +ellps=intl +towgs84=298,-304,-375,0,0,0,0 +no_defs ","projection_name":"Phoenix Islands 1966","url":"http:\/\/epsg.io\/4716","WGS84_bounds":"","country_name":"Kiribati","epsg":4716},{"value":"+proj=geocent +ellps=GRS80 +units=m +no_defs ","projection_name":"ITRF2008","url":"http:\/\/epsg.io\/5332","WGS84_bounds":"-180.0 -90.0 180.0 90.0","country_name":"Saint Kitts and Nevis","epsg":5332},{"value":"+proj=geocent +ellps=GRS80 +units=m +no_defs ","projection_name":"ITRF2008","url":"http:\/\/epsg.io\/5332","WGS84_bounds":"-180.0 -90.0 180.0 90.0","country_name":"Saint Lucia","epsg":5332},{"value":"+proj=somerc +lat_0=46.95240555555556 +lon_0=7.439583333333333 +k_0=1 +x_0=600000 +y_0=200000 +ellps=bessel +towgs84=674.4,15.1,405.3,0,0,0,0 +units=m +no_defs ","projection_name":"CH1903 \/ LV03 -- Swiss CH1903 \/ LV03","url":"http:\/\/epsg.io\/21781","WGS84_bounds":"5.96 45.82 10.49 47.81","country_name":"Liechtenstein","epsg":21781},{"value":"+proj=tmerc +lat_0=49.83333333333334 +lon_0=6.166666666666667 +k=1 +x_0=80000 +y_0=100000 +ellps=intl +towgs84=-189.681,18.3463,-42.7695,-0.33746,-3.09264,2.53861,0.4598 +units=m +no_defs ","projection_name":"Luxembourg 1930 \/ Gauss","url":"http:\/\/epsg.io\/2169","WGS84_bounds":"5.73 49.44 6.53 50.19","country_name":"Luxembourg","epsg":2169},{"value":"+proj=utm +zone=32 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 32N","url":"http:\/\/epsg.io\/32632","WGS84_bounds":"6.0 0.0 12.0 84.0","country_name":"Monaco","epsg":32632},{"value":"+proj=longlat +a=6378270 +b=6356794.343434343 +towgs84=102,52,-38,0,0,0,0 +no_defs ","projection_name":"Marshall Islands 1960","url":"http:\/\/epsg.io\/4732","WGS84_bounds":"","country_name":"Marshall Islands","epsg":4732},{"value":"+proj=utm +zone=33 +ellps=intl +towgs84=-87,-98,-121,0,0,0,0 +units=m +no_defs ","projection_name":"ED50 \/ UTM zone 33N","url":"http:\/\/epsg.io\/23033","WGS84_bounds":"-9.56 34.88 31.59 71.21","country_name":"Malta","epsg":23033},{"value":"+proj=lcc +lat_1=-20.19506944444445 +lat_0=-20.19506944444445 +lon_0=57.52182777777778 +k_0=1 +x_0=1000000 +y_0=1000000 +ellps=clrk80 +towgs84=-770.1,158.4,-498.2,0,0,0,0 +units=m +no_defs ","projection_name":"Le Pouce 1934 \/ Mauritius Grid","url":"http:\/\/epsg.io\/3337","WGS84_bounds":"57.25 -20.57 57.85 -19.94","country_name":"Mauritius","epsg":3337},{"value":"+proj=merc +lon_0=150 +k=1 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ PDC Mercator","url":"http:\/\/epsg.io\/3832","WGS84_bounds":"98.69 -60.0 -68.0 66.67","country_name":"Nauru","epsg":3832},{"value":"+proj=merc +lon_0=150 +k=1 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ PDC Mercator","url":"http:\/\/epsg.io\/3832","WGS84_bounds":"98.69 -60.0 -68.0 66.67","country_name":"Palau","epsg":3832},{"value":"+proj=cass +lat_0=1.287646666666667 +lon_0=103.8530022222222 +x_0=30000 +y_0=30000 +a=6377304.063 +b=6356103.038993155 +towgs84=-11,851,5,0,0,0,0 +units=m +no_defs ","projection_name":"Kertau 1968 \/ Singapore Grid","url":"http:\/\/epsg.io\/24500","WGS84_bounds":"99.59 1.13 105.82 7.81","country_name":"Singapore","epsg":24500},{"value":"+proj=longlat +ellps=intl +towgs84=-104.1,-49.1,-9.9,0.971,-2.917,0.714,-11.68 +no_defs ","projection_name":"Monte Mario","url":"http:\/\/epsg.io\/4265","WGS84_bounds":"","country_name":"San Marino","epsg":4265},{"value":"+proj=longlat +ellps=intl +no_defs ","projection_name":"Sao Tome","url":"http:\/\/epsg.io\/4823","WGS84_bounds":"","country_name":"Sao Tome and Principe","epsg":4823},{"value":"+proj=longlat +ellps=clrk80 +towgs84=41,-220,-134,0,0,0,0 +no_defs ","projection_name":"Mahe 1971","url":"http:\/\/epsg.io\/4256","WGS84_bounds":"","country_name":"Seychelles","epsg":4256},{"value":"+proj=tmerc +lat_0=0 +lon_0=-177 +k=0.9996 +x_0=1500000 +y_0=5000000 +ellps=GRS80 +units=m +no_defs ","projection_name":"TGD2005 \/ Tonga Map Grid","url":"http:\/\/epsg.io\/5887","WGS84_bounds":"-179.08 -25.68 -171.28 -14.14","country_name":"Tonga","epsg":5887},{"value":"+proj=longlat +ellps=intl +towgs84=-104.1,-49.1,-9.9,0.971,-2.917,0.714,-11.68 +no_defs ","projection_name":"Monte Mario","url":"http:\/\/epsg.io\/4265","WGS84_bounds":"","country_name":"Vatican","epsg":4265},{"value":"+proj=geocent +ellps=GRS80 +units=m +no_defs ","projection_name":"ITRF2008","url":"http:\/\/epsg.io\/5332","WGS84_bounds":"-180.0 -90.0 180.0 90.0","country_name":"Saint Vincent and the Grenadines","epsg":5332},{"value":"+proj=lcc +lat_1=-14.26666666666667 +lat_0=-14.26666666666667 +lon_0=-170 +k_0=1 +x_0=152400.3048006096 +y_0=95169.31165862332 +ellps=clrk66 +towgs84=-115,118,426,0,0,0,0 +units=us-ft +no_defs ","projection_name":"American Samoa 1962 \/ American Samoa Lambert","url":"http:\/\/epsg.io\/3102","WGS84_bounds":"-170.88 -14.43 -169.38 -14.11","country_name":"Samoa","epsg":3102},{"value":"+proj=lcc +lat_1=49 +lat_2=44 +lat_0=46.5 +lon_0=3 +x_0=700000 +y_0=6600000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"RGF93 \/ Lambert-93 -- France","url":"http:\/\/epsg.io\/2154","WGS84_bounds":"-9.86 41.15 10.38 51.56","country_name":"France","epsg":2154},{"value":"+proj=stere +lat_0=90 +lat_ts=90 +lon_0=105 +k=0.994 +x_0=2000000 +y_0=2000000 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ EPSG Russia Polar Stereographic","url":"http:\/\/epsg.io\/5940","WGS84_bounds":"-180.0 60.0 180.0 90.0","country_name":"Russia","epsg":5940},{"value":"+proj=longlat +ellps=intl +towgs84=-333,-222,114,0,0,0,0 +no_defs ","projection_name":"Herat North","url":"http:\/\/epsg.io\/4255","WGS84_bounds":"","country_name":"Afghanistan","epsg":4255},{"value":"+proj=tmerc +lat_0=0 +lon_0=12 +k=0.9996 +x_0=500000 +y_0=10000000 +ellps=clrk80 +towgs84=-50.9,-347.6,-231,0,0,0,0 +units=m +no_defs ","projection_name":"Camacupa \/ TM 12 SE","url":"http:\/\/epsg.io\/22092","WGS84_bounds":"10.41 -8.59 12.84 -6.01","country_name":"Angola","epsg":22092},{"value":"+proj=tmerc +lat_0=0 +lon_0=21 +k=1 +x_0=4500000 +y_0=0 +ellps=krass +units=m +no_defs ","projection_name":"Albanian 1987 \/ Gauss-Kruger zone 4","url":"http:\/\/epsg.io\/2462","WGS84_bounds":"19.22 39.64 21.06 42.67","country_name":"Albania","epsg":2462},{"value":"+proj=utm +zone=39 +ellps=clrk80 +towgs84=-242.2,-144.9,370.3,0,0,0,0 +units=m +no_defs ","projection_name":"Nahrwan 1967 \/ UTM zone 39N","url":"http:\/\/epsg.io\/27039","WGS84_bounds":"38.79 29.06 48.61 37.39","country_name":"United Arab Emirates","epsg":27039},{"value":"+proj=tmerc +lat_0=-90 +lon_0=-72 +k=1 +x_0=1500000 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"POSGAR 2007 \/ Argentina 1","url":"http:\/\/epsg.io\/5343","WGS84_bounds":"-73.59 -58.41 -52.63 -21.78","country_name":"Argentina","epsg":5343},{"value":"+proj=tmerc +lat_0=0.1166666666666667 +lon_0=41.53333333333333 +k=1 +x_0=1300000 +y_0=0 +ellps=krass +towgs84=23.92,-141.27,-80.9,-0,0.35,0.82,-0.12 +units=m +no_defs ","projection_name":"Pulkovo 1942 \/ CS63 zone A1","url":"http:\/\/epsg.io\/2935","WGS84_bounds":"39.99 41.37 43.04 43.59","country_name":"Armenia","epsg":2935},{"value":"+proj=lcc +lat_1=-70.66666666666667 +lat_2=-72.33333333333333 +lat_0=-71.5 +lon_0=166 +x_0=3000000 +y_0=1000000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"RSRGD2000 \/ PCLC2000","url":"http:\/\/epsg.io\/5481","WGS84_bounds":"144.99 -90.0 -144.99 -59.99","country_name":"Antarctica","epsg":5481},{"value":"+proj=lcc +lat_1=-18 +lat_2=-36 +lat_0=0 +lon_0=134 +x_0=0 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"GDA94 \/ Geoscience Australia Lambert","url":"http:\/\/epsg.io\/3112","WGS84_bounds":"112.85 -43.7 153.69 -9.86","country_name":"Australia","epsg":3112},{"value":"+proj=tmerc +lat_0=0.1166666666666667 +lon_0=50.53333333333333 +k=1 +x_0=4300000 +y_0=0 +ellps=krass +towgs84=23.92,-141.27,-80.9,-0,0.35,0.82,-0.12 +units=m +no_defs ","projection_name":"Pulkovo 1942 \/ CS63 zone A4","url":"http:\/\/epsg.io\/2938","WGS84_bounds":"49.03 37.89 51.73 42.59","country_name":"Azerbaijan","epsg":2938},{"value":"+proj=utm +zone=36 +south +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 36S","url":"http:\/\/epsg.io\/32736","WGS84_bounds":"30.0 -80.0 36.0 0.0","country_name":"Burundi","epsg":32736},{"value":"+proj=utm +zone=31 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 31N","url":"http:\/\/epsg.io\/32631","WGS84_bounds":"0.0 0.0 6.0 84.0","country_name":"Benin","epsg":32631},{"value":"+proj=longlat +ellps=clrk80 +towgs84=-106,-129,165,0,0,0,0 +no_defs ","projection_name":"Point 58","url":"http:\/\/epsg.io\/4620","WGS84_bounds":"","country_name":"Burkina Faso","epsg":4620},{"value":"+proj=tmerc +lat_0=0 +lon_0=90 +k=0.9996 +x_0=500000 +y_0=0 +a=6377276.345 +b=6356075.41314024 +towgs84=283.7,735.9,261.1,0,0,0,0 +units=m +no_defs ","projection_name":"Gulshan 303 \/ Bangladesh Transverse Mercator","url":"http:\/\/epsg.io\/3106","WGS84_bounds":"88.04 18.56 92.67 26.63","country_name":"Bangladesh","epsg":3106},{"value":"+proj=tmerc +lat_0=0 +lon_0=30 +k=1 +x_0=10500000 +y_0=0 +ellps=krass +towgs84=33.4,-146.6,-76.3,-0.359,-0.053,0.844,-0.84 +units=m +no_defs ","projection_name":"Pulkovo 1942(58) \/ 3-degree Gauss-Kruger zone 10","url":"http:\/\/epsg.io\/3840","WGS84_bounds":"14.14 49.0 24.15 54.89","country_name":"Bulgaria","epsg":3840},{"value":"+proj=tmerc +lat_0=0 +lon_0=15 +k=0.9999 +x_0=5500000 +y_0=0 +ellps=bessel +towgs84=682,-203,480,0,0,0,0 +units=m +no_defs ","projection_name":"MGI 1901 \/ Balkans zone 5","url":"http:\/\/epsg.io\/3907","WGS84_bounds":"13.38 40.85 23.04 46.88","country_name":"Bosnia and Herzegovina","epsg":3907},{"value":"+proj=tmerc +lat_0=0 +lon_0=33 +k=1 +x_0=6500000 +y_0=0 +ellps=krass +towgs84=23.92,-141.27,-80.9,-0,0.35,0.82,-0.12 +units=m +no_defs ","projection_name":"Pulkovo 1942 \/ Gauss-Kruger zone 6","url":"http:\/\/epsg.io\/28406","WGS84_bounds":"30.0 44.32 36.0 70.02","country_name":"Belarus","epsg":28406},{"value":"+proj=tmerc +lat_0=17.06124194444444 +lon_0=-88.6318575 +k=1 +x_0=66220.02833082761 +y_0=135779.5099885299 +a=6378293.645208759 +b=6356617.987679838 +to_meter=0.3047972654 +no_defs ","projection_name":"Sibun Gorge 1922 \/ Colony Grid","url":"http:\/\/epsg.io\/5589","WGS84_bounds":"-89.22 15.88 -87.72 18.49","country_name":"Belize","epsg":5589},{"value":"+proj=utm +zone=21 +south +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"MARGEN \/ UTM zone 21S","url":"http:\/\/epsg.io\/5357","WGS84_bounds":"-69.66 -22.91 -57.52 -9.67","country_name":"Bolivia","epsg":5357},{"value":"+proj=merc +lon_0=-43 +lat_ts=-2 +x_0=5000000 +y_0=10000000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"SIRGAS 2000 \/ Brazil Mercator","url":"http:\/\/epsg.io\/5641","WGS84_bounds":"-122.19 -59.87 -25.28 32.72","country_name":"Brazil","epsg":5641},{"value":"+proj=omerc +lat_0=4 +lonc=115 +alpha=53.31580995 +k=0.99984 +x_0=0 +y_0=0 +no_uoff +gamma=53.13010236111111 +ellps=GRS80 +units=m +no_defs ","projection_name":"GDBD2009 \/ Brunei BRSO","url":"http:\/\/epsg.io\/5247","WGS84_bounds":"112.37 4.01 115.37 6.31","country_name":"Brunei","epsg":5247},{"value":"+proj=tmerc +lat_0=0 +lon_0=90 +k=1 +x_0=250000 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"DRUKREF 03 \/ Bhutan National Grid","url":"http:\/\/epsg.io\/5266","WGS84_bounds":"88.75 26.7 92.12 28.33","country_name":"Bhutan","epsg":5266},{"value":"+proj=utm +zone=35 +south +a=6378249.145 +b=6356514.966398753 +towgs84=-136,-108,-292,0,0,0,0 +units=m +no_defs ","projection_name":"Cape \/ UTM zone 35S","url":"http:\/\/epsg.io\/22235","WGS84_bounds":"16.45 -34.88 32.95 -22.13","country_name":"Botswana","epsg":22235},{"value":"+proj=utm +zone=35 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 35N","url":"http:\/\/epsg.io\/32635","WGS84_bounds":"24.0 0.0 30.0 84.0","country_name":"Central African Republic","epsg":32635},{"value":"+proj=utm +zone=18 +south +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"SIRGAS-Chile \/ UTM zone 18S","url":"http:\/\/epsg.io\/5362","WGS84_bounds":"-113.21 -59.87 -65.72 -17.5","country_name":"Chile","epsg":5362},{"value":"+proj=tmerc +lat_0=0 +lon_0=-5 +k=0.9996 +x_0=500000 +y_0=0 +ellps=clrk80 +towgs84=-124.76,53,466.79,0,0,0,0 +units=m +no_defs ","projection_name":"Abidjan 1987 \/ TM 5 NW","url":"http:\/\/epsg.io\/2165","WGS84_bounds":"-8.61 1.02 -2.48 10.74","country_name":"Ivory Coast","epsg":2165},{"value":"+proj=tmerc +lat_0=0 +lon_0=10.5 +k=0.999 +x_0=1000000 +y_0=1000000 +ellps=intl +towgs84=-206.1,-174.7,-87.7,0,0,0,0 +units=m +no_defs ","projection_name":"Douala 1948 \/ AEF west","url":"http:\/\/epsg.io\/3119","WGS84_bounds":"8.45 2.16 10.4 4.99","country_name":"Cameroon","epsg":3119},{"country_name":"Congo-Kinshasa"},{"country_name":"Congo-Brazzaville"},{"value":"+proj=tmerc +lat_0=4.599047222222222 +lon_0=-68.08091666666667 +k=1 +x_0=1000000 +y_0=1000000 +ellps=intl +towgs84=307,304,-318,0,0,0,0 +units=m +no_defs ","projection_name":"Bogota 1975 \/ Colombia East","url":"http:\/\/epsg.io\/21899","WGS84_bounds":"-79.1 -4.23 -66.87 13.68","country_name":"Colombia","epsg":21899},{"value":"+proj=lcc +lat_1=9 +lat_0=9 +lon_0=-83.66666666666667 +k_0=0.99995696 +x_0=500000 +y_0=327987.436 +ellps=clrk66 +towgs84=213.11,9.37,-74.95,0,0,0,0 +units=m +no_defs ","projection_name":"Ocotepeque 1935 \/ Costa Rica Sur","url":"http:\/\/epsg.io\/5457","WGS84_bounds":"-85.97 7.98 -82.53 11.22","country_name":"Costa Rica","epsg":5457},{"value":"+proj=lcc +lat_1=21.3 +lat_2=20.13333333333333 +lat_0=20.71666666666667 +lon_0=-76.83333333333333 +x_0=500000 +y_0=229126.939 +datum=NAD27 +units=m +no_defs ","projection_name":"NAD27 \/ Cuba Sur","url":"http:\/\/epsg.io\/3796","WGS84_bounds":"-78.69 19.77 -74.07 21.5","country_name":"Cuba","epsg":3796},{"value":"+proj=utm +zone=36 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 36N","url":"http:\/\/epsg.io\/32636","WGS84_bounds":"30.0 0.0 36.0 84.0","country_name":"Cyprus","epsg":32636},{"country_name":"Czechia"},{"value":"+proj=longlat +ellps=clrk80 +towgs84=-79,-129,145,0,0,0,0 +no_defs ","projection_name":"Ayabelle Lighthouse","url":"http:\/\/epsg.io\/4713","WGS84_bounds":"","country_name":"Djibouti","epsg":4713},{"value":"+proj=utm +zone=19 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 19N","url":"http:\/\/epsg.io\/32619","WGS84_bounds":"-72.0 0.0 -66.0 84.0","country_name":"Dominican Republic","epsg":32619},{"value":"+proj=longlat +a=6378249.2 +b=6356515 +towgs84=-73,-247,227,0,0,0,0 +no_defs ","projection_name":"Voirol 1875","url":"http:\/\/epsg.io\/4304","WGS84_bounds":"","country_name":"Algeria","epsg":4304},{"value":"+proj=utm +zone=17 +ellps=intl +towgs84=-288,175,-376,0,0,0,0 +units=m +no_defs ","projection_name":"PSAD56 \/ UTM zone 17N","url":"http:\/\/epsg.io\/24817","WGS84_bounds":"-81.41 -45.0 -56.47 12.52","country_name":"Ecuador","epsg":24817},{"value":"+proj=longlat +ellps=helmert +towgs84=-130,110,-13,0,0,0,0 +no_defs ","projection_name":"Egypt 1907","url":"http:\/\/epsg.io\/4229","WGS84_bounds":"","country_name":"Egypt","epsg":4229},{"value":"+proj=utm +zone=37 +ellps=bessel +towgs84=639,405,60,0,0,0,0 +units=m +no_defs ","projection_name":"Massawa \/ UTM zone 37N","url":"http:\/\/epsg.io\/26237","WGS84_bounds":"36.44 12.36 43.31 18.1","country_name":"Eritrea","epsg":26237},{"value":"+proj=lcc +lat_1=59.33333333333334 +lat_2=58 +lat_0=57.51755393055556 +lon_0=24 +x_0=500000 +y_0=6375000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"Estonian Coordinate System of 1997","url":"http:\/\/epsg.io\/3301","WGS84_bounds":"20.37 57.52 28.2 60.0","country_name":"Estonia","epsg":3301},{"value":"+proj=utm +zone=38 +ellps=clrk80 +towgs84=-166,-15,204,0,0,0,0 +units=m +no_defs ","projection_name":"Adindan \/ UTM zone 38N","url":"http:\/\/epsg.io\/20138","WGS84_bounds":"21.82 3.4 47.99 22.24","country_name":"Ethiopia","epsg":20138},{"value":"+proj=utm +zone=35 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ETRS89 \/ TM35FIN(E,N) -- Finland","url":"http:\/\/epsg.io\/3067","WGS84_bounds":"-16.1 32.88 39.65 84.17","country_name":"Finland","epsg":3067},{"value":"+proj=utm +zone=1 +south +ellps=intl +towgs84=265.025,384.929,-194.046,0,0,0,0 +units=m +no_defs ","projection_name":"Fiji 1956 \/ UTM zone 1S","url":"http:\/\/epsg.io\/3142","WGS84_bounds":"176.81 -19.22 -179.77 -16.1","country_name":"Fiji","epsg":3142},{"value":"+proj=longlat +ellps=intl +towgs84=-355,21,72,0,0,0,0 +no_defs ","projection_name":"Sapper Hill 1943","url":"http:\/\/epsg.io\/4292","WGS84_bounds":"","country_name":"Falkland Islands","epsg":4292},{"value":"+proj=tmerc +lat_0=0 +lon_0=12 +k=0.9996 +x_0=500000 +y_0=500000 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ Gabon TM","url":"http:\/\/epsg.io\/5223","WGS84_bounds":"8.65 -3.98 14.52 2.32","country_name":"Gabon","epsg":5223},{"value":"+proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 +x_0=400000 +y_0=-100000 +ellps=airy +towgs84=446.448,-125.157,542.06,0.15,0.247,0.842,-20.489 +units=m +no_defs ","projection_name":"OSGB 1936 \/ British National Grid -- United Kingdom Ordnance Survey","url":"http:\/\/epsg.io\/27700","WGS84_bounds":"-8.74 49.81 1.84 60.9","country_name":"United Kingdom","epsg":27700},{"value":"+proj=longlat +ellps=intl +towgs84=-794,119,-298,0,0,0,0 +no_defs ","projection_name":"South Georgia 1968","url":"http:\/\/epsg.io\/4722","WGS84_bounds":"","country_name":"Georgia","epsg":4722},{"value":"+proj=tmerc +lat_0=4.666666666666667 +lon_0=-1 +k=0.99975 +x_0=274319.7391633579 +y_0=0 +a=6378300 +b=6356751.689189189 +towgs84=-199,32,322,0,0,0,0 +to_meter=0.3047997101815088 +no_defs ","projection_name":"Accra \/ Ghana National Grid","url":"http:\/\/epsg.io\/2136","WGS84_bounds":"-3.79 1.4 2.1 11.16","country_name":"Ghana","epsg":2136},{"value":"+proj=longlat +a=6378249.2 +b=6356515 +towgs84=-23,259,-9,0,0,0,0 +no_defs ","projection_name":"Conakry 1905","url":"http:\/\/epsg.io\/4315","WGS84_bounds":"","country_name":"Guinea","epsg":4315},{"value":"+proj=utm +zone=28 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 28N","url":"http:\/\/epsg.io\/32628","WGS84_bounds":"-18.0 0.0 -12.0 84.0","country_name":"The Gambia","epsg":32628},{"value":"+proj=utm +zone=28 +ellps=intl +towgs84=-173,253,27,0,0,0,0 +units=m +no_defs ","projection_name":"Bissau \/ UTM zone 28N","url":"http:\/\/epsg.io\/2095","WGS84_bounds":"-16.77 10.87 -13.64 12.69","country_name":"Guinea-Bissau","epsg":2095},{"value":"+proj=tmerc +lat_0=0 +lon_0=24 +k=0.9996 +x_0=500000 +y_0=0 +ellps=GRS80 +towgs84=-199.87,74.79,246.62,0,0,0,0 +units=m +no_defs ","projection_name":"GGRS87 \/ Greek Grid","url":"http:\/\/epsg.io\/2100","WGS84_bounds":"19.57 34.88 28.3 41.75","country_name":"Greece","epsg":2100},{"country_name":"Greenland"},{"value":"+proj=lcc +lat_1=16.81666666666667 +lat_0=16.81666666666667 +lon_0=-90.33333333333333 +k_0=0.99992226 +x_0=500000 +y_0=292209.579 +ellps=clrk66 +towgs84=213.11,9.37,-74.95,0,0,0,0 +units=m +no_defs ","projection_name":"Ocotepeque 1935 \/ Guatemala Norte","url":"http:\/\/epsg.io\/5559","WGS84_bounds":"-85.97 7.98 -82.53 11.22","country_name":"Guatemala","epsg":5559},{"value":"+proj=utm +zone=21 +ellps=intl +towgs84=-288,175,-376,0,0,0,0 +units=m +no_defs ","projection_name":"PSAD56 \/ UTM zone 21N","url":"http:\/\/epsg.io\/24821","WGS84_bounds":"-81.41 -45.0 -56.47 12.52","country_name":"Guyana","epsg":24821},{"value":"+proj=longlat +ellps=clrk66 +towgs84=213.11,9.37,-74.95,0,0,0,0 +no_defs ","projection_name":"Ocotepeque 1935","url":"http:\/\/epsg.io\/5451","WGS84_bounds":"","country_name":"Honduras","epsg":5451},{"value":"+proj=tmerc +lat_0=0 +lon_0=16.5 +k=0.9999 +x_0=500000 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"HTRS96 \/ Croatia TM","url":"http:\/\/epsg.io\/3765","WGS84_bounds":"13.0 41.62 19.43 46.54","country_name":"Croatia","epsg":3765},{"value":"+proj=utm +zone=18 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 18N","url":"http:\/\/epsg.io\/32618","WGS84_bounds":"-78.0 0.0 -72.0 84.0","country_name":"Haiti","epsg":32618},{"value":"+proj=somerc +lat_0=47.14439372222222 +lon_0=19.04857177777778 +k_0=0.99993 +x_0=650000 +y_0=200000 +ellps=GRS67 +towgs84=52.17,-71.82,-14.9,0,0,0,0 +units=m +no_defs ","projection_name":"HD72 \/ EOV","url":"http:\/\/epsg.io\/23700","WGS84_bounds":"16.11 45.74 22.9 48.58","country_name":"Hungary","epsg":23700},{"value":"+proj=tmerc +lat_0=0 +lon_0=139.5 +k=0.9999 +x_0=200000 +y_0=1500000 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"DGN95 \/ Indonesia TM-3 zone 54.1","url":"http:\/\/epsg.io\/23845","WGS84_bounds":"92.01 -13.25 141.46 7.79","country_name":"Indonesia","epsg":23845},{"value":"+proj=lcc +lat_1=32.5 +lat_0=32.5 +lon_0=68 +k_0=0.99878641 +x_0=2743195.5 +y_0=914398.5 +a=6377299.151 +b=6356098.145120132 +towgs84=295,736,257,0,0,0,0 +units=m +no_defs ","projection_name":"Kalianpur 1975 \/ India zone I","url":"http:\/\/epsg.io\/24378","WGS84_bounds":"68.08 8.02 97.39 35.51","country_name":"India","epsg":24378},{"value":"+proj=tmerc +lat_0=53.5 +lon_0=-8 +k=1.000035 +x_0=200000 +y_0=250000 +ellps=mod_airy +towgs84=482.5,-130.6,564.6,-1.042,-0.214,-0.631,8.15 +units=m +no_defs ","projection_name":"TM65 \/ Irish Grid -- Ireland","url":"http:\/\/epsg.io\/29902","WGS84_bounds":"-10.56 51.39 -5.34 55.43","country_name":"Ireland","epsg":29902},{"value":"+proj=utm +zone=39 +ellps=WGS84 +towgs84=0,-0.15,0.68,0,0,0,0 +units=m +no_defs ","projection_name":"Nakhl-e Ghanem \/ UTM zone 39N","url":"http:\/\/epsg.io\/3307","WGS84_bounds":"52.09 27.63 52.26 27.81","country_name":"Iran","epsg":3307},{"value":"+proj=tmerc +lat_0=29.02626833333333 +lon_0=46.5 +k=0.9994 +x_0=800000 +y_0=0 +ellps=intl +towgs84=-87,-98,-121,0,0,0,0 +units=m +no_defs ","projection_name":"ED50 \/ Iraq National Grid","url":"http:\/\/epsg.io\/3893","WGS84_bounds":"-9.56 34.88 31.59 71.21","country_name":"Iraq","epsg":3893},{"value":"+proj=longlat +ellps=intl +towgs84=-73,46,-86,0,0,0,0 +no_defs ","projection_name":"Hjorsey 1955","url":"http:\/\/epsg.io\/4658","WGS84_bounds":"","country_name":"Iceland","epsg":4658},{"value":"+proj=longlat +ellps=GRS80 +towgs84=-48,55,52,0,0,0,0 +no_defs ","projection_name":"Israel 1993","url":"http:\/\/epsg.io\/4141","WGS84_bounds":"","country_name":"Israel","epsg":4141},{"value":"+proj=lcc +lat_1=18 +lat_0=18 +lon_0=-77 +k_0=1 +x_0=750000 +y_0=650000 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"JAD2001 \/ Jamaica Metric Grid","url":"http:\/\/epsg.io\/3448","WGS84_bounds":"-80.6 14.08 -74.51 19.36","country_name":"Jamaica","epsg":3448},{"value":"+proj=tmerc +lat_0=0 +lon_0=37 +k=0.9998 +x_0=500000 +y_0=-3000000 +ellps=intl +towgs84=-87,-98,-121,0,0,0,0 +units=m +no_defs ","projection_name":"ED50 \/ Jordan TM","url":"http:\/\/epsg.io\/3066","WGS84_bounds":"-9.56 34.88 31.59 71.21","country_name":"Jordan","epsg":3066},{"value":"+proj=tmerc +lat_0=26 +lon_0=131 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=-146.414,507.337,680.507,0,0,0,0 +units=m +no_defs ","projection_name":"Tokyo \/ Japan Plane Rectangular CS XVII","url":"http:\/\/epsg.io\/30177","WGS84_bounds":"122.83 20.37 154.05 45.54","country_name":"Japan","epsg":30177},{"value":"+proj=tmerc +lat_0=0.1333333333333333 +lon_0=56.76666666666667 +k=1 +x_0=4300000 +y_0=0 +ellps=krass +towgs84=23.92,-141.27,-80.9,-0,0.35,0.82,-0.12 +units=m +no_defs ","projection_name":"Pulkovo 1942 \/ CS63 zone K4","url":"http:\/\/epsg.io\/2941","WGS84_bounds":"55.26 41.26 58.27 51.14","country_name":"Kazakhstan","epsg":2941},{"value":"+proj=longlat +ellps=clrk80 +towgs84=-160,-6,-302,0,0,0,0 +no_defs ","projection_name":"Arc 1960","url":"http:\/\/epsg.io\/4210","WGS84_bounds":"","country_name":"Kenya","epsg":4210},{"value":"+proj=tmerc +lat_0=0 +lon_0=81 +k=1 +x_0=14500000 +y_0=0 +ellps=krass +towgs84=23.92,-141.27,-80.9,-0,0.35,0.82,-0.12 +units=m +no_defs ","projection_name":"Pulkovo 1942 \/ Gauss-Kruger zone 14","url":"http:\/\/epsg.io\/28414","WGS84_bounds":"78.0 41.04 84.01 81.03","country_name":"Kyrgyzstan","epsg":28414},{"value":"+proj=utm +zone=48 +a=6377276.345 +b=6356075.41314024 +towgs84=198,881,317,0,0,0,0 +units=m +no_defs ","projection_name":"Indian 1960 \/ UTM zone 48N","url":"http:\/\/epsg.io\/3148","WGS84_bounds":"105.61 14.0 109.32 18.0","country_name":"Cambodia","epsg":3148},{"value":"+proj=tmerc +lat_0=38 +lon_0=127.5 +k=0.9996 +x_0=1000000 +y_0=2000000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"Korea 2000 \/ Unified CS","url":"http:\/\/epsg.io\/5179","WGS84_bounds":"122.71 28.6 134.28 40.27","country_name":"South Korea","epsg":5179},{"country_name":"Kosovo"},{"value":"+proj=tmerc +lat_0=0 +lon_0=48 +k=1 +x_0=500000 +y_0=0 +ellps=GRS80 +towgs84=-20.8,11.3,2.4,0,0,0,0 +units=m +no_defs ","projection_name":"KUDAMS \/ KTM","url":"http:\/\/epsg.io\/31901","WGS84_bounds":"47.78 29.17 48.16 29.45","country_name":"Kuwait","epsg":31901},{"value":"+proj=longlat +ellps=krass +towgs84=44.585,-131.212,-39.544,0,0,0,0 +no_defs ","projection_name":"Lao 1997","url":"http:\/\/epsg.io\/4678","WGS84_bounds":"","country_name":"Laos","epsg":4678},{"value":"+proj=sterea +lat_0=34.2 +lon_0=39.15 +k=0.9995341 +x_0=0 +y_0=0 +a=6378249.2 +b=6356515 +towgs84=-190.421,8.532,238.69,0,0,0,0 +units=m +no_defs ","projection_name":"Deir ez Zor \/ Levant Stereographic","url":"http:\/\/epsg.io\/22780","WGS84_bounds":"35.61 32.31 42.38 37.3","country_name":"Lebanon","epsg":22780},{"value":"+proj=longlat +ellps=clrk80 +towgs84=-90,40,88,0,0,0,0 +no_defs ","projection_name":"Liberia 1964","url":"http:\/\/epsg.io\/4251","WGS84_bounds":"","country_name":"Liberia","epsg":4251},{"value":"+proj=tmerc +lat_0=0 +lon_0=17 +k=0.9965000000000001 +x_0=1000000 +y_0=0 +ellps=intl +towgs84=-208.406,-109.878,-2.5764,0,0,0,0 +units=m +no_defs ","projection_name":"LGD2006 \/ Libya TM","url":"http:\/\/epsg.io\/3177","WGS84_bounds":"9.31 19.5 26.21 35.23","country_name":"Libya","epsg":3177},{"value":"+proj=tmerc +lat_0=7.000480277777778 +lon_0=80.77171111111112 +k=0.9999238418 +x_0=200000 +y_0=200000 +a=6377276.345 +b=6356075.41314024 +towgs84=-97,787,86,0,0,0,0 +units=m +no_defs ","projection_name":"Kandawala \/ Sri Lanka Grid","url":"http:\/\/epsg.io\/5234","WGS84_bounds":"79.64 5.86 81.95 9.88","country_name":"Sri Lanka","epsg":5234},{"value":"+proj=longlat +a=6378249.145 +b=6356514.966398753 +towgs84=-136,-108,-292,0,0,0,0 +no_defs ","projection_name":"Cape","url":"http:\/\/epsg.io\/4222","WGS84_bounds":"","country_name":"Lesotho","epsg":4222},{"value":"+proj=tmerc +lat_0=0 +lon_0=24 +k=0.9998 +x_0=500000 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"LKS94 \/ Lithuania TM","url":"http:\/\/epsg.io\/3346","WGS84_bounds":"19.02 53.89 26.82 56.45","country_name":"Lithuania","epsg":3346},{"value":"+proj=tmerc +lat_0=0 +lon_0=24 +k=0.9996 +x_0=500000 +y_0=-6000000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"LKS92 \/ Latvia TM","url":"http:\/\/epsg.io\/3059","WGS84_bounds":"19.06 55.67 28.24 58.09","country_name":"Latvia","epsg":3059},{"value":"+proj=longlat +a=6378249.2 +b=6356515 +towgs84=31,146,47,0,0,0,0 +no_defs ","projection_name":"Merchich","url":"http:\/\/epsg.io\/4261","WGS84_bounds":"","country_name":"Morocco","epsg":4261},{"value":"+proj=tmerc +lat_0=0 +lon_0=28.4 +k=0.9999400000000001 +x_0=200000 +y_0=-5000000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"MOLDREF99 \/ Moldova TM","url":"http:\/\/epsg.io\/4026","WGS84_bounds":"26.63 45.44 30.13 48.47","country_name":"Moldova","epsg":4026},{"value":"+proj=longlat +ellps=intl +towgs84=-189,-242,-91,0,0,0,0 +no_defs ","projection_name":"Tananarive","url":"http:\/\/epsg.io\/4297","WGS84_bounds":"","country_name":"Madagascar","epsg":4297},{"value":"+proj=utm +zone=16 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"Mexico ITRF92 \/ UTM zone 16N","url":"http:\/\/epsg.io\/4489","WGS84_bounds":"-122.19 12.1 -84.64 32.72","country_name":"Mexico","epsg":4489},{"value":"+proj=tmerc +lat_0=0 +lon_0=24 +k=0.9999 +x_0=8500000 +y_0=0 +ellps=bessel +towgs84=682,-203,480,0,0,0,0 +units=m +no_defs ","projection_name":"MGI 1901 \/ Balkans zone 8","url":"http:\/\/epsg.io\/3910","WGS84_bounds":"13.38 40.85 23.04 46.88","country_name":"Macedonia","epsg":3910},{"value":"+proj=longlat +ellps=clrk80 +towgs84=-106,-129,165,0,0,0,0 +no_defs ","projection_name":"Point 58","url":"http:\/\/epsg.io\/4620","WGS84_bounds":"","country_name":"Mali","epsg":4620},{"value":"+proj=utm +zone=46 +a=6377276.345 +b=6356075.41314024 +towgs84=217,823,299,0,0,0,0 +units=m +no_defs ","projection_name":"Indian 1954 \/ UTM zone 46N","url":"http:\/\/epsg.io\/23946","WGS84_bounds":"97.34 5.63 105.64 20.46","country_name":"Myanmar","epsg":23946},{"value":"+proj=longlat +ellps=bessel +towgs84=682,-203,480,0,0,0,0 +no_defs ","projection_name":"MGI 1901","url":"http:\/\/epsg.io\/3906","WGS84_bounds":"","country_name":"Montenegro","epsg":3906},{"value":"+proj=utm +zone=46 +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 46N","url":"http:\/\/epsg.io\/32646","WGS84_bounds":"90.0 0.0 96.0 84.0","country_name":"Mongolia","epsg":32646},{"value":"+proj=utm +zone=38 +south +ellps=WGS84 +towgs84=0,0,0,-0,-0,-0,0 +units=m +no_defs ","projection_name":"Moznet \/ UTM zone 38S","url":"http:\/\/epsg.io\/5629","WGS84_bounds":"30.21 -27.71 43.03 -10.09","country_name":"Mozambique","epsg":5629},{"value":"+proj=utm +zone=30 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"Mauritania 1999 \/ UTM zone 30N","url":"http:\/\/epsg.io\/3345","WGS84_bounds":"-20.04 14.72 -4.8 27.3","country_name":"Mauritania","epsg":3345},{"value":"+proj=utm +zone=36 +south +a=6378249.145 +b=6356514.966398753 +towgs84=-143,-90,-294,0,0,0,0 +units=m +no_defs ","projection_name":"Arc 1950 \/ UTM zone 36S","url":"http:\/\/epsg.io\/20936","WGS84_bounds":"19.99 -30.66 35.93 -8.19","country_name":"Malawi","epsg":20936},{"value":"+proj=omerc +lat_0=4 +lonc=115 +alpha=53.31580995 +k=0.99984 +x_0=0 +y_0=0 +no_uoff +gamma=53.13010236111111 +ellps=GRS80 +units=m +no_defs ","projection_name":"GDM2000 \/ East Malaysia BRSO","url":"http:\/\/epsg.io\/3376","WGS84_bounds":"109.31 0.85 119.61 7.67","country_name":"Malaysia","epsg":3376},{"value":"+proj=utm +zone=33 +south +ellps=bess_nam +towgs84=616,97,-251,0,0,0,0 +units=m +no_defs ","projection_name":"Schwarzeck \/ UTM zone 33S","url":"http:\/\/epsg.io\/29333","WGS84_bounds":"8.24 -30.64 25.27 -16.95","country_name":"Namibia","epsg":29333},{"value":"+proj=tmerc +lat_0=0 +lon_0=13 +k=0.9996 +x_0=500000 +y_0=0 +a=6378249.2 +b=6356515 +towgs84=-106,-87,188,0,0,0,0 +units=m +no_defs ","projection_name":"Beduaram \/ TM 13 NE","url":"http:\/\/epsg.io\/2931","WGS84_bounds":"7.81 12.8 14.9 16.7","country_name":"Niger","epsg":2931},{"value":"+proj=tmerc +lat_0=4 +lon_0=12.5 +k=0.99975 +x_0=1110369.7 +y_0=0 +ellps=clrk80 +towgs84=-92,-93,122,0,0,0,0 +units=m +no_defs ","projection_name":"Minna \/ Nigeria East Belt","url":"http:\/\/epsg.io\/26393","WGS84_bounds":"2.66 1.92 14.65 13.9","country_name":"Nigeria","epsg":26393},{"value":"+proj=lcc +lat_1=11.73333333333333 +lat_0=11.73333333333333 +lon_0=-85.5 +k_0=0.9999222800000001 +x_0=500000 +y_0=288876.327 +ellps=clrk66 +towgs84=213.11,9.37,-74.95,0,0,0,0 +units=m +no_defs ","projection_name":"Ocotepeque 1935 \/ Nicaragua Sur","url":"http:\/\/epsg.io\/5462","WGS84_bounds":"-85.97 7.98 -82.53 11.22","country_name":"Nicaragua","epsg":5462},{"value":"+proj=tmerc +lat_0=0 +lon_0=5 +k=0.9996 +x_0=500000 +y_0=0 +ellps=intl +towgs84=-87,-98,-121,0,0,0,0 +units=m +no_defs ","projection_name":"ED50 \/ TM 5 NE","url":"http:\/\/epsg.io\/23095","WGS84_bounds":"-9.56 34.88 31.59 71.21","country_name":"Netherlands","epsg":23095},{"value":"+proj=longlat +a=6377492.018 +b=6356173.508712696 +towgs84=278.3,93,474.5,7.889,0.05,-6.61,6.21 +no_defs ","projection_name":"NGO 1948","url":"http:\/\/epsg.io\/4273","WGS84_bounds":"","country_name":"Norway","epsg":4273},{"value":"+proj=longlat +a=6377301.243 +b=6356100.230165384 +no_defs ","projection_name":"GCS Everest India Nepal","url":"http:\/\/epsg.io\/37203","WGS84_bounds":null,"country_name":"Nepal","epsg":37203},{"value":"+proj=tmerc +lat_0=0 +lon_0=173 +k=0.9996 +x_0=1600000 +y_0=10000000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"NZGD2000 \/ New Zealand Transverse Mercator 2000 -- New Zealand Transverse Mercator (NZTM)","url":"http:\/\/epsg.io\/2193","WGS84_bounds":"160.6 -55.95 -171.2 -25.88","country_name":"New Zealand","epsg":2193},{"value":"+proj=longlat +a=6377301.243 +b=6356100.230165384 +towgs84=283,682,231,0,0,0,0 +no_defs ","projection_name":"Kalianpur 1962","url":"http:\/\/epsg.io\/4145","WGS84_bounds":"","country_name":"Pakistan","epsg":4145},{"value":"+proj=poly +lat_0=8.25 +lon_0=-81 +x_0=914391.7962 +y_0=999404.7217154861 +ellps=clrk66 +to_meter=0.9143917962 +no_defs ","projection_name":"Panama-Colon 1911 \/ Panama Polyconic","url":"http:\/\/epsg.io\/5472","WGS84_bounds":"-83.04 7.15 -77.19 9.68","country_name":"Panama","epsg":5472},{"value":"+proj=tmerc +lat_0=-6 +lon_0=-80.5 +k=0.99983008 +x_0=222000 +y_0=1426834.743 +ellps=intl +towgs84=-288,175,-376,0,0,0,0 +units=m +no_defs ","projection_name":"PSAD56 \/ Peru west zone","url":"http:\/\/epsg.io\/24891","WGS84_bounds":"-81.41 -45.0 -56.47 12.52","country_name":"Peru","epsg":24891},{"value":"+proj=tmerc +lat_0=0 +lon_0=117 +k=0.99995 +x_0=500000 +y_0=0 +ellps=clrk66 +towgs84=-133,-77,-51,0,0,0,0 +units=m +no_defs ","projection_name":"Luzon 1911 \/ Philippines zone I","url":"http:\/\/epsg.io\/25391","WGS84_bounds":"116.89 7.75 125.88 19.45","country_name":"Philippines","epsg":25391},{"value":"+proj=utm +zone=54 +south +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"PNG94 \/ PNGMG94 zone 54","url":"http:\/\/epsg.io\/5550","WGS84_bounds":"139.2 -14.75 162.81 2.58","country_name":"Papua New Guinea","epsg":5550},{"value":"+proj=tmerc +lat_0=0 +lon_0=19 +k=0.9993 +x_0=500000 +y_0=-5300000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ETRS89 \/ Poland CS92","url":"http:\/\/epsg.io\/2180","WGS84_bounds":"-16.1 32.88 39.65 84.17","country_name":"Poland","epsg":2180},{"value":"+proj=lcc +lat_1=18.43333333333333 +lat_2=18.03333333333333 +lat_0=17.83333333333333 +lon_0=-66.43333333333334 +x_0=152400.3048006096 +y_0=0 +ellps=clrk66 +towgs84=11,72,-101,0,0,0,0 +units=us-ft +no_defs ","projection_name":"Puerto Rico State Plane CS of 1927","url":"http:\/\/epsg.io\/3991","WGS84_bounds":"-67.97 17.62 -64.25 18.78","country_name":"Puerto Rico","epsg":3991},{"value":"+proj=tmerc +lat_0=38 +lon_0=125 +k=1 +x_0=200000 +y_0=500000 +ellps=bessel +units=m +no_defs ","projection_name":"Tokyo 1892 \/ Korea West Belt","url":"http:\/\/epsg.io\/5169","WGS84_bounds":"124.27 33.99 126.0 40.9","country_name":"North Korea","epsg":5169},{"value":"+proj=tmerc +lat_0=39.66825833333333 +lon_0=-8.133108333333334 +k=1 +x_0=0 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ETRS89 \/ Portugal TM06","url":"http:\/\/epsg.io\/3763","WGS84_bounds":"-16.1 32.88 39.65 84.17","country_name":"Portugal","epsg":3763},{"value":"+proj=longlat +ellps=intl +towgs84=-134,229,-29,0,0,0,0 +no_defs ","projection_name":"Chua","url":"http:\/\/epsg.io\/4224","WGS84_bounds":"","country_name":"Paraguay","epsg":4224},{"value":"+proj=tmerc +lat_0=31.73409694444445 +lon_0=35.21208055555556 +k=1 +x_0=170251.555 +y_0=1126867.909 +a=6378300.789 +b=6356566.435 +towgs84=-275.722,94.7824,340.894,-8.001,-4.42,-11.821,1 +units=m +no_defs ","projection_name":"Palestine 1923 \/ Palestine Belt","url":"http:\/\/epsg.io\/28192","WGS84_bounds":"34.17 29.18 39.31 33.38","country_name":"Palestine","epsg":28192},{"value":"+proj=tmerc +lat_0=24.45 +lon_0=51.21666666666667 +k=0.99999 +x_0=200000 +y_0=300000 +ellps=intl +towgs84=-128.16,-282.42,21.93,0,0,0,0 +units=m +no_defs ","projection_name":"Qatar 1974 \/ Qatar National Grid","url":"http:\/\/epsg.io\/28600","WGS84_bounds":"50.55 24.64 53.04 27.05","country_name":"Qatar","epsg":28600},{"value":"+proj=sterea +lat_0=45.9 +lon_0=25.39246588888889 +k=0.9996667 +x_0=500000 +y_0=500000 +ellps=intl +towgs84=103.25,-100.4,-307.19,0,0,0,0 +units=m +no_defs ","projection_name":"Dealul Piscului 1930 \/ Stereo 33","url":"http:\/\/epsg.io\/31600","WGS84_bounds":"20.26 43.62 29.74 48.27","country_name":"Romania","epsg":31600},{"value":"+proj=utm +zone=36 +south +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 36S","url":"http:\/\/epsg.io\/32736","WGS84_bounds":"30.0 -80.0 36.0 0.0","country_name":"Rwanda","epsg":32736},{"value":"+proj=lcc +lat_1=22.5 +lat_0=22.5 +lon_0=-5.4 +k_0=0.999616437 +x_0=1500000 +y_0=400000 +a=6378249.2 +b=6356515 +towgs84=31,146,47,0,0,0,0 +units=m +no_defs ","projection_name":"Merchich \/ Sahara Sud","url":"http:\/\/epsg.io\/26195","WGS84_bounds":"-13.24 27.66 -1.01 35.97","country_name":"Western Sahara","epsg":26195},{"value":"+proj=lcc +lat_1=17 +lat_2=33 +lat_0=25.08951 +lon_0=48 +x_0=0 +y_0=0 +ellps=intl +towgs84=-143,-236,7,0,0,0,0 +units=m +no_defs ","projection_name":"Ain el Abd \/ Aramco Lambert","url":"http:\/\/epsg.io\/2318","WGS84_bounds":"34.51 15.61 55.67 32.16","country_name":"Saudi Arabia","epsg":2318},{"value":"+proj=utm +zone=35 +ellps=clrk80 +towgs84=-166,-15,204,0,0,0,0 +units=m +no_defs ","projection_name":"Adindan \/ UTM zone 35N","url":"http:\/\/epsg.io\/20135","WGS84_bounds":"21.82 3.4 47.99 22.24","country_name":"Sudan","epsg":20135},{"value":"+proj=utm +zone=35 +ellps=clrk80 +towgs84=-166,-15,204,0,0,0,0 +units=m +no_defs ","projection_name":"Adindan \/ UTM zone 35N","url":"http:\/\/epsg.io\/20135","WGS84_bounds":"21.82 3.4 47.99 22.24","country_name":"South Sudan","epsg":20135},{"value":"+proj=utm +zone=28 +a=6378249.2 +b=6356515 +units=m +no_defs ","projection_name":"Yoff \/ UTM zone 28N","url":"http:\/\/epsg.io\/31028","WGS84_bounds":"-20.22 10.64 -11.36 16.7","country_name":"Senegal","epsg":31028},{"value":"+proj=longlat +ellps=intl +towgs84=230,-199,-752,0,0,0,0 +no_defs ","projection_name":"Solomon 1968","url":"http:\/\/epsg.io\/4718","WGS84_bounds":"","country_name":"Solomon Islands","epsg":4718},{"value":"+proj=longlat +ellps=clrk80 +towgs84=-88,4,101,0,0,0,0 +no_defs ","projection_name":"Sierra Leone 1968","url":"http:\/\/epsg.io\/4175","WGS84_bounds":"","country_name":"Sierra Leone","epsg":4175},{"value":"+proj=lcc +lat_1=13.78333333333333 +lat_0=13.78333333333333 +lon_0=-89 +k_0=0.99996704 +x_0=500000 +y_0=295809.184 +ellps=clrk66 +towgs84=213.11,9.37,-74.95,0,0,0,0 +units=m +no_defs ","projection_name":"Ocotepeque 1935 \/ El Salvador Lambert","url":"http:\/\/epsg.io\/5460","WGS84_bounds":"-85.97 7.98 -82.53 11.22","country_name":"El Salvador","epsg":5460},{"value":"+proj=tmerc +lat_0=0 +lon_0=24 +k=0.9999 +x_0=8500000 +y_0=0 +ellps=bessel +towgs84=682,-203,480,0,0,0,0 +units=m +no_defs ","projection_name":"MGI 1901 \/ Balkans zone 8","url":"http:\/\/epsg.io\/3910","WGS84_bounds":"13.38 40.85 23.04 46.88","country_name":"Serbia","epsg":3910},{"value":"+proj=tmerc +lat_0=0 +lon_0=-55.68333333333333 +k=0.9999 +x_0=500000 +y_0=0 +ellps=intl +towgs84=-265,120,-358,0,0,0,0 +units=m +no_defs ","projection_name":"Zanderij \/ Suriname TM","url":"http:\/\/epsg.io\/31171","WGS84_bounds":"-58.08 1.83 -52.66 9.35","country_name":"Suriname","epsg":31171},{"value":"+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=589,76,480,0,0,0,0 +units=m +no_defs ","projection_name":"S-JTSK \/ Krovak East North -- SJTSK","url":"http:\/\/epsg.io\/5514","WGS84_bounds":"12.09 47.73 22.56 51.06","country_name":"Slovakia","epsg":5514},{"value":"+proj=tmerc +lat_0=0 +lon_0=15 +k=0.9999 +x_0=500000 +y_0=0 +ellps=bessel +towgs84=682,-203,480,0,0,0,0 +units=m +no_defs ","projection_name":"MGI 1901 \/ Slovenia Grid","url":"http:\/\/epsg.io\/3911","WGS84_bounds":"13.38 40.85 23.04 46.88","country_name":"Slovenia","epsg":3911},{"value":"+proj=tmerc +lat_0=0 +lon_0=18.05779 +k=0.99999425 +x_0=100178.1808 +y_0=-6500614.7836 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"ST74","url":"http:\/\/epsg.io\/3152","WGS84_bounds":"10.03 54.96 24.17 69.07","country_name":"Sweden","epsg":3152},{"value":"+proj=tmerc +lat_0=0 +lon_0=31 +k=1 +x_0=0 +y_0=0 +axis=wsu +a=6378249.145 +b=6356514.966398753 +towgs84=-136,-108,-292,0,0,0,0 +units=m +no_defs ","projection_name":"Cape \/ Lo31","url":"http:\/\/epsg.io\/22291","WGS84_bounds":"16.45 -34.88 32.95 -22.13","country_name":"Swaziland","epsg":22291},{"value":"+proj=lcc +lat_1=34.65 +lat_0=34.65 +lon_0=37.35 +k_0=0.9996256 +x_0=300000 +y_0=300000 +a=6378249.2 +b=6356515 +towgs84=-190.421,8.532,238.69,0,0,0,0 +units=m +no_defs ","projection_name":"Deir ez Zor \/ Syria Lambert","url":"http:\/\/epsg.io\/22770","WGS84_bounds":"35.61 32.31 42.38 37.3","country_name":"Syria","epsg":22770},{"value":"+proj=utm +zone=34 +ellps=WGS72 +towgs84=0,0,1.9,0,0,0.814,-0.38 +units=m +no_defs ","projection_name":"WGS 72BE \/ UTM zone 34N","url":"http:\/\/epsg.io\/32434","WGS84_bounds":"-180.0 -90.0 180.0 90.0","country_name":"Chad","epsg":32434},{"value":"+proj=utm +zone=31 +a=6378249.2 +b=6356515 +units=m +no_defs ","projection_name":"Lome \/ UTM zone 31N","url":"http:\/\/epsg.io\/25231","WGS84_bounds":"-0.15 2.91 2.42 11.14","country_name":"Togo","epsg":25231},{"value":"+proj=longlat +a=6377276.345 +b=6356075.41314024 +towgs84=210,814,289,0,0,0,0 +no_defs ","projection_name":"Indian 1975","url":"http:\/\/epsg.io\/4240","WGS84_bounds":"","country_name":"Thailand","epsg":4240},{"value":"+proj=tmerc +lat_0=0 +lon_0=75 +k=1 +x_0=13500000 +y_0=0 +ellps=krass +towgs84=23.92,-141.27,-80.9,-0,0.35,0.82,-0.12 +units=m +no_defs ","projection_name":"Pulkovo 1942 \/ Gauss-Kruger zone 13","url":"http:\/\/epsg.io\/28413","WGS84_bounds":"72.0 36.79 78.0 79.71","country_name":"Tajikistan","epsg":28413},{"value":"+proj=merc +lon_0=51 +lat_ts=42 +x_0=0 +y_0=0 +ellps=krass +towgs84=23.92,-141.27,-80.9,-0,0.35,0.82,-0.12 +units=m +no_defs ","projection_name":"Pulkovo 1942 \/ Caspian Sea Mercator","url":"http:\/\/epsg.io\/3388","WGS84_bounds":"46.95 37.35 53.93 46.97","country_name":"Turkmenistan","epsg":3388},{"value":"+proj=cass +lat_0=10.44166666666667 +lon_0=-61.33333333333334 +x_0=86501.46392051999 +y_0=65379.0134283 +a=6378293.645208759 +b=6356617.987679838 +towgs84=-61.702,284.488,472.052,0,0,0,0 +to_meter=0.201166195164 +no_defs ","projection_name":"Trinidad 1903 \/ Trinidad Grid","url":"http:\/\/epsg.io\/30200","WGS84_bounds":"-62.09 9.83 -60.0 11.51","country_name":"Trinidad and Tobago","epsg":30200},{"value":"","projection_name":"Carthage (Paris) \/ Tunisia Mining Grid","url":"http:\/\/epsg.io\/22300","WGS84_bounds":null,"country_name":"Tunisia","epsg":22300},{"value":"+proj=lcc +lat_1=35 +lat_2=65 +lat_0=52 +lon_0=10 +x_0=4000000 +y_0=2800000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"TUREF \/ LCC Europe","url":"http:\/\/epsg.io\/5637","WGS84_bounds":"25.62 34.42 44.83 43.45","country_name":"Turkey","epsg":5637},{"value":"+proj=utm +zone=51 +ellps=intl +towgs84=-637,-549,-203,0,0,0,0 +units=m +no_defs ","projection_name":"Hu Tzu Shan 1950 \/ UTM zone 51N","url":"http:\/\/epsg.io\/3829","WGS84_bounds":"119.25 21.87 122.06 25.34","country_name":"Taiwan","epsg":3829},{"value":"+proj=longlat +ellps=clrk80 +towgs84=-160,-6,-302,0,0,0,0 +no_defs ","projection_name":"Arc 1960","url":"http:\/\/epsg.io\/4210","WGS84_bounds":"","country_name":"Tanzania","epsg":4210},{"value":"+proj=longlat +ellps=clrk80 +towgs84=-160,-6,-302,0,0,0,0 +no_defs ","projection_name":"Arc 1960","url":"http:\/\/epsg.io\/4210","WGS84_bounds":"","country_name":"Uganda","epsg":4210},{"value":"+proj=tmerc +lat_0=0 +lon_0=21 +k=1 +x_0=500000 +y_0=0 +ellps=krass +towgs84=25,-141,-78.5,-0,0.35,0.736,0 +units=m +no_defs ","projection_name":"UCS-2000 \/ Gauss-Kruger CM 21E","url":"http:\/\/epsg.io\/5566","WGS84_bounds":"22.15 47.95 24.0 51.66","country_name":"Ukraine","epsg":5566},{"value":"+proj=longlat +ellps=intl +towgs84=-155,171,37,0,0,0,0 +no_defs ","projection_name":"Yacare","url":"http:\/\/epsg.io\/4309","WGS84_bounds":"","country_name":"Uruguay","epsg":4309},{"value":"+proj=utm +zone=7 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"NAD83 \/ UTM zone 7N","url":"http:\/\/epsg.io\/26907","WGS84_bounds":"-172.54 23.81 -47.74 86.46","country_name":"United States of America","epsg":26907},{"value":"+proj=tmerc +lat_0=0 +lon_0=63 +k=1 +x_0=11500000 +y_0=0 +ellps=krass +towgs84=23.92,-141.27,-80.9,-0,0.35,0.82,-0.12 +units=m +no_defs ","projection_name":"Pulkovo 1942 \/ Gauss-Kruger zone 11","url":"http:\/\/epsg.io\/28411","WGS84_bounds":"60.0 35.14 66.0 81.77","country_name":"Uzbekistan","epsg":28411},{"value":"+proj=lcc +lat_1=9 +lat_2=3 +lat_0=6 +lon_0=-66 +x_0=1000000 +y_0=1000000 +ellps=intl +towgs84=-288,175,-376,0,0,0,0 +units=m +no_defs ","projection_name":"PSAD56 \/ ICN Regional","url":"http:\/\/epsg.io\/2317","WGS84_bounds":"-81.41 -45.0 -56.47 12.52","country_name":"Venezuela","epsg":2317},{"value":"+proj=longlat +ellps=krass +towgs84=-17.51,-108.32,-62.39,0,0,0,0 +no_defs ","projection_name":"Hanoi 1972","url":"http:\/\/epsg.io\/4147","WGS84_bounds":"","country_name":"Vietnam","epsg":4147},{"value":"+proj=longlat +ellps=intl +towgs84=-127,-769,472,0,0,0,0 +no_defs ","projection_name":"Bellevue","url":"http:\/\/epsg.io\/4714","WGS84_bounds":"","country_name":"Vanuatu","epsg":4714},{"value":"+proj=longlat +ellps=krass +towgs84=-76,-138,67,0,0,0,0 +no_defs ","projection_name":"South Yemen","url":"http:\/\/epsg.io\/4164","WGS84_bounds":"","country_name":"Yemen","epsg":4164},{"value":"+proj=tmerc +lat_0=0 +lon_0=33 +k=1 +x_0=0 +y_0=0 +axis=wsu +a=6378249.145 +b=6356514.966398753 +towgs84=-136,-108,-292,0,0,0,0 +units=m +no_defs ","projection_name":"Cape \/ Lo33","url":"http:\/\/epsg.io\/22293","WGS84_bounds":"16.45 -34.88 32.95 -22.13","country_name":"South Africa","epsg":22293},{"value":"+proj=utm +zone=34 +south +a=6378249.145 +b=6356514.966398753 +towgs84=-143,-90,-294,0,0,0,0 +units=m +no_defs ","projection_name":"Arc 1950 \/ UTM zone 34S","url":"http:\/\/epsg.io\/20934","WGS84_bounds":"19.99 -30.66 35.93 -8.19","country_name":"Zambia","epsg":20934},{"value":"+proj=utm +zone=36 +south +a=6378249.145 +b=6356514.966398753 +towgs84=-143,-90,-294,0,0,0,0 +units=m +no_defs ","projection_name":"Arc 1950 \/ UTM zone 36S","url":"http:\/\/epsg.io\/20936","WGS84_bounds":"19.99 -30.66 35.93 -8.19","country_name":"Zimbabwe","epsg":20936},{"value":"+proj=utm +zone=52 +south +datum=WGS84 +units=m +no_defs ","projection_name":"WGS 84 \/ UTM zone 52S","url":"http:\/\/epsg.io\/32752","WGS84_bounds":"126.0 -80.0 132.0 0.0","country_name":"East Timor","epsg":32752},{"value":"+proj=longlat +ellps=clrk80 +towgs84=-346,-1,224,0,0,0,0 +no_defs ","projection_name":"Fahud","url":"http:\/\/epsg.io\/4232","WGS84_bounds":"","country_name":"Oman","epsg":4232},{"value":"+proj=longlat +ellps=krass +towgs84=-43,-163,45,0,0,0,0 +no_defs ","projection_name":"Afgooye","url":"http:\/\/epsg.io\/4205","WGS84_bounds":"","country_name":"Somalia","epsg":4205},{"value":"+proj=lcc +lat_1=49 +lat_2=77 +lat_0=49 +lon_0=-95 +x_0=0 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"NAD83 \/ Canada Atlas Lambert","url":"http:\/\/epsg.io\/3978","WGS84_bounds":"-172.54 23.81 -47.74 86.46","country_name":"Canada","epsg":3978},{"value":"+proj=longlat +ellps=intl +towgs84=-156,-271,-189,0,0,0,0 +no_defs ","projection_name":"Hong Kong 1963(67)","url":"http:\/\/epsg.io\/4739","WGS84_bounds":"","country_name":"Hong Kong","epsg":4739},{"value":"+proj=lcc +lat_1=-20.66666666666667 +lat_2=-22.33333333333333 +lat_0=-21.5 +lon_0=166 +x_0=400000 +y_0=300000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ","projection_name":"RGNC91-93 \/ Lambert New Caledonia","url":"http:\/\/epsg.io\/3163","WGS84_bounds":"156.25 -26.45 174.28 -14.83","country_name":"New Caledonia","epsg":3163},{"country_name":"Macau"},{"value":"+proj=lcc +lat_1=18 +lat_2=24 +lat_0=21 +lon_0=114 +x_0=500000 +y_0=500000 +ellps=WGS72 +towgs84=0,0,1.9,0,0,0.814,-0.38 +units=m +no_defs ","projection_name":"WGS 72BE \/ South China Sea Lambert","url":"http:\/\/epsg.io\/3415","WGS84_bounds":"-180.0 -90.0 180.0 90.0","country_name":"China","epsg":3415}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment