BEGIN; --- Table structures PRAGMA page_size = 4096; PRAGMA foreign_keys = 1; CREATE TABLE metadata( key TEXT NOT NULL PRIMARY KEY CHECK (length(key) >= 1), value TEXT NOT NULL ); CREATE TABLE unit_of_measure( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), type TEXT NOT NULL CHECK (type IN ('length', 'angle', 'scale', 'time')), conv_factor FLOAT, deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_unit_of_measure PRIMARY KEY (auth_name, code) ); CREATE TABLE celestial_body ( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), semi_major_axis FLOAT NOT NULL CHECK (semi_major_axis > 0), -- approximate (in metre) CONSTRAINT pk_celestial_body PRIMARY KEY (auth_name, code) ); INSERT INTO celestial_body VALUES('PROJ', 'EARTH', 'Earth', 6378137.0); CREATE TABLE ellipsoid ( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, celestial_body_auth_name TEXT NOT NULL, celestial_body_code TEXT NOT NULL, semi_major_axis FLOAT NOT NULL CHECK (semi_major_axis > 0), uom_auth_name TEXT NOT NULL, uom_code TEXT NOT NULL, inv_flattening FLOAT CHECK (inv_flattening = 0 OR inv_flattening >= 1.0), semi_minor_axis FLOAT CHECK (semi_minor_axis > 0 AND semi_minor_axis <= semi_major_axis), deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_ellipsoid PRIMARY KEY (auth_name, code), CONSTRAINT fk_ellipsoid_celestial_body FOREIGN KEY (celestial_body_auth_name, celestial_body_code) REFERENCES celestial_body(auth_name, code), CONSTRAINT fk_ellipsoid_unit_of_measure FOREIGN KEY (uom_auth_name, uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT check_ellipsoid_inv_flattening_semi_minor_mutually_exclusive CHECK ((inv_flattening IS NULL AND semi_minor_axis IS NOT NULL) OR (inv_flattening IS NOT NULL AND semi_minor_axis IS NULL)) ); CREATE TRIGGER ellipsoid_insert_trigger BEFORE INSERT ON ellipsoid FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on ellipsoid violates constraint: uom should be of type ''length''') WHERE (SELECT type FROM unit_of_measure WHERE auth_name = NEW.uom_auth_name AND code = NEW.uom_code) != 'length'; END; CREATE TABLE area( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT NOT NULL, south_lat FLOAT CHECK (south_lat BETWEEN -90 AND 90), north_lat FLOAT CHECK (north_lat BETWEEN -90 AND 90), west_lon FLOAT CHECK (west_lon BETWEEN -180 AND 180), east_lon FLOAT CHECK (east_lon BETWEEN -180 AND 180), deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_area PRIMARY KEY (auth_name, code), CONSTRAINT check_area_lat CHECK (south_lat <= north_lat) ); CREATE TABLE prime_meridian( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), longitude FLOAT NOT NULL CHECK (longitude BETWEEN -180 AND 180), uom_auth_name TEXT NOT NULL, uom_code TEXT NOT NULL, deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_prime_meridian PRIMARY KEY (auth_name, code), CONSTRAINT fk_prime_meridian_unit_of_measure FOREIGN KEY (uom_auth_name, uom_code) REFERENCES unit_of_measure(auth_name, code) ); CREATE TRIGGER prime_meridian_insert_trigger BEFORE INSERT ON prime_meridian FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on prime_meridian violates constraint: uom should be of type ''angle''') WHERE (SELECT type FROM unit_of_measure WHERE auth_name = NEW.uom_auth_name AND code = NEW.uom_code) != 'angle'; END; CREATE TABLE geodetic_datum ( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, ellipsoid_auth_name TEXT NOT NULL, ellipsoid_code TEXT NOT NULL, prime_meridian_auth_name TEXT NOT NULL, prime_meridian_code TEXT NOT NULL, area_of_use_auth_name TEXT NOT NULL, area_of_use_code TEXT NOT NULL, publication_date TEXT, --- YYYY-MM-DD format deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_geodetic_datum PRIMARY KEY (auth_name, code), CONSTRAINT fk_geodetic_datum_ellipsoid FOREIGN KEY (ellipsoid_auth_name, ellipsoid_code) REFERENCES ellipsoid(auth_name, code), CONSTRAINT fk_geodetic_datum_prime_meridian FOREIGN KEY (prime_meridian_auth_name, prime_meridian_code) REFERENCES prime_meridian(auth_name, code), CONSTRAINT fk_geodetic_datum_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code) ); CREATE TRIGGER geodetic_datum_insert_trigger BEFORE INSERT ON geodetic_datum FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on geodetic_datum violates constraint: ellipsoid must not be deprecated when geodetic_datum is not deprecated') WHERE EXISTS(SELECT 1 FROM ellipsoid WHERE ellipsoid.auth_name = NEW.ellipsoid_auth_name AND ellipsoid.code = NEW.ellipsoid_code AND ellipsoid.deprecated != 0) AND NEW.deprecated = 0; SELECT RAISE(ABORT, 'insert on geodetic_datum violates constraint: prime_meridian must not be deprecated when geodetic_datum is not deprecated') WHERE EXISTS(SELECT 1 FROM prime_meridian WHERE prime_meridian.auth_name = NEW.prime_meridian_auth_name AND prime_meridian.code = NEW.prime_meridian_code AND prime_meridian.deprecated != 0) AND NEW.deprecated = 0; SELECT RAISE(ABORT, 'insert on geodetic_datum violates constraint: area_of_use must not be deprecated when geodetic_datum is not deprecated') WHERE EXISTS(SELECT 1 FROM area WHERE area.auth_name = NEW.area_of_use_auth_name AND area.code = NEW.area_of_use_code AND area.deprecated != 0) AND NEW.deprecated = 0; END; CREATE TABLE vertical_datum ( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, area_of_use_auth_name TEXT NOT NULL, area_of_use_code TEXT NOT NULL, publication_date TEXT CHECK (NULL OR length(publication_date) = 10), --- YYYY-MM-DD format deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_vertical_datum PRIMARY KEY (auth_name, code), CONSTRAINT fk_vertical_datum_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code) ); CREATE TRIGGER vertical_datum_insert_trigger BEFORE INSERT ON vertical_datum FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on vertical_datum violates constraint: area_of_use must not be deprecated when vertical_datum is not deprecated') WHERE EXISTS(SELECT 1 FROM area WHERE area.auth_name = NEW.area_of_use_auth_name AND area.code = NEW.area_of_use_code AND area.deprecated != 0) AND NEW.deprecated = 0; END; CREATE TABLE coordinate_system( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), type TEXT NOT NULL CHECK (type IN ('Cartesian', 'vertical', 'ellipsoidal', 'spherical')), dimension SMALLINT NOT NULL CHECK (dimension BETWEEN 1 AND 3), CONSTRAINT pk_coordinate_system PRIMARY KEY (auth_name, code), CONSTRAINT check_cs_vertical CHECK (type != 'vertical' OR dimension = 1), CONSTRAINT check_cs_cartesian CHECK (type != 'Cartesian' OR dimension IN (2,3)), CONSTRAINT check_cs_ellipsoidal CHECK (type != 'ellipsoidal' OR dimension IN (2,3)) ); CREATE TABLE axis( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), abbrev TEXT NOT NULL, orientation TEXT NOT NULL, coordinate_system_auth_name TEXT NOT NULL, coordinate_system_code TEXT NOT NULL, coordinate_system_order SMALLINT NOT NULL CHECK (coordinate_system_order BETWEEN 1 AND 3), uom_auth_name TEXT NOT NULL, uom_code TEXT NOT NULL, CONSTRAINT pk_axis PRIMARY KEY (auth_name, code), CONSTRAINT fk_axis_coordinate_system FOREIGN KEY (coordinate_system_auth_name, coordinate_system_code) REFERENCES coordinate_system(auth_name, code), CONSTRAINT fk_axis_unit_of_measure FOREIGN KEY (uom_auth_name, uom_code) REFERENCES unit_of_measure(auth_name, code) ); CREATE TRIGGER axis_insert_trigger BEFORE INSERT ON axis FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on axis violates constraint: coordinate_system_order should be <= coordinate_system.dimension') WHERE NEW.coordinate_system_order > (SELECT dimension FROM coordinate_system WHERE auth_name = NEW.coordinate_system_auth_name AND code = NEW.coordinate_system_code); END; CREATE TABLE geodetic_crs( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, type TEXT NOT NULL CHECK (type IN ('geographic 2D', 'geographic 3D', 'geocentric')), coordinate_system_auth_name TEXT, coordinate_system_code TEXT, datum_auth_name TEXT, datum_code TEXT, area_of_use_auth_name TEXT, area_of_use_code TEXT, text_definition TEXT, -- PROJ string or WKT string. Use of this is discouraged as prone to definition ambiguities deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_geodetic_crs PRIMARY KEY (auth_name, code), CONSTRAINT fk_geodetic_crs_coordinate_system FOREIGN KEY (coordinate_system_auth_name, coordinate_system_code) REFERENCES coordinate_system(auth_name, code), CONSTRAINT fk_geodetic_crs_datum FOREIGN KEY (datum_auth_name, datum_code) REFERENCES geodetic_datum(auth_name, code), CONSTRAINT fk_geodetic_crs_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code), CONSTRAINT check_geodetic_crs_cs CHECK (NOT ((coordinate_system_auth_name IS NULL OR coordinate_system_code IS NULL) AND text_definition IS NULL)), CONSTRAINT check_geodetic_crs_cs_bis CHECK (NOT ((NOT(coordinate_system_auth_name IS NULL OR coordinate_system_code IS NULL)) AND text_definition IS NOT NULL)), CONSTRAINT check_geodetic_crs_datum CHECK (NOT ((datum_auth_name IS NULL OR datum_code IS NULL) AND text_definition IS NULL)), CONSTRAINT check_geodetic_crs_datum_bis CHECK (NOT ((NOT(datum_auth_name IS NULL OR datum_code IS NULL)) AND text_definition IS NOT NULL)), CONSTRAINT check_geodetic_crs_area CHECK (NOT ((area_of_use_auth_name IS NULL OR area_of_use_code IS NULL) AND text_definition IS NULL)) ); CREATE TRIGGER geodetic_crs_insert_trigger BEFORE INSERT ON geodetic_crs FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on geodetic_crs violates constraint: (auth_name, code) must not already exist in crs_view') WHERE EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.auth_name AND crs_view.code = NEW.code); SELECT RAISE(ABORT, 'insert on geodetic_crs violates constraint: datum must not be deprecated when geodetic_crs is not deprecated') WHERE EXISTS(SELECT 1 FROM geodetic_datum datum WHERE datum.auth_name = NEW.datum_auth_name AND datum.code = NEW.datum_code AND datum.deprecated != 0) AND NEW.deprecated = 0 AND NEW.text_definition IS NOT NULL; SELECT RAISE(ABORT, 'insert on geodetic_crs violates constraint: area_of_use must not be deprecated when geodetic_crs is not deprecated') WHERE EXISTS(SELECT 1 FROM area WHERE area.auth_name = NEW.area_of_use_auth_name AND area.code = NEW.area_of_use_code AND area.deprecated != 0) AND NEW.deprecated = 0 AND NEW.text_definition IS NOT NULL; SELECT RAISE(ABORT, 'insert on geodetic_crs violates constraint: coordinate_system.dimension must be 3 for type = ''geocentric''') WHERE NEW.type = 'geocentric' AND (SELECT dimension FROM coordinate_system WHERE coordinate_system.auth_name = NEW.coordinate_system_auth_name AND coordinate_system.code = NEW.coordinate_system_code) != 3; SELECT RAISE(ABORT, 'insert on geodetic_crs violates constraint: coordinate_system.type must be ''Cartesian'' for type = ''geocentric''') WHERE NEW.type = 'geocentric' AND (SELECT type FROM coordinate_system WHERE coordinate_system.auth_name = NEW.coordinate_system_auth_name AND coordinate_system.code = NEW.coordinate_system_code) != 'Cartesian'; SELECT RAISE(ABORT, 'insert on geodetic_crs violates constraint: coordinate_system.type must be ''ellipsoidal'' for type = ''geographic 2D'' or ''geographic 3D''') WHERE NEW.type IN ('geographic 2D', 'geographic 3D') AND (SELECT type FROM coordinate_system WHERE coordinate_system.auth_name = NEW.coordinate_system_auth_name AND coordinate_system.code = NEW.coordinate_system_code) != 'ellipsoidal'; SELECT RAISE(ABORT, 'insert on geodetic_crs violates constraint: coordinate_system.dimension must be 2 for type = ''geographic 2D''') WHERE NEW.type = 'geographic 2D' AND NEW.deprecated != 1 AND (SELECT dimension FROM coordinate_system WHERE coordinate_system.auth_name = NEW.coordinate_system_auth_name AND coordinate_system.code = NEW.coordinate_system_code) != 2; SELECT RAISE(ABORT, 'insert on geodetic_crs violates constraint: coordinate_system.dimension must be 3 for type = ''geographic 3D''') WHERE NEW.type = 'geographic 3D' AND (SELECT dimension FROM coordinate_system WHERE coordinate_system.auth_name = NEW.coordinate_system_auth_name AND coordinate_system.code = NEW.coordinate_system_code) != 3; END; CREATE TABLE vertical_crs( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, coordinate_system_auth_name TEXT NOT NULL, coordinate_system_code TEXT NOT NULL, datum_auth_name TEXT NOT NULL, datum_code TEXT NOT NULL, area_of_use_auth_name TEXT NOT NULL, area_of_use_code TEXT NOT NULL, deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_vertical_crs PRIMARY KEY (auth_name, code), CONSTRAINT fk_vertical_crs_coordinate_system FOREIGN KEY (coordinate_system_auth_name, coordinate_system_code) REFERENCES coordinate_system(auth_name, code), CONSTRAINT fk_vertical_crs_datum FOREIGN KEY (datum_auth_name, datum_code) REFERENCES vertical_datum(auth_name, code), CONSTRAINT fk_vertical_crs_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code) ); CREATE TRIGGER vertical_crs_insert_trigger BEFORE INSERT ON vertical_crs FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on vertical_crs violates constraint: (auth_name, code) must not already exist in crs_view') WHERE EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.auth_name AND crs_view.code = NEW.code); SELECT RAISE(ABORT, 'insert on vertical_crs violates constraint: datum must not be deprecated when vertical_crs is not deprecated') WHERE EXISTS(SELECT 1 FROM vertical_crs datum WHERE datum.auth_name = NEW.datum_auth_name AND datum.code = NEW.datum_code AND datum.deprecated != 0) AND NEW.deprecated = 0; SELECT RAISE(ABORT, 'insert on vertical_crs violates constraint: area_of_use must not be deprecated when vertical_crs is not deprecated') WHERE EXISTS(SELECT 1 FROM area WHERE area.auth_name = NEW.area_of_use_auth_name AND area.code = NEW.area_of_use_code AND area.deprecated != 0) AND NEW.deprecated = 0; SELECT RAISE(ABORT, 'insert on vertical_crs violates constraint: coordinate_system.type must be ''vertical''') WHERE (SELECT type FROM coordinate_system WHERE coordinate_system.auth_name = NEW.coordinate_system_auth_name AND coordinate_system.code = NEW.coordinate_system_code) != 'vertical'; SELECT RAISE(ABORT, 'insert on vertical_crs violates constraint: coordinate_system.dimension must be 1') WHERE (SELECT dimension FROM coordinate_system WHERE coordinate_system.auth_name = NEW.coordinate_system_auth_name AND coordinate_system.code = NEW.coordinate_system_code) != 1; END; CREATE TABLE conversion_method( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), CONSTRAINT pk_conversion_method PRIMARY KEY (auth_name, code) ); CREATE TABLE conversion_param( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), CONSTRAINT pk_conversion_param PRIMARY KEY (auth_name, code) ); CREATE TABLE conversion_table( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, area_of_use_auth_name TEXT NOT NULL, area_of_use_code TEXT NOT NULL, method_auth_name TEXT CHECK (method_auth_name IS NULL OR length(method_auth_name) >= 1), method_code TEXT CHECK (method_code IS NULL OR length(method_code) >= 1), -- method_name TEXT, param1_auth_name TEXT, param1_code TEXT, -- param1_name TEXT, param1_value FLOAT, param1_uom_auth_name TEXT, param1_uom_code TEXT, param2_auth_name TEXT, param2_code TEXT, --param2_name TEXT, param2_value FLOAT, param2_uom_auth_name TEXT, param2_uom_code TEXT, param3_auth_name TEXT, param3_code TEXT, --param3_name TEXT, param3_value FLOAT, param3_uom_auth_name TEXT, param3_uom_code TEXT, param4_auth_name TEXT, param4_code TEXT, --param4_name TEXT, param4_value FLOAT, param4_uom_auth_name TEXT, param4_uom_code TEXT, param5_auth_name TEXT, param5_code TEXT, --param5_name TEXT, param5_value FLOAT, param5_uom_auth_name TEXT, param5_uom_code TEXT, param6_auth_name TEXT, param6_code TEXT, --param6_name TEXT, param6_value FLOAT, param6_uom_auth_name TEXT, param6_uom_code TEXT, param7_auth_name TEXT, param7_code TEXT, --param7_name TEXT, param7_value FLOAT, param7_uom_auth_name TEXT, param7_uom_code TEXT, deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_conversion PRIMARY KEY (auth_name, code), CONSTRAINT fk_conversion_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code), CONSTRAINT fk_conversion_method FOREIGN KEY (method_auth_name, method_code) REFERENCES conversion_method(auth_name, code), --CONSTRAINT fk_conversion_coordinate_operation FOREIGN KEY (auth_name, code) REFERENCES coordinate_operation(auth_name, code), CONSTRAINT fk_conversion_param1_uom FOREIGN KEY (param1_uom_auth_name, param1_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_conversion_param2_uom FOREIGN KEY (param2_uom_auth_name, param2_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_conversion_param3_uom FOREIGN KEY (param3_uom_auth_name, param3_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_conversion_param4_uom FOREIGN KEY (param4_uom_auth_name, param4_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_conversion_param5_uom FOREIGN KEY (param5_uom_auth_name, param5_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_conversion_param6_uom FOREIGN KEY (param6_uom_auth_name, param6_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_conversion_param7_uom FOREIGN KEY (param7_uom_auth_name, param7_uom_code) REFERENCES unit_of_measure(auth_name, code) ); CREATE VIEW conversion AS SELECT c.auth_name, c.code, c.name, c.description, c.scope, c.area_of_use_auth_name, c.area_of_use_code, c.method_auth_name, c.method_code, m.name AS method_name, c.param1_auth_name, c.param1_code, param1.name AS param1_name, c.param1_value, c.param1_uom_auth_name, c.param1_uom_code, c.param2_auth_name, c.param2_code, param2.name AS param2_name, c.param2_value, c.param2_uom_auth_name, c.param2_uom_code, c.param3_auth_name, c.param3_code, param3.name AS param3_name, c.param3_value, c.param3_uom_auth_name, c.param3_uom_code, c.param4_auth_name, c.param4_code, param4.name AS param4_name, c.param4_value, c.param4_uom_auth_name, c.param4_uom_code, c.param5_auth_name, c.param5_code, param5.name AS param5_name, c.param5_value, c.param5_uom_auth_name, c.param5_uom_code, c.param6_auth_name, c.param6_code, param6.name AS param6_name, c.param6_value, c.param6_uom_auth_name, c.param6_uom_code, c.param7_auth_name, c.param7_code, param7.name AS param7_name, c.param7_value, c.param7_uom_auth_name, c.param7_uom_code, c.deprecated FROM conversion_table c LEFT JOIN conversion_method m ON c.method_auth_name = m.auth_name AND c.method_code = m.code LEFT JOIN conversion_param param1 ON c.param1_auth_name = param1.auth_name AND c.param1_code = param1.code LEFT JOIN conversion_param param2 ON c.param2_auth_name = param2.auth_name AND c.param2_code = param2.code LEFT JOIN conversion_param param3 ON c.param3_auth_name = param3.auth_name AND c.param3_code = param3.code LEFT JOIN conversion_param param4 ON c.param4_auth_name = param4.auth_name AND c.param4_code = param4.code LEFT JOIN conversion_param param5 ON c.param5_auth_name = param5.auth_name AND c.param5_code = param5.code LEFT JOIN conversion_param param6 ON c.param6_auth_name = param6.auth_name AND c.param6_code = param6.code LEFT JOIN conversion_param param7 ON c.param7_auth_name = param7.auth_name AND c.param7_code = param7.code ; CREATE TRIGGER conversion_method_insert_trigger BEFORE INSERT ON conversion_method BEGIN SELECT RAISE(ABORT, 'insert on conversion violates constraint: method should be known') WHERE (NEW.auth_name || '_' || NEW.code || '_' || NEW.name) NOT IN ( 'EPSG_1024_Popular Visualisation Pseudo Mercator', 'EPSG_1027_Lambert Azimuthal Equal Area (Spherical)', 'EPSG_1028_Equidistant Cylindrical', 'EPSG_1029_Equidistant Cylindrical (Spherical)', 'EPSG_1041_Krovak (North Orientated)', 'EPSG_1042_Krovak Modified', 'EPSG_1043_Krovak Modified (North Orientated)', 'EPSG_1051_Lambert Conic Conformal (2SP Michigan)', 'EPSG_1052_Colombia Urban', 'EPSG_1068_Height Depth Reversal', 'EPSG_1069_Change of Vertical Unit', 'EPSG_1078_Equal Earth', 'EPSG_9602_Geographic/geocentric conversions', 'EPSG_9659_Geographic3D to 2D conversion', 'EPSG_9801_Lambert Conic Conformal (1SP)', 'EPSG_9802_Lambert Conic Conformal (2SP)', 'EPSG_9803_Lambert Conic Conformal (2SP Belgium)', 'EPSG_9804_Mercator (variant A)', 'EPSG_9805_Mercator (variant B)', 'EPSG_9806_Cassini-Soldner', 'EPSG_9807_Transverse Mercator', 'EPSG_9808_Transverse Mercator (South Orientated)', 'EPSG_9809_Oblique Stereographic', 'EPSG_9810_Polar Stereographic (variant A)', 'EPSG_9811_New Zealand Map Grid', 'EPSG_9812_Hotine Oblique Mercator (variant A)', 'EPSG_9813_Laborde Oblique Mercator', 'EPSG_9815_Hotine Oblique Mercator (variant B)', 'EPSG_9816_Tunisia Mining Grid', 'EPSG_9817_Lambert Conic Near-Conformal', 'EPSG_9818_American Polyconic', 'EPSG_9819_Krovak', 'EPSG_9820_Lambert Azimuthal Equal Area', 'EPSG_9821_Lambert Azimuthal Equal Area (Spherical)', 'EPSG_9822_Albers Equal Area', 'EPSG_9823_Equidistant Cylindrical (Spherical)', 'EPSG_9824_Transverse Mercator Zoned Grid System', 'EPSG_9826_Lambert Conic Conformal (West Orientated)', 'EPSG_9828_Bonne (South Orientated)', 'EPSG_9829_Polar Stereographic (variant B)', 'EPSG_9830_Polar Stereographic (variant C)', 'EPSG_9831_Guam Projection', 'EPSG_9832_Modified Azimuthal Equidistant', 'EPSG_9833_Hyperbolic Cassini-Soldner', 'EPSG_9834_Lambert Cylindrical Equal Area (Spherical)', 'EPSG_9835_Lambert Cylindrical Equal Area', 'EPSG_9836_Geocentric/topocentric conversions', 'EPSG_9837_Geographic/topocentric conversions', 'EPSG_9838_Vertical Perspective', 'EPSG_9841_Mercator (1SP) (Spherical)', 'EPSG_9842_Equidistant Cylindrical', 'EPSG_9843_Axis Order Reversal (2D)', 'EPSG_9844_Axis Order Reversal (Geographic3D horizontal)', 'EPSG_9827_Bonne', 'PROJ_gstm_Gauss Schreiber Transverse Mercator', 'PROJ_mill_PROJ mill'); END; CREATE TRIGGER conversion_table_insert_trigger BEFORE INSERT ON conversion_table BEGIN SELECT RAISE(ABORT, 'insert on conversion_table violates constraint: (auth_name, code) must not already exist in coordinate_operation_with_conversion_view') WHERE EXISTS (SELECT 1 FROM coordinate_operation_with_conversion_view covwv WHERE covwv.auth_name = NEW.auth_name AND covwv.code = NEW.code); END; CREATE TRIGGER conversion_insert_trigger_method INSTEAD OF INSERT ON conversion WHEN NOT EXISTS (SELECT 1 FROM conversion_method m WHERE m.auth_name = NEW.method_auth_name AND m.code = NEW.method_code AND m.name = NEW.method_name) BEGIN INSERT INTO conversion_method VALUES (NEW.method_auth_name, NEW.method_code, NEW.method_name); END; CREATE TRIGGER conversion_insert_trigger_param1 INSTEAD OF INSERT ON conversion WHEN NEW.param1_auth_name is NOT NULL AND NOT EXISTS (SELECT 1 FROM conversion_param p WHERE p.auth_name = NEW.param1_auth_name AND p.code = NEW.param1_code AND p.name = NEW.param1_name) BEGIN INSERT INTO conversion_param VALUES (NEW.param1_auth_name, NEW.param1_code, NEW.param1_name); END; CREATE TRIGGER conversion_insert_trigger_param2 INSTEAD OF INSERT ON conversion WHEN NEW.param2_auth_name is NOT NULL AND NOT EXISTS (SELECT 1 FROM conversion_param p WHERE p.auth_name = NEW.param2_auth_name AND p.code = NEW.param2_code AND p.name = NEW.param2_name) BEGIN INSERT INTO conversion_param VALUES (NEW.param2_auth_name, NEW.param2_code, NEW.param2_name); END; CREATE TRIGGER conversion_insert_trigger_param3 INSTEAD OF INSERT ON conversion WHEN NEW.param3_auth_name is NOT NULL AND NOT EXISTS (SELECT 1 FROM conversion_param p WHERE p.auth_name = NEW.param3_auth_name AND p.code = NEW.param3_code AND p.name = NEW.param3_name) BEGIN INSERT INTO conversion_param VALUES (NEW.param3_auth_name, NEW.param3_code, NEW.param3_name); END; CREATE TRIGGER conversion_insert_trigger_param4 INSTEAD OF INSERT ON conversion WHEN NEW.param4_auth_name is NOT NULL AND NOT EXISTS (SELECT 1 FROM conversion_param p WHERE p.auth_name = NEW.param4_auth_name AND p.code = NEW.param4_code AND p.name = NEW.param4_name) BEGIN INSERT INTO conversion_param VALUES (NEW.param4_auth_name, NEW.param4_code, NEW.param4_name); END; CREATE TRIGGER conversion_insert_trigger_param5 INSTEAD OF INSERT ON conversion WHEN NEW.param5_auth_name is NOT NULL AND NOT EXISTS (SELECT 1 FROM conversion_param p WHERE p.auth_name = NEW.param5_auth_name AND p.code = NEW.param5_code AND p.name = NEW.param5_name) BEGIN INSERT INTO conversion_param VALUES (NEW.param5_auth_name, NEW.param5_code, NEW.param5_name); END; CREATE TRIGGER conversion_insert_trigger_param6 INSTEAD OF INSERT ON conversion WHEN NEW.param6_auth_name is NOT NULL AND NOT EXISTS (SELECT 1 FROM conversion_param p WHERE p.auth_name = NEW.param6_auth_name AND p.code = NEW.param6_code AND p.name = NEW.param6_name) BEGIN INSERT INTO conversion_param VALUES (NEW.param6_auth_name, NEW.param6_code, NEW.param6_name); END; CREATE TRIGGER conversion_insert_trigger_param7 INSTEAD OF INSERT ON conversion WHEN NEW.param7_auth_name is NOT NULL AND NOT EXISTS (SELECT 1 FROM conversion_param p WHERE p.auth_name = NEW.param7_auth_name AND p.code = NEW.param7_code AND p.name = NEW.param7_name) BEGIN INSERT INTO conversion_param VALUES (NEW.param7_auth_name, NEW.param7_code, NEW.param7_name); END; CREATE TRIGGER conversion_insert_trigger_insert_into_conversion_table INSTEAD OF INSERT ON conversion BEGIN INSERT INTO conversion_table VALUES ( NEW.auth_name, NEW.code, NEW.name, NEW.description, NEW.scope, NEW.area_of_use_auth_name, NEW.area_of_use_code, NEW.method_auth_name, NEW.method_code, --NEW.method_name, NEW.param1_auth_name, NEW.param1_code, --NEW.param1_name, NEW.param1_value, NEW.param1_uom_auth_name, NEW.param1_uom_code, NEW.param2_auth_name, NEW.param2_code, --NEW.param2_name, NEW.param2_value, NEW.param2_uom_auth_name, NEW.param2_uom_code, NEW.param3_auth_name, NEW.param3_code, --NEW.param3_name, NEW.param3_value, NEW.param3_uom_auth_name, NEW.param3_uom_code, NEW.param4_auth_name, NEW.param4_code, --NEW.param4_name, NEW.param4_value, NEW.param4_uom_auth_name, NEW.param4_uom_code, NEW.param5_auth_name, NEW.param5_code, --NEW.param5_name, NEW.param5_value, NEW.param5_uom_auth_name, NEW.param5_uom_code, NEW.param6_auth_name, NEW.param6_code, --NEW.param6_name, NEW.param6_value, NEW.param6_uom_auth_name, NEW.param6_uom_code, NEW.param7_auth_name, NEW.param7_code, --NEW.param7_name, NEW.param7_value, NEW.param7_uom_auth_name, NEW.param7_uom_code, NEW.deprecated ); END; CREATE TABLE projected_crs( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, coordinate_system_auth_name TEXT, coordinate_system_code TEXT, geodetic_crs_auth_name TEXT, geodetic_crs_code TEXT, conversion_auth_name TEXT, conversion_code TEXT, area_of_use_auth_name TEXT, area_of_use_code TEXT, text_definition TEXT, -- PROJ string or WKT string. Use of this is discouraged as prone to definition ambiguities deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_projected_crs PRIMARY KEY (auth_name, code), CONSTRAINT fk_projected_crs_coordinate_system FOREIGN KEY (coordinate_system_auth_name, coordinate_system_code) REFERENCES coordinate_system(auth_name, code), CONSTRAINT fk_projected_crs_geodetic_crs FOREIGN KEY (geodetic_crs_auth_name, geodetic_crs_code) REFERENCES geodetic_crs(auth_name, code), CONSTRAINT fk_projected_crs_conversion FOREIGN KEY (conversion_auth_name, conversion_code) REFERENCES conversion_table(auth_name, code), CONSTRAINT fk_projected_crs_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code), CONSTRAINT check_projected_crs_cs CHECK (NOT((coordinate_system_auth_name IS NULL OR coordinate_system_code IS NULL) AND text_definition IS NULL)), CONSTRAINT check_projected_crs_cs_bis CHECK (NOT((NOT(coordinate_system_auth_name IS NULL OR coordinate_system_code IS NULL)) AND text_definition IS NOT NULL)), CONSTRAINT check_projected_crs_geodetic_crs CHECK (NOT((geodetic_crs_auth_name IS NULL OR geodetic_crs_code IS NULL) AND text_definition IS NULL)), CONSTRAINT check_projected_crs_conversion CHECK (NOT((NOT(conversion_auth_name IS NULL OR conversion_code IS NULL)) AND text_definition IS NOT NULL)), CONSTRAINT check_projected_crs_area CHECK (NOT((area_of_use_auth_name IS NULL OR area_of_use_code IS NULL) AND text_definition IS NULL)) ); CREATE TRIGGER projected_crs_insert_trigger BEFORE INSERT ON projected_crs FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on projected_crs violates constraint: (auth_name, code) must not already exist in crs_view') WHERE EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.auth_name AND crs_view.code = NEW.code); SELECT RAISE(ABORT, 'insert on projected_crs violates constraint: geodetic_crs must not be deprecated when projected_crs is not deprecated') WHERE EXISTS(SELECT 1 FROM geodetic_crs WHERE geodetic_crs.auth_name = NEW.geodetic_crs_auth_name AND geodetic_crs.code = NEW.geodetic_crs_code AND geodetic_crs.deprecated != 0) AND NEW.deprecated = 0 AND NOT (NEW.auth_name = 'ESRI' AND NEW.geodetic_crs_auth_name != 'ESRI'); SELECT RAISE(ABORT, 'insert on projected_crs violates constraint: conversion must exist when text_definition is NULL') WHERE NOT EXISTS(SELECT 1 FROM conversion WHERE conversion.auth_name = NEW.conversion_auth_name AND conversion.code = NEW.conversion_code) AND NEW.text_definition IS NULL; SELECT RAISE(ABORT, 'insert on projected_crs violates constraint: conversion must not be deprecated when projected_crs is not deprecated') WHERE EXISTS(SELECT 1 FROM conversion WHERE conversion.auth_name = NEW.conversion_auth_name AND conversion.code = NEW.conversion_code AND conversion.deprecated != 0) AND NEW.deprecated = 0; --SELECT RAISE(ABORT, 'insert on projected_crs violates constraint: geodetic_crs must NOT be defined when text_definition is NOT NULL') -- WHERE (NOT(NEW.geodetic_crs_auth_name IS NULL OR NEW.geodetic_crs_code IS NULL)) AND NEW.text_definition IS NOT NULL; SELECT RAISE(ABORT, 'insert on projected_crs violates constraint: area_of_use must not be deprecated when projected_crs is not deprecated') WHERE EXISTS(SELECT 1 FROM area WHERE area.auth_name = NEW.area_of_use_auth_name AND area.code = NEW.area_of_use_code AND area.deprecated != 0) AND NEW.deprecated = 0 AND NEW.text_definition IS NOT NULL; SELECT RAISE(ABORT, 'insert on projected_crs violates constraint: coordinate_system.type must be ''cartesian''') WHERE (SELECT type FROM coordinate_system WHERE coordinate_system.auth_name = NEW.coordinate_system_auth_name AND coordinate_system.code = NEW.coordinate_system_code) != 'Cartesian'; SELECT RAISE(ABORT, 'insert on projected_crs violates constraint: coordinate_system.dimension must be 2') -- EPSG:4461 is topocentric WHERE NOT(NEW.coordinate_system_auth_name = 'EPSG' AND NEW.coordinate_system_code = '4461') AND (SELECT dimension FROM coordinate_system WHERE coordinate_system.auth_name = NEW.coordinate_system_auth_name AND coordinate_system.code = NEW.coordinate_system_code) != 2; END; CREATE TABLE compound_crs( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, horiz_crs_auth_name TEXT NOT NULL, horiz_crs_code TEXT NOT NULL, vertical_crs_auth_name TEXT NOT NULL, vertical_crs_code TEXT NOT NULL, area_of_use_auth_name TEXT NOT NULL, area_of_use_code TEXT NOT NULL, deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_compound_crs PRIMARY KEY (auth_name, code), CONSTRAINT fk_compound_crs_vertical_crs FOREIGN KEY (vertical_crs_auth_name, vertical_crs_code) REFERENCES vertical_crs(auth_name, code), CONSTRAINT fk_compoundcrs_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code) ); CREATE TRIGGER compound_crs_insert_trigger BEFORE INSERT ON compound_crs FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on compound_crs violates constraint: (auth_name, code) must not already exist in crs_view') WHERE EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.auth_name AND crs_view.code = NEW.code); SELECT RAISE(ABORT, 'insert on compound_crs violates constraint: horiz_crs(auth_name, code) not found') WHERE NOT EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.horiz_crs_auth_name AND crs_view.code = NEW.horiz_crs_code); SELECT RAISE(ABORT, 'insert on compound_crs violates constraint: horiz_crs must be equal to ''geographic 2D'' or ''projected''') WHERE (SELECT type FROM crs_view WHERE crs_view.auth_name = NEW.horiz_crs_auth_name AND crs_view.code = NEW.horiz_crs_code) NOT IN ('geographic 2D', 'projected'); SELECT RAISE(ABORT, 'insert on compound_crs violates constraint: vertical_crs must be equal to ''vertical''') WHERE (SELECT type FROM crs_view WHERE crs_view.auth_name = NEW.vertical_crs_auth_name AND crs_view.code = NEW.vertical_crs_code) NOT IN ('vertical'); SELECT RAISE(ABORT, 'insert on compound_crs violates constraint: horiz_crs must not be deprecated when compound_crs is not deprecated') WHERE EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.horiz_crs_auth_name AND crs_view.code = NEW.horiz_crs_code AND crs_view.deprecated != 0) AND NEW.deprecated = 0; SELECT RAISE(ABORT, 'insert on compound_crs violates constraint: vertical_crs must not be deprecated when compound_crs is not deprecated') WHERE EXISTS (SELECT 1 FROM vertical_crs WHERE vertical_crs.auth_name = NEW.vertical_crs_auth_name AND vertical_crs.code = NEW.vertical_crs_code AND vertical_crs.deprecated != 0) AND NEW.deprecated = 0; SELECT RAISE(ABORT, 'insert on compound_crs violates constraint: area_of_use must not be deprecated when compound_crs is not deprecated') WHERE EXISTS(SELECT 1 FROM area WHERE area.auth_name = NEW.area_of_use_auth_name AND area.code = NEW.area_of_use_code AND area.deprecated != 0) AND NEW.deprecated = 0; END; CREATE TABLE coordinate_operation_method( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), CONSTRAINT pk_coordinate_operation_method PRIMARY KEY (auth_name, code) ); CREATE TABLE helmert_transformation_table( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, method_auth_name TEXT NOT NULL CHECK (length(method_auth_name) >= 1), method_code TEXT NOT NULL CHECK (length(method_code) >= 1), --method_name NOT NULL CHECK (length(method_name) >= 2), source_crs_auth_name TEXT NOT NULL, source_crs_code TEXT NOT NULL, target_crs_auth_name TEXT NOT NULL, target_crs_code TEXT NOT NULL, area_of_use_auth_name TEXT NOT NULL, area_of_use_code TEXT NOT NULL, accuracy FLOAT CHECK (accuracy >= 0), tx FLOAT NOT NULL, ty FLOAT NOT NULL, tz FLOAT NOT NULL, translation_uom_auth_name TEXT NOT NULL, translation_uom_code TEXT NOT NULL, rx FLOAT, ry FLOAT, rz FLOAT, rotation_uom_auth_name TEXT, rotation_uom_code TEXT, scale_difference FLOAT, scale_difference_uom_auth_name TEXT, scale_difference_uom_code TEXT, rate_tx FLOAT, rate_ty FLOAT, rate_tz FLOAT, rate_translation_uom_auth_name TEXT, rate_translation_uom_code TEXT, rate_rx FLOAT, rate_ry FLOAT, rate_rz FLOAT, rate_rotation_uom_auth_name TEXT, rate_rotation_uom_code TEXT, rate_scale_difference FLOAT, rate_scale_difference_uom_auth_name TEXT, rate_scale_difference_uom_code TEXT, epoch FLOAT, epoch_uom_auth_name TEXT, epoch_uom_code TEXT, px FLOAT, -- Pivot / evaluation point for Molodensky-Badekas py FLOAT, pz FLOAT, pivot_uom_auth_name TEXT, pivot_uom_code TEXT, operation_version TEXT, -- normally mandatory in OGC Topic 2 but optional here deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_helmert_transformation PRIMARY KEY (auth_name, code), CONSTRAINT fk_helmert_transformation_source_crs FOREIGN KEY (source_crs_auth_name, source_crs_code) REFERENCES geodetic_crs(auth_name, code), CONSTRAINT fk_helmert_transformation_target_crs FOREIGN KEY (target_crs_auth_name, target_crs_code) REFERENCES geodetic_crs(auth_name, code), CONSTRAINT fk_helmert_transformation_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code), CONSTRAINT fk_helmert_transformation_method FOREIGN KEY (method_auth_name, method_code) REFERENCES coordinate_operation_method(auth_name, code), --CONSTRAINT fk_helmert_transformation_coordinate_operation FOREIGN KEY (auth_name, code) REFERENCES coordinate_operation(auth_name, code), CONSTRAINT fk_helmert_translation_uom FOREIGN KEY (translation_uom_auth_name, translation_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_helmert_rotation_uom FOREIGN KEY (rotation_uom_auth_name, rotation_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_helmert_scale_difference_uom FOREIGN KEY (scale_difference_uom_auth_name, scale_difference_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_helmert_rate_translation_uom FOREIGN KEY (rate_translation_uom_auth_name, rate_translation_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_helmert_rate_rotation_uom FOREIGN KEY (rate_rotation_uom_auth_name, rate_rotation_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_helmert_rate_scale_difference_uom FOREIGN KEY (rate_scale_difference_uom_auth_name, rate_scale_difference_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_helmert_epoch_uom FOREIGN KEY (epoch_uom_auth_name, epoch_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_helmert_pivot_uom FOREIGN KEY (pivot_uom_auth_name, pivot_uom_code) REFERENCES unit_of_measure(auth_name, code) ); CREATE VIEW helmert_transformation AS SELECT h.auth_name, h.code, h.name, h.description, h.scope, h.method_auth_name, h.method_code, m.name AS method_name, h.source_crs_auth_name, h.source_crs_code, h.target_crs_auth_name, h.target_crs_code, h.area_of_use_auth_name, h.area_of_use_code, h.accuracy, h.tx, h.ty, h.tz, h.translation_uom_auth_name, h.translation_uom_code, h.rx, h.ry, h.rz, h.rotation_uom_auth_name, h.rotation_uom_code, h.scale_difference, h.scale_difference_uom_auth_name, h.scale_difference_uom_code, h.rate_tx, h.rate_ty, h.rate_tz, h.rate_translation_uom_auth_name, h.rate_translation_uom_code, h.rate_rx, h.rate_ry, h.rate_rz, h.rate_rotation_uom_auth_name, h.rate_rotation_uom_code, h.rate_scale_difference, h.rate_scale_difference_uom_auth_name, h.rate_scale_difference_uom_code, h.epoch, h.epoch_uom_auth_name, h.epoch_uom_code, h.px, h.py, h.pz, h.pivot_uom_auth_name, h.pivot_uom_code, h.operation_version, h.deprecated FROM helmert_transformation_table h LEFT JOIN coordinate_operation_method m ON h.method_auth_name = m.auth_name AND h.method_code = m.code ; CREATE TRIGGER helmert_transformation_insert_trigger_method INSTEAD OF INSERT ON helmert_transformation WHEN NOT EXISTS (SELECT 1 FROM coordinate_operation_method m WHERE m.auth_name = NEW.method_auth_name AND m.code = NEW.method_code AND m.name = NEW.method_name) BEGIN INSERT INTO coordinate_operation_method VALUES (NEW.method_auth_name, NEW.method_code, NEW.method_name); END; CREATE TRIGGER helmert_transformation_insert_trigger_into_helmert_transformation_table INSTEAD OF INSERT ON helmert_transformation BEGIN INSERT INTO helmert_transformation_table VALUES ( NEW.auth_name, NEW.code, NEW.name, NEW.description, NEW.scope, NEW.method_auth_name, NEW.method_code, -- method_name NEW.source_crs_auth_name, NEW.source_crs_code, NEW.target_crs_auth_name, NEW.target_crs_code, NEW.area_of_use_auth_name, NEW.area_of_use_code, NEW.accuracy, NEW.tx, NEW.ty, NEW.tz, NEW.translation_uom_auth_name, NEW.translation_uom_code, NEW.rx, NEW.ry, NEW.rz, NEW.rotation_uom_auth_name, NEW.rotation_uom_code, NEW.scale_difference, NEW.scale_difference_uom_auth_name, NEW.scale_difference_uom_code, NEW.rate_tx, NEW.rate_ty, NEW.rate_tz, NEW.rate_translation_uom_auth_name, NEW.rate_translation_uom_code, NEW.rate_rx, NEW.rate_ry, NEW.rate_rz, NEW.rate_rotation_uom_auth_name, NEW.rate_rotation_uom_code, NEW.rate_scale_difference, NEW.rate_scale_difference_uom_auth_name, NEW.rate_scale_difference_uom_code, NEW.epoch, NEW.epoch_uom_auth_name, NEW.epoch_uom_code, NEW.px, NEW.py, NEW.pz, NEW.pivot_uom_auth_name, NEW.pivot_uom_code, NEW.operation_version, NEW.deprecated ); END; CREATE TRIGGER helmert_transformation_insert_trigger BEFORE INSERT ON helmert_transformation_table FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: (auth_name, code) must not already exist in coordinate_operation_with_conversion_view') WHERE EXISTS (SELECT 1 FROM coordinate_operation_with_conversion_view covwv WHERE covwv.auth_name = NEW.auth_name AND covwv.code = NEW.code); SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: translation_uom.type must be ''length''') WHERE (SELECT type FROM unit_of_measure WHERE unit_of_measure.auth_name = NEW.translation_uom_auth_name AND unit_of_measure.code = NEW.translation_uom_code) != 'length'; SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: rotation_uom.type must be ''angle''') WHERE (SELECT type FROM unit_of_measure WHERE unit_of_measure.auth_name = NEW.rotation_uom_auth_name AND unit_of_measure.code = NEW.rotation_uom_code) != 'angle'; SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: scale_difference_uom.type must be ''scale''') WHERE (SELECT type FROM unit_of_measure WHERE unit_of_measure.auth_name = NEW.scale_difference_uom_auth_name AND unit_of_measure.code = NEW.scale_difference_uom_code) != 'scale'; SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: rate_translation_uom.type must be ''length''') WHERE (SELECT type FROM unit_of_measure WHERE unit_of_measure.auth_name = NEW.rate_translation_uom_auth_name AND unit_of_measure.code = NEW.rate_translation_uom_code) != 'length'; SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: rate_rotation_uom.type must be ''angle''') WHERE (SELECT type FROM unit_of_measure WHERE unit_of_measure.auth_name = NEW.rate_rotation_uom_auth_name AND unit_of_measure.code = NEW.rate_rotation_uom_code) != 'angle'; SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: rate_scale_difference_uom.type must be ''scale''') WHERE (SELECT type FROM unit_of_measure WHERE unit_of_measure.auth_name = NEW.rate_scale_difference_uom_auth_name AND unit_of_measure.code = NEW.rate_scale_difference_uom_code) != 'scale'; SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: epoch_uom.type must be ''time''') WHERE (SELECT type FROM unit_of_measure WHERE unit_of_measure.auth_name = NEW.epoch_uom_auth_name AND unit_of_measure.code = NEW.epoch_uom_code) != 'time'; SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: pivot_uom.type must be ''length''') WHERE (SELECT type FROM unit_of_measure WHERE unit_of_measure.auth_name = NEW.pivot_uom_auth_name AND unit_of_measure.code = NEW.pivot_uom_code) != 'length'; SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: source_crs must not be deprecated when helmert_transformation is not deprecated') WHERE EXISTS(SELECT 1 FROM geodetic_crs crs WHERE crs.auth_name = NEW.source_crs_auth_name AND crs.code = NEW.source_crs_code AND crs.deprecated != 0) AND NEW.deprecated = 0 AND NOT (NEW.auth_name = 'ESRI'); SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: target_crs must not be deprecated when helmert_transformation is not deprecated') WHERE EXISTS(SELECT 1 FROM geodetic_crs crs WHERE crs.auth_name = NEW.target_crs_auth_name AND crs.code = NEW.target_crs_code AND crs.deprecated != 0) AND NEW.deprecated = 0 AND NOT (NEW.auth_name = 'ESRI'); SELECT RAISE(ABORT, 'insert on helmert_transformation violates constraint: area_of_use must not be deprecated when helmert_transformation is not deprecated') WHERE EXISTS(SELECT 1 FROM area WHERE area.auth_name = NEW.area_of_use_auth_name AND area.code = NEW.area_of_use_code AND area.deprecated != 0) AND NEW.deprecated = 0; END; CREATE TABLE grid_transformation( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, method_auth_name TEXT NOT NULL CHECK (length(method_auth_name) >= 1), method_code TEXT NOT NULL CHECK (length(method_code) >= 1), method_name NOT NULL CHECK (length(method_name) >= 2), source_crs_auth_name TEXT NOT NULL, source_crs_code TEXT NOT NULL, target_crs_auth_name TEXT NOT NULL, target_crs_code TEXT NOT NULL, area_of_use_auth_name TEXT NOT NULL, area_of_use_code TEXT NOT NULL, accuracy FLOAT CHECK (accuracy >= 0), grid_param_auth_name TEXT NOT NULL, grid_param_code TEXT NOT NULL, grid_param_name TEXT NOT NULL, grid_name TEXT NOT NULL, grid2_param_auth_name TEXT, grid2_param_code TEXT, grid2_param_name TEXT, grid2_name TEXT, interpolation_crs_auth_name TEXT, interpolation_crs_code TEXT, operation_version TEXT, -- normally mandatory in OGC Topic 2 but optional here deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_grid_transformation PRIMARY KEY (auth_name, code), --CONSTRAINT fk_grid_transformation_coordinate_operation FOREIGN KEY (auth_name, code) REFERENCES coordinate_operation(auth_name, code), --CONSTRAINT fk_grid_transformation_source_crs FOREIGN KEY (source_crs_auth_name, source_crs_code) REFERENCES crs(auth_name, code), --CONSTRAINT fk_grid_transformation_target_crs FOREIGN KEY (target_crs_auth_name, target_crs_code) REFERENCES crs(auth_name, code), CONSTRAINT fk_grid_transformation_interpolation_crs FOREIGN KEY (interpolation_crs_auth_name, interpolation_crs_code) REFERENCES geodetic_crs(auth_name, code), CONSTRAINT fk_grid_transformation_transformation_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code) ); CREATE TRIGGER grid_transformation_insert_trigger BEFORE INSERT ON grid_transformation FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on grid_transformation violates constraint: (auth_name, code) must not already exist in coordinate_operation_with_conversion_view') WHERE EXISTS (SELECT 1 FROM coordinate_operation_with_conversion_view covwv WHERE covwv.auth_name = NEW.auth_name AND covwv.code = NEW.code); SELECT RAISE(ABORT, 'insert on grid_transformation violates constraint: source_crs(auth_name, code) not found') WHERE NOT EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.source_crs_auth_name AND crs_view.code = NEW.source_crs_code); SELECT RAISE(ABORT, 'insert on grid_transformation violates constraint: target_crs(auth_name, code) not found') WHERE NOT EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.target_crs_auth_name AND crs_view.code = NEW.target_crs_code); SELECT RAISE(ABORT, 'insert on grid_transformation violates constraint: source_crs must not be deprecated when grid_transformation is not deprecated') WHERE EXISTS(SELECT 1 FROM crs_view crs WHERE crs.auth_name = NEW.source_crs_auth_name AND crs.code = NEW.source_crs_code AND crs.deprecated != 0) AND NEW.deprecated = 0 AND NOT (NEW.auth_name = 'ESRI'); SELECT RAISE(ABORT, 'insert on grid_transformation violates constraint: target_crs must not be deprecated when grid_transformation is not deprecated') WHERE EXISTS(SELECT 1 FROM crs_view crs WHERE crs.auth_name = NEW.target_crs_auth_name AND crs.code = NEW.target_crs_code AND crs.deprecated != 0) AND NEW.deprecated = 0 AND NOT (NEW.auth_name = 'ESRI'); SELECT RAISE(ABORT, 'insert on grid_transformation violates constraint: area_of_use must not be deprecated when grid_transformation is not deprecated') WHERE EXISTS(SELECT 1 FROM area WHERE area.auth_name = NEW.area_of_use_auth_name AND area.code = NEW.area_of_use_code AND area.deprecated != 0) AND NEW.deprecated = 0; END; -- Table that describe packages/archives that contain several grids CREATE TABLE grid_packages( package_name TEXT NOT NULL NULL PRIMARY KEY, -- package name that contains the file description TEXT, url TEXT, -- optional URL where to download the PROJ grid direct_download BOOLEAN CHECK (direct_download IN (0, 1)), -- whether the URL can be used directly (if 0, authentication etc mightbe needed) open_license BOOLEAN CHECK (open_license IN (0, 1)) ); CREATE TRIGGER grid_packages_insert_trigger BEFORE INSERT ON grid_packages FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on grid_packages violates constraint: open_license must be set when url is not NULL') WHERE NEW.open_license IS NULL AND NEW.url IS NOT NULL; SELECT RAISE(ABORT, 'insert on grid_packages violates constraint: direct_download must be set when url is not NULL') WHERE NEW.direct_download IS NULL AND NEW.url IS NOT NULL; END; -- Table that contain alternative names for original grid names coming from the authority CREATE TABLE grid_alternatives( original_grid_name TEXT NOT NULL PRIMARY KEY, -- original grid name (e.g. Und_min2.5x2.5_egm2008_isw=82_WGS84_TideFree.gz). For LOS/LAS format, the .las files proj_grid_name TEXT NOT NULL, -- PROJ grid name (e.g egm08_25.gtx) proj_grid_format TEXT NOT NULL, -- one of 'CTable2', 'NTv1', 'NTv2', 'GTX' proj_method TEXT NOT NULL, -- hgridshift, vgridshift or geoid_like inverse_direction BOOLEAN NOT NULL CHECK (inverse_direction IN (0, 1)), -- whether the PROJ grid direction is reversed w.r.t to the authority one (TRUE in that case) package_name TEXT, -- package name that contains the file url TEXT, -- optional URL where to download the PROJ grid direct_download BOOLEAN CHECK (direct_download IN (0, 1)), -- whether the URL can be used directly (if 0, authentication etc might be needed) open_license BOOLEAN CHECK (open_license IN (0, 1)), directory TEXT, -- optional directory where the file might be located CONSTRAINT fk_grid_alternatives_grid_packages FOREIGN KEY (package_name) REFERENCES grid_packages(package_name), CONSTRAINT check_grid_alternatives_grid_fromat CHECK (proj_grid_format IN ('CTable2', 'NTv1', 'NTv2', 'GTX')), CONSTRAINT check_grid_alternatives_proj_method CHECK (proj_method IN ('hgridshift', 'vgridshift', 'geoid_like')), CONSTRAINT check_grid_alternatives_not_hgridshift CHECK (NOT(proj_method != 'hgridshift' AND proj_grid_format IN ('CTable2', 'NTv1', 'NTv2'))), CONSTRAINT check_grid_alternatives_not_vgridshift CHECK (NOT(proj_method = 'hgridshift' AND proj_grid_format IN ('GTX'))), CONSTRAINT check_grid_alternatives_inverse_direction CHECK (NOT(proj_method = 'geoid_like' AND inverse_direction = 1)), CONSTRAINT check_grid_alternatives_package_name_url CHECK (NOT(package_name IS NOT NULL AND url IS NOT NULL)), CONSTRAINT check_grid_alternatives_direct_download_url CHECK (NOT(direct_download IS NULL AND url IS NOT NULL)), CONSTRAINT check_grid_alternatives_open_license_url CHECK (NOT(open_license IS NULL AND url IS NOT NULL)) ); CREATE TRIGGER grid_alternatives_insert_trigger BEFORE INSERT ON grid_alternatives FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on grid_alternatives violates constraint: original_grid_name must be referenced in grid_transformation.grid_name') WHERE NEW.original_grid_name NOT IN ('null') AND NEW.original_grid_name NOT IN (SELECT grid_name FROM grid_transformation); END; CREATE TABLE other_transformation( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, -- if method_auth_name = 'PROJ', method_code can be 'PROJString' for a -- PROJ string and then method_name is a PROJ string (typically a pipeline) -- if method_auth_name = 'PROJ', method_code can be 'WKT' for a -- PROJ string and then method_name is a WKT string (CoordinateOperation) method_auth_name TEXT NOT NULL CHECK (length(method_auth_name) >= 1), method_code TEXT NOT NULL CHECK (length(method_code) >= 1), method_name NOT NULL CHECK (length(method_name) >= 2), source_crs_auth_name TEXT NOT NULL, source_crs_code TEXT NOT NULL, target_crs_auth_name TEXT NOT NULL, target_crs_code TEXT NOT NULL, area_of_use_auth_name TEXT NOT NULL, area_of_use_code TEXT NOT NULL, accuracy FLOAT CHECK (accuracy >= 0), param1_auth_name TEXT, param1_code TEXT, param1_name TEXT, param1_value FLOAT, param1_uom_auth_name TEXT, param1_uom_code TEXT, param2_auth_name TEXT, param2_code TEXT, param2_name TEXT, param2_value FLOAT, param2_uom_auth_name TEXT, param2_uom_code TEXT, param3_auth_name TEXT, param3_code TEXT, param3_name TEXT, param3_value FLOAT, param3_uom_auth_name TEXT, param3_uom_code TEXT, param4_auth_name TEXT, param4_code TEXT, param4_name TEXT, param4_value FLOAT, param4_uom_auth_name TEXT, param4_uom_code TEXT, param5_auth_name TEXT, param5_code TEXT, param5_name TEXT, param5_value FLOAT, param5_uom_auth_name TEXT, param5_uom_code TEXT, param6_auth_name TEXT, param6_code TEXT, param6_name TEXT, param6_value FLOAT, param6_uom_auth_name TEXT, param6_uom_code TEXT, param7_auth_name TEXT, param7_code TEXT, param7_name TEXT, param7_value FLOAT, param7_uom_auth_name TEXT, param7_uom_code TEXT, operation_version TEXT, -- normally mandatory in OGC Topic 2 but optional here deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_other_transformation PRIMARY KEY (auth_name, code), --CONSTRAINT fk_other_transformation_coordinate_operation FOREIGN KEY (auth_name, code) REFERENCES coordinate_operation(auth_name, code), --CONSTRAINT fk_other_transformation_source_crs FOREIGN1 KEY (source_crs_auth_name, source_crs_code) REFERENCES crs(auth_name, code), --CONSTRAINT fk_other_transformation_target_crs FOREIGN KEY (target_crs_auth_name, target_crs_code) REFERENCES crs(auth_name, code), CONSTRAINT fk_other_transformation_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code) CONSTRAINT fk_other_transformation_param1_uom FOREIGN KEY (param1_uom_auth_name, param1_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_other_transformation_param2_uom FOREIGN KEY (param2_uom_auth_name, param2_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_other_transformation_param3_uom FOREIGN KEY (param3_uom_auth_name, param3_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_other_transformation_param4_uom FOREIGN KEY (param4_uom_auth_name, param4_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_other_transformation_param5_uom FOREIGN KEY (param5_uom_auth_name, param5_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_other_transformation_param6_uom FOREIGN KEY (param6_uom_auth_name, param6_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT fk_other_transformation_param7_uom FOREIGN KEY (param7_uom_auth_name, param7_uom_code) REFERENCES unit_of_measure(auth_name, code), CONSTRAINT check_other_transformation_method CHECK (NOT (method_auth_name = 'PROJ' AND method_code NOT IN ('PROJString', 'WKT'))) ); CREATE TRIGGER other_transformation_insert_trigger BEFORE INSERT ON other_transformation FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on other_transformation violates constraint: (auth_name, code) must not already exist in coordinate_operation_with_conversion_view') WHERE EXISTS (SELECT 1 FROM coordinate_operation_with_conversion_view covwv WHERE covwv.auth_name = NEW.auth_name AND covwv.code = NEW.code); SELECT RAISE(ABORT, 'insert on other_transformation violates constraint: source_crs(auth_name, code) not found') WHERE NOT EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.source_crs_auth_name AND crs_view.code = NEW.source_crs_code); SELECT RAISE(ABORT, 'insert on other_transformation violates constraint: target_crs(auth_name, code) not found') WHERE NOT EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.target_crs_auth_name AND crs_view.code = NEW.target_crs_code); SELECT RAISE(ABORT, 'insert on other_transformation violates constraint: source_crs must not be deprecated when other_transformation is not deprecated') WHERE EXISTS(SELECT 1 FROM crs_view crs WHERE crs.auth_name = NEW.source_crs_auth_name AND crs.code = NEW.source_crs_code AND crs.deprecated != 0) AND NEW.deprecated = 0 AND NOT (NEW.auth_name = 'ESRI'); SELECT RAISE(ABORT, 'insert on other_transformation violates constraint: target_crs must not be deprecated when other_transformation is not deprecated') WHERE EXISTS(SELECT 1 FROM crs_view crs WHERE crs.auth_name = NEW.target_crs_auth_name AND crs.code = NEW.target_crs_code AND crs.deprecated != 0) AND NEW.deprecated = 0 AND NOT (NEW.auth_name = 'ESRI'); SELECT RAISE(ABORT, 'insert on other_transformation violates constraint: area_of_use must not be deprecated when other_transformation is not deprecated') WHERE EXISTS(SELECT 1 FROM area WHERE area.auth_name = NEW.area_of_use_auth_name AND area.code = NEW.area_of_use_code AND area.deprecated != 0) AND NEW.deprecated = 0; END; -- Note: in EPSG, the steps might be to be chained in reverse order, so we cannot -- enforce that source_crs_code == step1.source_crs_code etc CREATE TABLE concatenated_operation( auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), name TEXT NOT NULL CHECK (length(name) >= 2), description TEXT, scope TEXT, source_crs_auth_name TEXT NOT NULL, source_crs_code TEXT NOT NULL, target_crs_auth_name TEXT NOT NULL, target_crs_code TEXT NOT NULL, area_of_use_auth_name TEXT NOT NULL, area_of_use_code TEXT NOT NULL, accuracy FLOAT CHECK (accuracy >= 0), operation_version TEXT, -- normally mandatory in OGC Topic 2 but optional here deprecated BOOLEAN NOT NULL CHECK (deprecated IN (0, 1)), CONSTRAINT pk_concatenated_operation PRIMARY KEY (auth_name, code), --CONSTRAINT fk_concatenated_operation_coordinate_operation FOREIGN KEY (auth_name, code) REFERENCES coordinate_operation(auth_name, code), --CONSTRAINT fk_concatenated_operation_source_crs FOREIGN KEY (source_crs_auth_name, source_crs_code) REFERENCES crs(auth_name, code), --CONSTRAINT fk_concatenated_operation_target_crs FOREIGN KEY (target_crs_auth_name, target_crs_code) REFERENCES crs(auth_name, code), CONSTRAINT fk_concatenated_operation_transformation_area FOREIGN KEY (area_of_use_auth_name, area_of_use_code) REFERENCES area(auth_name, code) ); CREATE TRIGGER concatenated_operation_insert_trigger BEFORE INSERT ON concatenated_operation FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on concatenated_operation violates constraint: (auth_name, code) must not already exist in coordinate_operation_with_conversion_view') WHERE EXISTS (SELECT 1 FROM coordinate_operation_with_conversion_view covwv WHERE covwv.auth_name = NEW.auth_name AND covwv.code = NEW.code); SELECT RAISE(ABORT, 'insert on concatenated_operation violates constraint: source_crs(auth_name, code) not found') WHERE NOT EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.source_crs_auth_name AND crs_view.code = NEW.source_crs_code); SELECT RAISE(ABORT, 'insert on concatenated_operation violates constraint: target_crs(auth_name, code) not found') WHERE NOT EXISTS (SELECT 1 FROM crs_view WHERE crs_view.auth_name = NEW.target_crs_auth_name AND crs_view.code = NEW.target_crs_code); SELECT RAISE(ABORT, 'insert on concatenated_operation violates constraint: source_crs must not be deprecated when concatenated_operation is not deprecated') WHERE EXISTS(SELECT 1 FROM crs_view crs WHERE crs.auth_name = NEW.source_crs_auth_name AND crs.code = NEW.source_crs_code AND crs.deprecated != 0) AND NEW.deprecated = 0 AND NOT (NEW.auth_name = 'ESRI'); SELECT RAISE(ABORT, 'insert on concatenated_operation violates constraint: target_crs must not be deprecated when concatenated_operation is not deprecated') WHERE EXISTS(SELECT 1 FROM crs_view crs WHERE crs.auth_name = NEW.target_crs_auth_name AND crs.code = NEW.target_crs_code AND crs.deprecated != 0) AND NEW.deprecated = 0 AND NOT (NEW.auth_name = 'ESRI'); SELECT RAISE(ABORT, 'insert on concatenated_operation violates constraint: area_of_use must not be deprecated when concatenated_operation is not deprecated') WHERE EXISTS(SELECT 1 FROM area WHERE area.auth_name = NEW.area_of_use_auth_name AND area.code = NEW.area_of_use_code AND area.deprecated != 0) AND NEW.deprecated = 0; END; CREATE TABLE concatenated_operation_step( operation_auth_name TEXT NOT NULL CHECK (length(operation_auth_name) >= 1), operation_code TEXT NOT NULL CHECK (length(operation_code) >= 1), step_number INTEGER NOT NULL CHECK (step_number >= 1), step_auth_name TEXT NOT NULL CHECK (length(step_auth_name) >= 1), step_code TEXT NOT NULL CHECK (length(step_code) >= 1), CONSTRAINT pk_concatenated_operation_step PRIMARY KEY (operation_auth_name, operation_code, step_number) --CONSTRAINT fk_concatenated_operation_step_to_operation FOREIGN KEY (step_auth_name, step_code) REFERENCES coordinate_operation(auth_name, code) ); CREATE TRIGGER concatenated_operation_step_insert_trigger BEFORE INSERT ON concatenated_operation_step FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on concatenated_operation_step violates constraint: (step_auth_name, step_code) must already exist in coordinate_operation_with_conversion_view') WHERE NOT EXISTS (SELECT 1 FROM coordinate_operation_with_conversion_view covwv WHERE covwv.auth_name = NEW.step_auth_name AND covwv.code = NEW.step_code); SELECT RAISE(ABORT, 'insert on concatenated_operation_step violates constraint: step should not be a concatenated_operation') WHERE EXISTS(SELECT 1 FROM concatenated_operation WHERE auth_name = NEW.step_auth_name AND code = NEW.step_code); END; CREATE TABLE geoid_model( name TEXT NOT NULL, operation_auth_name TEXT NOT NULL, operation_code TEXT NOT NULL, CONSTRAINT pk_geoid_model PRIMARY KEY (name, operation_auth_name, operation_code) -- CONSTRAINT fk_geoid_model_operation FOREIGN KEY (operation_auth_name, operation_code) REFERENCES coordinate_operation(auth_name, code) ); CREATE TRIGGER geoid_model_insert_trigger BEFORE INSERT ON geoid_model FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on geoid_model violates constraint: (operation_auth_name, operation_code) must already exist in coordinate_operation_with_conversion_view') WHERE NOT EXISTS (SELECT 1 FROM coordinate_operation_with_conversion_view covwv WHERE covwv.auth_name = NEW.operation_auth_name AND covwv.code = NEW.operation_code); END; CREATE TABLE alias_name( table_name TEXT NOT NULL CHECK (table_name IN ( 'unit_of_measure', 'celestial_body', 'ellipsoid', 'area', 'prime_meridian', 'geodetic_datum', 'vertical_datum', 'geodetic_crs', 'projected_crs', 'vertical_crs', 'compound_crs', 'conversion', 'grid_transformation', 'helmert_transformation', 'other_transformation', 'concatenated_operation')), auth_name TEXT NOT NULL CHECK (length(auth_name) >= 1), code TEXT NOT NULL CHECK (length(code) >= 1), alt_name TEXT NOT NULL CHECK (length(alt_name) >= 2), source TEXT ); CREATE TRIGGER alias_name_insert_trigger BEFORE INSERT ON alias_name FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on alias_name violates constraint: new entry refers to unexisting code') WHERE NOT EXISTS (SELECT 1 FROM object_view o WHERE o.table_name = NEW.table_name AND o.auth_name = NEW.auth_name AND o.code = NEW.code); END; -- For ESRI stuff -- typically deprecated is the 'wkid' column of deprecated = 'yes' entries in the .csv files, and non_deprecates is the 'latestWkid' column -- For EPSG, used to track superseded coordinate operations. CREATE TABLE supersession( superseded_table_name TEXT NOT NULL CHECK (superseded_table_name IN ( 'unit_of_measure', 'celestial_body', 'ellipsoid', 'area', 'prime_meridian', 'geodetic_datum', 'vertical_datum', 'geodetic_crs', 'projected_crs', 'vertical_crs', 'compound_crs', 'conversion', 'grid_transformation', 'helmert_transformation', 'other_transformation', 'concatenated_operation')), superseded_auth_name TEXT NOT NULL, superseded_code TEXT NOT NULL, replacement_table_name TEXT NOT NULL CHECK (replacement_table_name IN ( 'unit_of_measure', 'celestial_body', 'ellipsoid', 'area', 'prime_meridian', 'geodetic_datum', 'vertical_datum', 'geodetic_crs', 'projected_crs', 'vertical_crs', 'compound_crs', 'conversion', 'grid_transformation', 'helmert_transformation', 'other_transformation', 'concatenated_operation')), replacement_auth_name TEXT NOT NULL, replacement_code TEXT NOT NULL, source TEXT ); CREATE INDEX idx_supersession ON supersession(superseded_table_name, superseded_auth_name, superseded_code); CREATE TRIGGER supersession_insert_trigger BEFORE INSERT ON supersession FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on supersession violates constraint: superseded entry refers to unexisting code') WHERE NOT EXISTS (SELECT 1 FROM object_view o WHERE o.table_name = NEW.superseded_table_name AND o.auth_name = NEW.superseded_auth_name AND o.code = NEW.superseded_code); SELECT RAISE(ABORT, 'insert on supersession violates constraint: replacement entry refers to unexisting code') WHERE NOT EXISTS (SELECT 1 FROM object_view o WHERE o.table_name = NEW.replacement_table_name AND o.auth_name = NEW.replacement_auth_name AND o.code = NEW.replacement_code); END; CREATE TABLE deprecation( table_name TEXT NOT NULL CHECK (table_name IN ( 'unit_of_measure', 'celestial_body', 'ellipsoid', 'area', 'prime_meridian', 'geodetic_datum', 'vertical_datum', 'geodetic_crs', 'projected_crs', 'vertical_crs', 'compound_crs', 'conversion', 'grid_transformation', 'helmert_transformation', 'other_transformation', 'concatenated_operation')), deprecated_auth_name TEXT NOT NULL, deprecated_code TEXT NOT NULL, replacement_auth_name TEXT NOT NULL, replacement_code TEXT NOT NULL, source TEXT ); CREATE TRIGGER deprecation_insert_trigger BEFORE INSERT ON deprecation FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on deprecation violates constraint: deprecated entry refers to unexisting code') WHERE NOT EXISTS (SELECT 1 FROM object_view o WHERE o.table_name = NEW.table_name AND o.auth_name = NEW.deprecated_auth_name AND o.code = NEW.deprecated_code); SELECT RAISE(ABORT, 'insert on deprecation violates constraint: replacement entry refers to unexisting code') WHERE NOT EXISTS (SELECT 1 FROM object_view o WHERE o.table_name = NEW.table_name AND o.auth_name = NEW.replacement_auth_name AND o.code = NEW.replacement_code); END; CREATE VIEW coordinate_operation_view AS SELECT 'grid_transformation' AS table_name, auth_name, code, name, description, scope, method_auth_name, method_code, method_name, source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code, area_of_use_auth_name, area_of_use_code, accuracy, deprecated FROM grid_transformation UNION ALL SELECT 'helmert_transformation' AS table_name, auth_name, code, name, description, scope, method_auth_name, method_code, method_name, source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code, area_of_use_auth_name, area_of_use_code, accuracy, deprecated FROM helmert_transformation UNION ALL SELECT 'other_transformation' AS table_name, auth_name, code, name, description, scope, method_auth_name, method_code, method_name, source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code, area_of_use_auth_name, area_of_use_code, accuracy, deprecated FROM other_transformation UNION ALL SELECT 'concatenated_operation' AS table_name, auth_name, code, name, description, scope, NULL, NULL, NULL, source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code, area_of_use_auth_name, area_of_use_code, accuracy, deprecated FROM concatenated_operation ; CREATE VIEW coordinate_operation_with_conversion_view AS SELECT auth_name, code, table_name AS type FROM coordinate_operation_view UNION ALL SELECT auth_name, code, 'conversion' FROM conversion_table; CREATE VIEW crs_view AS SELECT 'geodetic_crs' AS table_name, auth_name, code, name, type, description, scope, area_of_use_auth_name, area_of_use_code, deprecated FROM geodetic_crs UNION ALL SELECT 'projected_crs' AS table_name, auth_name, code, name, 'projected', description, scope, area_of_use_auth_name, area_of_use_code, deprecated FROM projected_crs UNION ALL SELECT 'vertical_crs' AS table_name, auth_name, code, name, 'vertical', description, scope, area_of_use_auth_name, area_of_use_code, deprecated FROM vertical_crs UNION ALL SELECT 'compound_crs' AS table_name, auth_name, code, name, 'compound', description, scope, area_of_use_auth_name, area_of_use_code, deprecated FROM compound_crs ; CREATE VIEW object_view AS SELECT 'unit_of_measure' AS table_name, auth_name, code, name, NULL as type, NULL as area_of_use_auth_name, NULL as area_of_use_code, deprecated FROM unit_of_measure UNION ALL SELECT 'celestial_body', auth_name, code, name, NULL, NULL, NULL, 0 FROM celestial_body UNION ALL SELECT 'ellipsoid', auth_name, code, name, NULL, NULL, NULL, deprecated FROM ellipsoid UNION ALL SELECT 'area', auth_name, code, name, NULL, NULL, NULL, deprecated FROM area UNION ALL SELECT 'prime_meridian', auth_name, code, name, NULL, NULL, NULL, deprecated FROM prime_meridian UNION ALL SELECT 'geodetic_datum', auth_name, code, name, NULL, area_of_use_auth_name, area_of_use_code, deprecated FROM geodetic_datum UNION ALL SELECT 'vertical_datum', auth_name, code, name, NULL, area_of_use_auth_name, area_of_use_code, deprecated FROM vertical_datum UNION ALL SELECT 'axis', auth_name, code, name, NULL, NULL, NULL, 0 as deprecated FROM axis UNION ALL SELECT table_name, auth_name, code, name, type, area_of_use_auth_name, area_of_use_code, deprecated FROM crs_view UNION ALL SELECT 'conversion', auth_name, code, name, NULL, area_of_use_auth_name, area_of_use_code, deprecated FROM conversion_table UNION ALL SELECT table_name, auth_name, code, name, NULL, area_of_use_auth_name, area_of_use_code, deprecated FROM coordinate_operation_view ; CREATE VIEW authority_list AS SELECT DISTINCT auth_name FROM unit_of_measure UNION SELECT DISTINCT auth_name FROM celestial_body UNION SELECT DISTINCT auth_name FROM ellipsoid UNION SELECT DISTINCT auth_name FROM area UNION SELECT DISTINCT auth_name FROM prime_meridian UNION SELECT DISTINCT auth_name FROM geodetic_datum UNION SELECT DISTINCT auth_name FROM vertical_datum UNION SELECT DISTINCT auth_name FROM axis UNION SELECT DISTINCT auth_name FROM crs_view UNION SELECT DISTINCT auth_name FROM coordinate_operation_view ; -- Define the allowed authorities, and their precedence, when researching a -- coordinate operation CREATE TABLE authority_to_authority_preference( source_auth_name TEXT NOT NULL, -- 'any' for any source target_auth_name TEXT NOT NULL, -- 'any' for any target allowed_authorities TEXT NOT NULL, -- for example 'PROJ,EPSG,any' CONSTRAINT unique_authority_to_authority_preference UNIQUE (source_auth_name, target_auth_name) ); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! CREATE TRIGGER conversion_method_check_insert_trigger INSTEAD OF INSERT ON conversion BEGIN SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Conic Conformal (2SP)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9802' AND (NEW.method_name != 'Lambert Conic Conformal (2SP)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8821' OR NEW.param1_name != 'Latitude of false origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8822' OR NEW.param2_name != 'Longitude of false origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8823' OR NEW.param3_name != 'Latitude of 1st standard parallel' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8824' OR NEW.param4_name != 'Latitude of 2nd standard parallel' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'angle' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8826' OR NEW.param5_name != 'Easting at false origin' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8827' OR NEW.param6_name != 'Northing at false origin' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Transverse Mercator') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9807' AND (NEW.method_name != 'Transverse Mercator' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8805' OR NEW.param3_name != 'Scale factor at natural origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'scale' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8806' OR NEW.param4_name != 'False easting' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8807' OR NEW.param5_name != 'False northing' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Mercator (variant A)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9804' AND (NEW.method_name != 'Mercator (variant A)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8805' OR NEW.param3_name != 'Scale factor at natural origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'scale' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8806' OR NEW.param4_name != 'False easting' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8807' OR NEW.param5_name != 'False northing' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Popular Visualisation Pseudo Mercator') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1024' AND (NEW.method_name != 'Popular Visualisation Pseudo Mercator' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Azimuthal Equal Area (Spherical)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1027' AND (NEW.method_name != 'Lambert Azimuthal Equal Area (Spherical)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Equidistant Cylindrical') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1028' AND (NEW.method_name != 'Equidistant Cylindrical' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8823' OR NEW.param1_name != 'Latitude of 1st standard parallel' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Equidistant Cylindrical (Spherical)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1029' AND (NEW.method_name != 'Equidistant Cylindrical (Spherical)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8823' OR NEW.param1_name != 'Latitude of 1st standard parallel' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Cassini-Soldner') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9806' AND (NEW.method_name != 'Cassini-Soldner' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Bonne (South Orientated)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9828' AND (NEW.method_name != 'Bonne (South Orientated)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Albers Equal Area') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9822' AND (NEW.method_name != 'Albers Equal Area' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8821' OR NEW.param1_name != 'Latitude of false origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8822' OR NEW.param2_name != 'Longitude of false origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8823' OR NEW.param3_name != 'Latitude of 1st standard parallel' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8824' OR NEW.param4_name != 'Latitude of 2nd standard parallel' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'angle' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8826' OR NEW.param5_name != 'Easting at false origin' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8827' OR NEW.param6_name != 'Northing at false origin' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Krovak (North Orientated)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1041' AND (NEW.method_name != 'Krovak (North Orientated)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8811' OR NEW.param1_name != 'Latitude of projection centre' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8833' OR NEW.param2_name != 'Longitude of origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '1036' OR NEW.param3_name != 'Co-latitude of cone axis' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8818' OR NEW.param4_name != 'Latitude of pseudo standard parallel' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'angle' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8819' OR NEW.param5_name != 'Scale factor on pseudo standard parallel' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'scale' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8806' OR NEW.param6_name != 'False easting' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name != 'EPSG' OR NEW.param7_code != '8807' OR NEW.param7_name != 'False northing' OR NEW.param7_value IS NULL OR NEW.param7_uom_auth_name IS NULL OR NEW.param7_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param7_uom_auth_name AND code = NEW.param7_uom_code) != 'length'); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Krovak Modified') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1042' AND (NEW.method_name != 'Krovak Modified' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8811' OR NEW.param1_name != 'Latitude of projection centre' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8833' OR NEW.param2_name != 'Longitude of origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '1036' OR NEW.param3_name != 'Co-latitude of cone axis' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8818' OR NEW.param4_name != 'Latitude of pseudo standard parallel' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'angle' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8819' OR NEW.param5_name != 'Scale factor on pseudo standard parallel' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'scale' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8806' OR NEW.param6_name != 'False easting' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name != 'EPSG' OR NEW.param7_code != '8807' OR NEW.param7_name != 'False northing' OR NEW.param7_value IS NULL OR NEW.param7_uom_auth_name IS NULL OR NEW.param7_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param7_uom_auth_name AND code = NEW.param7_uom_code) != 'length'); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Krovak Modified (North Orientated)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1043' AND (NEW.method_name != 'Krovak Modified (North Orientated)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8811' OR NEW.param1_name != 'Latitude of projection centre' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8833' OR NEW.param2_name != 'Longitude of origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '1036' OR NEW.param3_name != 'Co-latitude of cone axis' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8818' OR NEW.param4_name != 'Latitude of pseudo standard parallel' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'angle' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8819' OR NEW.param5_name != 'Scale factor on pseudo standard parallel' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'scale' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8806' OR NEW.param6_name != 'False easting' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name != 'EPSG' OR NEW.param7_code != '8807' OR NEW.param7_name != 'False northing' OR NEW.param7_value IS NULL OR NEW.param7_uom_auth_name IS NULL OR NEW.param7_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param7_uom_auth_name AND code = NEW.param7_uom_code) != 'length'); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Conic Conformal (1SP)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9801' AND (NEW.method_name != 'Lambert Conic Conformal (1SP)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8805' OR NEW.param3_name != 'Scale factor at natural origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'scale' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8806' OR NEW.param4_name != 'False easting' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8807' OR NEW.param5_name != 'False northing' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for American Polyconic') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9818' AND (NEW.method_name != 'American Polyconic' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Polar Stereographic (variant A)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9810' AND (NEW.method_name != 'Polar Stereographic (variant A)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8805' OR NEW.param3_name != 'Scale factor at natural origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'scale' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8806' OR NEW.param4_name != 'False easting' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8807' OR NEW.param5_name != 'False northing' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Krovak') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9819' AND (NEW.method_name != 'Krovak' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8811' OR NEW.param1_name != 'Latitude of projection centre' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8833' OR NEW.param2_name != 'Longitude of origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '1036' OR NEW.param3_name != 'Co-latitude of cone axis' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8818' OR NEW.param4_name != 'Latitude of pseudo standard parallel' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'angle' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8819' OR NEW.param5_name != 'Scale factor on pseudo standard parallel' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'scale' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8806' OR NEW.param6_name != 'False easting' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name != 'EPSG' OR NEW.param7_code != '8807' OR NEW.param7_name != 'False northing' OR NEW.param7_value IS NULL OR NEW.param7_uom_auth_name IS NULL OR NEW.param7_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param7_uom_auth_name AND code = NEW.param7_uom_code) != 'length'); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Oblique Stereographic') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9809' AND (NEW.method_name != 'Oblique Stereographic' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8805' OR NEW.param3_name != 'Scale factor at natural origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'scale' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8806' OR NEW.param4_name != 'False easting' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8807' OR NEW.param5_name != 'False northing' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Mercator (variant B)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9805' AND (NEW.method_name != 'Mercator (variant B)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8823' OR NEW.param1_name != 'Latitude of 1st standard parallel' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Polar Stereographic (variant B)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9829' AND (NEW.method_name != 'Polar Stereographic (variant B)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8832' OR NEW.param1_name != 'Latitude of standard parallel' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8833' OR NEW.param2_name != 'Longitude of origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Conic Conformal (2SP Michigan)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1051' AND (NEW.method_name != 'Lambert Conic Conformal (2SP Michigan)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8821' OR NEW.param1_name != 'Latitude of false origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8822' OR NEW.param2_name != 'Longitude of false origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8823' OR NEW.param3_name != 'Latitude of 1st standard parallel' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8824' OR NEW.param4_name != 'Latitude of 2nd standard parallel' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'angle' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8826' OR NEW.param5_name != 'Easting at false origin' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8827' OR NEW.param6_name != 'Northing at false origin' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name != 'EPSG' OR NEW.param7_code != '1038' OR NEW.param7_name != 'Ellipsoid scaling factor' OR NEW.param7_value IS NULL OR NEW.param7_uom_auth_name IS NULL OR NEW.param7_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param7_uom_auth_name AND code = NEW.param7_uom_code) != 'scale'); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Colombia Urban') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1052' AND (NEW.method_name != 'Colombia Urban' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '1039' OR NEW.param5_name != 'Projection plane origin height' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Hotine Oblique Mercator (variant A)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9812' AND (NEW.method_name != 'Hotine Oblique Mercator (variant A)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8811' OR NEW.param1_name != 'Latitude of projection centre' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8812' OR NEW.param2_name != 'Longitude of projection centre' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8813' OR NEW.param3_name != 'Azimuth of initial line' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8814' OR NEW.param4_name != 'Angle from Rectified to Skew Grid' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'angle' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8815' OR NEW.param5_name != 'Scale factor on initial line' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'scale' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8806' OR NEW.param6_name != 'False easting' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name != 'EPSG' OR NEW.param7_code != '8807' OR NEW.param7_name != 'False northing' OR NEW.param7_value IS NULL OR NEW.param7_uom_auth_name IS NULL OR NEW.param7_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param7_uom_auth_name AND code = NEW.param7_uom_code) != 'length'); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Cylindrical Equal Area') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9835' AND (NEW.method_name != 'Lambert Cylindrical Equal Area' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8823' OR NEW.param1_name != 'Latitude of 1st standard parallel' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Azimuthal Equal Area') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9820' AND (NEW.method_name != 'Lambert Azimuthal Equal Area' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Height Depth Reversal') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1068' AND (NEW.method_name != 'Height Depth Reversal' OR NEW.param1_auth_name IS NOT NULL OR NEW.param1_code IS NOT NULL OR NEW.param1_name IS NOT NULL OR NEW.param1_value IS NOT NULL OR NEW.param1_uom_auth_name IS NOT NULL OR NEW.param1_uom_code IS NOT NULL OR NEW.param2_auth_name IS NOT NULL OR NEW.param2_code IS NOT NULL OR NEW.param2_name IS NOT NULL OR NEW.param2_value IS NOT NULL OR NEW.param2_uom_auth_name IS NOT NULL OR NEW.param2_uom_code IS NOT NULL OR NEW.param3_auth_name IS NOT NULL OR NEW.param3_code IS NOT NULL OR NEW.param3_name IS NOT NULL OR NEW.param3_value IS NOT NULL OR NEW.param3_uom_auth_name IS NOT NULL OR NEW.param3_uom_code IS NOT NULL OR NEW.param4_auth_name IS NOT NULL OR NEW.param4_code IS NOT NULL OR NEW.param4_name IS NOT NULL OR NEW.param4_value IS NOT NULL OR NEW.param4_uom_auth_name IS NOT NULL OR NEW.param4_uom_code IS NOT NULL OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Change of Vertical Unit') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1069' AND (NEW.method_name != 'Change of Vertical Unit' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '1051' OR NEW.param1_name != 'Unit conversion scalar' OR (NOT((NEW.param1_value IS NULL AND NEW.param1_uom_auth_name IS NULL AND NEW.param1_uom_code IS NULL) OR (NEW.param1_value IS NOT NULL AND (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) = 'scale'))) OR NEW.param2_auth_name IS NOT NULL OR NEW.param2_code IS NOT NULL OR NEW.param2_name IS NOT NULL OR NEW.param2_value IS NOT NULL OR NEW.param2_uom_auth_name IS NOT NULL OR NEW.param2_uom_code IS NOT NULL OR NEW.param3_auth_name IS NOT NULL OR NEW.param3_code IS NOT NULL OR NEW.param3_name IS NOT NULL OR NEW.param3_value IS NOT NULL OR NEW.param3_uom_auth_name IS NOT NULL OR NEW.param3_uom_code IS NOT NULL OR NEW.param4_auth_name IS NOT NULL OR NEW.param4_code IS NOT NULL OR NEW.param4_name IS NOT NULL OR NEW.param4_value IS NOT NULL OR NEW.param4_uom_auth_name IS NOT NULL OR NEW.param4_uom_code IS NOT NULL OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Hotine Oblique Mercator (variant B)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9815' AND (NEW.method_name != 'Hotine Oblique Mercator (variant B)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8811' OR NEW.param1_name != 'Latitude of projection centre' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8812' OR NEW.param2_name != 'Longitude of projection centre' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8813' OR NEW.param3_name != 'Azimuth of initial line' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8814' OR NEW.param4_name != 'Angle from Rectified to Skew Grid' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'angle' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8815' OR NEW.param5_name != 'Scale factor on initial line' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'scale' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8816' OR NEW.param6_name != 'Easting at projection centre' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name != 'EPSG' OR NEW.param7_code != '8817' OR NEW.param7_name != 'Northing at projection centre' OR NEW.param7_value IS NULL OR NEW.param7_uom_auth_name IS NULL OR NEW.param7_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param7_uom_auth_name AND code = NEW.param7_uom_code) != 'length'); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Laborde Oblique Mercator') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9813' AND (NEW.method_name != 'Laborde Oblique Mercator' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8811' OR NEW.param1_name != 'Latitude of projection centre' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8812' OR NEW.param2_name != 'Longitude of projection centre' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8813' OR NEW.param3_name != 'Azimuth of initial line' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8815' OR NEW.param4_name != 'Scale factor on initial line' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'scale' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8806' OR NEW.param5_name != 'False easting' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8807' OR NEW.param6_name != 'False northing' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Equal Earth') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '1078' AND (NEW.method_name != 'Equal Earth' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8802' OR NEW.param1_name != 'Longitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8806' OR NEW.param2_name != 'False easting' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'length' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8807' OR NEW.param3_name != 'False northing' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name IS NOT NULL OR NEW.param4_code IS NOT NULL OR NEW.param4_name IS NOT NULL OR NEW.param4_value IS NOT NULL OR NEW.param4_uom_auth_name IS NOT NULL OR NEW.param4_uom_code IS NOT NULL OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Modified Azimuthal Equidistant') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9832' AND (NEW.method_name != 'Modified Azimuthal Equidistant' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Guam Projection') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9831' AND (NEW.method_name != 'Guam Projection' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Axis Order Reversal (2D)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9843' AND (NEW.method_name != 'Axis Order Reversal (2D)' OR NEW.param1_auth_name IS NOT NULL OR NEW.param1_code IS NOT NULL OR NEW.param1_name IS NOT NULL OR NEW.param1_value IS NOT NULL OR NEW.param1_uom_auth_name IS NOT NULL OR NEW.param1_uom_code IS NOT NULL OR NEW.param2_auth_name IS NOT NULL OR NEW.param2_code IS NOT NULL OR NEW.param2_name IS NOT NULL OR NEW.param2_value IS NOT NULL OR NEW.param2_uom_auth_name IS NOT NULL OR NEW.param2_uom_code IS NOT NULL OR NEW.param3_auth_name IS NOT NULL OR NEW.param3_code IS NOT NULL OR NEW.param3_name IS NOT NULL OR NEW.param3_value IS NOT NULL OR NEW.param3_uom_auth_name IS NOT NULL OR NEW.param3_uom_code IS NOT NULL OR NEW.param4_auth_name IS NOT NULL OR NEW.param4_code IS NOT NULL OR NEW.param4_name IS NOT NULL OR NEW.param4_value IS NOT NULL OR NEW.param4_uom_auth_name IS NOT NULL OR NEW.param4_uom_code IS NOT NULL OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Axis Order Reversal (Geographic3D horizontal)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9844' AND (NEW.method_name != 'Axis Order Reversal (Geographic3D horizontal)' OR NEW.param1_auth_name IS NOT NULL OR NEW.param1_code IS NOT NULL OR NEW.param1_name IS NOT NULL OR NEW.param1_value IS NOT NULL OR NEW.param1_uom_auth_name IS NOT NULL OR NEW.param1_uom_code IS NOT NULL OR NEW.param2_auth_name IS NOT NULL OR NEW.param2_code IS NOT NULL OR NEW.param2_name IS NOT NULL OR NEW.param2_value IS NOT NULL OR NEW.param2_uom_auth_name IS NOT NULL OR NEW.param2_uom_code IS NOT NULL OR NEW.param3_auth_name IS NOT NULL OR NEW.param3_code IS NOT NULL OR NEW.param3_name IS NOT NULL OR NEW.param3_value IS NOT NULL OR NEW.param3_uom_auth_name IS NOT NULL OR NEW.param3_uom_code IS NOT NULL OR NEW.param4_auth_name IS NOT NULL OR NEW.param4_code IS NOT NULL OR NEW.param4_name IS NOT NULL OR NEW.param4_value IS NOT NULL OR NEW.param4_uom_auth_name IS NOT NULL OR NEW.param4_uom_code IS NOT NULL OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Geographic/geocentric conversions') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9602' AND (NEW.method_name != 'Geographic/geocentric conversions' OR NEW.param1_auth_name IS NOT NULL OR NEW.param1_code IS NOT NULL OR NEW.param1_name IS NOT NULL OR NEW.param1_value IS NOT NULL OR NEW.param1_uom_auth_name IS NOT NULL OR NEW.param1_uom_code IS NOT NULL OR NEW.param2_auth_name IS NOT NULL OR NEW.param2_code IS NOT NULL OR NEW.param2_name IS NOT NULL OR NEW.param2_value IS NOT NULL OR NEW.param2_uom_auth_name IS NOT NULL OR NEW.param2_uom_code IS NOT NULL OR NEW.param3_auth_name IS NOT NULL OR NEW.param3_code IS NOT NULL OR NEW.param3_name IS NOT NULL OR NEW.param3_value IS NOT NULL OR NEW.param3_uom_auth_name IS NOT NULL OR NEW.param3_uom_code IS NOT NULL OR NEW.param4_auth_name IS NOT NULL OR NEW.param4_code IS NOT NULL OR NEW.param4_name IS NOT NULL OR NEW.param4_value IS NOT NULL OR NEW.param4_uom_auth_name IS NOT NULL OR NEW.param4_uom_code IS NOT NULL OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Geographic3D to 2D conversion') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9659' AND (NEW.method_name != 'Geographic3D to 2D conversion' OR NEW.param1_auth_name IS NOT NULL OR NEW.param1_code IS NOT NULL OR NEW.param1_name IS NOT NULL OR NEW.param1_value IS NOT NULL OR NEW.param1_uom_auth_name IS NOT NULL OR NEW.param1_uom_code IS NOT NULL OR NEW.param2_auth_name IS NOT NULL OR NEW.param2_code IS NOT NULL OR NEW.param2_name IS NOT NULL OR NEW.param2_value IS NOT NULL OR NEW.param2_uom_auth_name IS NOT NULL OR NEW.param2_uom_code IS NOT NULL OR NEW.param3_auth_name IS NOT NULL OR NEW.param3_code IS NOT NULL OR NEW.param3_name IS NOT NULL OR NEW.param3_value IS NOT NULL OR NEW.param3_uom_auth_name IS NOT NULL OR NEW.param3_uom_code IS NOT NULL OR NEW.param4_auth_name IS NOT NULL OR NEW.param4_code IS NOT NULL OR NEW.param4_name IS NOT NULL OR NEW.param4_value IS NOT NULL OR NEW.param4_uom_auth_name IS NOT NULL OR NEW.param4_uom_code IS NOT NULL OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Geographic/topocentric conversions') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9837' AND (NEW.method_name != 'Geographic/topocentric conversions' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8834' OR NEW.param1_name != 'Latitude of topocentric origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8835' OR NEW.param2_name != 'Longitude of topocentric origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8836' OR NEW.param3_name != 'Ellipsoidal height of topocentric origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name IS NOT NULL OR NEW.param4_code IS NOT NULL OR NEW.param4_name IS NOT NULL OR NEW.param4_value IS NOT NULL OR NEW.param4_uom_auth_name IS NOT NULL OR NEW.param4_uom_code IS NOT NULL OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Geocentric/topocentric conversions') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9836' AND (NEW.method_name != 'Geocentric/topocentric conversions' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8837' OR NEW.param1_name != 'Geocentric X of topocentric origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'length' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8838' OR NEW.param2_name != 'Geocentric Y of topocentric origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'length' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8839' OR NEW.param3_name != 'Geocentric Z of topocentric origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name IS NOT NULL OR NEW.param4_code IS NOT NULL OR NEW.param4_name IS NOT NULL OR NEW.param4_value IS NOT NULL OR NEW.param4_uom_auth_name IS NOT NULL OR NEW.param4_uom_code IS NOT NULL OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Transverse Mercator Zoned Grid System') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9824' AND (NEW.method_name != 'Transverse Mercator Zoned Grid System' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8830' OR NEW.param2_name != 'Initial longitude' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8831' OR NEW.param3_name != 'Zone width' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8805' OR NEW.param4_name != 'Scale factor at natural origin' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'scale' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8806' OR NEW.param5_name != 'False easting' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8807' OR NEW.param6_name != 'False northing' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Transverse Mercator (South Orientated)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9808' AND (NEW.method_name != 'Transverse Mercator (South Orientated)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8805' OR NEW.param3_name != 'Scale factor at natural origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'scale' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8806' OR NEW.param4_name != 'False easting' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8807' OR NEW.param5_name != 'False northing' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Conic Conformal (West Orientated)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9826' AND (NEW.method_name != 'Lambert Conic Conformal (West Orientated)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8805' OR NEW.param3_name != 'Scale factor at natural origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'scale' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8806' OR NEW.param4_name != 'False easting' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8807' OR NEW.param5_name != 'False northing' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Equidistant Cylindrical') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9842' AND (NEW.method_name != 'Equidistant Cylindrical' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8822' OR NEW.param2_name != 'Longitude of false origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Mercator (1SP) (Spherical)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9841' AND (NEW.method_name != 'Mercator (1SP) (Spherical)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8805' OR NEW.param3_name != 'Scale factor at natural origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'scale' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8806' OR NEW.param4_name != 'False easting' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8807' OR NEW.param5_name != 'False northing' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Vertical Perspective') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9838' AND (NEW.method_name != 'Vertical Perspective' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8834' OR NEW.param1_name != 'Latitude of topocentric origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8835' OR NEW.param2_name != 'Longitude of topocentric origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8836' OR NEW.param3_name != 'Ellipsoidal height of topocentric origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8840' OR NEW.param4_name != 'Viewpoint height' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Azimuthal Equal Area (Spherical)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9821' AND (NEW.method_name != 'Lambert Azimuthal Equal Area (Spherical)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8828' OR NEW.param1_name != 'Spherical latitude of origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8829' OR NEW.param2_name != 'Spherical longitude of origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Cylindrical Equal Area (Spherical)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9834' AND (NEW.method_name != 'Lambert Cylindrical Equal Area (Spherical)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8823' OR NEW.param1_name != 'Latitude of 1st standard parallel' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Hyperbolic Cassini-Soldner') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9833' AND (NEW.method_name != 'Hyperbolic Cassini-Soldner' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Conic Conformal (2SP Belgium)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9803' AND (NEW.method_name != 'Lambert Conic Conformal (2SP Belgium)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8821' OR NEW.param1_name != 'Latitude of false origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8822' OR NEW.param2_name != 'Longitude of false origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8823' OR NEW.param3_name != 'Latitude of 1st standard parallel' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'angle' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8824' OR NEW.param4_name != 'Latitude of 2nd standard parallel' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'angle' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8826' OR NEW.param5_name != 'Easting at false origin' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name != 'EPSG' OR NEW.param6_code != '8827' OR NEW.param6_name != 'Northing at false origin' OR NEW.param6_value IS NULL OR NEW.param6_uom_auth_name IS NULL OR NEW.param6_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param6_uom_auth_name AND code = NEW.param6_uom_code) != 'length' OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for New Zealand Map Grid') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9811' AND (NEW.method_name != 'New Zealand Map Grid' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Tunisia Mining Grid') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9816' AND (NEW.method_name != 'Tunisia Mining Grid' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8821' OR NEW.param1_name != 'Latitude of false origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8822' OR NEW.param2_name != 'Longitude of false origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8826' OR NEW.param3_name != 'Easting at false origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8827' OR NEW.param4_name != 'Northing at false origin' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Lambert Conic Near-Conformal') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9817' AND (NEW.method_name != 'Lambert Conic Near-Conformal' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8805' OR NEW.param3_name != 'Scale factor at natural origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'scale' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8806' OR NEW.param4_name != 'False easting' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name != 'EPSG' OR NEW.param5_code != '8807' OR NEW.param5_name != 'False northing' OR NEW.param5_value IS NULL OR NEW.param5_uom_auth_name IS NULL OR NEW.param5_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param5_uom_auth_name AND code = NEW.param5_uom_code) != 'length' OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Equidistant Cylindrical (Spherical)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9823' AND (NEW.method_name != 'Equidistant Cylindrical (Spherical)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8801' OR NEW.param1_name != 'Latitude of natural origin' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8802' OR NEW.param2_name != 'Longitude of natural origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8806' OR NEW.param3_name != 'False easting' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8807' OR NEW.param4_name != 'False northing' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for Polar Stereographic (variant C)') WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '9830' AND (NEW.method_name != 'Polar Stereographic (variant C)' OR NEW.param1_auth_name != 'EPSG' OR NEW.param1_code != '8832' OR NEW.param1_name != 'Latitude of standard parallel' OR NEW.param1_value IS NULL OR NEW.param1_uom_auth_name IS NULL OR NEW.param1_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param1_uom_auth_name AND code = NEW.param1_uom_code) != 'angle' OR NEW.param2_auth_name != 'EPSG' OR NEW.param2_code != '8833' OR NEW.param2_name != 'Longitude of origin' OR NEW.param2_value IS NULL OR NEW.param2_uom_auth_name IS NULL OR NEW.param2_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param2_uom_auth_name AND code = NEW.param2_uom_code) != 'angle' OR NEW.param3_auth_name != 'EPSG' OR NEW.param3_code != '8826' OR NEW.param3_name != 'Easting at false origin' OR NEW.param3_value IS NULL OR NEW.param3_uom_auth_name IS NULL OR NEW.param3_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param3_uom_auth_name AND code = NEW.param3_uom_code) != 'length' OR NEW.param4_auth_name != 'EPSG' OR NEW.param4_code != '8827' OR NEW.param4_name != 'Northing at false origin' OR NEW.param4_value IS NULL OR NEW.param4_uom_auth_name IS NULL OR NEW.param4_uom_code IS NULL OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param4_uom_auth_name AND code = NEW.param4_uom_code) != 'length' OR NEW.param5_auth_name IS NOT NULL OR NEW.param5_code IS NOT NULL OR NEW.param5_name IS NOT NULL OR NEW.param5_value IS NOT NULL OR NEW.param5_uom_auth_name IS NOT NULL OR NEW.param5_uom_code IS NOT NULL OR NEW.param6_auth_name IS NOT NULL OR NEW.param6_code IS NOT NULL OR NEW.param6_name IS NOT NULL OR NEW.param6_value IS NOT NULL OR NEW.param6_uom_auth_name IS NOT NULL OR NEW.param6_uom_code IS NOT NULL OR NEW.param7_auth_name IS NOT NULL OR NEW.param7_code IS NOT NULL OR NEW.param7_name IS NOT NULL OR NEW.param7_value IS NOT NULL OR NEW.param7_uom_auth_name IS NOT NULL OR NEW.param7_uom_code IS NOT NULL); END; INSERT INTO "metadata" VALUES('EPSG.VERSION', 'v9.8.6'); INSERT INTO "metadata" VALUES('EPSG.DATE', '2020-01-22'); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "unit_of_measure" VALUES('EPSG','1024','bin','scale',1.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1025','millimetre','length',0.001,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1026','metre per second','length',1.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1027','millimetres per year','length',3.16887651727314875889e-11,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1028','parts per billion','scale',1.0e-09,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1029','year','time',31556925.445,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1030','parts per billion per year','scale',3.16887651727314834646e-17,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1031','milliarc-second','angle',4.84813681109535528357e-09,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1032','milliarc-seconds per year','angle',1.53631468932075975278e-16,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1033','centimetre','length',0.01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1034','centimetres per year','length',3.1688765172731483714e-10,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1035','radian per second','angle',1.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1036','unity per second','scale',1.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1040','second','time',1.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1041','parts per million per year','scale',3.1688765172731486173e-14,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1042','metres per year','length',3.16887651727314861947e-08,0); INSERT INTO "unit_of_measure" VALUES('EPSG','1043','arc-seconds per year','angle',1.53631468932075975646e-13,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9001','metre','length',1.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9002','foot','length',0.3048,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9003','US survey foot','length',3.04800609601219241184e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9005','Clarke''s foot','length',0.3047972654,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9014','fathom','length',1.8288,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9030','nautical mile','length',1852.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9031','German legal metre','length',1.0000135965,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9033','US survey chain','length',2.01168402336804703618e+01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9034','US survey link','length',2.0116840233680469141e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9035','US survey mile','length',1.60934721869443751532e+03,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9036','kilometre','length',1000.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9037','Clarke''s yard','length',0.9143917962,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9038','Clarke''s chain','length',20.1166195164,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9039','Clarke''s link','length',0.201166195164,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9040','British yard (Sears 1922)','length',9.14398414616028665236e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9041','British foot (Sears 1922)','length',3.04799471538676203241e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9042','British chain (Sears 1922)','length',2.01167651215526319683e+01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9043','British link (Sears 1922)','length',2.01167651215526294139e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9050','British yard (Benoit 1895 A)','length',0.9143992,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9051','British foot (Benoit 1895 A)','length',3.04799733333333322526e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9052','British chain (Benoit 1895 A)','length',20.1167824,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9053','British link (Benoit 1895 A)','length',0.201167824,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9060','British yard (Benoit 1895 B)','length',9.14399204289812361778e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9061','British foot (Benoit 1895 B)','length',3.04799734763270768755e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9062','British chain (Benoit 1895 B)','length',2.01167824943758724023e+01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9063','British link (Benoit 1895 B)','length',2.01167824943758705158e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9070','British foot (1865)','length',3.04800833333333354158e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9080','Indian foot','length',3.04799510248146943158e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9081','Indian foot (1937)','length',0.30479841,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9082','Indian foot (1962)','length',0.3047996,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9083','Indian foot (1975)','length',0.3047995,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9084','Indian yard','length',9.14398530744440773965e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9085','Indian yard (1937)','length',0.91439523,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9086','Indian yard (1962)','length',0.9143988,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9087','Indian yard (1975)','length',0.9143985,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9093','Statute mile','length',1609.344,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9094','Gold Coast foot','length',3.04799710181508809458e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9095','British foot (1936)','length',0.3048007491,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9096','yard','length',0.9144,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9097','chain','length',20.1168,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9098','link','length',0.201168,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9099','British yard (Sears 1922 truncated)','length',0.914398,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9101','radian','angle',1.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9102','degree','angle',1.74532925199432781271e-02,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9103','arc-minute','angle',2.90888208665721309346e-04,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9104','arc-second','angle',4.84813681109535476055e-06,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9105','grad','angle',1.57079632679489496205e-02,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9106','gon','angle',1.57079632679489496205e-02,1); INSERT INTO "unit_of_measure" VALUES('EPSG','9107','degree minute second','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9108','degree minute second hemisphere','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9109','microradian','angle',1.0e-06,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9110','sexagesimal DMS','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9111','sexagesimal DM','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9112','centesimal minute','angle',1.57079632679489491868e-04,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9113','centesimal second','angle',1.57079632679489496951e-06,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9114','mil_6400','angle',9.81747704246809351283e-04,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9115','degree minute','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9116','degree hemisphere','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9117','hemisphere degree','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9118','degree minute hemisphere','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9119','hemisphere degree minute','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9120','hemisphere degree minute second','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9121','sexagesimal DMS.s','angle',NULL,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9122','degree (supplier to define representation)','angle',1.74532925199432781271e-02,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9201','unity','scale',1.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9202','parts per million','scale',1.0e-06,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9203','coefficient','scale',1.0,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9204','Bin width 330 US survey feet','length',1.00584201168402344707e+02,1); INSERT INTO "unit_of_measure" VALUES('EPSG','9205','Bin width 165 US survey feet','length',5.02921005842011723538e+01,1); INSERT INTO "unit_of_measure" VALUES('EPSG','9206','Bin width 82.5 US survey feet','length',2.51460502921005861769e+01,1); INSERT INTO "unit_of_measure" VALUES('EPSG','9207','Bin width 37.5 metres','length',37.5,1); INSERT INTO "unit_of_measure" VALUES('EPSG','9208','Bin width 25 metres','length',25.0,1); INSERT INTO "unit_of_measure" VALUES('EPSG','9209','Bin width 12.5 metres','length',12.5,1); INSERT INTO "unit_of_measure" VALUES('EPSG','9210','Bin width 6.25 metres','length',6.25,1); INSERT INTO "unit_of_measure" VALUES('EPSG','9211','Bin width 3.125 metres','length',3.125,1); INSERT INTO "unit_of_measure" VALUES('EPSG','9300','British foot (Sears 1922 truncated)','length',3.04799333333333366535e-01,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9301','British chain (Sears 1922 truncated)','length',20.116756,0); INSERT INTO "unit_of_measure" VALUES('EPSG','9302','British link (Sears 1922 truncated)','length',0.20116756,0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "area" VALUES('EPSG','1024','Afghanistan','Afghanistan.',29.4,38.48,60.5,74.92,0); INSERT INTO "area" VALUES('EPSG','1025','Albania','Albania - onshore and offshore.',39.63,42.67,18.46,21.06,0); INSERT INTO "area" VALUES('EPSG','1026','Algeria','Algeria - onshore and offshore.',18.97,38.8,-8.67,11.99,0); INSERT INTO "area" VALUES('EPSG','1027','American Samoa','American Samoa - onshore and offshore.',-17.56,-10.02,-173.75,-165.2,0); INSERT INTO "area" VALUES('EPSG','1028','Andorra','Andorra.',42.43,42.66,1.42,1.79,0); INSERT INTO "area" VALUES('EPSG','1029','Angola','Angola - onshore and offshore.',-18.02,-4.38,8.2,24.09,0); INSERT INTO "area" VALUES('EPSG','1030','Anguilla','Anguilla - onshore and offshore.',17.94,21.93,-63.9,-60.68,0); INSERT INTO "area" VALUES('EPSG','1031','Antarctica','Antarctica.',-90.0,-60.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','1032','Antigua and Barbuda','Antigua and Barbuda - Antigua, Barbuda and Redonda.',16.61,20.88,-62.76,-58.37,0); INSERT INTO "area" VALUES('EPSG','1033','Argentina','Argentina - onshore and offshore.',-58.41,-21.78,-73.59,-52.63,0); INSERT INTO "area" VALUES('EPSG','1034','Armenia','Armenia.',38.84,41.3,43.45,46.63,0); INSERT INTO "area" VALUES('EPSG','1035','Aruba','Aruba - onshore and offshore.',12.14,15.42,-70.42,-69.31,0); INSERT INTO "area" VALUES('EPSG','1036','Australia - onshore and EEZ','Australia - onshore and offshore to 200 nautical mile EEZ boundary. Includes Lord Howe Island, Ashmore and Cartier Islands.',-47.2,-8.88,109.23,163.2,0); INSERT INTO "area" VALUES('EPSG','1037','Austria','Austria.',46.4,49.02,9.53,17.17,0); INSERT INTO "area" VALUES('EPSG','1038','Azerbaijan','Azerbaijan - onshore and offshore.',37.89,42.59,44.77,51.73,0); INSERT INTO "area" VALUES('EPSG','1039','Bahamas','Bahamas - onshore and offshore.',20.36,30.36,-81.22,-70.63,0); INSERT INTO "area" VALUES('EPSG','1040','Bahrain','Bahrain - onshore and offshore.',25.53,27.17,50.26,51.13,0); INSERT INTO "area" VALUES('EPSG','1041','Bangladesh','Bangladesh - onshore and offshore.',18.56,26.64,88.01,92.67,0); INSERT INTO "area" VALUES('EPSG','1042','Barbados','Barbados - onshore and offshore.',10.68,16.0,-60.39,-55.99,0); INSERT INTO "area" VALUES('EPSG','1043','Belarus','Belarus.',51.25,56.17,23.16,32.75,0); INSERT INTO "area" VALUES('EPSG','1044','Belgium','Belgium - onshore and offshore.',49.5,51.88,2.23,6.4,0); INSERT INTO "area" VALUES('EPSG','1045','Belize','Belize - onshore and offshore.',15.88,18.49,-89.22,-86.11,0); INSERT INTO "area" VALUES('EPSG','1046','Benin','Benin - onshore and offshore.',2.99,12.4,0.77,3.86,0); INSERT INTO "area" VALUES('EPSG','1047','Bermuda','Bermuda - onshore and offshore.',28.91,35.73,-68.83,-60.7,0); INSERT INTO "area" VALUES('EPSG','1048','Bhutan','Bhutan.',26.7,28.33,88.74,92.13,0); INSERT INTO "area" VALUES('EPSG','1049','Bolivia','Bolivia.',-22.91,-9.67,-69.66,-57.52,0); INSERT INTO "area" VALUES('EPSG','1050','Bosnia and Herzegovina','Bosnia and Herzegovina.',42.56,45.27,15.74,19.62,0); INSERT INTO "area" VALUES('EPSG','1051','Botswana','Botswana.',-26.88,-17.78,19.99,29.38,0); INSERT INTO "area" VALUES('EPSG','1052','Bouvet Island','Bouvet Island - onshore and offshore.',-57.8,-51.06,-2.38,9.21,0); INSERT INTO "area" VALUES('EPSG','1053','Brazil','Brazil - onshore and offshore. Includes Rocas, Fernando de Noronha archipelago, Trindade, Ihlas Martim Vaz and Sao Pedro e Sao Paulo.',-35.71,7.04,-74.01,-25.28,0); INSERT INTO "area" VALUES('EPSG','1054','British Indian Ocean Territory','British Indian Ocean Territory - onshore and offshore - Chagos Archipelago.',-10.8,-2.28,67.88,75.86,0); INSERT INTO "area" VALUES('EPSG','1055','Brunei','Brunei Darussalam - onshore and offshore.',4.01,6.31,112.37,115.37,0); INSERT INTO "area" VALUES('EPSG','1056','Bulgaria','Bulgaria - onshore and offshore.',41.24,44.23,22.36,31.35,0); INSERT INTO "area" VALUES('EPSG','1057','Burkina Faso','Burkina Faso.',9.39,15.09,-5.53,2.4,0); INSERT INTO "area" VALUES('EPSG','1058','Burundi','Burundi.',-4.45,-2.3,28.98,30.86,0); INSERT INTO "area" VALUES('EPSG','1059','Cambodia','Cambodia - onshore and offshore.',8.78,14.73,101.33,107.64,0); INSERT INTO "area" VALUES('EPSG','1060','Cameroon','Cameroon - onshore and offshore.',1.65,13.09,8.32,16.21,0); INSERT INTO "area" VALUES('EPSG','1061','Canada','Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon.',40.04,86.46,-141.01,-47.74,0); INSERT INTO "area" VALUES('EPSG','1062','Cape Verde','Cape Verde - onshore and offshore. Includes Boa Vista, Brava, Fogo, Maio, Sal, Santo Antao, Sao Nicolau, Sao Tiago, Sao Vicente.',11.47,20.54,-28.85,-19.53,0); INSERT INTO "area" VALUES('EPSG','1063','Cayman Islands','Cayman Islands - onshore and offshore. Includes Grand Cayman, Little Cayman and Cayman Brac.',17.58,20.68,-83.6,-78.72,0); INSERT INTO "area" VALUES('EPSG','1064','Central African Republic','Central African Republic.',2.22,11.01,14.41,27.46,0); INSERT INTO "area" VALUES('EPSG','1065','Chad','Chad.',7.45,23.46,13.46,24.01,0); INSERT INTO "area" VALUES('EPSG','1066','Chile','Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y Gomez.',-59.87,-17.5,-113.21,-65.72,0); INSERT INTO "area" VALUES('EPSG','1067','China','China - onshore and offshore.',16.7,53.56,73.62,134.77,0); INSERT INTO "area" VALUES('EPSG','1068','Christmas Island','Christmas Island - onshore and offshore.',-13.92,-8.87,102.14,109.03,0); INSERT INTO "area" VALUES('EPSG','1069','Cocos (Keeling) Islands - onshore','Cocos (Keeling) Islands - onshore.',-12.27,-11.76,96.76,96.99,0); INSERT INTO "area" VALUES('EPSG','1070','Colombia','Colombia - onshore and offshore. Includes San Andres y Providencia, Malpelo Islands, Roncador Bank, Serrana Bank and Serranilla Bank.',-4.23,15.51,-84.77,-66.87,0); INSERT INTO "area" VALUES('EPSG','1071','Comoros','Comoros - onshore and offshore. Includes Anjouan, Grande Comore, Moheli and other islands.',-14.43,-8.01,41.93,45.79,0); INSERT INTO "area" VALUES('EPSG','1072','Congo','Congo - onshore and offshore.',-6.91,3.72,8.84,18.65,0); INSERT INTO "area" VALUES('EPSG','1073','Cook Islands','Cook Islands - onshore and offshore.',-25.28,-5.85,-168.53,-154.8,0); INSERT INTO "area" VALUES('EPSG','1074','Costa Rica','Costa Rica - onshore and offshore.',2.15,11.77,-90.45,-81.43,0); INSERT INTO "area" VALUES('EPSG','1075','Cote d''Ivoire (Ivory Coast)','Côte d''Ivoire (Ivory Coast) - onshore and offshore.',1.02,10.74,-8.61,-2.48,0); INSERT INTO "area" VALUES('EPSG','1076','Croatia','Croatia - onshore and offshore.',41.62,46.54,13.0,19.43,0); INSERT INTO "area" VALUES('EPSG','1077','Cuba','Cuba - onshore and offshore.',18.83,25.51,-87.01,-73.57,0); INSERT INTO "area" VALUES('EPSG','1078','Cyprus','Cyprus - onshore and offshore.',32.88,36.21,29.95,35.2,0); INSERT INTO "area" VALUES('EPSG','1079','Czechia','Czechia.',48.58,51.06,12.09,18.86,0); INSERT INTO "area" VALUES('EPSG','1080','Denmark','Denmark - onshore and offshore.',54.36,58.27,3.24,16.51,0); INSERT INTO "area" VALUES('EPSG','1081','Djibouti','Djibouti - onshore and offshore.',10.94,12.72,41.75,44.15,0); INSERT INTO "area" VALUES('EPSG','1082','Dominica','Dominica - onshore and offshore.',14.48,16.62,-62.82,-57.52,0); INSERT INTO "area" VALUES('EPSG','1083','Dominican Republic','Dominican Republic - onshore and offshore.',14.96,22.42,-73.46,-66.82,0); INSERT INTO "area" VALUES('EPSG','1084','East Timor','Timor-Leste (East Timor) - onshore and offshore. Includes enclave of Oe-Cussi (Okusi).',-10.47,-7.97,123.92,127.97,0); INSERT INTO "area" VALUES('EPSG','1085','Ecuador','Ecuador - onshore and offshore. Includes Galapagos Islands (Archipelago de Colon).',-5.01,5.0,-95.35,-75.21,0); INSERT INTO "area" VALUES('EPSG','1086','Egypt','Egypt - onshore and offshore.',21.89,33.82,24.7,37.91,0); INSERT INTO "area" VALUES('EPSG','1087','El Salvador','El Salvador - onshore and offshore.',9.97,14.44,-91.43,-87.65,0); INSERT INTO "area" VALUES('EPSG','1088','Equatorial Guinea','Equatorial Guinea - onshore and offshore. Includes Rio Muni, Bioko, Annobon, Corisco, Elobey Chico, and Ebony Grande.',-4.8,4.13,2.26,11.36,0); INSERT INTO "area" VALUES('EPSG','1089','Eritrea','Eritrea - onshore and offshore.',12.36,18.1,36.44,43.31,0); INSERT INTO "area" VALUES('EPSG','1090','Estonia','Estonia - onshore and offshore.',57.52,60.0,20.37,28.2,0); INSERT INTO "area" VALUES('EPSG','1091','Ethiopia','Ethiopia.',3.4,14.89,32.99,47.99,0); INSERT INTO "area" VALUES('EPSG','1092','Falkland Islands','Falkland Islands (Malvinas) - onshore and offshore.',-56.25,-47.68,-65.01,-52.31,0); INSERT INTO "area" VALUES('EPSG','1093','Faroe Islands','Faroe Islands - onshore and offshore.',59.94,65.7,-13.91,-0.48,0); INSERT INTO "area" VALUES('EPSG','1094','Fiji - onshore','Fiji - onshore. Includes Viti Levu, Vanua Levu, Taveuni, the Yasawa Group, the Kadavu Group, the Lau Islands and Rotuma Islands.',-20.81,-12.42,176.81,-178.15,0); INSERT INTO "area" VALUES('EPSG','1095','Finland','Finland - onshore and offshore.',58.84,70.09,19.08,31.59,0); INSERT INTO "area" VALUES('EPSG','1096','France','France - onshore and offshore, mainland and Corsica.',41.15,51.56,-9.86,10.38,0); INSERT INTO "area" VALUES('EPSG','1097','French Guiana','French Guiana - onshore and offshore.',2.11,8.88,-54.6,-49.46,0); INSERT INTO "area" VALUES('EPSG','1098','French Polynesia','French Polynesia - onshore and offshore. Includes Society archipelago, Tuamotu archipelago, Marquesas Islands, Gambier Islands and Austral Islands.',-31.24,-4.52,-158.13,-131.97,0); INSERT INTO "area" VALUES('EPSG','1099','French Southern Territories','French Southern Territories - onshore and offshore. Includes Amsterdam and St Paul, Bassas da India, Crozet, Europa, Glorieuses, Juan de Nova, Kerguelen and Tromelin.',-53.24,-10.65,37.55,81.83,0); INSERT INTO "area" VALUES('EPSG','1100','Gabon','Gabon - onshore and offshore.',-6.37,2.32,7.03,14.52,0); INSERT INTO "area" VALUES('EPSG','1101','Gambia','Gambia - onshore and offshore.',13.05,13.83,-20.19,-13.79,0); INSERT INTO "area" VALUES('EPSG','1102','Georgia','Georgia - onshore and offshore.',41.04,43.59,38.97,46.72,0); INSERT INTO "area" VALUES('EPSG','1103','Germany','Germany - onshore and offshore.',47.27,55.92,3.34,15.04,0); INSERT INTO "area" VALUES('EPSG','1104','Ghana','Ghana - onshore and offshore.',1.4,11.16,-3.79,2.1,0); INSERT INTO "area" VALUES('EPSG','1105','Gibraltar','Gibraltar - onshore and offshore.',36.0,36.16,-5.42,-4.89,0); INSERT INTO "area" VALUES('EPSG','1106','Greece','Greece - onshore and offshore. Includes Aegean Islands, Ionian Islands, Dodecanese Islands, Crete, and Mount Athos.',33.26,41.75,18.26,30.23,0); INSERT INTO "area" VALUES('EPSG','1107','Greenland','Greenland - onshore and offshore.',56.38,87.03,-75.0,8.12,0); INSERT INTO "area" VALUES('EPSG','1108','Grenada','Grenada and southern Grenadine Islands - onshore and offshore.',11.36,13.4,-63.28,-60.82,0); INSERT INTO "area" VALUES('EPSG','1109','Guadeloupe','Guadeloupe - onshore and offshore. Includes Grande Terre, Basse Terre, Marie Galante, Les Saintes, Iles de la Petite Terre, La Desirade; St Barthélemy, and northern St Martin.',15.06,18.54,-63.66,-57.54,0); INSERT INTO "area" VALUES('EPSG','1110','Guam','Guam - onshore and offshore.',10.95,15.91,141.19,148.18,0); INSERT INTO "area" VALUES('EPSG','1111','Guatemala','Guatemala - onshore and offshore.',10.6,17.83,-94.57,-88.16,0); INSERT INTO "area" VALUES('EPSG','1112','Guinea','Guinea - onshore and offshore.',7.19,12.68,-18.26,-7.65,0); INSERT INTO "area" VALUES('EPSG','1113','Guinea-Bissau','Guinea-Bissau - onshore and offshore.',8.64,12.69,-19.8,-13.64,0); INSERT INTO "area" VALUES('EPSG','1114','Guyana','Guyana - onshore and offshore.',1.18,10.7,-61.39,-55.77,0); INSERT INTO "area" VALUES('EPSG','1115','Haiti','Haiti - onshore and offshore.',14.73,20.72,-75.73,-71.62,0); INSERT INTO "area" VALUES('EPSG','1116','Heard Island and McDonald Islands','Heard Island and McDonald Islands - onshore and offshore.',-59.02,-49.5,62.92,83.57,0); INSERT INTO "area" VALUES('EPSG','1117','Honduras','Honduras - onshore and offshore. Includes Swan Islands.',12.98,19.59,-89.36,-79.87,0); INSERT INTO "area" VALUES('EPSG','1118','China - Hong Kong','China - Hong Kong - onshore and offshore.',22.13,22.58,113.76,114.51,0); INSERT INTO "area" VALUES('EPSG','1119','Hungary','Hungary.',45.74,48.58,16.11,22.9,0); INSERT INTO "area" VALUES('EPSG','1120','Iceland','Iceland - onshore and offshore.',59.96,69.59,-30.87,-5.55,0); INSERT INTO "area" VALUES('EPSG','1121','India','India - onshore and offshore. Includes Amandivis, Laccadives, Minicoy, Andaman Islands, Nicobar Islands, and Sikkim.',3.87,35.51,65.6,97.42,0); INSERT INTO "area" VALUES('EPSG','1122','Indonesia','Indonesia - onshore and offshore.',-13.95,7.79,92.01,141.46,0); INSERT INTO "area" VALUES('EPSG','1123','Iran','Iran - onshore and offshore.',23.34,39.78,44.03,63.34,0); INSERT INTO "area" VALUES('EPSG','1124','Iraq','Iraq - onshore and offshore.',29.06,37.39,38.79,48.75,0); INSERT INTO "area" VALUES('EPSG','1125','Ireland','Ireland - onshore and offshore.',48.18,56.57,-16.1,-5.24,0); INSERT INTO "area" VALUES('EPSG','1126','Israel','Israel - onshore and offshore.',29.45,33.53,32.99,35.69,0); INSERT INTO "area" VALUES('EPSG','1127','Italy','Italy - onshore and offshore.',34.76,47.1,5.93,18.99,0); INSERT INTO "area" VALUES('EPSG','1128','Jamaica','Jamaica - onshore and offshore. Includes Morant Cays and Pedro Cays.',14.08,19.36,-80.6,-74.51,0); INSERT INTO "area" VALUES('EPSG','1129','Japan','Japan - onshore and offshore.',17.09,46.05,122.38,157.65,0); INSERT INTO "area" VALUES('EPSG','1130','Jordan','Jordan.',29.18,33.38,34.88,39.31,0); INSERT INTO "area" VALUES('EPSG','1131','Kazakhstan','Kazakhstan - onshore including Caspian Sea.',40.59,55.45,46.49,87.35,0); INSERT INTO "area" VALUES('EPSG','1132','Kenya','Kenya - onshore and offshore.',-4.9,4.63,33.9,44.28,0); INSERT INTO "area" VALUES('EPSG','1133','Kiribati','Kiribati - onshore and offshore. Includes Fanning Island, Washington Island and Christmas in the Line Islands, Ocean Islands, Phoenix Islands.',-13.84,7.92,167.81,-146.82,0); INSERT INTO "area" VALUES('EPSG','1134','Korea, Democratic People''s Republic of (North Korea)','Democratic People''s Republic of Korea (North Korea) - onshore and offshore.',37.1,43.01,123.54,132.82,0); INSERT INTO "area" VALUES('EPSG','1135','Korea, Republic of (South Korea)','Republic of Korea (South Korea) - onshore and offshore.',28.6,40.27,122.71,134.28,0); INSERT INTO "area" VALUES('EPSG','1136','Kuwait','Kuwait - onshore and offshore.',28.53,30.09,46.54,49.53,0); INSERT INTO "area" VALUES('EPSG','1137','Kyrgyzstan','Kyrgyzstan.',39.19,43.22,69.24,80.29,0); INSERT INTO "area" VALUES('EPSG','1138','Laos','Laos.',13.92,22.5,100.09,107.64,0); INSERT INTO "area" VALUES('EPSG','1139','Latvia','Latvia - onshore and offshore.',55.67,58.09,19.06,28.24,0); INSERT INTO "area" VALUES('EPSG','1140','Lebanon','Lebanon - onshore and offshore.',33.06,34.84,33.75,36.63,0); INSERT INTO "area" VALUES('EPSG','1141','Lesotho','Lesotho.',-30.66,-28.57,27.01,29.46,0); INSERT INTO "area" VALUES('EPSG','1142','Liberia','Liberia - onshore and offshore.',1.02,8.52,-13.59,-7.36,0); INSERT INTO "area" VALUES('EPSG','1143','Libya','Libya - onshore and offshore.',19.5,35.23,9.31,26.21,0); INSERT INTO "area" VALUES('EPSG','1144','Liechtenstein','Liechtenstein.',47.05,47.28,9.47,9.64,0); INSERT INTO "area" VALUES('EPSG','1145','Lithuania','Lithuania - onshore and offshore.',53.89,56.45,19.02,26.82,0); INSERT INTO "area" VALUES('EPSG','1146','Luxembourg','Luxembourg.',49.44,50.19,5.73,6.53,0); INSERT INTO "area" VALUES('EPSG','1147','China - Macao','China - Macao - onshore and offshore.',22.06,22.23,113.52,113.68,0); INSERT INTO "area" VALUES('EPSG','1148','North Macedonia','North Macedonia.',40.85,42.36,20.45,23.04,0); INSERT INTO "area" VALUES('EPSG','1149','Madagascar - onshore and nearshore','Madagascar - onshore and nearshore.',-26.59,-11.69,42.53,51.03,0); INSERT INTO "area" VALUES('EPSG','1150','Malawi','Malawi.',-17.14,-9.37,32.68,35.93,0); INSERT INTO "area" VALUES('EPSG','1151','Malaysia','Malaysia - onshore and offshore. Includes peninsular Malayasia, Sabah and Sarawak.',0.85,7.81,98.02,119.61,0); INSERT INTO "area" VALUES('EPSG','1152','Maldives','Maldives - onshore and offshore.',-3.47,8.1,69.29,77.08,0); INSERT INTO "area" VALUES('EPSG','1153','Mali','Mali.',10.14,25.01,-12.25,4.26,0); INSERT INTO "area" VALUES('EPSG','1154','Malta','Malta - onshore and offshore.',34.49,36.56,13.41,18.06,0); INSERT INTO "area" VALUES('EPSG','1155','Marshall Islands','Marshall Islands - onshore and offshore.',1.77,17.88,157.47,175.52,0); INSERT INTO "area" VALUES('EPSG','1156','Martinique','Martinique - onshore and offshore.',14.08,16.36,-62.82,-57.52,0); INSERT INTO "area" VALUES('EPSG','1157','Mauritania','Mauritania - onshore and offshore.',14.72,27.3,-20.04,-4.8,0); INSERT INTO "area" VALUES('EPSG','1158','Mauritius','Mauritius - onshore and offshore. Includes Rodrigues, Agalega Islands, and Cargados Carajos.',-23.81,-8.43,53.8,67.05,0); INSERT INTO "area" VALUES('EPSG','1159','Mayotte','Mayotte - onshore and offshore.',-14.49,-11.33,43.68,46.7,0); INSERT INTO "area" VALUES('EPSG','1160','Mexico','Mexico - onshore and offshore.',12.1,32.72,-122.19,-84.64,0); INSERT INTO "area" VALUES('EPSG','1161','Micronesia','Federated States of Micronesia - onshore and offshore. Includes Caroline Islands, Yap, Truk, Ponape, Kosrae.',-1.19,13.43,135.27,165.68,0); INSERT INTO "area" VALUES('EPSG','1162','Moldova','Moldova.',45.44,48.47,26.63,30.13,0); INSERT INTO "area" VALUES('EPSG','1163','Monaco','Monaco - onshore and offshore.',42.94,43.77,7.39,7.76,0); INSERT INTO "area" VALUES('EPSG','1164','Mongolia','Mongolia.',41.58,52.15,87.76,119.94,0); INSERT INTO "area" VALUES('EPSG','1165','Montserrat','Montserrat - onshore and offshore.',15.84,17.04,-63.05,-61.82,0); INSERT INTO "area" VALUES('EPSG','1166','Morocco','Morocco - onshore and offshore.',27.66,36.0,-13.86,-1.01,0); INSERT INTO "area" VALUES('EPSG','1167','Mozambique','Mozambique - onshore and offshore.',-27.71,-10.09,30.21,43.03,0); INSERT INTO "area" VALUES('EPSG','1168','Myanmar (Burma)','Myanmar (Burma) - onshore and offshore.',9.48,28.55,89.61,101.17,0); INSERT INTO "area" VALUES('EPSG','1169','Namibia','Namibia - onshore and offshore.',-30.64,-16.95,8.24,25.27,0); INSERT INTO "area" VALUES('EPSG','1170','Nauru','Nauru - onshore and offshore.',-3.91,2.69,163.58,168.6,0); INSERT INTO "area" VALUES('EPSG','1171','Nepal','Nepal.',26.34,30.43,80.06,88.21,0); INSERT INTO "area" VALUES('EPSG','1172','Netherlands','Netherlands - onshore and offshore.',50.75,55.77,2.53,7.22,0); INSERT INTO "area" VALUES('EPSG','1173','Netherlands Antilles','Netherlands Antilles - onshore and offshore. Includes Bonaire, Curacao, Saba, St Eustatius, and southern St Martin',11.67,18.07,-69.59,-62.82,1); INSERT INTO "area" VALUES('EPSG','1174','New Caledonia','New Caledonia - onshore and offshore. Isle de Pins, Loyalty Islands, Huon Islands, Belep archipelago, Chesterfield Islands, and Walpole.',-26.45,-14.83,156.25,174.28,0); INSERT INTO "area" VALUES('EPSG','1175','New Zealand','New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands, Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.',-55.95,-25.88,160.6,-171.2,0); INSERT INTO "area" VALUES('EPSG','1176','Nicaragua','Nicaragua - onshore and offshore.',9.75,16.26,-89.43,-79.76,0); INSERT INTO "area" VALUES('EPSG','1177','Niger','Niger.',11.69,23.53,0.16,16.0,0); INSERT INTO "area" VALUES('EPSG','1178','Nigeria','Nigeria - onshore and offshore.',1.92,13.9,2.66,14.65,0); INSERT INTO "area" VALUES('EPSG','1179','Niue','Niue - onshore and offshore.',-22.49,-16.58,-172.01,-166.31,0); INSERT INTO "area" VALUES('EPSG','1180','Norfolk Island','Norfolk Island - onshore and offshore.',-32.48,-25.61,163.36,173.35,0); INSERT INTO "area" VALUES('EPSG','1181','Northern Mariana Islands','Northern Mariana Islands - onshore and offshore.',12.38,23.9,141.33,149.55,0); INSERT INTO "area" VALUES('EPSG','1182','Norway','Norway including Svalbard - onshore and offshore.',56.08,84.17,-3.7,39.65,0); INSERT INTO "area" VALUES('EPSG','1183','Oman','Oman - onshore and offshore.',14.33,26.74,51.99,63.38,0); INSERT INTO "area" VALUES('EPSG','1184','Pakistan','Pakistan - onshore and offshore.',21.05,37.07,60.86,77.83,0); INSERT INTO "area" VALUES('EPSG','1185','Palau','Palau - onshore and offshore.',1.64,11.45,129.48,136.98,0); INSERT INTO "area" VALUES('EPSG','1186','Panama','Panama - onshore and offshore.',5.0,12.51,-84.32,-77.04,0); INSERT INTO "area" VALUES('EPSG','1187','Papua New Guinea','Papua New Guinea - onshore and offshore. Includes Bismark archipelago, Louisade archipelago, Admiralty Islands, d''Entrecasteaux Islands, northern Solomon Islands, Trobriand Islands, New Britain, New Ireland, Woodlark, and associated islands.',-14.75,2.58,139.2,162.81,0); INSERT INTO "area" VALUES('EPSG','1188','Paraguay','Paraguay.',-27.59,-19.29,-62.65,-54.24,0); INSERT INTO "area" VALUES('EPSG','1189','Peru','Peru - onshore and offshore.',-21.05,-0.03,-84.68,-68.67,0); INSERT INTO "area" VALUES('EPSG','1190','Philippines','Philippines - onshore and offshore.',3.0,22.18,116.04,129.95,0); INSERT INTO "area" VALUES('EPSG','1191','Pitcairn','Pitcairn - Pitcairn Island, Henderson Island, Ducie Island and Oeno Atoll.',-28.41,-20.58,-133.43,-121.11,0); INSERT INTO "area" VALUES('EPSG','1192','Poland','Poland - onshore and offshore.',49.0,55.93,14.14,24.15,0); INSERT INTO "area" VALUES('EPSG','1193','Portugal','Portugal - mainland, Azores and Madeira, onshore and offshore.',29.24,43.07,-35.58,-6.19,0); INSERT INTO "area" VALUES('EPSG','1194','Puerto Rico','Puerto Rico - onshore and offshore.',14.92,21.86,-68.49,-65.04,0); INSERT INTO "area" VALUES('EPSG','1195','Qatar','Qatar - onshore and offshore.',24.55,27.05,50.55,53.04,0); INSERT INTO "area" VALUES('EPSG','1196','Reunion','Reunion - onshore and offshore - Reunion island, Ile Europa, Bassas da India, Juan de Nova, Iles Glorieuses, and Ile Tromelin.',-25.92,-10.6,37.58,58.27,1); INSERT INTO "area" VALUES('EPSG','1197','Romania','Romania - onshore and offshore.',43.44,48.27,20.26,31.41,0); INSERT INTO "area" VALUES('EPSG','1198','Russia','Russian Federation - onshore and offshore.',39.87,85.2,18.92,-168.97,0); INSERT INTO "area" VALUES('EPSG','1199','Rwanda','Rwanda.',-2.83,-1.05,28.85,30.9,0); INSERT INTO "area" VALUES('EPSG','1200','St Kitts and Nevis','St Kitts and Nevis - onshore and offshore.',16.34,17.67,-63.63,-62.2,0); INSERT INTO "area" VALUES('EPSG','1201','St Lucia','St Lucia - onshore and offshore.',13.23,14.28,-62.5,-59.99,0); INSERT INTO "area" VALUES('EPSG','1202','St Vincent and the Grenadines','St Vincent and the northern Grenadine Islands - onshore and offshore.',12.03,14.09,-63.38,-60.28,0); INSERT INTO "area" VALUES('EPSG','1203','Samoa','Samoa - onshore and offshore.',-15.84,-10.94,-174.54,-170.51,0); INSERT INTO "area" VALUES('EPSG','1204','San Marino','San Marino.',43.89,43.99,12.4,12.52,0); INSERT INTO "area" VALUES('EPSG','1205','Sao Tome and Principe','Sao Tome and Principe - onshore and offshore.',-1.49,2.72,3.2,8.56,0); INSERT INTO "area" VALUES('EPSG','1206','Saudi Arabia','Saudi Arabia - onshore and offshore.',15.61,32.16,34.44,55.67,0); INSERT INTO "area" VALUES('EPSG','1207','Senegal','Senegal - onshore and offshore.',10.64,16.7,-20.22,-11.36,0); INSERT INTO "area" VALUES('EPSG','1208','Seychelles','Seychelles - onshore and offshore - Alphonse, Bijoutier, St Francois Islands, St Pierre islet, Cosmoledo Islands, Amirantes, Aldabra, Farquhar, and Desroches.',-12.72,-0.37,43.19,59.66,0); INSERT INTO "area" VALUES('EPSG','1209','Sierra Leone','Sierra Leone - onshore and offshore.',4.22,10.0,-16.57,-10.26,0); INSERT INTO "area" VALUES('EPSG','1210','Singapore','Singapore - onshore and offshore.',1.13,1.47,103.59,104.07,0); INSERT INTO "area" VALUES('EPSG','1211','Slovakia','Slovakia.',47.73,49.61,16.84,22.56,0); INSERT INTO "area" VALUES('EPSG','1212','Slovenia','Slovenia - onshore and offshore.',45.42,46.88,13.38,16.61,0); INSERT INTO "area" VALUES('EPSG','1213','Solomon Islands - onshore main islands','Solomon Islands - onshore southern Solomon Islands, primarily Guadalcanal, Malaita, San Cristobel, Santa Isobel, Choiseul, Makira-Ulawa.',-10.9,-6.55,155.62,162.44,0); INSERT INTO "area" VALUES('EPSG','1214','Somalia','Somalia - onshore and offshore.',-3.61,13.5,40.98,54.43,0); INSERT INTO "area" VALUES('EPSG','1215','South Africa','South Africa - onshore and offshore, including Marion Island, and Prince Edward Island.',-50.32,-22.13,13.33,42.85,0); INSERT INTO "area" VALUES('EPSG','1216','South Georgia and the South Sandwich Islands','South Georgia and the South Sandwich Islands - onshore and offshore.',-62.79,-50.15,-48.06,-19.84,0); INSERT INTO "area" VALUES('EPSG','1217','Spain','Spain - mainland, Balearic Islands, Canary Islands, Ceuta and Melila - onshore and offshore.',24.6,46.26,-21.93,6.3,0); INSERT INTO "area" VALUES('EPSG','1218','Sri Lanka','Sri Lanka - onshore and offshore.',2.58,11.45,77.02,85.24,0); INSERT INTO "area" VALUES('EPSG','1219','St Helena, Ascension and Tristan da Cunha','St Helena, Ascension and Tristan da Cunha archipelago (Gough, Inaccessible, Nightingale and Stoltenhoff Islands) - onshore and offshore.',-43.71,-4.55,-17.79,-2.16,0); INSERT INTO "area" VALUES('EPSG','1220','St Pierre and Miquelon','St Pierre and Miquelon - onshore and offshore.',43.41,47.37,-57.1,-55.9,0); INSERT INTO "area" VALUES('EPSG','1221','Sudan','Sudan - onshore and offshore.',8.64,22.24,21.82,39.76,0); INSERT INTO "area" VALUES('EPSG','1222','Suriname','Suriname - onshore and offshore.',1.83,9.35,-58.08,-52.66,0); INSERT INTO "area" VALUES('EPSG','1223','Svalbard and Jan Mayen','Svalbard and Jan Mayen - onshore and offshore. Includes Bear Island.',66.24,85.05,-16.22,35.02,1); INSERT INTO "area" VALUES('EPSG','1224','Eswatini','Eswatini (Swaziland).',-27.32,-25.72,30.79,32.14,0); INSERT INTO "area" VALUES('EPSG','1225','Sweden','Sweden - onshore and offshore.',54.96,69.07,10.03,24.17,0); INSERT INTO "area" VALUES('EPSG','1226','Switzerland','Switzerland.',45.82,47.81,5.96,10.49,0); INSERT INTO "area" VALUES('EPSG','1227','Syria','Syria - onshore and offshore.',32.31,37.3,34.96,42.38,0); INSERT INTO "area" VALUES('EPSG','1228','Taiwan','Taiwan, Republic of China - onshore and offshore - Taiwan Island, Penghu (Pescadores) Islands.',17.36,26.96,114.32,123.61,0); INSERT INTO "area" VALUES('EPSG','1229','Tajikistan','Tajikistan.',36.67,41.05,67.36,75.19,0); INSERT INTO "area" VALUES('EPSG','1230','Tanzania','Tanzania - onshore and offshore.',-11.75,-0.99,29.34,43.29,0); INSERT INTO "area" VALUES('EPSG','1231','Thailand','Thailand - onshore and offshore.',5.63,20.46,95.52,105.64,0); INSERT INTO "area" VALUES('EPSG','1232','Togo','Togo - onshore and offshore.',2.91,11.14,-0.15,2.42,0); INSERT INTO "area" VALUES('EPSG','1233','Tokelau','Tokelau - onshore and offshore.',-11.04,-6.46,-175.86,-167.98,0); INSERT INTO "area" VALUES('EPSG','1234','Tonga','Tonga - onshore and offshore.',-25.68,-14.14,-179.08,-171.28,0); INSERT INTO "area" VALUES('EPSG','1235','Trinidad and Tobago','Trinidad and Tobago - onshore and offshore.',9.83,12.34,-62.09,-57.28,0); INSERT INTO "area" VALUES('EPSG','1236','Tunisia','Tunisia - onshore and offshore.',30.23,38.41,7.49,13.67,0); INSERT INTO "area" VALUES('EPSG','1237','Turkey','Turkey - onshore and offshore.',34.42,43.45,25.62,44.83,0); INSERT INTO "area" VALUES('EPSG','1238','Turkmenistan','Turkmenistan - onshore and offshore.',35.14,42.8,51.3,66.68,0); INSERT INTO "area" VALUES('EPSG','1239','Turks and Caicos Islands','Turks and Caicos Islands - onshore and offshore.',20.54,25.07,-72.82,-67.66,0); INSERT INTO "area" VALUES('EPSG','1240','Tuvalu','Tuvalu - onshore and offshore. Funafuti, Nanumanga, Nui, Nanomea, Nurakita, Niutao, Nukufetau, Nukulaelae, and Vaitupu.',-13.24,-4.0,172.73,-176.71,0); INSERT INTO "area" VALUES('EPSG','1241','Uganda','Uganda.',-1.48,4.23,29.57,35.01,0); INSERT INTO "area" VALUES('EPSG','1242','Ukraine','Ukraine - onshore and offshore.',43.18,52.38,22.15,40.18,0); INSERT INTO "area" VALUES('EPSG','1243','UAE','United Arab Emirates (UAE) - onshore and offshore. Abu Dhabi, Dubai, Sharjah, Umm al Qaywayn, Al Fujairah, Ras al Khaymah.',22.63,26.27,51.5,57.13,0); INSERT INTO "area" VALUES('EPSG','1244','UK','United Kingdom (UK) - onshore and offshore - England, Scotland including Orkney and Shetland Islands, Wales, Northern Ireland (Ulster).',47.42,63.89,-14.89,3.4,0); INSERT INTO "area" VALUES('EPSG','1245','USA','United States (USA) - onshore and offshore.',15.56,74.71,167.65,-65.69,0); INSERT INTO "area" VALUES('EPSG','1246','United States Minor Outlying Islands','United States Minor Outlying Islands - onshore and offshore - Baker Island, Howland Islands, Jarvis Island, Johnston Atoll, Kingman Reef, Midway Islands, Palmyra Islands, and Wake Island.',-3.74,31.8,163.07,-157.41,0); INSERT INTO "area" VALUES('EPSG','1247','Uruguay','Uruguay - onshore and offshore.',-37.77,-30.09,-58.49,-50.01,0); INSERT INTO "area" VALUES('EPSG','1248','Uzbekistan','Uzbekistan.',37.18,45.58,55.99,73.17,0); INSERT INTO "area" VALUES('EPSG','1249','Vanuatu','Vanuatu - onshore and offshore.',-21.65,-12.27,163.16,173.59,0); INSERT INTO "area" VALUES('EPSG','1250','Holy See (Vatican City State)','Holy See (Vatican City State).',41.9,41.91,12.44,12.46,0); INSERT INTO "area" VALUES('EPSG','1251','Venezuela','Venezuela - onshore and offshore.',0.64,16.75,-73.38,-58.95,0); INSERT INTO "area" VALUES('EPSG','1252','Vietnam','Vietnam - onshore and offshore.',5.67,23.4,102.14,112.55,0); INSERT INTO "area" VALUES('EPSG','1253','Virgin Islands, British','British Virgin Islands - onshore and offshore - Anegada, Jost Van Dyke, Tortola, and Virgin Gorda.',17.96,22.09,-65.85,-63.29,0); INSERT INTO "area" VALUES('EPSG','1254','Virgin Islands, US','US Virgin Islands - onshore and offshore - St Croix, St John, and St Thomas.',16.22,21.83,-66.05,-63.88,0); INSERT INTO "area" VALUES('EPSG','1255','Wallis and Futuna','Wallis and Futuna - onshore and offshore - Uvea, Futuna, and Alofi.',-15.94,-9.84,179.49,-174.27,0); INSERT INTO "area" VALUES('EPSG','1256','Western Sahara','Western Sahara - onshore and offshore.',18.98,27.67,-20.68,-8.66,0); INSERT INTO "area" VALUES('EPSG','1257','Yemen','Yemen - onshore and offshore.',8.95,19.0,41.08,57.96,0); INSERT INTO "area" VALUES('EPSG','1258','Yugoslavia - Serbia and Montenegro','Yugoslavia - Union of Serbia and Montenegro - onshore and offshore.',41.82,46.23,18.44,23.05,1); INSERT INTO "area" VALUES('EPSG','1259','Congo DR (Zaire)','The Democratic Republic of the Congo (Zaire) - onshore and offshore.',-13.46,5.39,11.79,31.31,0); INSERT INTO "area" VALUES('EPSG','1260','Zambia','Zambia.',-18.08,-8.19,21.99,33.71,0); INSERT INTO "area" VALUES('EPSG','1261','Zimbabwe','Zimbabwe.',-22.42,-15.61,25.23,33.08,0); INSERT INTO "area" VALUES('EPSG','1262','World','World.',-90.0,90.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','1263','Not specified','Not specified.',-90.0,90.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','1264','UK - Great Britain; Isle of Man','United Kingdom (UK) - Great Britain - England and Wales onshore, Scotland onshore and Western Isles nearshore; Isle of Man onshore.',49.79,60.94,-8.82,1.92,0); INSERT INTO "area" VALUES('EPSG','1265','Argentina - Comodoro Rivadavia','Argentina - Comodoro Rivadavia area.',-46.7,-45.19,-69.5,-67.1,0); INSERT INTO "area" VALUES('EPSG','1266','Venezuela - Puerto La Cruz','Venezuela - Puerto La Cruz area.',10.0,10.31,-64.7,-64.5,0); INSERT INTO "area" VALUES('EPSG','1267','Venezuela - Barinas','Venezuela - Barinas area.',7.31,9.07,-71.49,-67.58,0); INSERT INTO "area" VALUES('EPSG','1268','Venezuela - Falcon state','Venezuela - Falcon state.',10.3,12.25,-71.3,-68.19,0); INSERT INTO "area" VALUES('EPSG','1269','Venezuela - Pedregal area of Falcon state','Venezuela - Pedregal area of Falcon state.',10.8,11.26,-70.4,-69.69,0); INSERT INTO "area" VALUES('EPSG','1270','Venezuela - Maracaibo south','Venezuela - south Maracaibo area.',8.72,10.01,-72.4,-70.78,0); INSERT INTO "area" VALUES('EPSG','1271','Africa - Eritrea, Ethiopia, South Sudan and Sudan','Eritrea; Ethiopia; South Sudan; Sudan.',3.4,22.24,21.82,47.99,0); INSERT INTO "area" VALUES('EPSG','1272','Asia - Middle East - Bahrain, Kuwait and Saudi Arabia','Bahrain, Kuwait and Saudi Arabia - onshore.',15.61,32.16,34.51,55.67,0); INSERT INTO "area" VALUES('EPSG','1273','Antigua - onshore','Antigua island - onshore.',16.94,17.22,-61.95,-61.61,0); INSERT INTO "area" VALUES('EPSG','1274','Brazil - Aratu','Brazil - offshore south and east of a line intersecting the coast at 2°55''S; onshore Tucano basin.',-35.71,4.26,-53.38,-26.0,0); INSERT INTO "area" VALUES('EPSG','1275','Netherlands - onshore','Netherlands - onshore, including Waddenzee, Dutch Wadden Islands and 12-mile offshore coastal zone.',50.75,53.7,3.2,7.22,0); INSERT INTO "area" VALUES('EPSG','1276','Africa - Botswana, Malawi, Zambia, Zimbabwe','Botswana; Malawi; Zambia; Zimbabwe.',-26.88,-8.19,19.99,35.93,0); INSERT INTO "area" VALUES('EPSG','1277','Africa - Burundi, Kenya, Rwanda, Tanzania and Uganda','Burundi, Kenya, Rwanda, Tanzania and Uganda.',-11.75,4.63,28.85,41.91,0); INSERT INTO "area" VALUES('EPSG','1278','Antarctica - Australian sector','Antarctica between 45°E and 136°E and between 142°E and 160°E - Australian sector.',-90.0,-60.0,45.0,160.0,0); INSERT INTO "area" VALUES('EPSG','1279','Australasia - Australia and PNG - AGD66','Australia - onshore and offshore. Papua New Guinea - onshore.',-47.2,-1.3,109.23,163.2,0); INSERT INTO "area" VALUES('EPSG','1280','Australia - Western Australia','Australia - Western Australia.',-35.19,-13.67,112.85,129.01,0); INSERT INTO "area" VALUES('EPSG','1281','Australia - mainland','Australia - Australian Capital Territory; New South Wales; Northern Territory; Queensland; South Australia; Western Australia; Victoria.',-39.2,-10.65,112.85,153.69,0); INSERT INTO "area" VALUES('EPSG','1282','Australia - Tasmania','Australia - Tasmania including islands - onshore.',-43.7,-39.52,143.77,148.55,0); INSERT INTO "area" VALUES('EPSG','1283','Canada - Maritime Provinces','Canada - New Brunswick; Nova Scotia; Prince Edward Island.',43.41,48.07,-69.05,-59.73,0); INSERT INTO "area" VALUES('EPSG','1284','Europe - FSU, Czechoslovakia - onshore','Armenia; Azerbaijan; Belarus; Czechia; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia - onshore; Lithuania - onshore; Moldova; Russian Federation - onshore; Slovakia; Tajikistan; Turkmenistan; Ukraine - onshore; Uzbekistan.',35.14,77.79,12.09,-169.57,0); INSERT INTO "area" VALUES('EPSG','1285','Indonesia - Bali, Java and western Sumatra onshore','Indonesia - onshore - Bali, Java and western Sumatra.',-8.91,5.97,95.16,115.77,0); INSERT INTO "area" VALUES('EPSG','1286','Europe - Liechtenstein and Switzerland','Liechtenstein; Switzerland.',45.82,47.81,5.96,10.49,0); INSERT INTO "area" VALUES('EPSG','1287','Indonesia - Banga & Belitung Islands','Indonesia - Banga and Belitung Islands.',-3.3,-1.44,105.07,108.35,0); INSERT INTO "area" VALUES('EPSG','1288','Angola - Angola proper','Angola - Angola proper - onshore and offshore.',-18.02,-5.82,8.2,24.09,0); INSERT INTO "area" VALUES('EPSG','1289','Canada - CGVD28','Canada - onshore - Alberta; British Columbia; Manitoba south of 57°N; New Brunswick; Northwest Territories south west of a line between 60°N, 110°W and the coast at 132°W; Nova Scotia; Ontario south of 52°N; Prince Edward Island; Quebec - mainland west of 66°W and south of 55°N; Saskatchewan south of 55°N; Yukon.',41.67,69.8,-141.01,-59.73,0); INSERT INTO "area" VALUES('EPSG','1290','Africa - Botswana, Eswatini, Lesotho and South Africa','Botswana; Eswatini (Swaziland); Lesotho; South Africa - mainland.',-34.88,-17.78,16.45,32.95,0); INSERT INTO "area" VALUES('EPSG','1291','Asia - FSU - Caspian Sea','Azerbaijan - offshore; Kazakhstan - offshore; Russian Federation - Caspian Sea; Turkmenistan - offshore.',37.35,46.97,46.95,53.93,0); INSERT INTO "area" VALUES('EPSG','1292','Argentina - Neuquen basin','Argentina – Mendoza and Neuquen provinces - Neuquen basin.',-40.17,-34.26,-71.19,-66.52,0); INSERT INTO "area" VALUES('EPSG','1293','Brazil - Corrego Alegre 1970-1972','Brazil - onshore - west of 54°W and south of 18°S; also south of 15°S between 54°W and 42°W; also east of 42°W.',-33.78,-2.68,-58.16,-34.74,0); INSERT INTO "area" VALUES('EPSG','1294','Portugal - mainland - onshore','Portugal - mainland - onshore.',36.95,42.16,-9.56,-6.19,0); INSERT INTO "area" VALUES('EPSG','1295','Germany - DHDN','Germany - onshore - Baden-Wurtemberg, Bayern, Hessen, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein. Also former DDR states of Sachsen and Thuringen by transformation.',47.27,55.06,5.87,15.03,1); INSERT INTO "area" VALUES('EPSG','1296','Europe - ED50 by country','Europe - west: Andorra; Cyprus; Denmark - onshore and offshore; Faroe Islands - onshore; France - offshore; Germany - offshore North Sea; Gibraltar; Greece - offshore; Israel - offshore; Italy including San Marino and Vatican City State; Ireland offshore; Malta; Netherlands - offshore; North Sea; Norway including Svalbard - onshore and offshore; Portugal - mainland - offshore; Spain - onshore; Turkey - onshore and offshore; United Kingdom UKCS offshore east of 6°W including Channel Islands (Guernsey and Jersey). Egypt - Western Desert; Iraq - onshore; Jordan.',25.71,84.17,-16.1,48.61,0); INSERT INTO "area" VALUES('EPSG','1297','Europe - west','Europe - west.',34.88,84.17,-10.56,39.65,0); INSERT INTO "area" VALUES('EPSG','1298','Europe - ETRS89','Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.',32.88,84.17,-16.1,40.18,0); INSERT INTO "area" VALUES('EPSG','1299','Europe - EVRF2000','Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Croatia; Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar; Hungary; Italy - mainland and Sicily; Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican City State.',35.95,71.21,-9.56,31.59,0); INSERT INTO "area" VALUES('EPSG','1300','Iran - FD58','Iran - Arwaz area and onshore Gulf coast west of 54°E, Lavan Island, offshore Balal field and South Pars blocks 2 and 3.',26.21,33.22,47.13,53.61,0); INSERT INTO "area" VALUES('EPSG','1301','Portugal - Azores C - onshore','Portugal - central Azores onshore - Faial, Graciosa, Pico, Sao Jorge, Terceira.',38.32,39.14,-28.9,-26.97,0); INSERT INTO "area" VALUES('EPSG','1302','Asia - Cambodia and Vietnam - mainland','Cambodia - mainland onshore; Vietnam - mainland onshore.',8.33,23.4,102.14,109.53,0); INSERT INTO "area" VALUES('EPSG','1303','South America - Tierra del Fuego','Chile - Tierra del Fuego, onshore; Argentina - Tierra del Fuego, onshore and offshore Atlantic west of 66°W.',-55.96,-51.65,-74.83,-63.73,0); INSERT INTO "area" VALUES('EPSG','1304','Asia - Myanmar and Thailand onshore','Myanmar (Burma) - onshore; Thailand - onshore.',5.63,28.55,92.2,105.64,0); INSERT INTO "area" VALUES('EPSG','1305','Europe - Ireland (Republic and Ulster) - onshore','Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.',51.39,55.43,-10.56,-5.34,0); INSERT INTO "area" VALUES('EPSG','1306','Europe - Czechoslovakia','Czechia; Slovakia.',47.73,51.06,12.09,22.56,0); INSERT INTO "area" VALUES('EPSG','1307','Asia - Bangladesh; India; Myanmar; Pakistan - onshore','Bangladesh - onshore; India - mainland onshore; Myanmar (Burma) - onshore; Pakistan - onshore.',8.02,37.07,60.86,101.17,0); INSERT INTO "area" VALUES('EPSG','1308','Asia - Bangladesh; India; Myanmar; Pakistan - onshore','Bangladesh - onshore; India - mainland onshore; Myanmar - onshore and Moattama area offshore; Pakistan - onshore.',8.02,37.07,60.86,101.17,0); INSERT INTO "area" VALUES('EPSG','1309','Asia - Malaysia (west) and Singapore','Malaysia - West Malaysia; Singapore.',1.13,6.72,99.59,104.6,0); INSERT INTO "area" VALUES('EPSG','1310','Kuwait - Kuwait City','Kuwait - Kuwait City.',29.17,29.45,47.78,48.16,0); INSERT INTO "area" VALUES('EPSG','1311','Venezuela - Cabimas','Venezuela - Cabimas area.',10.14,10.61,-71.55,-71.29,0); INSERT INTO "area" VALUES('EPSG','1312','Venezuela - Lake Maracaibo','Venezuela - Lake Maracaibo area, onshore and offshore in lake.',8.72,11.04,-72.4,-70.78,0); INSERT INTO "area" VALUES('EPSG','1313','Venezuela - north of 7°45''N','Venezuela - onshore north of approximately 7°45''N.',7.75,12.25,-73.38,-59.8,0); INSERT INTO "area" VALUES('EPSG','1314','Portugal - Madeira archipelago onshore','Portugal - Madeira, Porto Santo and Desertas islands - onshore.',32.35,33.15,-17.31,-16.23,0); INSERT INTO "area" VALUES('EPSG','1315','Mozambique - west - Tete province','Mozambique - west - Tete province.',-17.76,-14.01,30.21,35.37,0); INSERT INTO "area" VALUES('EPSG','1316','Indonesia - Sulawesi SW','Indonesia - south west Sulawesi.',-6.54,-1.88,118.71,120.78,0); INSERT INTO "area" VALUES('EPSG','1317','Angola - Cabinda offshore','Angola - Cabinda offshore.',-6.04,-5.05,10.53,12.18,0); INSERT INTO "area" VALUES('EPSG','1318','Angola - Cabinda','Angola - Cabinda.',-6.04,-4.38,10.53,13.1,0); INSERT INTO "area" VALUES('EPSG','1319','Venezuela - Maracaibo area','Venezuela - Maracaibo area, onshore and offshore in lake.',10.0,11.0,-72.25,-71.5,0); INSERT INTO "area" VALUES('EPSG','1320','Venezuela - Maturin','Venezuela - Maturin area.',9.1,10.13,-64.3,-63.0,0); INSERT INTO "area" VALUES('EPSG','1321','Europe - Austria and former Yugoslavia onshore','Austria. Bosnia and Herzegovina. Croatia - onshore. Kosovo. Montenegro - onshore. North Macedonia. Serbia. Slovenia - onshore.',40.85,49.02,9.53,23.04,0); INSERT INTO "area" VALUES('EPSG','1322','Trinidad and Tobago - Tobago - onshore','Trinidad and Tobago - Tobago - onshore.',11.08,11.41,-60.9,-60.44,0); INSERT INTO "area" VALUES('EPSG','1323','USA - CONUS - onshore','United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',24.41,49.38,-124.79,-66.91,0); INSERT INTO "area" VALUES('EPSG','1324','USA (all states)','United States (USA) - onshore and offshore - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Hawaii; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',15.56,74.71,167.65,-65.69,0); INSERT INTO "area" VALUES('EPSG','1325','North America - Canada and USA (CONUS, Alaska mainland)','North America - onshore and offshore: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon. United States (USA) - Alabama; Alaska (mainland); Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',23.81,86.46,-172.54,-47.74,0); INSERT INTO "area" VALUES('EPSG','1326','France - mainland onshore','France - mainland onshore.',42.33,51.14,-4.87,8.23,0); INSERT INTO "area" VALUES('EPSG','1327','France - Corsica onshore','France - Corsica onshore.',41.31,43.07,8.5,9.63,0); INSERT INTO "area" VALUES('EPSG','1328','Indonesia - Kalimantan - Mahakam delta','Indonesia - east Kalimantan - Mahakam delta coastal and offshore shelf areas.',-1.24,0.0,116.72,117.99,0); INSERT INTO "area" VALUES('EPSG','1329','Mozambique - south','Mozambique - south.',-26.87,-19.84,31.29,35.65,0); INSERT INTO "area" VALUES('EPSG','1330','USA - Alaska','United States (USA) - Alaska.',51.3,71.4,172.42,-129.99,0); INSERT INTO "area" VALUES('EPSG','1331','USA - Alaska - St. George Island','United States (USA) - Alaska - Pribilof Islands - St George Island.',56.49,56.67,-169.88,-169.38,0); INSERT INTO "area" VALUES('EPSG','1332','USA - Alaska - St. Lawrence Island','United States (USA) - Alaska - St Lawrence Island.',62.89,63.84,-171.97,-168.59,0); INSERT INTO "area" VALUES('EPSG','1333','USA - Alaska - St. Paul Island','United States (USA) - Alaska - Pribilof Islands - St Paul Island.',57.06,57.28,-170.51,-170.04,0); INSERT INTO "area" VALUES('EPSG','1334','USA - Hawaii - onshore','United States (USA) - Hawaii - main islands onshore.',18.87,22.29,-160.3,-154.74,0); INSERT INTO "area" VALUES('EPSG','1335','Caribbean - Puerto Rico and Virgin Islands - onshore','Puerto Rico, US Virgin Islands and British Virgin Islands - onshore.',17.62,18.78,-67.97,-64.25,0); INSERT INTO "area" VALUES('EPSG','1336','Canada - CSRS98','Canada - Alberta; New Brunswick; Saskatchewan; Prince Edward Island; and Quebec.',44.61,62.56,-120.0,-57.1,1); INSERT INTO "area" VALUES('EPSG','1337','USA - HARN','American Samoa - onshore - Tutuila, Aunu''u, Ofu, Olesega, Ta''u and Rose islands. Guam - onshore. Northern Mariana Islands - onshore. Puerto Rico - onshore. United States (USA) - onshore Alabama, Alaska, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Hawaii, Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin and Wyoming; offshore Gulf of Mexico continental shelf (GoM OCS). US Virgin Islands - onshore.',-14.59,71.4,144.58,-64.51,0); INSERT INTO "area" VALUES('EPSG','1338','Iran - Taheri refinery','Iran - Taheri refinery site.',27.39,27.61,52.5,52.71,0); INSERT INTO "area" VALUES('EPSG','1339','Trinidad and Tobago - Trinidad','Trinidad and Tobago - Trinidad - onshore and offshore.',9.83,11.51,-62.09,-60.0,0); INSERT INTO "area" VALUES('EPSG','1340','Yemen - South Yemen - mainland','Yemen - South Yemen onshore mainland.',12.54,19.0,43.37,53.14,0); INSERT INTO "area" VALUES('EPSG','1341','South America by country','South America - Argentina, Brazil, Bolivia, Chile, Colombia, Ecuador, French Guiana, Guyana, Paraguay, Peru, Suriname, Uruguay, Venezuela.',-56.15,13.0,-82.0,-34.0,1); INSERT INTO "area" VALUES('EPSG','1342','Sierra Leone - Freetown Peninsula','Sierra Leone - Freetown Peninsula.',8.32,8.55,-13.34,-13.13,0); INSERT INTO "area" VALUES('EPSG','1343','Germany - East Germany all states','Germany - states of former East Germany - Berlin, Brandenburg; Mecklenburg-Vorpommern; Sachsen; Sachsen-Anhalt; Thuringen.',50.2,54.74,9.92,15.04,0); INSERT INTO "area" VALUES('EPSG','1344','Portugal - Azores W - onshore','Portugal - western Azores onshore - Flores, Corvo.',39.3,39.77,-31.34,-31.02,0); INSERT INTO "area" VALUES('EPSG','1345','Portugal - Azores E - onshore','Portugal - eastern Azores onshore - Sao Miguel, Santa Maria, Formigas.',36.87,37.96,-25.92,-24.62,0); INSERT INTO "area" VALUES('EPSG','1346','Qatar - onshore','Qatar - onshore.',24.55,26.2,50.69,51.68,0); INSERT INTO "area" VALUES('EPSG','1347','Belgium - onshore','Belgium - onshore.',49.5,51.51,2.5,6.4,0); INSERT INTO "area" VALUES('EPSG','1348','South America - PSAD56 by country','Aruba - onshore; Bolivia; Bonaire - onshore; Brazil - offshore - Amazon Cone shelf; Chile - onshore north of 43°30''S; Curacao - onshore; Ecuador - mainland onshore; Guyana - onshore; Peru - onshore; Venezuela - onshore.',-43.5,12.68,-81.41,-47.99,0); INSERT INTO "area" VALUES('EPSG','1349','North America - NAD27','North and central America: Antigua and Barbuda - onshore. Bahamas - onshore plus offshore over internal continental shelf only. Belize - onshore. British Virgin Islands - onshore. Canada onshore - Alberta, British Columbia, Manitoba, New Brunswick, Newfoundland and Labrador, Northwest Territories, Nova Scotia, Nunavut, Ontario, Prince Edward Island, Quebec, Saskatchewan and Yukon - plus offshore east coast. Cuba - onshore and offshore. El Salvador - onshore. Guatemala - onshore. Honduras - onshore. Panama - onshore. Puerto Rico - onshore. Mexico - onshore plus offshore east coast. Nicaragua - onshore. United States (USA) onshore and offshore - Alabama, Alaska, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin and Wyoming - plus offshore . US Virgin Islands - onshore.',7.15,83.17,167.65,-47.74,0); INSERT INTO "area" VALUES('EPSG','1350','North America - NAD83','North America - onshore and offshore: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon. Puerto Rico. United States (USA) - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Hawaii; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands. British Virgin Islands.',14.92,86.46,167.65,-47.74,0); INSERT INTO "area" VALUES('EPSG','1351','Asia - Middle East - Qatar offshore and UAE','Arabian Gulf; Qatar - offshore; United Arab Emirates (UAE) - Abu Dhabi; Dubai; Sharjah; Ajman; Fujairah; Ras Al Kaimah; Umm Al Qaiwain - onshore and offshore.',22.63,27.05,50.55,57.13,0); INSERT INTO "area" VALUES('EPSG','1352','Norway - onshore','Norway - onshore.',57.93,71.21,4.68,31.22,0); INSERT INTO "area" VALUES('EPSG','1353','France - onshore','France - onshore.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1354','Europe - British Isles - UK and Ireland onshore','Ireland - onshore. United Kingdom (UK) - onshore - England; Scotland; Wales; Northern Ireland. Isle of Man.',49.81,60.9,-10.56,1.84,0); INSERT INTO "area" VALUES('EPSG','1355','Indonesia - Sumatra','Indonesia - Sumatra.',-5.99,5.97,95.16,106.13,0); INSERT INTO "area" VALUES('EPSG','1356','Asia - Middle East - Israel, Jordan and Palestine onshore','Israel - onshore; Jordan; Palestine Territory - onshore.',29.18,33.38,34.17,39.31,0); INSERT INTO "area" VALUES('EPSG','1357','Europe - eastern and FSU','Albania; Bulgaria; Czech Republic; Germany (former DDR); Hungary; Poland; Romania; Slovakia. Armenia; Azerbaijan; Belarus; Estonia; Georgia; Kazakhstan; Kyrgyzstan; Latvia; Lithuania; Moldova; Russian Federation; Tajikistan; Turkmenistan; Ukraine; Uzbekistan.',35.1,78.0,9.87,-169.73,1); INSERT INTO "area" VALUES('EPSG','1358','South America - SAD69 by country','Brazil - onshore and offshore. In rest of South America - onshore north of approximately 45°S and Tierra del Fuego.',-55.96,12.52,-91.72,-25.28,0); INSERT INTO "area" VALUES('EPSG','1359','Indonesia - Kalimantan SE','Indonesia - Kalimantan - onshore southeast coastal area including Mahakam delta coastal and offshore shelf areas.',-4.24,0.0,114.55,117.99,0); INSERT INTO "area" VALUES('EPSG','1360','Indonesia - Kalimantan E','Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf areas.',-4.24,4.29,114.55,119.06,0); INSERT INTO "area" VALUES('EPSG','1361','Sudan - south','Sudan - south.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1362','Asia - Brunei and East Malaysia','Brunei - onshore and offshore; Malaysia - East Malaysia (Sabah; Sarawak) - onshore and offshore.',0.85,7.67,109.31,119.61,0); INSERT INTO "area" VALUES('EPSG','1363','UAE - Abu Dhabi and Dubai - onshore','United Arab Emirates (UAE) - Abu Dhabi onshore and Dubai onshore.',22.63,25.34,51.56,56.03,0); INSERT INTO "area" VALUES('EPSG','1364','Asia - Japan and Korea','Japan - onshore; North Korea - onshore; South Korea - onshore.',20.37,45.54,122.83,154.05,0); INSERT INTO "area" VALUES('EPSG','1365','Algeria - north of 32°N','Algeria - onshore north of 32°N.',31.99,37.14,-2.95,9.09,0); INSERT INTO "area" VALUES('EPSG','1366','Africa - Algeria, Morocco and Tunisia','Algeria; Morocco; Tunisia.',18.98,37.34,-13.17,11.99,1); INSERT INTO "area" VALUES('EPSG','1367','Canada - Ontario','Canada - Ontario.',41.67,56.9,-95.16,-74.35,0); INSERT INTO "area" VALUES('EPSG','1368','Canada - Quebec','Canada - Quebec.',44.99,62.62,-79.85,-57.1,0); INSERT INTO "area" VALUES('EPSG','1369','France - Alsace','France - Alsace.',47.42,49.07,6.84,8.23,0); INSERT INTO "area" VALUES('EPSG','1370','Venezuela - Deltana','Venezuela - Deltana area.',7.89,10.46,-62.8,-59.8,0); INSERT INTO "area" VALUES('EPSG','1371','Venezuela - Guarico state','Venezuela - Guarico state.',7.54,10.03,-68.0,-64.76,0); INSERT INTO "area" VALUES('EPSG','1372','USA - Alabama','United States (USA) - Alabama.',30.14,35.02,-88.48,-84.89,0); INSERT INTO "area" VALUES('EPSG','1373','USA - Arizona','United States (USA) - Arizona.',31.33,37.01,-114.81,-109.04,0); INSERT INTO "area" VALUES('EPSG','1374','USA - Arkansas','United States (USA) - Arkansas.',33.01,36.5,-94.62,-89.64,0); INSERT INTO "area" VALUES('EPSG','1375','USA - California','United States (USA) - California.',32.53,42.01,-124.45,-114.12,0); INSERT INTO "area" VALUES('EPSG','1376','USA - Colorado','United States (USA) - Colorado.',36.98,41.01,-109.06,-102.04,0); INSERT INTO "area" VALUES('EPSG','1377','USA - Connecticut','United States (USA) - Connecticut - counties of Fairfield; Hartford; Litchfield; Middlesex; New Haven; New London; Tolland; Windham.',40.98,42.05,-73.73,-71.78,0); INSERT INTO "area" VALUES('EPSG','1378','USA - Delaware','United States (USA) - Delaware - counties of Kent; New Castle; Sussex.',38.44,39.85,-75.8,-74.97,0); INSERT INTO "area" VALUES('EPSG','1379','USA - Florida','United States (USA) - Florida.',24.41,31.01,-87.63,-79.97,0); INSERT INTO "area" VALUES('EPSG','1380','USA - Georgia','United States (USA) - Georgia.',30.36,35.01,-85.61,-80.77,0); INSERT INTO "area" VALUES('EPSG','1381','USA - Idaho','United States (USA) - Idaho.',41.99,49.01,-117.24,-111.04,0); INSERT INTO "area" VALUES('EPSG','1382','USA - Illinois','United States (USA) - Illinois.',36.98,42.51,-91.52,-87.02,0); INSERT INTO "area" VALUES('EPSG','1383','USA - Indiana','United States (USA) - Indiana.',37.77,41.77,-88.06,-84.78,0); INSERT INTO "area" VALUES('EPSG','1384','USA - Iowa','United States (USA) - Iowa.',40.37,43.51,-96.65,-90.14,0); INSERT INTO "area" VALUES('EPSG','1385','USA - Kansas','United States (USA) - Kansas.',36.99,40.01,-102.06,-94.58,0); INSERT INTO "area" VALUES('EPSG','1386','USA - Kentucky','United States (USA) - Kentucky.',36.49,39.15,-89.57,-81.95,0); INSERT INTO "area" VALUES('EPSG','1387','USA - Louisiana','United States (USA) - Louisiana.',28.85,33.03,-94.05,-88.75,0); INSERT INTO "area" VALUES('EPSG','1388','USA - Maine','United States (USA) - Maine.',43.04,47.47,-71.09,-66.91,0); INSERT INTO "area" VALUES('EPSG','1389','USA - Maryland','United States (USA) - Maryland - counties of Allegany; Anne Arundel; Baltimore; Calvert; Caroline; Carroll; Cecil; Charles; Dorchester; Frederick; Garrett; Harford; Howard; Kent; Montgomery; Prince Georges; Queen Annes; Somerset; St Marys; Talbot; Washington; Wicomico; Worcester.',37.97,39.73,-79.49,-74.97,0); INSERT INTO "area" VALUES('EPSG','1390','USA - Massachusetts','United States (USA) - Massachusetts.',41.19,42.89,-73.5,-69.86,0); INSERT INTO "area" VALUES('EPSG','1391','USA - Michigan','United States (USA) - Michigan.',41.69,48.32,-90.42,-82.13,0); INSERT INTO "area" VALUES('EPSG','1392','USA - Minnesota','United States (USA) - Minnesota.',43.49,49.38,-97.22,-89.49,0); INSERT INTO "area" VALUES('EPSG','1393','USA - Mississippi','United States (USA) - Mississippi.',30.01,35.01,-91.65,-88.09,0); INSERT INTO "area" VALUES('EPSG','1394','USA - Missouri','United States (USA) - Missouri.',35.98,40.61,-95.77,-89.1,0); INSERT INTO "area" VALUES('EPSG','1395','USA - Montana','United States (USA) - Montana - counties of Beaverhead; Big Horn; Blaine; Broadwater; Carbon; Carter; Cascade; Chouteau; Custer; Daniels; Dawson; Deer Lodge; Fallon; Fergus; Flathead; Gallatin; Garfield; Glacier; Golden Valley; Granite; Hill; Jefferson; Judith Basin; Lake; Lewis and Clark; Liberty; Lincoln; Madison; McCone; Meagher; Mineral; Missoula; Musselshell; Park; Petroleum; Phillips; Pondera; Powder River; Powell; Prairie; Ravalli; Richland; Roosevelt; Rosebud; Sanders; Sheridan; Silver Bow; Stillwater; Sweet Grass; Teton; Toole; Treasure; Valley; Wheatland; Wibaux; Yellowstone.',44.35,49.01,-116.07,-104.04,0); INSERT INTO "area" VALUES('EPSG','1396','USA - Nebraska','United States (USA) - Nebraska - counties of Adams; Antelope; Arthur; Banner; Blaine; Boone; Box Butte; Boyd; Brown; Buffalo; Burt; Butler; Cass; Cedar; Chase; Cherry; Cheyenne; Clay; Colfax; Cuming; Custer; Dakota; Dawes; Dawson; Deuel; Dixon; Dodge; Douglas; Dundy; Fillmore; Franklin; Frontier; Furnas; Gage; Garden; Garfield; Gosper; Grant; Greeley; Hall; Hamilton; Harlan; Hayes; Hitchcock; Holt; Hooker; Howard; Jefferson; Johnson; Kearney; Keith; Keya Paha; Kimball; Knox; Lancaster; Lincoln; Logan; Loup; Madison; McPherson; Merrick; Morrill; Nance; Nemaha; Nuckolls; Otoe; Pawnee; Perkins; Phelps; Pierce; Platte; Polk; Red Willow; Richardson; Rock; Saline; Sarpy; Saunders; Scotts Bluff; Seward; Sheridan; Sherman; Sioux; Stanton; Thayer; Thomas; Thurston; Valley; Washington; Wayne; Webster; Wheeler; York.',39.99,43.01,-104.06,-95.3,0); INSERT INTO "area" VALUES('EPSG','1397','USA - Nevada','United States (USA) - Nevada.',34.99,42.0,-120.0,-114.03,0); INSERT INTO "area" VALUES('EPSG','1398','USA - New Hampshire','United States (USA) - New Hampshire - counties of Belknap; Carroll; Cheshire; Coos; Grafton; Hillsborough; Merrimack; Rockingham; Strafford; Sullivan.',42.69,45.31,-72.56,-70.63,0); INSERT INTO "area" VALUES('EPSG','1399','USA - New Jersey','United States (USA) - New Jersey - counties of Atlantic; Bergen; Burlington; Camden; Cape May; Cumberland; Essex; Gloucester; Hudson; Hunterdon; Mercer; Middlesex; Monmouth; Morris; Ocean; Passaic; Salem; Somerset; Sussex; Union; Warren.',38.87,41.36,-75.6,-73.88,0); INSERT INTO "area" VALUES('EPSG','1400','USA - New Mexico','United States (USA) - New Mexico.',31.33,37.0,-109.06,-102.99,0); INSERT INTO "area" VALUES('EPSG','1401','USA - New York','United States (USA) - New York.',40.47,45.02,-79.77,-71.8,0); INSERT INTO "area" VALUES('EPSG','1402','USA - North Carolina','United States (USA) - North Carolina - counties of Alamance; Alexander; Alleghany; Anson; Ashe; Avery; Beaufort; Bertie; Bladen; Brunswick; Buncombe; Burke; Cabarrus; Caldwell; Camden; Carteret; Caswell; Catawba; Chatham; Cherokee; Chowan; Clay; Cleveland; Columbus; Craven; Cumberland; Currituck; Dare; Davidson; Davie; Duplin; Durham; Edgecombe; Forsyth; Franklin; Gaston; Gates; Graham; Granville; Greene; Guilford; Halifax; Harnett; Haywood; Henderson; Hertford; Hoke; Hyde; Iredell; Jackson; Johnston; Jones; Lee; Lenoir; Lincoln; Macon; Madison; Martin; McDowell; Mecklenburg; Mitchell; Montgomery; Moore; Nash; New Hanover; Northampton; Onslow; Orange; Pamlico; Pasquotank; Pender; Perquimans; Person; Pitt; Polk; Randolph; Richmond; Robeson; Rockingham; Rowan; Rutherford; Sampson; Scotland; Stanly; Stokes; Surry; Swain; Transylvania; Tyrrell; Union; Vance; Wake; Warren; Washington; Watauga; Wayne; Wilkes; Wilson; Yadkin; Yancey.',33.83,36.59,-84.33,-75.38,0); INSERT INTO "area" VALUES('EPSG','1403','USA - North Dakota','United States (USA) - North Dakota.',45.93,49.01,-104.07,-96.55,0); INSERT INTO "area" VALUES('EPSG','1404','USA - Ohio','United States (USA) - Ohio.',38.4,42.33,-84.83,-80.51,0); INSERT INTO "area" VALUES('EPSG','1405','USA - Oklahoma','United States (USA) - Oklahoma.',33.62,37.01,-103.0,-94.42,0); INSERT INTO "area" VALUES('EPSG','1406','USA - Oregon','United States (USA) - Oregon.',41.98,46.26,-124.6,-116.47,0); INSERT INTO "area" VALUES('EPSG','1407','USA - Pennsylvania','United States (USA) - Pennsylvania.',39.71,42.53,-80.53,-74.7,0); INSERT INTO "area" VALUES('EPSG','1408','USA - Rhode Island','United States (USA) - Rhode Island - counties of Bristol; Kent; Newport; Providence; Washington.',41.13,42.02,-71.85,-71.08,0); INSERT INTO "area" VALUES('EPSG','1409','USA - South Carolina','United States (USA) - South Carolina - counties of Abbeville; Aiken; Allendale; Anderson; Bamberg; Barnwell; Beaufort; Berkeley; Calhoun; Charleston; Cherokee; Chester; Chesterfield; Clarendon; Colleton; Darlington; Dillon; Dorchester; Edgefield; Fairfield; Florence; Georgetown; Greenville; Greenwood; Hampton; Horry; Jasper; Kershaw; Lancaster; Laurens; Lee; Lexington; Marion; Marlboro; McCormick; Newberry; Oconee; Orangeburg; Pickens; Richland; Saluda; Spartanburg; Sumter; Union; Williamsburg; York.',32.05,35.21,-83.36,-78.52,0); INSERT INTO "area" VALUES('EPSG','1410','USA - South Dakota','United States (USA) - South Dakota.',42.48,45.95,-104.07,-96.43,0); INSERT INTO "area" VALUES('EPSG','1411','USA - Tennessee','United States (USA) - Tennessee - counties of Anderson; Bedford; Benton; Bledsoe; Blount; Bradley; Campbell; Cannon; Carroll; Carter; Cheatham; Chester; Claiborne; Clay; Cocke; Coffee; Crockett; Cumberland; Davidson; De Kalb; Decatur; Dickson; Dyer; Fayette; Fentress; Franklin; Gibson; Giles; Grainger; Greene; Grundy; Hamblen; Hamilton; Hancock; Hardeman; Hardin; Hawkins; Haywood; Henderson; Henry; Hickman; Houston; Humphreys; Jackson; Jefferson; Johnson; Knox; Lake; Lauderdale; Lawrence; Lewis; Lincoln; Loudon; Macon; Madison; Marion; Marshall; Maury; McMinn; McNairy; Meigs; Monroe; Montgomery; Moore; Morgan; Obion; Overton; Perry; Pickett; Polk; Putnam; Rhea; Roane; Robertson; Rutherford; Scott; Sequatchie; Sevier; Shelby; Smith; Stewart; Sullivan; Sumner; Tipton; Trousdale; Unicoi; Union; Van Buren; Warren; Washington; Wayne; Weakley; White; Williamson; Wilson.',34.98,36.68,-90.31,-81.65,0); INSERT INTO "area" VALUES('EPSG','1412','USA - Texas','United States (USA) - Texas.',25.83,36.5,-106.66,-93.5,0); INSERT INTO "area" VALUES('EPSG','1413','USA - Utah','United States (USA) - Utah.',36.99,42.01,-114.05,-109.04,0); INSERT INTO "area" VALUES('EPSG','1414','USA - Vermont','United States (USA) - Vermont - counties of Addison; Bennington; Caledonia; Chittenden; Essex; Franklin; Grand Isle; Lamoille; Orange; Orleans; Rutland; Washington; Windham; Windsor.',42.72,45.03,-73.44,-71.5,0); INSERT INTO "area" VALUES('EPSG','1415','USA - Virginia','United States (USA) - Virginia.',36.54,39.46,-83.68,-75.31,0); INSERT INTO "area" VALUES('EPSG','1416','USA - Washington','United States (USA) - Washington.',45.54,49.05,-124.79,-116.91,0); INSERT INTO "area" VALUES('EPSG','1417','USA - West Virginia','United States (USA) - West Virginia.',37.2,40.64,-82.65,-77.72,0); INSERT INTO "area" VALUES('EPSG','1418','USA - Wisconsin','United States (USA) - Wisconsin.',42.48,47.31,-92.89,-86.25,0); INSERT INTO "area" VALUES('EPSG','1419','USA - Wyoming','United States (USA) - Wyoming.',40.99,45.01,-111.06,-104.05,0); INSERT INTO "area" VALUES('EPSG','1420','Canada - Quebec - east of 57°W','Canada - Quebec - east of 57°W.',46.6,53.76,-57.0,-54.0,1); INSERT INTO "area" VALUES('EPSG','1421','Canada - Quebec - 60°W to 57°W','Canada - Quebec - between 60°W and 57°W.',50.1,52.0,-60.0,-57.1,1); INSERT INTO "area" VALUES('EPSG','1422','Canada - Quebec - 63°W to 60°W','Canada - Quebec - between 63°W and 60°W.',47.16,52.01,-63.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','1423','Canada - Quebec - 66°W to 63°W','Canada - Quebec - between 66°W and 63°W.',47.95,60.42,-66.0,-63.0,0); INSERT INTO "area" VALUES('EPSG','1424','Canada - Quebec - 69°W to 66°W','Canada - Quebec - between 69°W and 66°W.',47.31,59.0,-69.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','1425','Canada - Quebec - 72°W to 69°W','Canada - Quebec - between 72°W and 69°W.',45.01,61.8,-72.0,-69.0,0); INSERT INTO "area" VALUES('EPSG','1426','Canada - Quebec - 75°W to 72°W','Canada - Quebec - between 75°W and 72°W.',44.99,62.53,-75.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','1427','Canada - Quebec - 78°W to 75°W','Canada - Quebec - between 78°W and 75°W.',45.37,62.62,-78.0,-75.0,0); INSERT INTO "area" VALUES('EPSG','1428','Canada - Quebec - west of 78°W','Canada - Quebec - west of 78°W.',46.23,62.45,-79.85,-78.0,0); INSERT INTO "area" VALUES('EPSG','1429','Canada - Ontario - east of 75°W','Canada - Ontario - east of 75°W.',44.98,45.65,-75.0,-74.35,0); INSERT INTO "area" VALUES('EPSG','1430','Canada - Ontario - 78°W to 75°W','Canada - Ontario - between 78°W and 75°W.',43.63,46.25,-78.0,-75.0,0); INSERT INTO "area" VALUES('EPSG','1431','Canada - Ontario - MTM zone 10','Canada - Ontario - between 81°W and 78°W: south of 46°N in area to west of 80°15''W, south of 47°N in area between 80°15''W and 79°30''W, entire province between 79°30''W and 78°W.',42.26,47.33,-81.0,-77.99,0); INSERT INTO "area" VALUES('EPSG','1432','Canada - Ontario - MTM zone 11','Canada - Ontario - south of 46°N and west of 81°W.',41.67,46.0,-83.6,-81.0,0); INSERT INTO "area" VALUES('EPSG','1433','Canada - Ontario - MTM zone 12','Canada - Ontario - between 82°30''W and 79°30''W: north of 46°N in area between 82°30''W and 80°15''W, north of 47°N in area between 80°15''W and 79°30''W.',46.0,55.21,-82.5,-79.5,0); INSERT INTO "area" VALUES('EPSG','1434','Canada - Ontario - MTM zone 13','Canada - Ontario - between 85°30''W and 82°30''W and north of 46°N.',46.0,55.59,-85.5,-82.5,0); INSERT INTO "area" VALUES('EPSG','1435','Canada - Ontario - 88.5°W to 85.5°W','Canada - Ontario - between 88°30''W and 85°30''W.',47.17,56.7,-88.5,-85.5,0); INSERT INTO "area" VALUES('EPSG','1436','Canada - Ontario - 91.5°W to 88.5°W','Canada - Ontario - between 91°30''W and 88°30''W.',47.97,56.9,-91.5,-88.5,0); INSERT INTO "area" VALUES('EPSG','1437','Canada - Ontario - 94.5°W to 91.5°W','Canada - Ontario - between 94°30''W and 91°30''W.',48.06,55.2,-94.5,-91.5,0); INSERT INTO "area" VALUES('EPSG','1438','Canada - Ontario - west of 94.5°W','Canada - Ontario - west of 94°30''W.',48.69,53.24,-95.16,-94.5,0); INSERT INTO "area" VALUES('EPSG','1439','Canada - Ontario - west of 90°W','Canada - Ontario - west of 90°W.',48.03,56.2,-95.17,-90.0,0); INSERT INTO "area" VALUES('EPSG','1440','Canada - Ontario - 90°W to 84°W','Canada - Ontario - between 90°W and 84°W.',46.11,56.9,-90.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','1441','Canada - Ontario - 84°W to 78°W','Canada - Ontario - between 84°W and 78°W.',41.67,55.37,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','1442','Canada - Ontario - east of 78°W','Canada - Ontario - east of 78°W.',43.63,46.25,-78.0,-74.35,0); INSERT INTO "area" VALUES('EPSG','1443','Canada - Quebec - 78°W to 72°W','Canada - Quebec - between 78°W and 72°W.',44.99,62.62,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','1444','Canada - Quebec - 72°W to 66°W','Canada - Quebec - between 72°W and 66°W.',45.01,61.8,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','1445','Canada - Quebec - 66°W to 60°W','Canada - Quebec - between 66°W and 60°W.',47.16,60.42,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','1446','Canada - Quebec - east of 60°W','Canada - Quebec - east of 60°W.',50.2,52.01,-60.0,-57.1,0); INSERT INTO "area" VALUES('EPSG','1447','Canada - New Brunswick','Canada - New Brunswick.',44.56,48.07,-69.05,-63.7,0); INSERT INTO "area" VALUES('EPSG','1448','Canada - 72°W to 66°W, south of 62°N','Canada south of 60°N and between 72°W and 66°W - New Brunswick (NB), Labrador, Nova Scotia (NS), Quebec.',44.6,61.5,-72.0,-66.0,1); INSERT INTO "area" VALUES('EPSG','1449','Canada - 66°W to 60°W, south of 60°N','Canada south of 60°N and between 66°W and 60°W - New Brunswick (NB), Labrador, Nova Scotia (NS), Prince Edward Island (PEI), Quebec.',43.2,60.0,-66.0,-60.0,1); INSERT INTO "area" VALUES('EPSG','1450','Cote d''Ivoire (Ivory Coast) - east of 6°W','Côte d''Ivoire (Ivory Coast) east of 6°W.',4.92,10.46,-6.0,-2.48,0); INSERT INTO "area" VALUES('EPSG','1451','Cote d''Ivoire (Ivory Coast) - west of 6°W','Côte d''Ivoire (Ivory Coast) west of 6°W.',4.29,10.74,-8.61,-6.0,0); INSERT INTO "area" VALUES('EPSG','1452','Vietnam - west of 108°E onshore','Vietnam - onshore west of 108°E.',8.33,23.4,102.14,108.0,0); INSERT INTO "area" VALUES('EPSG','1453','Vietnam - east of 108°E onshore','Vietnam - onshore east of 108°E.',10.43,21.56,108.0,109.53,0); INSERT INTO "area" VALUES('EPSG','1454','Namibia - Walvis Bay','Namibia - Walvis Bay.',-23.15,-22.68,14.35,14.6,0); INSERT INTO "area" VALUES('EPSG','1455','South Africa - west of 18°E','South Africa - onshore west of 18°E.',-33.1,-28.03,16.45,18.0,0); INSERT INTO "area" VALUES('EPSG','1456','South Africa - 18°E to 20°E','South Africa - onshore between 18°E and 20°E.',-34.88,-28.38,17.99,20.0,0); INSERT INTO "area" VALUES('EPSG','1457','South Africa - 20°E to 22°E','South Africa - onshore between 20°E and 22°E.',-34.88,-24.76,19.99,22.01,0); INSERT INTO "area" VALUES('EPSG','1458','South Africa - 22°E to 24°E','South Africa - onshore between 22°E and 24°E.',-34.26,-25.26,22.0,24.01,0); INSERT INTO "area" VALUES('EPSG','1459','South Africa - 24°E to 26°E','South Africa - onshore between 24°E and 26°E.',-34.26,-24.71,24.0,26.01,0); INSERT INTO "area" VALUES('EPSG','1460','South Africa - 26°E to 28°E','Lesotho - west of 28°E. South Africa - onshore between 26°E and 28°E.',-33.83,-22.92,26.0,28.0,0); INSERT INTO "area" VALUES('EPSG','1461','South Africa - 28°E to 30°E','Lesotho - east of 28°E. South Africa - onshore between 28°E and 30°E.',-33.03,-22.13,27.99,30.0,0); INSERT INTO "area" VALUES('EPSG','1462','South Africa - 30°E to 32°E','South Africa - onshore between 30°E and 32°E. Eswatini (Swaziland).',-31.38,-22.22,29.99,32.02,0); INSERT INTO "area" VALUES('EPSG','1463','South Africa - east of 32°E','South Africa - east of 32°E.',-28.94,-26.8,31.95,32.95,0); INSERT INTO "area" VALUES('EPSG','1464','Iran - west of 48°E','Iran - west of 48°E.',30.99,39.78,44.03,48.0,0); INSERT INTO "area" VALUES('EPSG','1465','Iran - 48°E to 54°E','Iran - onshore and offshore between 48°E and 54°E.',25.47,39.71,48.0,54.0,0); INSERT INTO "area" VALUES('EPSG','1466','Iran - 54°E to 60°E','Iran - onshore between 54°E and 60°E, Gulf offshore between of 54°E and Strait of Hormuz.',25.32,38.29,54.0,60.0,0); INSERT INTO "area" VALUES('EPSG','1467','Iran - east of 60°E onshore','Iran - onshore east of 60°E.',25.02,37.06,60.0,63.34,0); INSERT INTO "area" VALUES('EPSG','1468','Guinea - west of 12°W','Guinea - onshore west of 12°W.',9.01,12.68,-15.13,-12.0,0); INSERT INTO "area" VALUES('EPSG','1469','Guinea - east of 12°W','Guinea - east of 12°W.',7.19,12.51,-12.0,-7.65,0); INSERT INTO "area" VALUES('EPSG','1470','Libya - west of 10°E','Libya - west of 10°E.',25.37,30.49,9.31,10.01,0); INSERT INTO "area" VALUES('EPSG','1471','Libya - 10°E to 12°E onshore','Libya - onshore between 10°E and 12°E.',23.51,33.23,10.0,12.0,0); INSERT INTO "area" VALUES('EPSG','1472','Libya - 12°E to 14°E onshore','Libya - onshore between 12°E and 14°E.',22.8,33.06,12.0,14.0,0); INSERT INTO "area" VALUES('EPSG','1473','Libya - 14°E to 16°E onshore','Libya - onshore between 14°E and 16°E.',22.61,32.79,14.0,16.0,0); INSERT INTO "area" VALUES('EPSG','1474','Libya - 16°E to 18°E onshore','Libya - onshore between 16°E and 18°E.',22.51,31.34,16.0,18.01,0); INSERT INTO "area" VALUES('EPSG','1475','Libya - 18°E to 20°E onshore','Libya - onshore between 18°E and 20°E.',21.54,32.17,18.0,20.0,0); INSERT INTO "area" VALUES('EPSG','1476','Libya - 20°E to 22°E onshore','Libya - onshore between 20°E and 22°E.',20.54,33.0,20.0,22.0,0); INSERT INTO "area" VALUES('EPSG','1477','Libya - 22°E to 24°E onshore','Libya - onshore between 22°E and 24°E.',19.5,32.97,22.0,24.0,0); INSERT INTO "area" VALUES('EPSG','1478','Libya - east of 24°E onshore','Libya - onshore east of 24°E.',19.99,32.15,24.0,25.21,0); INSERT INTO "area" VALUES('EPSG','1479','Libya - west of 12°E onshore','Libya - onshore west of 12°E.',23.51,33.23,9.31,12.0,0); INSERT INTO "area" VALUES('EPSG','1480','Libya - 12°E to 18°E onshore','Libya - onshore between 12°E and 18°E.',22.51,33.06,12.0,18.01,0); INSERT INTO "area" VALUES('EPSG','1481','Libya - 18°E to 24°E onshore','Libya - onshore between 18°E and 24°E.',19.5,33.0,17.99,24.0,0); INSERT INTO "area" VALUES('EPSG','1482','Libya - west of 15°E onshore','Libya - onshore west of 15°E.',22.61,33.23,9.31,15.0,0); INSERT INTO "area" VALUES('EPSG','1483','Argentina - Mendoza and Neuquen 70.5°W to 67.5°W','Argentina – Mendoza and Neuquen provinces between 70°30''W and 67°30''W - Neuquen and Cuyo basins.',-43.41,-31.91,-70.51,-67.49,0); INSERT INTO "area" VALUES('EPSG','1484','Argentina - 42.5°S to 50.3°S and 70.5°W to 67.5°W','Argentina - Chibut province between 70°30''W and 67°30''W and south of approximately 42°30''S and Santa Cruz province between 70°30''W and 67°30''W and north of approximately 50°20''S.',-50.34,-42.49,-70.5,-67.49,0); INSERT INTO "area" VALUES('EPSG','1485','Argentina - Tierra del Fuego onshore west of 67.5°W','Argentina - Tierra del Fuego onshore west of 67°30''W.',-54.9,-52.59,-68.64,-67.5,0); INSERT INTO "area" VALUES('EPSG','1486','Argentina - Tierra del Fuego offshore','Argentina - Tierra del Fuego offshore Atlantic.',-54.93,-51.36,-68.62,-61.49,0); INSERT INTO "area" VALUES('EPSG','1487','Cuba - onshore north of 21°30''N','Cuba - onshore north of 21°30''N but also including all of Isla de la Juventud.',21.38,23.25,-85.01,-76.91,0); INSERT INTO "area" VALUES('EPSG','1488','Cuba - onshore south of 21°30''N','Cuba - onshore south of 21°30''N and east of 80°W .',19.77,21.5,-78.69,-74.07,0); INSERT INTO "area" VALUES('EPSG','1489','Tunisia - offshore','Tunisia - offshore.',33.22,38.41,7.81,13.67,0); INSERT INTO "area" VALUES('EPSG','1490','Yemen - 42°E to 48°E','Yemen - between 42°E and 48°E, onshore and offshore.',11.57,17.53,42.0,48.0,0); INSERT INTO "area" VALUES('EPSG','1491','Yemen - 48°E to 54°E','Yemen - between 48°E and 54°E, onshore and offshore.',9.45,19.0,48.0,54.0,0); INSERT INTO "area" VALUES('EPSG','1492','Yemen - South Yemen - mainland west of 48°E','Yemen - South Yemen onshore mainland west of 48°E.',12.54,17.44,43.37,48.0,0); INSERT INTO "area" VALUES('EPSG','1493','Yemen - South Yemen - mainland east of 48°E','Yemen - South Yemen onshore mainland east of 48°E.',13.94,19.0,48.0,53.14,0); INSERT INTO "area" VALUES('EPSG','1494','Vietnam - onshore Vung Tau area','Vietnam - onshore Vung Tau area.',9.03,11.04,105.49,107.58,0); INSERT INTO "area" VALUES('EPSG','1495','Vietnam - offshore Cuu Long basin','Vietnam - offshore - Cuu Long basin and northwestern part of Nam Con Son basin.',7.99,11.15,106.54,110.0,0); INSERT INTO "area" VALUES('EPSG','1496','Korea, Republic of (South Korea) - east of 128°E onshore','Republic of Korea (South Korea) - onshore east of 128°E.',34.49,38.64,128.0,129.65,0); INSERT INTO "area" VALUES('EPSG','1497','Korea, Republic of (South Korea) - 126°E to 128°E onshore','Republic of Korea (South Korea) - onshore between 126°E and 128°E.',33.14,38.33,126.0,128.0,0); INSERT INTO "area" VALUES('EPSG','1498','Korea, Republic of (South Korea) - 124°E to 126°E onshore','Republic of Korea (South Korea) - onshore between 124°E and 126°E.',33.99,38.04,124.53,126.0,0); INSERT INTO "area" VALUES('EPSG','1499','Venezuela - Maracaibo - blocks I II and III','Venezuela - Maracaibo area offshore blocks I, II and III.',10.0,10.51,-71.5,-71.17,0); INSERT INTO "area" VALUES('EPSG','1500','New Zealand - North Island','New Zealand - North Island.',-41.67,-34.1,171.99,178.63,0); INSERT INTO "area" VALUES('EPSG','1501','New Zealand - South Island','New Zealand - South Island.',-46.86,-40.44,166.37,174.46,0); INSERT INTO "area" VALUES('EPSG','1502','New Zealand - offshore 162°E to168°E','New Zealand - offshore between 162°E and 168°E.',-55.89,-39.68,162.0,168.0,0); INSERT INTO "area" VALUES('EPSG','1503','New Zealand - offshore 168°E to 174°E','New Zealand - offshore between 168°E and 174°E.',-55.95,-30.78,168.0,174.0,0); INSERT INTO "area" VALUES('EPSG','1504','New Zealand - offshore 174°E to 180°E','New Zealand - offshore between 174°E and 180°E.',-54.32,-26.42,174.0,180.0,0); INSERT INTO "area" VALUES('EPSG','1505','Ghana - offshore','Ghana - offshore.',1.4,6.06,-3.79,2.1,0); INSERT INTO "area" VALUES('EPSG','1506','Canada - 108°W to 102°W, south of 60°N','Canada south of 60°N and between 108°E and 102°W - Saskatchewan.',49.0,60.0,-108.0,-102.0,1); INSERT INTO "area" VALUES('EPSG','1507','Canada - 114°W to 108°W, south of 60°N','Canada south of 60°N and between 114°E and 108°W - Alberta, Saskatchewan.',49.0,60.0,-114.0,-108.0,1); INSERT INTO "area" VALUES('EPSG','1508','Canada - 120°W to 114°W, south of 60°N','Canada south of 60°N and between 120°E and 114°W - Alberta, British Columbia (BC).',49.0,60.0,-120.0,-114.0,1); INSERT INTO "area" VALUES('EPSG','1509','Sierra Leone - west of 12°W','Sierra Leone - onshore west of 12°W.',7.15,9.94,-13.35,-12.0,0); INSERT INTO "area" VALUES('EPSG','1510','Sierra Leone - east of 12°W','Sierra Leone - onshore east of 12°W.',6.88,10.0,-12.0,-10.26,0); INSERT INTO "area" VALUES('EPSG','1511','USA - CONUS and Alaska; PRVI','Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.',14.92,74.71,167.65,-63.88,0); INSERT INTO "area" VALUES('EPSG','1512','Germany - East Germany - west of 10.5°E','Germany - states of former East Germany - west of 10°30''E - Thuringen.',50.35,51.56,9.92,10.5,0); INSERT INTO "area" VALUES('EPSG','1513','Europe - 10.5°E to 13.5°E onshore by country','Czechia - west of 13°30''E. Germany - states of former East Germany onshore - between 10°30''E and 13°30''E - Brandenburg; Mecklenburg-Vorpommern; Sachsen; Sachsen-Anhalt; Thuringen.',48.97,54.74,10.5,13.5,0); INSERT INTO "area" VALUES('EPSG','1514','Europe - 13.5°E to 16.5°E onshore and S-42(83) by country','Czechia - between 13°30''E and 16°30''E. Germany - states of former East Germany onshore east of 13°30''E - Brandenburg; Mecklenburg-Vorpommern; Sachsen. Hungary - west of 16°30''E.',46.54,54.72,13.5,16.5,0); INSERT INTO "area" VALUES('EPSG','1515','Poland - zone I','Poland - southeast - south of 52°20''N and east of 18°E.',49.0,52.34,18.0,24.15,0); INSERT INTO "area" VALUES('EPSG','1516','Poland - zone II','Poland - northeast - onshore north of 51°20''N and east of 19°E.',51.33,54.51,19.0,23.95,0); INSERT INTO "area" VALUES('EPSG','1517','Poland - zone III','Poland - northwest - onshore north of 52°10''N and west of 20°E.',52.16,54.89,14.14,20.0,0); INSERT INTO "area" VALUES('EPSG','1518','Poland - zone IV','Poland - southwest - south of 53°20''N and west of 19°05''E.',49.39,53.34,14.14,19.09,0); INSERT INTO "area" VALUES('EPSG','1519','Poland - zone V','Poland - south central - between 49°20''N and 51°20''N, 18°20''E and 19°40''E.',49.39,51.34,18.33,19.67,0); INSERT INTO "area" VALUES('EPSG','1520','Poland - west of 16.5°E','Poland - onshore and offshore west of 16°30''E.',50.26,55.35,14.14,16.5,0); INSERT INTO "area" VALUES('EPSG','1521','Poland - 16.5°E to 19.5°E','Poland - onshore and offshore between 16°30''E and 19°30''E.',49.39,55.93,16.5,19.5,0); INSERT INTO "area" VALUES('EPSG','1522','Poland - 19.5°E to 22.5°E','Poland - onshore and offshore between 19°30''E and 22°30''E.',49.09,54.55,19.5,22.5,0); INSERT INTO "area" VALUES('EPSG','1523','Poland - east of 22.5°E','Poland - east of 22°30''E.',49.0,54.41,22.5,24.15,0); INSERT INTO "area" VALUES('EPSG','1524','Turkey - west of 28.5°E onshore','Turkey west of 28°30''E, onshore.',36.5,42.11,25.62,28.5,0); INSERT INTO "area" VALUES('EPSG','1525','Turkey - 28.5°E to 31.5°E onshore','Turkey between 28°30''E and 31°30''E, onshore.',36.06,41.46,28.5,31.5,0); INSERT INTO "area" VALUES('EPSG','1526','Turkey - 31.5°E to 34.5°E onshore','Turkey between 31°30''E and 34°30''E, onshore.',35.97,42.07,31.5,34.5,0); INSERT INTO "area" VALUES('EPSG','1527','Turkey - 34.5°E to 37.5°E onshore','Turkey between 34°30''E and 37°30''E, onshore.',35.81,42.15,34.5,37.5,0); INSERT INTO "area" VALUES('EPSG','1528','Turkey - 37.5°E to 40.5°E onshore','Turkey between 37°30''E and 40°30''E, onshore.',36.66,41.19,37.5,40.5,0); INSERT INTO "area" VALUES('EPSG','1529','Turkey - 40.5°E to 43.5°E onshore','Turkey between 40°30''E and 43°30''E, onshore.',37.02,41.6,40.5,43.5,0); INSERT INTO "area" VALUES('EPSG','1530','Turkey - east of 43.5°E','Turkey east of 43°30''E.',36.97,41.02,43.5,44.83,0); INSERT INTO "area" VALUES('EPSG','1531','Canada - Maritime Provinces - west of 66°W','Canada - New Brunswick and Nova Scotia - west of 66°W.',43.64,48.07,-69.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','1532','Canada - Maritime Provinces - east of 66°W','Canada - New Brunswick and Nova Scotia east of 66°W; Prince Edward Island.',43.41,47.98,-66.0,-59.73,0); INSERT INTO "area" VALUES('EPSG','1533','Canada - Prince Edward Island','Canada - Prince Edward Island.',45.9,47.09,-64.49,-61.9,0); INSERT INTO "area" VALUES('EPSG','1534','Canada - Nova Scotia - east of 63°W','Canada - Nova Scotia - east of 63°W.',44.64,47.08,-63.0,-59.73,0); INSERT INTO "area" VALUES('EPSG','1535','Canada - Nova Scotia - west of 63°W','Canada - Nova Scotia - west of 63°W.',43.41,46.02,-66.28,-63.0,0); INSERT INTO "area" VALUES('EPSG','1536','Finland - 19.5°E to 22.5°E onshore','Finland - onshore between 19°30''E and 22°30''E.',59.76,69.33,19.5,22.5,0); INSERT INTO "area" VALUES('EPSG','1537','Finland - 22.5°E to 25.5°E onshore','Finland - onshore between 22°30''E and 25°30''E.',59.75,68.9,22.5,25.5,0); INSERT INTO "area" VALUES('EPSG','1538','Finland - 25.5°E to 28.5°E onshore.','Finland - onshore between 25°30''E and 28°30''E for Basic Coordinate System and all onshore Finland for Uniform Coordinate System.',60.18,70.09,25.5,28.51,0); INSERT INTO "area" VALUES('EPSG','1539','Finland - 28.5°E to 31.5°E','Finland - between 28°30''E and 31°30''E.',60.94,69.81,28.5,31.5,0); INSERT INTO "area" VALUES('EPSG','1540','Mozambique - onshore west of 36°E','Mozambique - onshore west of 36°E.',-26.87,-11.41,30.21,36.0,0); INSERT INTO "area" VALUES('EPSG','1541','Mozambique - onshore east of 36°E','Mozambique - onshore east of 36°E.',-18.98,-10.42,35.99,40.9,0); INSERT INTO "area" VALUES('EPSG','1542','Asia - Cambodia and Vietnam - west of 108°E','Cambodia; Vietnam west of 108°E.',8.33,23.4,102.14,108.0,0); INSERT INTO "area" VALUES('EPSG','1543','Austria - Styria','Austria - Styria.',46.64,47.84,13.58,16.17,0); INSERT INTO "area" VALUES('EPSG','1544','Oman - onshore west of 54°E','Oman - onshore west of 54°E.',16.59,19.67,51.99,54.0,0); INSERT INTO "area" VALUES('EPSG','1545','Oman - onshore east of 54°E','Oman - onshore east of 54°E. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.',16.89,26.58,54.0,59.91,0); INSERT INTO "area" VALUES('EPSG','1546','USA - Hawaii - island of Hawaii - onshore','United States (USA) - Hawaii - island of Hawaii - onshore.',18.87,20.33,-156.1,-154.74,0); INSERT INTO "area" VALUES('EPSG','1547','USA - Hawaii - Maui; Kahoolawe; Lanai; Molokai - onshore','United States (USA) - Hawaii - Maui; Kahoolawe; Lanai; Molokai - onshore.',20.45,21.26,-157.36,-155.93,0); INSERT INTO "area" VALUES('EPSG','1548','USA - Hawaii - Oahu - onshore','United States (USA) - Hawaii - Oahu - onshore.',21.2,21.75,-158.33,-157.61,0); INSERT INTO "area" VALUES('EPSG','1549','USA - Hawaii - Kauai - onshore','United States (USA) - Hawaii - Kauai - onshore.',21.81,22.29,-159.85,-159.23,0); INSERT INTO "area" VALUES('EPSG','1550','USA - Hawaii - Niihau - onshore','United States (USA) - Hawaii - Niihau - onshore.',21.73,22.07,-160.3,-159.99,0); INSERT INTO "area" VALUES('EPSG','1551','Grenada and southern Grenadines - onshore','Grenada and southern Grenadine Islands - onshore.',11.94,12.57,-61.84,-61.35,0); INSERT INTO "area" VALUES('EPSG','1552','Africa - Eritrea, Ethiopia and Sudan - 36°E to 42°E','Eritrea. Ethiopia - between 36°E and 42°E. Sudan - east of 36°E.',3.4,22.01,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','1553','Ethiopia - east of 42°E','Ethiopia - east of 42°E.',4.11,12.85,42.0,47.99,0); INSERT INTO "area" VALUES('EPSG','1554','Somalia - 42°E to 48°E, N hemisphere onshore','Somalia - onshore north of equator and between 42°E and 48°E.',0.0,11.52,42.0,48.0,0); INSERT INTO "area" VALUES('EPSG','1555','Somalia - onshore east of 48°E','Somalia - onshore east of 48°E.',4.44,12.03,48.0,51.47,0); INSERT INTO "area" VALUES('EPSG','1556','Australia - 102°E to 108°E','Australia - between 102°E and 108°E.',-56.0,-10.0,102.0,108.0,1); INSERT INTO "area" VALUES('EPSG','1557','Australia - 108°E to 114°E (EEZ)','Australia - onshore and offshore to 200 nautical mile EEZ boundary between 108°E and 114°E.',-37.84,-17.19,109.23,114.0,0); INSERT INTO "area" VALUES('EPSG','1558','Australia - 114°E to 120°E (EEZ)','Australia - onshore and offshore to 200 nautical mile EEZ boundary between 114°E and 120°E.',-38.53,-12.61,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','1559','Australia - 120°E to 126°E','Australia - onshore and offshore between 120°E and 126°E.',-38.07,-10.46,120.0,126.01,0); INSERT INTO "area" VALUES('EPSG','1560','Australia - 126°E to 132°E','Australia - onshore and offshore between 126°E and 132°E.',-37.38,-9.1,125.99,132.0,0); INSERT INTO "area" VALUES('EPSG','1561','Australia - 132°E to 138°E','Australia - onshore and offshore between 132°E and 138°E.',-40.71,-8.88,132.0,138.01,0); INSERT INTO "area" VALUES('EPSG','1562','Australia - 138°E to 144°E','Australia - onshore and offshore between 138°E and 144°E.',-48.19,-9.08,138.0,144.01,0); INSERT INTO "area" VALUES('EPSG','1563','Australia - 144°E to 150°E','Australia - onshore and offshore between 144°E and 150°E.',-50.89,-9.23,144.0,150.01,0); INSERT INTO "area" VALUES('EPSG','1564','Australia - 150°E to 156°E','Australia - onshore and offshore between 150°E and 156°E.',-58.96,-13.87,150.0,156.0,0); INSERT INTO "area" VALUES('EPSG','1565','Australia - 156°E to 162°E','Australia including Lord Howe Island - onshore and offshore between 156°E and 162°E.',-35.13,-14.08,156.0,162.01,0); INSERT INTO "area" VALUES('EPSG','1566','Australia - EEZ east of 162°E','Australia - offshore east of 162°E to 200 nautical mile EEZ boundary.',-34.22,-27.25,162.0,163.2,0); INSERT INTO "area" VALUES('EPSG','1567','Australasia - Australia and PNG - 138°E to 144°E','Australia - onshore and offshore between 138°E and 144°E. Papua New Guinea - onshore west of 144°E.',-46.63,-2.53,138.0,144.01,0); INSERT INTO "area" VALUES('EPSG','1568','Australasia - Australia and PNG - 144°E to 150°E','Australia - onshore and offshore between 144°E and 150°E. Papua New Guinea (PNG) - onshore between 144°E and 150°E.',-47.2,-1.3,144.0,150.01,0); INSERT INTO "area" VALUES('EPSG','1569','Saudi Arabia - onshore 36°E to 42°E','Saudi Arabia - onshore between 36°E and 42°E.',16.59,32.16,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','1570','Asia - Middle East - Kuwait and Saudi - 48°E to 54°E','Kuwait - onshore east of 48°E. Saudi Arabia - onshore between 48°E and 54°E.',17.43,30.04,48.0,54.01,0); INSERT INTO "area" VALUES('EPSG','1571','Asia - Middle East - Kuwait and Saudi - 42°E to 48°E','Kuwait - west of 48°E. Saudi Arabia - between of 42°E and 48°E.',15.61,31.15,42.0,48.0,0); INSERT INTO "area" VALUES('EPSG','1572','Brazil - 54°W to 48°W and Aratu','Brazil - offshore between 54°W and 48°W, including Pelotas basin.',-35.71,-25.01,-53.38,-47.99,0); INSERT INTO "area" VALUES('EPSG','1573','Brazil - 48°W to 42°W and Aratu','Brazil - offshore areas south of intersection of parallel of 2°55''S with coast and between 48°W and 42°W including Santos basin.',-33.5,0.0,-48.01,-41.99,0); INSERT INTO "area" VALUES('EPSG','1574','Brazil - 42°W to 36°W and Aratu','Brazil - between 42°W and 36°W, southern hemisphere offshore including Campos and Espirito Santo basins; onshore Tucano basin area.',-26.35,0.01,-42.01,-36.0,0); INSERT INTO "area" VALUES('EPSG','1575','Africa - Botswana and Zambia - west of 24°E','Botswana and Zambia - west of 24°E.',-26.88,-10.86,19.99,24.0,0); INSERT INTO "area" VALUES('EPSG','1576','Africa - Botswana, Zambia and Zimbabwe - 24°E to 30°E','Botswana - east of 24°E; Zambia - between 24°E and 30°E; Zimbabwe - west of 30°E .',-25.84,-8.31,24.0,30.0,0); INSERT INTO "area" VALUES('EPSG','1577','Africa - Malawi, Zambia and Zimbabwe - east of 30°E','Malawi. Zambia and Zimbabwe - east of 30°E.',-22.42,-8.19,30.0,35.93,0); INSERT INTO "area" VALUES('EPSG','1578','Uganda - north of equator and west of 30°E','Uganda - north of equator and west of 30°E.',0.0,0.86,29.71,30.0,0); INSERT INTO "area" VALUES('EPSG','1579','Africa - Tanzania and Uganda - south of equator and west of 30°E','Tanzania - west of 30°E; Uganda - south of equator and west of 30°E.',-6.81,0.0,29.34,30.0,0); INSERT INTO "area" VALUES('EPSG','1580','Africa - Kenya and Uganda - north of equator and 30°E to 36°E','Kenya - north of equator and west of 36°E; Uganda - north of equator and east of 30°E.',0.0,4.63,29.99,36.0,0); INSERT INTO "area" VALUES('EPSG','1581','Africa - Kenya, Tanzania and Uganda - south of equator and 30°E to 36°E','Kenya - south of equator and west of 36°E; Tanzania - 30°E to 36°E; Uganda - south of equator and east of 30°E.',-11.61,0.01,29.99,36.0,0); INSERT INTO "area" VALUES('EPSG','1582','Kenya - north of equator and east of 36°E','Kenya - north of equator and east of 36°E.',0.0,4.49,36.0,41.91,0); INSERT INTO "area" VALUES('EPSG','1583','Africa - Kenya and Tanzania - south of equator and east of 36°E','Kenya - south of equator and east of 36°E; Tanzania - east of 36°E.',-11.75,0.0,36.0,41.6,0); INSERT INTO "area" VALUES('EPSG','1584','Indonesia - Java and Java Sea - west of 108°E','Indonesia - onshore Java and offshore southern Java Sea west of 108°E.',-7.79,-4.07,105.06,108.0,0); INSERT INTO "area" VALUES('EPSG','1585','Indonesia - Java and Java Sea - east of 114°E','Indonesia - onshore Java and Bali, offshore southern Java Sea, Madura Strait and western Bali Sea - east of 114°E.',-8.91,-5.33,114.0,117.01,0); INSERT INTO "area" VALUES('EPSG','1586','Indonesia - Java and Java Sea - 108°E to 114°E','Indonesia - onshore Java and Madura and offshore southern Java Sea and Madura Strait - between 108°E and 114°E.',-8.67,-4.27,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','1587','China - west of 78°E','China - west of 78°E.',35.42,41.07,73.62,78.01,0); INSERT INTO "area" VALUES('EPSG','1588','China - 78°E to 84°E','China - between 78°E and 84°E.',29.16,47.23,77.98,84.0,0); INSERT INTO "area" VALUES('EPSG','1589','China - 84°E to 90°E','China - between 84°E and 90°E.',27.32,49.18,84.0,90.0,0); INSERT INTO "area" VALUES('EPSG','1590','China - 90°E to 96°E','China - between 90°E and 96°E.',27.71,47.9,90.0,96.01,0); INSERT INTO "area" VALUES('EPSG','1591','China - 96°E to 102°E','China - between 96°E and 102°E.',21.13,43.18,96.0,102.01,0); INSERT INTO "area" VALUES('EPSG','1592','China - 102°E to 108°E onshore','China - onshore between 102°E and 108°E.',21.53,42.47,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','1593','China - 108°E to 114°E onshore','China - onshore between 108°E and 114°E.',18.11,45.11,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','1594','China - 114°E to 120°E onshore','China - onshore between 114°E and 120°E.',22.14,51.52,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','1595','China - 120°E to 126°E onshore','China - onshore between 120°E and 126°E.',26.34,53.56,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','1596','China - 126°E to 132°E onshore','China - onshore between 126°E and 132°E.',40.89,52.79,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','1597','China - east of 132°E','China - east of 132°E.',45.02,48.4,132.0,134.77,0); INSERT INTO "area" VALUES('EPSG','1598','Colombia - west of 75°35''W','Colombia - mainland onshore west of 1°30''W of Bogota (75°34''51.30"W of Greenwich).',0.03,10.21,-79.1,-75.58,0); INSERT INTO "area" VALUES('EPSG','1599','Colombia - 75°35''W to 72°35''W','Colombia - onshore between 1°30''W and 1°30''E of Bogota (75°35''W and 72°35''W of Greenwich).',-2.51,11.82,-75.59,-72.58,0); INSERT INTO "area" VALUES('EPSG','1600','Colombia - 72°35''W to 69°35''W','Colombia - onshore between 1°30''E and 4°30''E of Bogota (72°35''W and 69°34''W of Greenwich).',-4.23,12.52,-72.59,-69.58,0); INSERT INTO "area" VALUES('EPSG','1601','Colombia - east of 69°35''W','Colombia - east of 4°30''E of Bogota (69°34''51.3"W of Greenwich).',-2.25,6.31,-69.59,-66.87,0); INSERT INTO "area" VALUES('EPSG','1602','Colombia - offshore west of 78°W','Colombia - offshore west of 78°W of Greenwich.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1603','Colombia - offshore Caribbean west of 72°W','Colombia - offshore Caribbean west of 72°W of Greenwich.',7.9,13.68,-77.37,-72.0,0); INSERT INTO "area" VALUES('EPSG','1604','Angola - Angola proper - offshore','Angola - Angola proper - offshore.',-17.26,-6.01,8.2,13.86,0); INSERT INTO "area" VALUES('EPSG','1605','Angola - offshore block 15','Angola - offshore block 15.',-6.59,-6.03,10.83,11.67,0); INSERT INTO "area" VALUES('EPSG','1606','Angola - Angola proper - offshore - west of 12°E','Angola - Angola proper - offshore - west of 12°E.',-17.26,-6.03,8.2,12.0,0); INSERT INTO "area" VALUES('EPSG','1607','Angola - Angola proper - 12°E to 18°E','Angola - Angola proper between 12°E and 18°E.',-17.44,-5.82,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','1608','Argentina - west of 70.5°W','Argentina - west of 70°30''W.',-52.0,-36.16,-73.59,-70.5,0); INSERT INTO "area" VALUES('EPSG','1609','Argentina - 70.5°W to 67.5°W onshore','Argentina - between 70°30''W and 67°30''W, onshore.',-54.9,-24.08,-70.5,-67.49,0); INSERT INTO "area" VALUES('EPSG','1610','Argentina - 67.5°W to 64.5°W onshore','Argentina - between 67°30''W and 64°30''W, onshore.',-55.11,-21.78,-67.5,-64.49,0); INSERT INTO "area" VALUES('EPSG','1611','Argentina - 64.5°W to 61.5°W onshore','Argentina - between 64°30''W and 61°30''W, onshore.',-54.91,-21.99,-64.5,-61.5,0); INSERT INTO "area" VALUES('EPSG','1612','Argentina - 61.5°W to 58.5°W onshore','Argentina - between 61°30''W and 58°30''W onshore.',-39.06,-23.37,-61.51,-58.5,0); INSERT INTO "area" VALUES('EPSG','1613','Argentina - 58.5°W to 55.5°W onshore','Argentina - between 58°30''W and 55°30''W, onshore.',-38.59,-24.84,-58.5,-55.49,0); INSERT INTO "area" VALUES('EPSG','1614','Argentina - east of 55.5°W onshore','Argentina - east of 55°30''W, onshore.',-28.11,-25.49,-55.5,-53.65,0); INSERT INTO "area" VALUES('EPSG','1615','Botswana - west of 24°E','Botswana - west of 24°E.',-26.88,-17.99,19.99,24.0,0); INSERT INTO "area" VALUES('EPSG','1616','Botswana - 21°E to 27°E','Botswana - between 21°E and 27°E.',-26.88,-17.78,21.0,27.0,1); INSERT INTO "area" VALUES('EPSG','1617','Botswana - east of 24°E','Botswana - east of 24°E.',-25.84,-17.78,24.0,29.38,0); INSERT INTO "area" VALUES('EPSG','1618','Tunisia - onshore','Tunisia - onshore.',30.23,37.4,7.49,11.59,0); INSERT INTO "area" VALUES('EPSG','1619','Tunisia - north of 34°39''N','Tunisia - onshore north of 38.5 grads North (34°39''N).',34.65,37.4,8.18,11.37,0); INSERT INTO "area" VALUES('EPSG','1620','Tunisia - south of 34°39''N','Tunisia - onshore south of 38.5 grads North (34°39''N) .',30.23,34.66,7.49,11.59,0); INSERT INTO "area" VALUES('EPSG','1621','Brazil - Corrego Alegre - west of 42°W','Brazil - NE coastal area between 45°W and 42°W.',-3.9,-1.5,-45.0,-42.0,1); INSERT INTO "area" VALUES('EPSG','1622','Brazil - Corrego Alegre - east of 42°W','Brazil - NE coastal area between 42°W and 40°W.',-4.0,-2.7,-42.0,-40.0,1); INSERT INTO "area" VALUES('EPSG','1623','Asia - Middle East - Lebanon and Syria onshore','Lebanon - onshore. Syrian Arab Republic - onshore.',32.31,37.3,35.04,42.38,0); INSERT INTO "area" VALUES('EPSG','1624','Germany - West Germany - west of 7.5°E','Germany - former West Germany onshore west of 7°30''E - states of Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland.',49.11,53.81,5.86,7.5,0); INSERT INTO "area" VALUES('EPSG','1625','Germany - West-Germany - 7.5°E to 10.5°E','Germany - former West Germany onshore between 7°30''E and 10°30''E - states of Baden-Wurtemberg, Bayern, Bremen, Hamberg, Hessen, Niedersachsen, Nordrhein-Westfalen, Rhineland-Pfalz, Schleswig-Holstein.',47.27,55.09,7.5,10.51,0); INSERT INTO "area" VALUES('EPSG','1626','Germany - West Germany - 10.5°E to 13.5°E','Germany - former West Germany onshore between 10°30''E and 13°30''E - states of Bayern, Berlin, Niedersachsen, Schleswig-Holstein.',47.39,54.59,10.5,13.51,0); INSERT INTO "area" VALUES('EPSG','1627','Germany - West Germany - east of 13.5°E','Germany - former West Germany onshore east of 13°30''E - state of Bayern.',48.51,48.98,13.5,13.84,0); INSERT INTO "area" VALUES('EPSG','1628','Germany - west of 4.5°E','Germany - onshore - west of 4°30''E.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1629','UK - offshore - North Sea','United Kingdom (UK) - offshore - North Sea.',51.03,62.03,-5.05,3.4,0); INSERT INTO "area" VALUES('EPSG','1630','Netherlands - offshore','Netherlands - offshore North Sea.',51.45,55.77,2.53,6.41,0); INSERT INTO "area" VALUES('EPSG','1631','Europe - 18°W to 12°W and ED50 by country','Europe - between 18°W and 12°W - Ireland offshore.',48.43,56.57,-16.1,-12.0,0); INSERT INTO "area" VALUES('EPSG','1632','Europe - 12°W to 6°W and ED50 by country','Europe - between 12°W and 6°W - Faroe Islands - onshore; Spain - mainland onshore; Ireland offshore.',36.13,62.41,-12.0,-6.0,0); INSERT INTO "area" VALUES('EPSG','1633','Europe - 6°W to 0°W and ED50 by country','Europe - between 6°W and 0°W - Channel Islands (Jersey, Guernsey); France offshore; Gibraltar; Ireland offshore; Norway including Svalbard - offshore; Spain - onshore; United Kingdom - UKCS offshore.',35.26,80.53,-6.0,0.0,0); INSERT INTO "area" VALUES('EPSG','1634','Europe - 0°E to 6°E and ED50 by country','Europe - between 0°E and 6°E - Andorra; Denmark (North Sea); Germany offshore; Netherlands offshore; Norway including Svalbard - onshore and offshore; Spain - onshore (mainland and Balearic Islands); United Kingdom (UKCS) offshore.',38.56,82.41,0.0,6.01,0); INSERT INTO "area" VALUES('EPSG','1635','Europe - 6°E to 12°E and ED50 by country','Europe - between 6°E and 12°E - Denmark - onshore and offshore; France - offshore; Germany offshore; Italy - onshore and offshore; Netherlands offshore; Norway including Svalbard - onshore and offshore.',36.53,83.92,5.99,12.0,0); INSERT INTO "area" VALUES('EPSG','1636','Europe - 12°E to 18°E and ED50 by country','Europe - between 12°E and 18°E onshore and offshore - Denmark (including Bornholm); Italy including San Marino and Vatican City State; Malta; Norway including Svalbard.',34.49,84.0,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','1637','Europe - 18°E to 24°E and ED50 by country','Europe - between 18°E and 24°E - Greece - offshore; Italy - onshore and offshore; Norway including Svalbard - onshore and offshore.',33.59,84.0,18.0,24.0,0); INSERT INTO "area" VALUES('EPSG','1638','Europe - 24°E to 30°E and ED50 by country','Europe - between 24°E and 30°E - Greece - offshore; Norway including Svalbard - onshore and offshore; Turkey - onshore and offshore. Egypt - Western Desert.',25.71,84.01,24.0,30.0,0); INSERT INTO "area" VALUES('EPSG','1639','Europe - 30°E to 36°E and ED50 by country','Europe - between 30°E and 36°E - Israel - offshore; Jordan; Norway including Svalbard - onshore and offshore; Turkey - onshore and offshore.',29.19,83.89,29.99,36.0,0); INSERT INTO "area" VALUES('EPSG','1640','Europe - 36°E to 42°E and ED50 by country','Europe - between 36°E and 42°E - Jordan; Norway including Svalbard - offshore; Turkey onshore and offshore.',29.18,79.09,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','1641','Europe - 42°E to 48°E and ED50 by country','Europe - between 42°E and 48°E - Turkey.',36.97,41.6,42.0,44.83,0); INSERT INTO "area" VALUES('EPSG','1642','Egypt - east of 33°E onshore','Egypt - east of 33°E - onshore plus offshore Gulf of Suez.',21.97,31.36,33.0,36.95,0); INSERT INTO "area" VALUES('EPSG','1643','Egypt - 29°E to 33°E','Egypt – onshore between 29°E and 33°E, offshore Mediterranean east of 29°E and offshore Gulf of Suez.',21.99,33.82,29.0,34.27,0); INSERT INTO "area" VALUES('EPSG','1644','Egypt - west of 29°E; north of 28°11''N','Egypt - onshore west of 29°E and north of approximately 28°11''N.',28.18,31.68,24.7,29.0,0); INSERT INTO "area" VALUES('EPSG','1645','Egypt - west of 29°E; south of 28°11''N','Egypt - west of 29°E; south of approximately 28°11''N.',21.99,28.19,24.99,29.01,0); INSERT INTO "area" VALUES('EPSG','1646','Europe - Estonia; Latvia; Lithuania','Estonia, Latvia and Lithuania - onshore and offshore.',53.89,60.0,19.02,28.24,0); INSERT INTO "area" VALUES('EPSG','1647','Indonesia - west of 96°E, N hemisphere','Indonesia - north of equator and west of 96°E - onshore and offshore.',0.0,7.79,92.01,96.0,0); INSERT INTO "area" VALUES('EPSG','1648','Indonesia - west of 96°E, S hemisphere','Indonesia - south of equator and west of 96°E.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1649','Indonesia - 96°E to 102°E, N hemisphere','Indonesia - north of equator and between 96°E and 102°E - onshore and offshore.',0.0,7.49,96.0,102.0,0); INSERT INTO "area" VALUES('EPSG','1650','Indonesia - 96°E to 102°E, S hemisphere','Indonesia - south of equator and between 96°E and 102°E - onshore and offshore.',-8.86,0.0,96.0,102.0,0); INSERT INTO "area" VALUES('EPSG','1651','Indonesia - 102°E to 108°E, N hemisphere','Indonesia - north of equator and between 102°E and 108°E - onshore and offshore.',0.0,6.94,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','1652','Indonesia - 102°E to 108°E, S hemisphere','Indonesia - south of equator and between 102°E and 108°E - onshore and offshore.',-10.73,0.0,102.0,108.01,0); INSERT INTO "area" VALUES('EPSG','1653','Indonesia - 108°E to 114°E, N hemisphere','Indonesia - north of equator and between 108°E and 114°E - onshore and offshore.',0.0,7.37,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','1654','Indonesia - 108°E to 114°E, S hemisphere','Indonesia - south of equator and between 108°E and 114°E - onshore and offshore.',-12.07,0.0,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','1655','Indonesia - 114°E to 120°E, N hemisphere','Indonesia - north of equator and between 114°E and 120°E - onshore and offshore.',0.0,4.37,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','1656','Indonesia - 114°E to 120°E, S hemisphere','Indonesia - south of equator and between 114°E and 120°E - onshore and offshore.',-13.06,0.0,114.0,120.01,0); INSERT INTO "area" VALUES('EPSG','1657','Indonesia - 120°E to 126°E, N hemisphere','Indonesia - north of equator and between 120°E and 126°E - onshore and offshore.',0.0,5.48,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','1658','Indonesia - 120°E to 126°E, S hemisphere','Indonesia - south of equator and between 120°E and 126°E - onshore and offshore.',-13.95,0.01,120.0,126.01,0); INSERT INTO "area" VALUES('EPSG','1659','Indonesia - 126°E to 132°E, N hemisphere','Indonesia - north of equator and between 126°E and 132°E - onshore and offshore.',0.0,6.68,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','1660','Indonesia - 126°E to 132°E, S hemisphere','Indonesia - south of equator and between 126°E and 132°E - onshore and offshore.',-9.45,0.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','1661','Indonesia - 132°E to 138°E, N hemisphere','Indonesia - north of equator and east of 132°E.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1662','Indonesia - 132°E to 138°E, S hemisphere','Indonesia - south of equator and between 132°E and 138°E - onshore and offshore.',-10.06,0.0,132.0,138.01,0); INSERT INTO "area" VALUES('EPSG','1663','Indonesia - east of 138°E, S hemisphere','Indonesia - south of equator and east of 138°E - onshore and offshore.',-10.84,0.0,138.0,141.46,0); INSERT INTO "area" VALUES('EPSG','1664','Myanmar (Burma) - onshore west of 96°E','Myanmar (Burma) - onshore west of 96°E.',15.66,27.14,92.2,96.01,0); INSERT INTO "area" VALUES('EPSG','1665','Asia - Myanmar and Thailand - 96°E to 102°E','Myanmar (Burma) - onshore east of 96°E; Thailand - onshore west of 102°E.',5.63,28.55,95.99,102.01,0); INSERT INTO "area" VALUES('EPSG','1666','Thailand - east of 102°E','Thailand - onshore and offshore east of 102°E.',6.02,18.44,102.0,105.64,0); INSERT INTO "area" VALUES('EPSG','1667','Thailand - onshore and GoT 96°E to102°E','Thailand - onshore west of 102°E plus offshore Gulf of Thailand west of 102°E.',5.63,20.46,97.34,102.01,0); INSERT INTO "area" VALUES('EPSG','1668','Pakistan - north of 35°35''N','Pakistan - north of 35°35''N.',35.58,37.07,71.18,77.01,0); INSERT INTO "area" VALUES('EPSG','1669','Asia - India; Pakistan - 28°N to 35°35''N','India - north of 28°N; Pakistan - between 28°N and 35°35''N.',28.0,35.59,60.86,81.64,0); INSERT INTO "area" VALUES('EPSG','1670','Asia - India; Pakistan - onshore 21°N to 28°N and west of 82°E','India - onshore between 21°N and 28°N and west of 82°E; Pakistan - onshore south of 28°N.',21.0,28.01,61.59,82.01,0); INSERT INTO "area" VALUES('EPSG','1671','Asia - Bangladesh; India; Myanmar; Pakistan - zone Ilb','Bangladesh - onshore north of 21°N; India - onshore north of 21°N and east of 82°E; Myanmar (Burma) - north of 21°N.',21.0,29.47,82.0,101.17,0); INSERT INTO "area" VALUES('EPSG','1672','India - onshore 15°N to 21°N','India - onshore between 15°N and 21°N.',15.0,21.01,70.14,87.15,0); INSERT INTO "area" VALUES('EPSG','1673','India - mainland south of 15°N','India - mainland onshore south of 15°N.',8.02,15.01,73.94,80.4,0); INSERT INTO "area" VALUES('EPSG','1674','Bangladesh - onshore west of 90°E','Bangladesh - onshore west of 90°E.',21.59,26.64,88.01,90.0,0); INSERT INTO "area" VALUES('EPSG','1675','Bangladesh - onshore east of 90°E','Bangladesh - onshore east of 90°E.',20.52,25.29,90.0,92.67,0); INSERT INTO "area" VALUES('EPSG','1676','India - north of 28°N','India - north of 28°N.',28.0,35.51,70.35,81.64,0); INSERT INTO "area" VALUES('EPSG','1677','India - onshore 21°N to 28°N and west of 82°E','India - onshore between 21°N and 28°N and west of 82°E.',21.0,28.01,68.13,82.01,0); INSERT INTO "area" VALUES('EPSG','1678','India - onshore north of 21°N and east of 82°E','India - onshore north of 21°N and east of 82°E.',21.0,29.47,82.0,97.42,0); INSERT INTO "area" VALUES('EPSG','1679','India - onshore west of 72°E','India - onshore west of 72°E.',20.64,28.22,68.13,72.01,0); INSERT INTO "area" VALUES('EPSG','1680','India - mainland 72°E to 78°E','India - mainland onshore between 72°E and 78°E.',8.02,35.51,72.0,78.01,0); INSERT INTO "area" VALUES('EPSG','1681','India - onshore 78°E to 84°E','India - onshore between 78°E and 84°E.',8.29,35.5,78.0,84.01,0); INSERT INTO "area" VALUES('EPSG','1682','India - onshore 84°E to 90°E','India - onshore between 84°E and 90°E.',18.18,28.14,84.0,90.01,0); INSERT INTO "area" VALUES('EPSG','1683','India - mainland 90°E to 96°E','India - mainland onshore between 90°E and 96°E.',21.94,29.42,90.0,96.01,0); INSERT INTO "area" VALUES('EPSG','1684','India - east of 96°E','India - east of 96°E.',27.1,29.47,96.0,97.42,0); INSERT INTO "area" VALUES('EPSG','1685','Pakistan - 28°N to 35°35''N','Pakistan - between 28°N and 35°35''N.',28.0,35.59,60.86,77.83,0); INSERT INTO "area" VALUES('EPSG','1686','Pakistan - onshore south of 28°N','Pakistan - onshore south of 28°N.',23.64,28.01,61.59,71.91,0); INSERT INTO "area" VALUES('EPSG','1687','Pakistan - onshore west of 66°E','Pakistan - onshore west of 66°E.',24.98,29.87,60.86,66.01,0); INSERT INTO "area" VALUES('EPSG','1688','Pakistan - onshore 66°E to 72°E','Pakistan - onshore between 66°E and 72°E.',23.64,36.56,66.0,72.01,0); INSERT INTO "area" VALUES('EPSG','1689','Pakistan - east of 72°E','Pakistan - east of 72°E.',28.21,37.07,72.0,77.83,0); INSERT INTO "area" VALUES('EPSG','1690','Malaysia - West Malaysia - onshore','Malaysia - West Malaysia onshore.',1.21,6.72,99.59,104.6,0); INSERT INTO "area" VALUES('EPSG','1691','Malaysia - West Malaysia - onshore west of 102°E','Malaysia - West Malaysia onshore west of 102°E.',2.29,6.72,99.59,102.01,0); INSERT INTO "area" VALUES('EPSG','1692','Malaysia - West Malaysia - east of 102°E','Malaysia - onshore West Malaysia east of 102°E and offshore east coast.',1.21,7.81,102.0,105.82,0); INSERT INTO "area" VALUES('EPSG','1693','Venezuela - west of 72°W','Venezuela - west of 72°W.',7.02,11.62,-73.38,-71.99,0); INSERT INTO "area" VALUES('EPSG','1694','Venezuela - 72°W and 66°W onshore','Venezuela - between 72°W and 66°W, onshore.',0.73,12.25,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','1695','Venezuela - east of 66°W onshore','Venezuela - onshore east of 66°W.',0.64,11.23,-66.0,-59.8,0); INSERT INTO "area" VALUES('EPSG','1696','Gabon - north of equator and west of 12°E onshore','Gabon - onshore north of equator and west of 12°E.',0.0,2.32,9.25,12.0,0); INSERT INTO "area" VALUES('EPSG','1697','Gabon - west of 12°E','Gabon - west of 12°E - onshore and offshore.',-6.37,2.32,7.03,12.01,0); INSERT INTO "area" VALUES('EPSG','1698','Philippines - zone I','Philippines - west of 118°E onshore and offshore.',6.21,18.64,116.04,118.0,0); INSERT INTO "area" VALUES('EPSG','1699','Philippines - zone II','Philippines - approximately between 118°E and 120°E - Palawan; Calamian Islands - onshore and offshore.',3.02,20.42,118.0,120.07,0); INSERT INTO "area" VALUES('EPSG','1700','Philippines - zone III','Philippines - approximately between 120°E and 122°E, onshore and offshore. Luzon (west of 122°E); Mindoro.',3.0,21.62,119.7,122.21,0); INSERT INTO "area" VALUES('EPSG','1701','Philippines - zone IV','Philippines - approximately between 122°E and 124°E onshore and offshore - southeast Luzon (east of 122°E); Tablas; Masbate; Panay; Cebu; Negros; west Mindanao (west of 122°E).',3.44,22.18,121.74,124.29,0); INSERT INTO "area" VALUES('EPSG','1702','Philippines - zone V','Philippines - approximately between 124°E and 126°E, onshore and offshore - east Mindanao (east of 124°E); Bohol; Samar.',4.76,21.97,123.73,126.65,0); INSERT INTO "area" VALUES('EPSG','1703','Morocco - north of 31.5°N','Morocco onshore north of 35 grads North (31°30''N).',31.49,35.97,-9.85,-1.01,0); INSERT INTO "area" VALUES('EPSG','1704','Morocco - 27.9°N to 31.5°N','Morocco between 31 grads and 35 grads North (27°54''N and 31°30''N).',27.9,31.5,-13.0,-3.5,1); INSERT INTO "area" VALUES('EPSG','1705','Morocco - south of 27.9°N','Morocco south of 31 grads North (27°54''N).',21.06,27.9,-17.0,-8.67,1); INSERT INTO "area" VALUES('EPSG','1706','Austria - west of 11°50''E','Austria west of 11°50''E of Greenwich (29°30''E of Ferro).',46.77,47.61,9.53,11.84,0); INSERT INTO "area" VALUES('EPSG','1707','Austria - 11°50''E to 14°50''E','Austria between 11°50''E and 14°50''E of Greenwich (29°30''E and 32°30''E of Ferro).',46.4,48.79,11.83,14.84,0); INSERT INTO "area" VALUES('EPSG','1708','Austria - east of 14°50''E','Austria east of 14°50''E of Greenwich (32°30''E of Ferro).',46.56,49.02,14.83,17.17,0); INSERT INTO "area" VALUES('EPSG','1709','Europe - former Yugoslavia onshore west of 16.5°E','Bosnia and Herzegovina - west of 16°30''E; Croatia - onshore west of 16°30''E; Slovenia - onshore.',42.95,46.88,13.38,16.5,0); INSERT INTO "area" VALUES('EPSG','1710','Europe - former Yugoslavia onshore 16.5°E to 19.5°E','Bosnia and Herzegovina - between 16°30''E and 19°30''E; Croatia - onshore east of 16°30''E; Montenegro - onshore west of 19°30''E; Serbia - west of 19°30''E.',41.79,46.55,16.5,19.51,0); INSERT INTO "area" VALUES('EPSG','1711','Europe - former Yugoslavia onshore 19.5°E to 22.5°E','Bosnia and Herzegovina - east of 19°30''E; Kosovo; Montenegro - east of 19°30''E; North Macedonia - west of 22°30''E; Serbia - between 19°30''E and 22°30''E.',40.85,46.19,19.5,22.51,0); INSERT INTO "area" VALUES('EPSG','1712','Europe - former Yugoslavia onshore east of 22.5°E','North Macedonia - east of 22°30''E; Serbia - east of 22°30''E.',41.11,44.7,22.5,23.04,0); INSERT INTO "area" VALUES('EPSG','1713','Nigeria - east of 10.5°E','Nigeria east of 10°30''E.',6.43,13.72,10.49,14.65,0); INSERT INTO "area" VALUES('EPSG','1714','Nigeria - 6.5°E to 10.5°E','Nigeria between 6°30''E and 10°30''E, onshore and offshore shelf.',3.57,13.53,6.5,10.51,0); INSERT INTO "area" VALUES('EPSG','1715','Nigeria - west of 6.5°E','Nigeria - onshore west of 6°30''E, onshore and offshore shelf.',3.57,13.9,2.69,6.5,0); INSERT INTO "area" VALUES('EPSG','1716','Nigeria - offshore deep water - west of 6°E','Nigeria - offshore beyond continental shelf west of 6°E.',1.92,6.14,2.66,6.0,0); INSERT INTO "area" VALUES('EPSG','1717','Nigeria - offshore deep water','Nigeria - offshore beyond continental shelf.',1.92,6.14,2.66,7.82,0); INSERT INTO "area" VALUES('EPSG','1718','Italy - west of 12°E','Italy - onshore and offshore - west of 12°E.',36.53,47.04,5.94,12.0,0); INSERT INTO "area" VALUES('EPSG','1719','Italy - east of 12°E','Italy - onshore and offshore - east of 12°E including San Marino and Vatican City State.',34.76,47.1,12.0,18.99,0); INSERT INTO "area" VALUES('EPSG','1720','USA - Michigan - SPCS - E','United States (USA) - Michigan - counties of Alcona; Alpena; Arenac; Bay; Cheboygan; Chippewa; Clinton; Crawford; Genesee; Gladwin; Gratiot; Hillsdale; Huron; Ingham; Iosco; Jackson; Lapeer; Lenawee; Livingston; Macomb; Midland; Monroe; Montmorency; Oakland; Ogemaw; Oscoda; Otsego; Presque Isle; Roscommon; Saginaw; Sanilac; Shiawassee; St Clair; Tuscola; Washtenaw; Wayne.',41.69,46.04,-84.87,-82.13,0); INSERT INTO "area" VALUES('EPSG','1721','USA - Michigan - SPCS - old central','United States (USA) - Michigan - counties of Alger; Allegan; Antrim; Barry; Benzie; Berrien; Branch; Calhoun; Cass; Charlevoix; Clare; Delta; Eaton; Emmet; Grand Traverse; Ionia; Isabella; Kalamazoo; Kalkaska; Kent; Lake; Leelanau; Luce; Mackinac; Manistee; Mason; Mecosta; Missaukee; Montcalm; Muskegon; Newaygo; Oceana; Osceola; Ottawa; St Joseph; Schoolcraft; Van Buren; Wexford.',41.75,46.11,-87.61,-84.6,0); INSERT INTO "area" VALUES('EPSG','1722','USA - Michigan - SPCS - W','United States (USA) - Michigan - counties of Alger; Baraga; Chippewa; Delta; Dickinson; Gogebic; Houghton; Iron; Keweenaw; Luce; Mackinac; Marquette; Menominee; Ontonagon; Schoolcraft.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1723','USA - Michigan - SPCS - N','United States (USA) - Michigan north of approximately 45°45''N - counties of Alger; Baraga; Chippewa; Delta; Dickinson; Gogebic; Houghton; Iron; Keweenaw; Luce; Mackinac; Marquette; Menominee; Ontonagon; Schoolcraft.',45.08,48.32,-90.42,-83.44,0); INSERT INTO "area" VALUES('EPSG','1724','USA - Michigan - SPCS - C','United States (USA) - Michigan - counties of Alcona; Alpena; Antrim; Arenac; Benzie; Charlevoix; Cheboygan; Clare; Crawford; Emmet; Gladwin; Grand Traverse; Iosco; Kalkaska; Lake; Leelanau; Manistee; Mason; Missaukee; Montmorency; Ogemaw; Osceola; Oscoda; Otsego; Presque Isle; Roscommon; Wexford.',43.8,45.92,-87.06,-82.27,0); INSERT INTO "area" VALUES('EPSG','1725','USA - Michigan - SPCS - S','United States (USA) - Michigan - counties of Allegan; Barry; Bay; Berrien; Branch; Calhoun; Cass; Clinton; Eaton; Genesee; Gratiot; Hillsdale; Huron; Ingham; Ionia; Isabella; Jackson; Kalamazoo; Kent; Lapeer; Lenawee; Livingston; Macomb; Mecosta; Midland; Monroe; Montcalm; Muskegon; Newaygo; Oakland; Oceana; Ottawa; Saginaw; Sanilac; Shiawassee; St Clair; St Joseph; Tuscola; Van Buren; Washtenaw; Wayne.',41.69,44.22,-87.2,-82.13,0); INSERT INTO "area" VALUES('EPSG','1726','Mozambique - offshore','Mozambique - offshore.',-27.71,-10.09,32.64,43.03,0); INSERT INTO "area" VALUES('EPSG','1727','Suriname - offshore','Suriname - offshore.',5.34,9.35,-57.25,-52.66,0); INSERT INTO "area" VALUES('EPSG','1728','Algeria - north of 34°39''N','Algeria - onshore north of 38.5 grads North (34°39''N).',34.64,37.14,-2.22,8.64,0); INSERT INTO "area" VALUES('EPSG','1729','Algeria - 31°30''N to 34°39''N','Algeria - 35 grads to 38.5 grads North (31°30''N to 34°39''N).',31.49,34.66,-3.85,9.22,0); INSERT INTO "area" VALUES('EPSG','1730','North America - NAVD88','North America: Canada - Alberta; British Columbia (BC); Manitoba; New Brunswick (NB); Newfoundland and Labrador; Northwest Territories (NWT); Nova Scotia (NS); Nunavut; Ontario; Prince Edward Island (PEI); Quebec; Saskatchewan; Yukon. United States (USA) - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',25.0,58.0,-168.0,-52.0,1); INSERT INTO "area" VALUES('EPSG','1731','France - mainland north of 48.15°N','France mainland onshore north of 53.5 grads North (48°09''N).',48.14,51.14,-4.87,8.23,0); INSERT INTO "area" VALUES('EPSG','1732','France - mainland 45.45°N to 48.15°N','France mainland onshore between 50.5 grads and 53.5 grads North (45°27''N to 48°09''N).',45.44,48.15,-4.8,7.63,0); INSERT INTO "area" VALUES('EPSG','1733','France - mainland south of 45.45°N','France - mainland onshore south of 50.5 grads North (45°27''N).',42.33,45.45,-1.79,7.71,0); INSERT INTO "area" VALUES('EPSG','1734','France - mainland 45.45°N to 48.15°N. Also all mainland.','France mainland onshore between 50.5 grads and 53.5 grads North (45°27''N to 48°09''N). Also used over all onshore mainland France.',42.33,51.14,-4.87,8.23,0); INSERT INTO "area" VALUES('EPSG','1735','Algeria - west of 6°W','Algeria - west of 6°W (of Greenwich).',25.73,29.85,-8.67,-6.0,0); INSERT INTO "area" VALUES('EPSG','1736','Algeria - 6°W to 0°W onshore','Algeria - onshore between 6°W and 0°W (of Greenwich).',21.82,35.96,-6.0,0.0,0); INSERT INTO "area" VALUES('EPSG','1737','Algeria - 0°E to 6°E onshore','Algeria - onshore between 0°E and 6°E (of Greenwich).',18.97,36.97,0.0,6.01,0); INSERT INTO "area" VALUES('EPSG','1738','Algeria - east of 6°E onshore','Algeria - onshore east of 6°E (of Greenwich).',19.6,37.14,6.0,11.99,0); INSERT INTO "area" VALUES('EPSG','1739','Kuwait - west of 48°E onshore','Kuwait - onshore west of 48°E.',28.53,30.09,46.54,48.0,0); INSERT INTO "area" VALUES('EPSG','1740','Kuwait - east of 48°E onshore','Kuwait - onshore east of 48°E.',28.54,30.04,48.0,48.48,0); INSERT INTO "area" VALUES('EPSG','1741','Norway - zone I','Norway - west of 3°30''W of Oslo (7°13''22.5"E of Greenwich).',57.93,63.06,4.68,7.23,0); INSERT INTO "area" VALUES('EPSG','1742','Norway - zone II','Norway - between 3°30''W and 1°10'' W of Oslo (7°13''22.5"E and 9°33''22.5"E of Greenwich).',57.95,63.87,7.22,9.56,0); INSERT INTO "area" VALUES('EPSG','1743','Norway - zone III','Norway - between 1°10''W and 1°15''E of Oslo (9°33''22.5"E and 11°58''22.5"E of Greenwich).',58.84,65.76,9.55,11.98,0); INSERT INTO "area" VALUES('EPSG','1744','Norway - zone IV','Norway - between 1°15''E and 4°20''E of Oslo (11°58''22.5"E and 15°03''22.5"E of Greenwich).',59.88,69.06,11.97,15.06,0); INSERT INTO "area" VALUES('EPSG','1745','Norway - zone V','Norway - between 4°20''E and 8°10''E of Oslo (15°03''22.5"E and 18°53''22.5"E of Greenwich).',66.15,70.19,15.05,18.89,0); INSERT INTO "area" VALUES('EPSG','1746','Norway - zone VI','Norway - between 8°10''E and 12°10''E of Oslo (18°53''22.5"E and 22°53''22.5"E of Greenwich).',68.33,70.81,18.88,22.89,0); INSERT INTO "area" VALUES('EPSG','1747','Norway - zone VII','Norway - between 12°10''E and 16°15''E of Oslo (22°53''22.5"E and 26°58''22.5"E of Greenwich).',68.58,71.21,22.88,26.98,0); INSERT INTO "area" VALUES('EPSG','1748','Norway - zone VIII','Norway - east of 16°15''E of Oslo (26°58''22.5"E of Greenwich).',69.02,71.17,26.97,31.22,0); INSERT INTO "area" VALUES('EPSG','1749','Asia - Middle East - Qatar offshore and UAE west of 54°E','Qatar - offshore. United Arab Emirates (UAE) - Abu Dhabi - onshore and offshore west of 54°E.',22.76,27.05,50.55,54.01,0); INSERT INTO "area" VALUES('EPSG','1750','UAE - east of 54°E','United Arab Emirates (UAE) onshore and offshore east of 54°E - Abu Dhabi; Dubai; Sharjah; Ajman; Fujairah; Ras Al Kaimah; Umm Al Qaiwain.',22.63,26.27,54.0,57.13,0); INSERT INTO "area" VALUES('EPSG','1751','Peru - east of 73°W','Peru - east of 73°W, onshore.',-18.39,-2.14,-73.0,-68.67,0); INSERT INTO "area" VALUES('EPSG','1752','Peru - 79°W to 73°W','Peru - between 79°W and 73°W, onshore.',-16.57,-0.03,-79.0,-73.0,0); INSERT INTO "area" VALUES('EPSG','1753','Peru - west of 79°W','Peru - west of 79°W.',-8.32,-3.38,-81.41,-79.0,0); INSERT INTO "area" VALUES('EPSG','1754','Brazil - Amazon cone shelf','Brazil - offshore shelf - Amazon cone.',-1.05,5.6,-51.64,-48.0,0); INSERT INTO "area" VALUES('EPSG','1755','South America - 84°W to 78°W, S hemisphere and PSAD56 by country','South America (Ecuador and Peru) between 84°W and 78°W, southern hemisphere, onshore.',-10.53,0.0,-81.41,-78.0,0); INSERT INTO "area" VALUES('EPSG','1756','South America - 78°W to 72°W, N hemisphere and PSAD56 by country','South America (Ecuador; Venezuela) between 78°W and 72°W, northern hemisphere, onshore.',0.0,11.62,-78.0,-71.99,0); INSERT INTO "area" VALUES('EPSG','1757','South America - 78°W to 72°W, S hemisphere and PSAD56 by country','South America (Chile - north of 45°S; Ecuador; Peru) between 78°W and 72°W, southern hemisphere, onshore.',-45.0,0.0,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','1758','South America - 72°W to 66°W, N hemisphere and PSAD56 by country','South America (Aruba; Bonaire; Curacao; Venezuela) between 72°W and 66°W, northern hemisphere, onshore.',0.73,12.68,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','1759','South America - 72°W to 66°W, S hemisphere and PSAD56 by country','South America (Bolivia; Chile - north of 45°S; Peru) between 72°W and 66°W, southern hemisphere, onshore.',-45.0,-2.14,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','1760','South America - 66°W to 60°W, N hemisphere and PSAD56 by country','South America (Guyana; Venezuela) onshore between 66°W and 60°W, northern hemisphere.',0.64,11.23,-66.0,-59.99,0); INSERT INTO "area" VALUES('EPSG','1761','Bolivia - 66°W to 60°W','Bolivia between 66°W and 60°W.',-22.87,-9.67,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','1762','South America - 60°W to 54°W, N hemisphere and PSAD56 by country','South America (Guyana) onshore between 60°W and 54°W, northern hemisphere.',1.18,8.58,-60.0,-56.47,0); INSERT INTO "area" VALUES('EPSG','1763','Russia - west of 24°E onshore','Russian Federation - onshore west of 24°E - Kaliningrad.',54.32,55.32,19.57,22.87,0); INSERT INTO "area" VALUES('EPSG','1764','Russia - 24°E to 30°E onshore','Russian Federation - onshore between 24°E and 30°E.',55.69,69.47,26.61,30.0,0); INSERT INTO "area" VALUES('EPSG','1765','Russia - 30°E to 36°E onshore','Russian Federation - onshore between 30°E and 36°E.',50.34,70.02,30.0,36.0,0); INSERT INTO "area" VALUES('EPSG','1766','Russia - 36°E to 42°E onshore','Russian Federation - onshore between 36°E and 42°E.',43.18,69.23,36.0,42.01,0); INSERT INTO "area" VALUES('EPSG','1767','Russia - 42°E to 48°E onshore','Russian Federation - onshore between 42°E and 48°E.',41.19,80.91,42.0,48.0,0); INSERT INTO "area" VALUES('EPSG','1768','Russia - 48°E to 54°E onshore','Russian Federation - onshore between 48°E and 54°E.',41.39,81.4,48.0,54.0,0); INSERT INTO "area" VALUES('EPSG','1769','Russia - 54°E to 60°E onshore','Russian Federation - onshore between 54°E and 60°E.',50.47,81.91,54.0,60.0,0); INSERT INTO "area" VALUES('EPSG','1770','Russia - 60°E to 66°E onshore','Russian Federation - onshore between 60°E and 66°E.',50.66,81.77,60.0,66.0,0); INSERT INTO "area" VALUES('EPSG','1771','Russia - 66°E to 72°E onshore','Russian Federation - onshore between 66°E and 72°E .',54.1,77.07,66.0,72.0,0); INSERT INTO "area" VALUES('EPSG','1772','Russia - 72°E to 78°E onshore','Russian Federation - onshore between 72°E and 78°E.',53.17,79.71,72.0,78.0,0); INSERT INTO "area" VALUES('EPSG','1773','Russia - 78°E to 84°E onshore','Russian Federation - onshore between 78°E and 84°E.',50.69,81.03,78.0,84.0,0); INSERT INTO "area" VALUES('EPSG','1774','Russia - 84°E to 90°E onshore','Russian Federation - onshore between 84°E and 90°E.',49.07,81.27,84.0,90.0,0); INSERT INTO "area" VALUES('EPSG','1775','Russia - 90°E to 96°E onshore','Russian Federation - onshore between 90°E and 96°E.',49.89,81.35,90.0,96.0,0); INSERT INTO "area" VALUES('EPSG','1776','Russia - 96°E to 102°E onshore','Russian Federation - onshore between 96°E and 102°E.',49.73,81.32,96.0,102.0,0); INSERT INTO "area" VALUES('EPSG','1777','Russia - 102°E to 108°E onshore','Russian Federation - onshore between 102°E and 108°E.',49.64,79.48,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','1778','Russia - 108°E to 114°E onshore','Russian Federation - onshore between 108°E and 114°E.',49.14,76.81,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','1779','Russia - 114°E to 120°E onshore','Russian Federation - onshore between 114°E and 120°E.',49.51,75.96,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','1780','Russia - 120°E to 126°E onshore','Russian Federation - onshore between 120°E and 126°E.',51.51,74.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','1781','Russia - 126°E to 132°E onshore','Russian Federation - onshore between 126°E and 132°E.',42.25,73.61,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','1782','Russia - 132°E to 138°E onshore','Russian Federation - onshore between 132°E and 138°E.',42.63,76.15,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','1783','Russia - 138°E to 144°E onshore','Russian Federation - onshore between 138°E and 144°E.',45.84,76.27,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','1784','Russia - 144°E to 150°E onshore','Russian Federation - onshore between 144°E and 150°E.',43.6,76.82,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','1785','Russia - 150°E to 156°E onshore','Russian Federation - onshore between 150°E and 156°E.',45.77,76.26,150.0,156.0,0); INSERT INTO "area" VALUES('EPSG','1786','Russia - 156°E to 162°E onshore','Russian Federation - onshore between 156°E and 162°E.',50.27,77.2,156.0,162.0,0); INSERT INTO "area" VALUES('EPSG','1787','Russia - 162°E to 168°E onshore','Russian Federation - onshore between 162°E and 168°E.',54.47,70.03,162.0,168.0,0); INSERT INTO "area" VALUES('EPSG','1788','Russia - 168°E to 174°E onshore','Russian Federation - onshore between 168°E and 174°E.',54.45,70.19,168.0,174.0,0); INSERT INTO "area" VALUES('EPSG','1789','Russia - 174°E to 180°E onshore','Russian Federation - onshore between 174°E and 180°E .',61.65,71.59,174.0,180.0,0); INSERT INTO "area" VALUES('EPSG','1790','Russia - 180° to 174°W onshore','Russian Federation - onshore between 180°E and 174°W.',64.35,71.65,-180.0,-174.0,0); INSERT INTO "area" VALUES('EPSG','1791','Russia - east of 174°W onshore','Russian Federation - onshore east of 174°W.',64.2,67.18,-174.0,-168.97,0); INSERT INTO "area" VALUES('EPSG','1792','Europe - 12°E to 18°E onshore and S-42(58) by country','Germany (former DDR) - onshore east of 12°E. Poland - onshore west of 18°E. Czechia, Hungary and Slovakia - west of 18°E.',45.78,54.89,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','1793','Europe - FSU onshore 18°E to 24°E and S-42 by country','Belarus, Estonia, Latvia, Lithuania and Ukraine - onshore west of 24°E. Russian Federation - Kaliningrad onshore.',47.95,59.44,19.57,24.0,0); INSERT INTO "area" VALUES('EPSG','1794','Europe - FSU onshore 24°E to 30°E and S-42 by country','Estonia; Latvia and Lithuania - onshore east of 24°E; Belarus, Moldova, Russian Federation and Ukraine - onshore 24°E to 30°E.',45.18,69.47,24.0,30.01,0); INSERT INTO "area" VALUES('EPSG','1795','Europe - FSU onshore 30°E to 36°E','Belarus and Moldova - east of 30°E; Russian Federation and Ukraine - onshore 30°E to 36°E.',44.32,70.02,30.0,36.0,0); INSERT INTO "area" VALUES('EPSG','1796','Europe - FSU onshore 36°E to 42°E','Georgia - onshore west of 36°E; Russian Federation - onshore 36°E to 42°E; Ukraine - onshore east of 36°E.',41.43,69.23,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','1797','Europe - FSU onshore 42°E to 48°E','Armenia - west of 48°E; Azerbaijan - west of 48°E; Georgia - east of 42°E; Kazakhstan - west of 48°E; Russian Federation - onshore 42°E to 48°E.',38.84,80.91,42.0,48.01,0); INSERT INTO "area" VALUES('EPSG','1798','Asia - FSU onshore 48°E to 54°E','Azerbaijan - east of 48°E; Kazakhstan - 48°E to 54°E; Russian Federation - 48°E to 54°E; Turkmenistan - west of 54°E. Includes Caspian Sea (considered a lake rather than offshore).',37.34,81.4,48.0,54.0,0); INSERT INTO "area" VALUES('EPSG','1799','Asia - FSU onshore 54°E to 60°E','Kazakhstan; Russian Federation - onshore; Turkmenistan - 54°E to 60°E; Uzbekistan - west of 60°E.',37.05,81.91,54.0,60.0,0); INSERT INTO "area" VALUES('EPSG','1800','Asia - FSU onshore 60°E to 66°E','Kazakhstan; Russian Federation - onshore; Uzbekistan - 60°E to 66°E; Turkmenistan - east of 60°E.',35.14,81.77,60.0,66.0,0); INSERT INTO "area" VALUES('EPSG','1801','Asia - FSU onshore 66°E to 72°E','Kazakhstan, Russian Federation onshore and Uzbekistan - 66°E to 72°E; Kyrgyzstan and Tajikistan - west of 72°E.',36.67,77.07,66.0,72.0,0); INSERT INTO "area" VALUES('EPSG','1802','Asia - FSU onshore 72°E to 78°E','Kazakhstan; Kyrgyzstan; Russian Federation onshore - 72°E to 78°E; Tajikistan and Uzbekistan - east of 72°E.',36.79,79.71,72.0,78.0,0); INSERT INTO "area" VALUES('EPSG','1803','Asia - FSU onshore 78°E to 84°E','Kazakhstan and Russian Federation onshore - 78°E to 84°E; Kyrgyzstan - east of 78°E.',41.04,81.03,78.0,84.01,0); INSERT INTO "area" VALUES('EPSG','1804','Asia - FSU onshore 84°E to 90°E','Kazakhstan - east of 84°E; Russian Federation - onshore 84°E to 90°E.',46.82,81.27,84.0,90.0,0); INSERT INTO "area" VALUES('EPSG','1805','Europe - 6°E to 12°E and Pulkovo by country','Czech Republic and Germany (former DDR) - west of 12°E.',50.21,54.18,9.93,12.0,1); INSERT INTO "area" VALUES('EPSG','1806','South America - UTM 17S and SAD69 by country','South America - between 84°W and 78°W; southern hemisphere.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1807','South America - UTM 18N and SAD69 by country','South America - between 78°W and 72°W; northern hemisphere.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1808','South America - UTM 18S and SAD69 by country','South America - between 78°W and 72°W; southern hemisphere.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1809','South America - UTM 19N and SAD69 by country','South America - between 72°W and 66°W; northern hemisphere.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1810','South America - UTM 19S and SAD69 by country','South America - between 72°W and 66°W; southern hemisphere.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1811','South America - UTM 20N and SAD69 by country','South America - between 66°W and 60°W; northern hemisphere.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1812','South America - UTM 20S and SAD69 by country','South America - between 66°W and 60°W; southern hemisphere.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1813','South America - UTM 21N and SAD69','South America - between 60°W and 54°W; northern hemisphere.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1814','South America - 60°W to 54°W, S hemisphere and SAD69 by country','Brazil - between 60°W and 54°W, northern and southern hemispheres. In rest of South America between 60°W and 54°W southern hemisphere, onshore.',-38.91,4.51,-60.0,-53.99,0); INSERT INTO "area" VALUES('EPSG','1815','South America - 54°W to 48°W, N hemisphere and SAD69 by country','Brazil - offshore deep water - Amazon cone. In remainder of South America, between 54°W and 48°W, northern hemisphere onshore but excluding most of the area southeast of a line between approximately 2°N, 54°W and 4°N, 52°W.',1.68,5.81,-54.0,-46.65,0); INSERT INTO "area" VALUES('EPSG','1816','South America - 54°W to 48°W, S hemisphere and SAD69 by country','Brazil - onshore and offshore northern and southern hemispheres between 54°W and 48°W. In remainder of South America - between 54°W and 48°W, southern hemisphere, onshore.',-35.71,7.04,-54.0,-47.99,0); INSERT INTO "area" VALUES('EPSG','1817','Brazil - 48°W to 42°W','Brazil - between 48°W and 42°W.',-26.3,0.0,-48.0,-42.0,1); INSERT INTO "area" VALUES('EPSG','1818','Brazil - 42°W to 36°W onshore','Brazil - between 42°W and 36°W, onshore.',-22.96,-2.68,-42.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','1819','Brazil - 36°W to 30°W','Brazil - between 36°W and 30°W.',-10.05,-5.15,-36.0,-30.0,1); INSERT INTO "area" VALUES('EPSG','1820','Falkland Islands - onshore west of 60°W','Falkland Islands (Malvinas) - onshore west of 60°W.',-52.33,-50.96,-61.55,-59.99,0); INSERT INTO "area" VALUES('EPSG','1821','Falkland Islands - onshore east of 60°W','Falkland Islands (Malvinas) - onshore east of 60°W.',-52.51,-51.13,-60.0,-57.6,0); INSERT INTO "area" VALUES('EPSG','1822','Namibia - offshore','Namibia - offshore.',-30.64,-17.24,8.24,16.46,0); INSERT INTO "area" VALUES('EPSG','1823','South America - 84°W to 78°W, N hemisphere and SIRGAS95 by country','South America between 84°W and 78°W, northern hemisphere, onshore and offshore.',0.9,15.51,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','1824','South America - 84°W to 78°W, S hemisphere','South America between 84°W and 78°W, southern hemisphere, onshore and offshore.',-56.45,0.0,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','1825','South America - 78°W to 72°W, N hemisphere','South America between 78°W and 72°W, northern hemisphere, onshore and offshore.',0.0,15.04,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','1826','South America - 78°W to 72°W, S hemisphere and SIRGAS 1995 by country','South America between 78°W and 72°W, southern hemisphere, onshore and offshore.',-59.36,0.0,-78.0,-71.99,0); INSERT INTO "area" VALUES('EPSG','1827','South America - 72°W to 66°W, N hemisphere','South America between 72°W and 66°W, northern hemisphere, onshore and offshore.',0.0,15.64,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','1828','South America - 72°W to 66°W, S hemisphere','South America between 72°W and 66°W, southern hemisphere, onshore and offshore.',-59.87,0.0,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','1829','South America - 66°W to 60°W, N hemisphere','South America between 66°W and 60°W, northern hemisphere, onshore and offshore.',0.0,16.75,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','1830','South America - 66°W to 60°W, S hemisphere','South America between 66°W and 60°W, southern hemisphere, onshore and offshore.',-58.39,0.0,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','1831','South America - 60°W to 54°W, N hemisphere','South America between 60°W and 54°W, northern hemisphere, onshore and offshore.',0.0,10.7,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','1832','South America - 60°W to 54°W, S hemisphere','South America onshore and offshore, southern hemisphere between 60°W and 54°W.',-44.82,0.0,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','1833','South America - 54°W to 48°W, N hemisphere','South America between 54°W and 48°W, northern hemisphere, onshore and offshore.',0.0,9.24,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','1834','South America - 54°W to 48°W, S hemisphere','South America between 54°W and 48°W, southern hemisphere, onshore and offshore.',-39.95,0.0,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','1835','South America - 48°W to 42°W','South America - between 48°W and 42°W, southern hemisphere, onshore and offshore.',-33.5,0.0,-48.0,-42.0,0); INSERT INTO "area" VALUES('EPSG','1836','South America - 42°W to 36°W','South America - between 42°W and 36°W, southern hemisphere, onshore and offshore.',-26.35,0.0,-42.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','1837','South America - 36°W to 30°W','South America - between 36°W and 30°W, southern hemisphere, onshore and offshore.',-20.11,0.0,-36.0,-30.0,0); INSERT INTO "area" VALUES('EPSG','1838','Namibia - west of 12°E','Namibia - onshore west of 12°E.',-18.53,-17.15,11.66,12.0,0); INSERT INTO "area" VALUES('EPSG','1839','Namibia - 12°E to 14°E','Namibia - onshore between 12°E and 14°E.',-21.9,-16.95,12.0,14.01,0); INSERT INTO "area" VALUES('EPSG','1840','Namibia - 14°E to 16°E','Namibia - onshore between 14°E and 16°E.',-28.3,-17.38,14.0,16.0,0); INSERT INTO "area" VALUES('EPSG','1841','Namibia - 16°E to 18°E','Namibia - onshore between 16°E and 18°E.',-28.83,-17.38,15.99,18.01,0); INSERT INTO "area" VALUES('EPSG','1842','Namibia - 18°E to 20°E','Namibia - between 18°E and 20°E.',-28.97,-17.38,18.0,20.0,0); INSERT INTO "area" VALUES('EPSG','1843','Namibia - 20°E to 22°E','Namibia - between 20°E and 22°E.',-22.01,-17.85,19.99,22.0,0); INSERT INTO "area" VALUES('EPSG','1844','Namibia - 22°E to 24°E','Namibia - between 22°E and 24°E.',-18.49,-17.52,21.99,24.0,0); INSERT INTO "area" VALUES('EPSG','1845','Namibia - east of 24°E','Namibia - east of 24°E.',-18.18,-17.47,24.0,25.27,0); INSERT INTO "area" VALUES('EPSG','1846','Sudan - south - west of 30°E','Sudan south - west of 30°E.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1847','Sudan - south - east of 30°E','Sudan south - east of 30°E.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','1848','Madagascar - nearshore - west of 48°E','Madagascar - nearshore west of 48°E.',-26.59,-13.0,42.53,48.0,0); INSERT INTO "area" VALUES('EPSG','1849','Madagascar - nearshore - east of 48°E','Madagascar - nearshore east of 48°E.',-24.21,-11.69,48.0,51.03,0); INSERT INTO "area" VALUES('EPSG','1850','UAE - Abu Dhabi - onshore west of 54°E','United Arab Emirates (UAE) - Abu Dhabi onshore west of 54°E.',22.76,24.32,51.56,54.01,0); INSERT INTO "area" VALUES('EPSG','1851','Malaysia - East Malaysia onshore','Malaysia - onshore East Malaysia (Sabah; Sarawak).',0.85,7.41,109.54,119.33,0); INSERT INTO "area" VALUES('EPSG','1852','Asia - Brunei and East Malaysia - 108°E to 114°E','Brunei - offshore west of 114°E; Malaysia - East Malaysia (Sarawak) onshore and offshore west of 114°E).',0.85,7.37,109.31,114.0,0); INSERT INTO "area" VALUES('EPSG','1853','Asia - Brunei and East Malaysia - 114°E to 120°E','Brunei - onshore and offshore east of 114°E; Malaysia - East Malaysia (Sabah, Sarawak) onshore and offshore east of 114°E).',1.43,7.67,114.0,119.61,0); INSERT INTO "area" VALUES('EPSG','1854','Japan - zone I','Japan - onshore - Kyushu west of approximately 130°E - Nagasaki-ken; islands of Kagoshima-ken between 27°N and 32°N and between 128°18''E and 130°E (between 128°18''E and 30°13''E for Amami islands).',26.96,34.74,128.17,130.46,0); INSERT INTO "area" VALUES('EPSG','1855','Japan - zone II','Japan - onshore - Kyushu east of approximately 130°E - Fukuoka-ken; Saga-ken; Kumamoto-ken; Oita-ken; Miyazaki-ken; Kagoshima-ken (except for area within Japan Plane Rectangular Coordinate System zone I).',30.18,33.99,129.76,132.05,0); INSERT INTO "area" VALUES('EPSG','1856','Japan - zone III','Japan - onshore - Honshu west of approximately 133°15''E - Yamaguchi-ken; Shimane-ken; Hiroshima-ken.',33.72,36.38,130.81,133.49,0); INSERT INTO "area" VALUES('EPSG','1857','Japan - zone IV','Japan - onshore - Shikoku - Kagawa-ken; Ehime-ken; Tokushima-ken; Kochi-ken.',32.69,34.45,131.95,134.81,0); INSERT INTO "area" VALUES('EPSG','1858','Japan - zone V','Japan - onshore - Honshu between approximately 133°15''E and 135°10''E - Hyogo-ken; Tottori-ken; Okayama-ken.',34.13,35.71,133.13,135.47,0); INSERT INTO "area" VALUES('EPSG','1859','Japan - zone VI','Japan - onshore - Honshu between approximately 135°10''E and 136°45''E - Kyoto-fu; Osaka-fu; Fukui-ken; Shiga-ken; Mie-ken; Nara-ken; Wakayama-ken.',33.4,36.33,134.86,136.99,0); INSERT INTO "area" VALUES('EPSG','1860','Japan - zone VII','Japan - onshore - Honshu between approximately 136°15''E and 137°45''E - Ishikawa-ken; Toyama-ken; Gifu-ken; Aichi-ken.',34.51,37.58,136.22,137.84,0); INSERT INTO "area" VALUES('EPSG','1861','Japan - zone VIII','Japan - onshore - Honshu between approximately 137°45''E and 139°E - Niigata-ken; Nagano-ken; Yamanashi-ken; Shizuoka-ken.',34.54,38.58,137.32,139.91,0); INSERT INTO "area" VALUES('EPSG','1862','Japan - zone IX','Japan - onshore - Honshu - Tokyo-to. (Excludes offshore island areas of Tokyo-to covered by Japan Plane Rectangular Coordinate System zones XIV, XVIII and XIX).',29.31,37.98,138.4,141.11,0); INSERT INTO "area" VALUES('EPSG','1863','Japan - zone X','Japan - onshore - Honshu north of 38°N approximately - Aomori-ken; Akita-ken; Yamagata-ken; Iwate-ken; Miyagi-ken.',37.73,41.58,139.49,142.14,0); INSERT INTO "area" VALUES('EPSG','1864','Japan - zone XI','Japan - onshore - Hokkaido west of approximately 141°E - Otaru city; Hakodate city; Date city; Usu-gun and Abuta-gun of Iburi-shicho; Hiyama-shicho; Shiribeshi-shicho; Oshima-shicho.',41.34,43.42,139.34,141.46,0); INSERT INTO "area" VALUES('EPSG','1865','Japan - zone XII','Japan - onshore - Hokkaido between approximately 141°E and 143°E - Sapporo city; Asahikawa city; Wakkanai city; Rumoi city; Bibai city; Yubari city; Iwamizawa city; Tomakomai city; Muroran city; Shibetsu city; Nayoro city; Ashibetsu city; Akabira city; Mikasa city; Takikawa city; Sunagawa city; Ebetsu city; Chitose city; Utashinai city; Fukagawa city; Monbetsu city; Furano city; Noboribetsu city; Eniwa city; Ishikari-shicho; Monbetsu-gun of Abashiri-shicho; Kamikawa-shicho; Soya-shicho; Hidaka-shicho; Iburi-shicho (except Usu-gun and Abuta-gun); Sorachi-shicho; Rumoi-shicho.',42.15,45.54,140.89,143.61,0); INSERT INTO "area" VALUES('EPSG','1866','Japan - zone XIII','Japan - onshore - Hokkaido east of approximately 143°E - Kitami city; Obihiro city; Kushiro city; Abashiri city; Nemuro city; Nemuro-shicho; Kushiro-shicho; Abashiri-shicho (except Monbetsu-gun); Tokachi-shicho.',41.87,44.4,142.61,145.87,0); INSERT INTO "area" VALUES('EPSG','1867','Japan - zone XIV','Japan - onshore - Tokyo-to south of 28°N and between 140°30''E and 143°E.',24.67,27.8,141.2,142.33,0); INSERT INTO "area" VALUES('EPSG','1868','Japan - zone XV','Japan - onshore - Okinawa-ken between 126°E and 130°E.',26.02,26.91,126.63,128.4,0); INSERT INTO "area" VALUES('EPSG','1869','Japan - zone XVI','Japan - onshore - Okinawa-ken west of 126°E.',23.98,24.94,122.83,125.51,0); INSERT INTO "area" VALUES('EPSG','1870','Japan - zone XVII','Japan - onshore Okinawa-ken east of 130°E.',24.4,26.01,131.12,131.38,0); INSERT INTO "area" VALUES('EPSG','1871','Japan - zone XVIII','Japan - onshore - Tokyo-to south of 28°N and west of 140°30''E.',20.37,20.48,136.02,136.16,0); INSERT INTO "area" VALUES('EPSG','1872','Japan - Minamitori-shima (Marcus Island) - onshore','Japan - onshore - Tokyo-to south of 28°N and east of 143°E - Minamitori-shima (Marcus Island).',24.22,24.35,153.91,154.05,0); INSERT INTO "area" VALUES('EPSG','1873','World - N hemisphere - 180°W to 174°W','Between 180°W and 174°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-180.0,-174.0,0); INSERT INTO "area" VALUES('EPSG','1874','World - S hemisphere - 180°W to 174°W','Between 180°W to 174°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-180.0,-174.0,0); INSERT INTO "area" VALUES('EPSG','1875','World - N hemisphere - 174°W to 168°W','Between 174°W and 168°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-174.0,-168.0,0); INSERT INTO "area" VALUES('EPSG','1876','World - S hemisphere - 174°W to 168°W','Between 174°W and 168°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-174.0,-168.0,0); INSERT INTO "area" VALUES('EPSG','1877','World - N hemisphere - 168°W to 162°W','Between 168°W and 162°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-168.0,-162.0,0); INSERT INTO "area" VALUES('EPSG','1878','World - S hemisphere - 168°W to 162°W','Between 168°W and 162°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-168.0,-162.0,0); INSERT INTO "area" VALUES('EPSG','1879','World - N hemisphere - 162°W to 156°W','Between 162°W and 156°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-162.0,-156.0,0); INSERT INTO "area" VALUES('EPSG','1880','World - S hemisphere - 162°W to 156°W','Between 162°W and 156°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-162.0,-156.0,0); INSERT INTO "area" VALUES('EPSG','1881','World - N hemisphere - 156°W to 150°W','Between 156°W and 150°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-156.0,-150.0,0); INSERT INTO "area" VALUES('EPSG','1882','World - S hemisphere - 156°W to 150°W','Between 156°W and 150°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-156.0,-150.0,0); INSERT INTO "area" VALUES('EPSG','1883','World - N hemisphere - 150°W to 144°W','Between 150°W and 144°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-150.0,-144.0,0); INSERT INTO "area" VALUES('EPSG','1884','World - S hemisphere - 150°W to 144°W','Between 150°W and 144°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-150.0,-144.0,0); INSERT INTO "area" VALUES('EPSG','1885','World - N hemisphere - 144°W to 138°W','Between 144°W and 138°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-144.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','1886','World - S hemisphere - 144°W to 138°W','Between 144°W and 138°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-144.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','1887','World - N hemisphere - 138°W to 132°W','Between 138°W and 132°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-138.0,-132.0,0); INSERT INTO "area" VALUES('EPSG','1888','World - S hemisphere - 138°W to 132°W','Between 138°W and 132°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-138.0,-132.0,0); INSERT INTO "area" VALUES('EPSG','1889','World - N hemisphere - 132°W to 126°W','Between 132°W and 126°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-132.0,-126.0,0); INSERT INTO "area" VALUES('EPSG','1890','World - S hemisphere - 132°W to 126°W','Between 132°W and 126°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-132.0,-126.0,0); INSERT INTO "area" VALUES('EPSG','1891','World - N hemisphere - 126°W to 120°W','Between 126°W and 120°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-126.0,-120.0,0); INSERT INTO "area" VALUES('EPSG','1892','World - S hemisphere - 126°W to 120°W','Between 126°W and 120°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-126.0,-120.0,0); INSERT INTO "area" VALUES('EPSG','1893','World - N hemisphere - 120°W to 114°W','Between 120°W and 114°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-120.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','1894','World - S hemisphere - 120°W to 114°W','Between 120°W and 114°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-120.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','1895','World - N hemisphere - 114°W to 108°W','Between 114°W and 108°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-114.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','1896','World - S hemisphere - 114°W to 108°W','Between 114°W and 108°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-114.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','1897','World - N hemisphere - 108°W to 102°W','Between 108°W and 102°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-108.0,-102.0,0); INSERT INTO "area" VALUES('EPSG','1898','World - S hemisphere - 108°W to 102°W','Between 108°W and 102°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-108.0,-102.0,0); INSERT INTO "area" VALUES('EPSG','1899','World - N hemisphere - 102°W to 96°W','Between 102°W and 96°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-102.0,-96.0,0); INSERT INTO "area" VALUES('EPSG','1900','World - S hemisphere - 102°W to 96°W','Between 102°W and 96°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-102.0,-96.0,0); INSERT INTO "area" VALUES('EPSG','1901','World - N hemisphere - 96°W to 90°W','Between 96°W and 90°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-96.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','1902','World - S hemisphere - 96°W to 90°W','Between 96°W and 90°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-96.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','1903','World - N hemisphere - 90°W to 84°W','Between 90°W and 84°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-90.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','1904','World - S hemisphere - 90°W to 84°W','Between 90°W and 84°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-90.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','1905','World - N hemisphere - 84°W to 78°W','Between 84°W and 78°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','1906','World - S hemisphere - 84°W to 78°W','Between 84°W and 78°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','1907','World - N hemisphere - 78°W to 72°W','Between 78°W and 72°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','1908','World - S hemisphere - 78°W to 72°W','Between 78°W and 72°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','1909','World - N hemisphere - 72°W to 66°W','Between 72°W and 66°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','1910','World - S hemisphere - 72°W to 66°W','Between 72°W and 66°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','1911','World - N hemisphere - 66°W to 60°W','Between 66°W and 60°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','1912','World - S hemisphere - 66°W to 60°W','Between 66°W and 60°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','1913','World - N hemisphere - 60°W to 54°W','Between 60°W and 54°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','1914','World - S hemisphere - 60°W to 54°W','Between 60°W and 54°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','1915','World - N hemisphere - 54°W to 48°W','Between 54°W and 48°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','1916','World - S hemisphere - 54°W to 48°W','Between 54°W and 48°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','1917','World - N hemisphere - 48°W to 42°W','Between 48°W and 42°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-48.0,-42.0,0); INSERT INTO "area" VALUES('EPSG','1918','World - S hemisphere - 48°W to 42°W','Between 48°W and 42°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-48.0,-42.0,0); INSERT INTO "area" VALUES('EPSG','1919','World - N hemisphere - 42°W to 36°W','Between 42°W and 36°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-42.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','1920','World - S hemisphere - 42°W to 36°W','Between 42°W and 36°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-42.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','1921','World - N hemisphere - 36°W to 30°W','Between 36°W and 30°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-36.0,-30.0,0); INSERT INTO "area" VALUES('EPSG','1922','World - S hemisphere - 36°W to 30°W','Between 36°W and 30°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-36.0,-30.0,0); INSERT INTO "area" VALUES('EPSG','1923','World - N hemisphere - 30°W to 24°W','Between 30°W and 24°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-30.0,-24.0,0); INSERT INTO "area" VALUES('EPSG','1924','World - S hemisphere - 30°W to 24°W','Between 30°W and 24°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-30.0,-24.0,0); INSERT INTO "area" VALUES('EPSG','1925','World - N hemisphere - 24°W to 18°W','Between 24°W and 18°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-24.0,-18.0,0); INSERT INTO "area" VALUES('EPSG','1926','World - S hemisphere - 24°W to 18°W','Between 24°W and 18°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-24.0,-18.0,0); INSERT INTO "area" VALUES('EPSG','1927','World - N hemisphere - 18°W to 12°W','Between 18°W and 12°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-18.0,-12.0,0); INSERT INTO "area" VALUES('EPSG','1928','World - S hemisphere - 18°W to 12°W','Between 18°W and 12°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-18.0,-12.0,0); INSERT INTO "area" VALUES('EPSG','1929','World - N hemisphere - 12°W to 6°W','Between 12°W and 6°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-12.0,-6.0,0); INSERT INTO "area" VALUES('EPSG','1930','World - S hemisphere - 12°W to 6°W','Between 12°W and 6°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-12.0,-6.0,0); INSERT INTO "area" VALUES('EPSG','1931','World - N hemisphere - 6°W to 0°W','Between 6°W and 0°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-6.0,0.0,0); INSERT INTO "area" VALUES('EPSG','1932','World - S hemisphere - 6°W to 0°W','Between 6°W and 0°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-6.0,0.0,0); INSERT INTO "area" VALUES('EPSG','1933','World - N hemisphere - 0°E to 6°E','Between 0°E and 6°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,0.0,6.0,0); INSERT INTO "area" VALUES('EPSG','1934','World - S hemisphere - 0°E to 6°E','Between 0°E and 6°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,0.0,6.0,0); INSERT INTO "area" VALUES('EPSG','1935','World - N hemisphere - 6°E to 12°E','Between 6°E and 12°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,6.0,12.0,0); INSERT INTO "area" VALUES('EPSG','1936','World - S hemisphere - 6°E to 12°E','Between 6°E and 12°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,6.0,12.0,0); INSERT INTO "area" VALUES('EPSG','1937','World - N hemisphere - 12°E to 18°E','Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','1938','World - S hemisphere - 12°E to 18°E','Between 12°E and 18°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','1939','World - N hemisphere - 18°E to 24°E','Between 18°E and 24°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,18.0,24.0,0); INSERT INTO "area" VALUES('EPSG','1940','World - S hemisphere - 18°E to 24°E','Between 18°E and 24°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,18.0,24.0,0); INSERT INTO "area" VALUES('EPSG','1941','World - N hemisphere - 24°E to 30°E','Between 24°E and 30°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,24.0,30.0,0); INSERT INTO "area" VALUES('EPSG','1942','World - S hemisphere - 24°E to 30°E','Between 24°E and 30°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,24.0,30.0,0); INSERT INTO "area" VALUES('EPSG','1943','World - N hemisphere - 30°E to 36°E','Between 30°E and 36°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,30.0,36.0,0); INSERT INTO "area" VALUES('EPSG','1944','World - S hemisphere - 30°E to 36°E','Between 30°E and 36°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,30.0,36.0,0); INSERT INTO "area" VALUES('EPSG','1945','World - N hemisphere - 36°E to 42°E','Between 36°E and 42°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','1946','World - S hemisphere - 36°E to 42°E','Between 36°E and 42°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','1947','World - N hemisphere - 42°E to 48°E','Between 42°E and 48°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,42.0,48.0,0); INSERT INTO "area" VALUES('EPSG','1948','World - S hemisphere - 42°E to 48°E','Between 42°E and 48°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,42.0,48.0,0); INSERT INTO "area" VALUES('EPSG','1949','World - N hemisphere - 48°E to 54°E','Between 48°E and 54°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,48.0,54.0,0); INSERT INTO "area" VALUES('EPSG','1950','World - S hemisphere - 48°E to 54°E','Between 48°E and 54°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,48.0,54.0,0); INSERT INTO "area" VALUES('EPSG','1951','World - N hemisphere - 54°E to 60°E','Between 54°E and 60°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,54.0,60.0,0); INSERT INTO "area" VALUES('EPSG','1952','World - S hemisphere - 54°E to 60°E','Between 54°E and 60°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,54.0,60.0,0); INSERT INTO "area" VALUES('EPSG','1953','World - N hemisphere - 60°E to 66°E','Between 60°E and 66°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,60.0,66.0,0); INSERT INTO "area" VALUES('EPSG','1954','World - S hemisphere - 60°E to 66°E','Between 60°E and 66°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,60.0,66.0,0); INSERT INTO "area" VALUES('EPSG','1955','World - N hemisphere - 66°E to 72°E','Between 66°E and 72°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,66.0,72.0,0); INSERT INTO "area" VALUES('EPSG','1956','World - S hemisphere - 66°E to 72°E','Between 66°E and 72°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,66.0,72.0,0); INSERT INTO "area" VALUES('EPSG','1957','World - N hemisphere - 72°E to 78°E','Between 72°E and 78°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,72.0,78.0,0); INSERT INTO "area" VALUES('EPSG','1958','World - S hemisphere - 72°E to 78°E','Between 72°E and 78°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,72.0,78.0,0); INSERT INTO "area" VALUES('EPSG','1959','World - N hemisphere - 78°E to 84°E','Between 78°E and 84°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,78.0,84.0,0); INSERT INTO "area" VALUES('EPSG','1960','World - S hemisphere - 78°E to 84°E','Between 78°E and 84°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,78.0,84.0,0); INSERT INTO "area" VALUES('EPSG','1961','World - N hemisphere - 84°E to 90°E','Between 84°E and 90°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,84.0,90.0,0); INSERT INTO "area" VALUES('EPSG','1962','World - S hemisphere - 84°E to 90°E','Between 84°E and 90°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,84.0,90.0,0); INSERT INTO "area" VALUES('EPSG','1963','World - N hemisphere - 90°E to 96°E','Between 90°E and 96°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,90.0,96.0,0); INSERT INTO "area" VALUES('EPSG','1964','World - S hemisphere - 90°E to 96°E','Between 90°E and 96°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,90.0,96.0,0); INSERT INTO "area" VALUES('EPSG','1965','World - N hemisphere - 96°E to 102°E','Between 96°E and 102°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,96.0,102.0,0); INSERT INTO "area" VALUES('EPSG','1966','World - S hemisphere - 96°E to 102°E','Between 96°E and 102°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,96.0,102.0,0); INSERT INTO "area" VALUES('EPSG','1967','World - N hemisphere - 102°E to 108°E','Between 102°E and 108°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','1968','World - S hemisphere - 102°E to 108°E','Between 102°E and 108°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','1969','World - N hemisphere - 108°E to 114°E','Between 108°E and 114°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','1970','World - S hemisphere - 108°E to 114°E','Between 108°E and 114°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','1971','World - N hemisphere - 114°E to 120°E','Between 114°E and 120°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','1972','World - S hemisphere - 114°E to 120°E','Between 114°E and 120°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','1973','World - N hemisphere - 120°E to 126°E','Between 120°E and 126°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','1974','World - S hemisphere - 120°E to 126°E','Between 120°E and 126°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','1975','World - N hemisphere - 126°E to 132°E','Between 126°E and 132°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','1976','World - S hemisphere - 126°E to 132°E','Between 126°E and 132°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','1977','World - N hemisphere - 132°E to 138°E','Between 132°E and 138°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','1978','World - S hemisphere - 132°E to 138°E','Between 132°E and 138°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','1979','World - N hemisphere - 138°E to 144°E','Between 138°E and 144°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','1980','World - S hemisphere - 138°E to 144°E','Between 138°E and 144°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','1981','World - N hemisphere - 144°E to 150°E','Between 144°E and 150°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','1982','World - S hemisphere - 144°E to 150°E','Between 144°E and 150°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','1983','World - N hemisphere - 150°E to 156°E','Between 150°E and 156°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,150.0,156.0,0); INSERT INTO "area" VALUES('EPSG','1984','World - S hemisphere - 150°E to 156°E','Between 150°E and 156°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,150.0,156.0,0); INSERT INTO "area" VALUES('EPSG','1985','World - N hemisphere - 156°E to 162°E','Between 156°E and 162°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,156.0,162.0,0); INSERT INTO "area" VALUES('EPSG','1986','World - S hemisphere - 156°E to 162°E','Between 156°E and 162°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,156.0,162.0,0); INSERT INTO "area" VALUES('EPSG','1987','World - N hemisphere - 162°E to 168°E','Between 162°E and 168°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,162.0,168.0,0); INSERT INTO "area" VALUES('EPSG','1988','World - S hemisphere - 162°E to 168°E','Between 162°E and 168°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,162.0,168.0,0); INSERT INTO "area" VALUES('EPSG','1989','World - N hemisphere - 168°E to 174°E','Between 168°E and 174°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,168.0,174.0,0); INSERT INTO "area" VALUES('EPSG','1990','World - S hemisphere - 168°E to 174°E','Between 168°E and 174°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,168.0,174.0,0); INSERT INTO "area" VALUES('EPSG','1991','World - N hemisphere - 174°E to 180°E','Between 174°E and 180°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,174.0,180.0,0); INSERT INTO "area" VALUES('EPSG','1992','World - S hemisphere - 174°E to 180°E','Between 174°E and 180°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,174.0,180.0,0); INSERT INTO "area" VALUES('EPSG','1993','World - N hemisphere - 102°E to 108°E - by country and WGS 72BE','Between 102°E and 108°E, northern hemisphere between equator and 84°N, onshore and offshore. Vietnam - offshore.',0.0,84.0,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','1994','World - N hemisphere - 108°E to 114°E - by country and WGS 72BE','Between 108°E and 114°E, northern hemisphere between equator and 84°N, onshore and offshore. Vietnam - offshore.',0.0,84.0,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','1995','World - S hemisphere - 108°E to 114°E - by country and WGS 72BE','Between 108°E and 114°E, southern hemisphere between 80°S and equator, onshore and offshore. Indonesia - offshore.',-80.0,0.0,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','1996','World - N hemisphere - north of 60°N','Northern hemisphere - north of 60°N onshore and offshore, including Arctic.',60.0,90.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','1997','World - S hemisphere - south of 60°S','Southern hemisphere - south of 60°S onshore and offshore - Antarctica.',-90.0,-60.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','1998','World - N hemisphere - 0°N to 84°N','Northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','1999','World - S hemisphere - 0°N to 80°S','Southern hemisphere between equator and 80°S, onshore and offshore.',-80.0,0.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','2000','World - N hemisphere - 180°W to 174°W - by country','Between 180°W and 174°W, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation; United States (USA) - Alaska (AK).',0.0,84.0,-180.0,-174.0,0); INSERT INTO "area" VALUES('EPSG','2001','World - S hemisphere - 180°W to 174°W - by country','Between 180°W and 174°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-180.0,-174.0,0); INSERT INTO "area" VALUES('EPSG','2002','World - N hemisphere - 174°W to 168°W - by country','Between 174°W and 168°W, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation; United States (USA) - Alaska (AK).',0.0,84.0,-174.0,-168.0,0); INSERT INTO "area" VALUES('EPSG','2003','World - S hemisphere - 174°W to 168°W - by country','Between 174°W and 168°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-174.0,-168.0,0); INSERT INTO "area" VALUES('EPSG','2004','World - N hemisphere - 168°W to 162°W - by country','Between 168°W and 162°W, northern hemisphere between equator and 84°N, onshore and offshore. United States (USA) - Alaska (AK).',0.0,84.0,-168.0,-162.0,0); INSERT INTO "area" VALUES('EPSG','2005','World - S hemisphere - 168°W to 162°W - by country','Between 168°W and 162°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-168.0,-162.0,0); INSERT INTO "area" VALUES('EPSG','2006','World - N hemisphere - 162°W to 156°W - by country','Between 162°W and 156°W, northern hemisphere between equator and 84°N, onshore and offshore. United States (USA) - Alaska (AK).',0.0,84.0,-162.0,-156.0,0); INSERT INTO "area" VALUES('EPSG','2007','World - S hemisphere - 162°W to 156°W - by country','Between 162°W and 156°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-162.0,-156.0,0); INSERT INTO "area" VALUES('EPSG','2008','World - N hemisphere - 156°W to 150°W - by country','Between 156°W and 150°W, northern hemisphere between equator and 84°N, onshore and offshore. United States (USA) - Alaska (AK).',0.0,84.0,-156.0,-150.0,0); INSERT INTO "area" VALUES('EPSG','2009','World - S hemisphere - 156°W to 150°W - by country','Between 156°W and 150°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-156.0,-150.0,0); INSERT INTO "area" VALUES('EPSG','2010','World - N hemisphere - 150°W to 144°W - by country','Between 150°W and 144°W, northern hemisphere between equator and 84°N, onshore and offshore. United States (USA) - Alaska (AK).',0.0,84.0,-150.0,-144.0,0); INSERT INTO "area" VALUES('EPSG','2011','World - S hemisphere - 150°W to 144°W - by country','Between 150°W and 144°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-150.0,-144.0,0); INSERT INTO "area" VALUES('EPSG','2012','World - N hemisphere - 144°W to 138°W - by country','Between 144°W and 138°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - British Columbia (BC); Yukon. United States (USA) - Alaska (AK).',0.0,84.0,-144.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','2013','World - S hemisphere - 144°W to 138°W - by country','Between 144°W and 138°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-144.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','2014','World - N hemisphere - 138°W to 132°W - by country','Between 138°W and 132°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - British Columbia (BC); Northwest Territiories (NWT); Yukon. United States (USA) - Alaska (AK).',0.0,84.0,-138.0,-132.0,0); INSERT INTO "area" VALUES('EPSG','2015','World - S hemisphere - 138°W to 132°W - by country','Between 138°W and 132°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-138.0,-132.0,0); INSERT INTO "area" VALUES('EPSG','2016','World - N hemisphere - 132°W to 126°W - by country','Between 132°W and 126°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - British Columbia (BC); NorthW Territories (NWT); Yukon. United States (USA) - Alaska (AK).',0.0,84.0,-132.0,-126.0,0); INSERT INTO "area" VALUES('EPSG','2017','World - S hemisphere - 132°W to 126°W - by country','Between 132°W and 126°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-132.0,-126.0,0); INSERT INTO "area" VALUES('EPSG','2018','World - N hemisphere - 126°W to 120°W - by country','Between 126°W and 120°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - British Columbia (BC); Northwest Territories (NWT); Nunavut; Yukon. United States (USA) - Alaska (AK).',0.0,84.0,-126.0,-120.0,0); INSERT INTO "area" VALUES('EPSG','2019','World - S hemisphere - 126°W to 120°W - by country','Between 126°W and 120°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-126.0,-120.0,0); INSERT INTO "area" VALUES('EPSG','2020','World - N hemisphere - 120°W to 114°W - by country','Between 120°W and 114°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - Alberta; British Columbia (BC); Northwest Territories (NWT); Nunavut. Mexico. United States (USA).',0.0,84.0,-120.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','2021','World - S hemisphere - 120°W to 114°W - by country','Between 120°W and 114°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-120.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','2022','World - N hemisphere - 114°W to 108°W - by country','Between 114°W and 108°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - Alberta; Northwest Territories (NWT); Nunavut; Saskatchewan. Mexico. United States (USA).',0.0,84.0,-114.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','2023','World - S hemisphere - 114°W to 108°W - by country','Between 114°W and 108°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-114.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','2024','World - N hemisphere - 108°W to 102°W - by country','Between 108°W and 102°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - Northwest Territories (NWT); Nunavut; Saskatchewan. Mexico. United States (USA).',0.0,84.0,-108.0,-102.0,0); INSERT INTO "area" VALUES('EPSG','2025','World - S hemisphere - 108°W to 102°W - by country','Between 108°W and 102°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-108.0,-102.0,0); INSERT INTO "area" VALUES('EPSG','2026','World - N hemisphere - 102°W to 96°W - by country','Between 102°W and 96°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - Manitoba; Nunavut; Saskatchewan. Mexico. United States (USA).',0.0,84.0,-102.0,-96.0,0); INSERT INTO "area" VALUES('EPSG','2027','World - S hemisphere - 102°W to 96°W - by country','Between 102°W and 96°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-102.0,-96.0,0); INSERT INTO "area" VALUES('EPSG','2028','World - N hemisphere - 96°W to 90°W - by country','Between 96°W and 90°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - Manitoba; Nunavut; Ontario. Ecuador -Galapagos. Guatemala. Mexico. United States (USA).',0.0,84.0,-96.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','2029','World - S hemisphere - 96°W to 90°W - by country','Between 96°W and 90°W, southern hemisphere between 80°S and equator, onshore and offshore. Ecuador - Galapagos.',-80.0,0.0,-96.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','2030','World - N hemisphere - 90°W to 84°W - by country','Between 90°W and 84°W, northern hemisphere between equator and 84°N, onshore and offshore. Belize. Canada - Manitoba; Nunavut; Ontario. Costa Rica. Cuba. Ecuador - Galapagos. El Salvador. Guatemala. Honduras. Mexico. Nicaragua. United States (USA).',0.0,84.0,-90.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','2031','World - S hemisphere - 90°W to 84°W - by country','Between 90°W and 84°W, southern hemisphere between 80°S and equator, onshore and offshore. Ecuador - Galapagos.',-80.0,0.0,-90.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','2032','World - N hemisphere - 84°W to 78°W - by country','Between 84°W and 78°W, northern hemisphere between equator and 84°N, onshore and offshore. Bahamas. Ecuador - north of equator. Canada - Nunavut; Ontario; Quebec. Cayman Islands. Colombia. Costa Rica. Cuba. Jamaica. Nicaragua. Panama. United States (USA).',0.0,84.0,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','2033','World - S hemisphere - 84°W to 78°W - by country','Between 84°W and 78°W, southern hemisphere between 80°S and equator, onshore and offshore. Ecuador. Peru.',-80.0,0.0,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','2034','World - N hemisphere - 78°W to 72°W - by country','Between 78°W and 72°W, northern hemisphere between equator and 84°N, onshore and offshore. Bahamas. Canada - Nunavut; Ontario; Quebec. Colombia. Cuba. Ecuador. Greenland. Haiti. Jamica. Panama. Turks and Caicos Islands. United States (USA). Venezuela.',0.0,84.0,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','2035','World - S hemisphere - 78°W to 72°W - by country','Between 78°W and 72°W, southern hemisphere between 80°S and equator, onshore and offshore. Argentina. Brazil. Chile. Colombia. Ecuador. Peru.',-80.0,0.0,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','2036','World - N hemisphere - 72°W to 66°W - by country','Between 72°W and 66°W, northern hemisphere between equator and 84°N, onshore and offshore. Aruba. Bahamas. Brazil. Canada - New Brunswick (NB); Labrador; Nunavut; Nova Scotia (NS); Quebec. Colombia. Dominican Republic. Greenland. Netherlands Antilles. Puerto Rico. Turks and Caicos Islands. United States. Venezuela.',0.0,84.0,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','2037','World - S hemisphere - 72°W to 66°W - by country','Between 72°W and 66°W, southern hemisphere between 80°S and equator, onshore and offshore. Argentina. Bolivia. Brazil. Chile. Colombia. Peru.',-80.0,0.0,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','2038','World - N hemisphere - 66°W to 60°W - by country','Between 66°W and 60°W, northern hemisphere between equator and 84°N, onshore and offshore. Anguilla. Antigua and Barbuda. Bermuda. Brazil. British Virgin Islands. Canada - New Brunswick; Labrador; Nova Scotia; Nunavut; Prince Edward Island; Quebec. Dominica. Greenland. Grenada. Guadeloupe. Guyana. Martinique. Montserrat. Puerto Rico. St Kitts and Nevis. St Lucia. St Vncent and the Grenadines. Trinidad and Tobago. Venezuela. US Virgin Islands.',0.0,84.0,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','2039','World - S hemisphere - 66°W to 60°W - by country','Between 66°W and 60°W, southern hemisphere between 80°S and equator, onshore and offshore. Argentina. Bolivia. Brazil. Falkland Islands (Malvinas). Paraguay.',-80.0,0.0,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','2040','World - N hemisphere - 60°W to 54°W - by country','Between 60°W and 54°W, northern hemisphere between equator and 84°N, onshore and offshore. Barbados. Brazil. Canada - Newfoundland and Labrador, Quebec. French Guiana. Greenland. Guyana. St Pierre and Miquelon. Suriname.',0.0,84.0,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','2041','World - S hemisphere - 60°W to 54°W - by country','Between 60°W and 54°W, southern hemisphere between 80°S and equator, onshore and offshore. Argentina. Bolivia. Brazil. Falkland Islands (Malvinas). Paraguay. Uruguay.',-80.0,0.0,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','2042','World - N hemisphere - 54°W to 48°W - by country','Between 54°W and 48°W, northern hemisphere between equator and 84°N, onshore and offshore. Brazil. Canada - Newfoundland. French Guiana. Greenland.',0.0,84.0,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','2043','World - S hemisphere - 54°W to 48°W - by country','Between 54°W and 48°W, southern hemisphere between 80°S and equator, onshore and offshore. Brazil. Uruguay.',-80.0,0.0,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','2044','World - N hemisphere - 48°W to 42°W - by country','Between 48°W and 42°W, northern hemisphere between equator and 84°N, onshore and offshore. Greenland.',0.0,84.0,-48.0,-42.0,0); INSERT INTO "area" VALUES('EPSG','2045','World - S hemisphere - 48°W to 42°W - by country','Between 48°W and 42°W, southern hemisphere between 80°S and equator, onshore and offshore. Brazil.',-80.0,0.0,-48.0,-42.0,0); INSERT INTO "area" VALUES('EPSG','2046','World - N hemisphere - 42°W to 36°W - by country','Between 42°W and 36°W, northern hemisphere between equator and 84°N, onshore and offshore. Greenland.',0.0,84.0,-42.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','2047','World - S hemisphere - 42°W to 36°W - by country','Between 42°W and 36°W, southern hemisphere between 80°S and equator, onshore and offshore. Brazil. South Georgia and the South Sandwich Islands.',-80.0,0.0,-42.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','2048','World - N hemisphere - 36°W to 30°W - by country','Between 36°W and 30°W, northern hemisphere between equator and 84°N, onshore and offshore. Greenland.',0.0,84.0,-36.0,-30.0,0); INSERT INTO "area" VALUES('EPSG','2049','World - S hemisphere - 36°W to 30°W - by country','Between 36°W and 30°W, southern hemisphere between 80°S and equator, onshore and offshore. Brazil.',-80.0,0.0,-36.0,-30.0,0); INSERT INTO "area" VALUES('EPSG','2050','World - N hemisphere - 30°W to 24°W - by country','Between 30°W and 24°W, northern hemisphere between equator and 84°N, onshore and offshore. Greenland. Iceland.',0.0,84.0,-30.0,-24.0,0); INSERT INTO "area" VALUES('EPSG','2051','World - S hemisphere - 30°W to 24°W - by country','Between 30°W and 24°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-30.0,-24.0,0); INSERT INTO "area" VALUES('EPSG','2052','World - N hemisphere - 24°W to 18°W - by country','Between 24°W and 18°W, northern hemisphere between equator and 84°N, onshore and offshore. Greenland. Iceland.',0.0,84.0,-24.0,-18.0,0); INSERT INTO "area" VALUES('EPSG','2053','World - S hemisphere - 24°W to 18°W - by country','Between 24°W and 18°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-24.0,-18.0,0); INSERT INTO "area" VALUES('EPSG','2054','World - N hemisphere - 18°W to 12°W - by country','Between 18°W and 12°W, northern hemisphere between equator and 84°N, onshore and offshore. Gambia. Greenland. Guinea. Guinea-Bissau. Iceland. Ireland - offshore Porcupine Basin. Mauritania. Morocco. Senegal. Sierra Leone. Western Sahara.',0.0,84.0,-18.0,-12.0,0); INSERT INTO "area" VALUES('EPSG','2055','World - S hemisphere - 18°W to 12°W - by country','Between 18°W and 12°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-18.0,-12.0,0); INSERT INTO "area" VALUES('EPSG','2056','World - N hemisphere - 12°W to 6°W - by country','Between 12°W and 6°W, northern hemisphere between equator and 84°N, onshore and offshore. Algeria. Côte D''Ivoire (Ivory Coast). Faroe Islands. Guinea. Ireland. Jan Mayen. Mali. Mauritania. Morocco. Portugal. Sierra Leone. Spain. United Kingdom (UK). Western Sahara.',0.0,84.0,-12.0,-6.0,0); INSERT INTO "area" VALUES('EPSG','2057','World - S hemisphere - 12°W to 6°W - by country','Between 12°W and 6°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-12.0,-6.0,0); INSERT INTO "area" VALUES('EPSG','2058','World - N hemisphere - 6°W to 0°W - by country','Between 6°W and 0°W, northern hemisphere between equator and 84°N, onshore and offshore. Algeria. Burkina Faso. Côte'' Ivoire (Ivory Coast). Faroe Islands - offshore. France. Ghana. Gibraltar. Ireland - offshore Irish Sea. Mali. Mauritania. Morocco. Spain. United Kingdom (UK).',0.0,84.0,-6.0,0.0,0); INSERT INTO "area" VALUES('EPSG','2059','World - S hemisphere - 6°W to 0°W - by country','Between 6°W and 0°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-6.0,0.0,0); INSERT INTO "area" VALUES('EPSG','2060','World - N hemisphere - 0°E to 6°E - by country','Between 0°E and 6°E, northern hemisphere between equator and 84°N, onshore and offshore. Algeria. Andorra. Belgium. Benin. Burkina Faso. Denmark - North Sea. France. Germany - North Sea. Ghana. Luxembourg. Mali. Netherlands. Niger. Nigeria. Norway. Spain. Togo. United Kingdom (UK) - North Sea.',0.0,84.0,0.0,6.0,0); INSERT INTO "area" VALUES('EPSG','2061','World - S hemisphere - 0°E to 6°E - by country','Between 0°E and 6°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,0.0,6.0,0); INSERT INTO "area" VALUES('EPSG','2062','World - N hemisphere - 6°E to 12°E - by country','Between 6°E and 12°E, northern hemisphere between equator and 84°N, onshore and offshore. Algeria. Austria. Cameroon. Denmark. Equatorial Guinea. France. Gabon. Germany. Italy. Libya. Liechtenstein. Monaco. Netherlands. Niger. Nigeria. Norway. Sao Tome and Principe. Svalbard. Sweden. Switzerland. Tunisia. Vatican City State.',0.0,84.0,6.0,12.0,0); INSERT INTO "area" VALUES('EPSG','2063','World - S hemisphere - 6°E to 12°E - by country','Between 6°E and 12°E, southern hemisphere between 80°S and equator, onshore and offshore. Angola. Congo. Gabon. Namibia.',-80.0,0.0,6.0,12.0,0); INSERT INTO "area" VALUES('EPSG','2064','World - N hemisphere - 12°E to 18°E - by country','Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Austria. Bosnia and Herzegovina. Cameroon. Central African Republic. Chad. Congo. Croatia. Czechia. Democratic Republic of the Congo (Zaire). Gabon. Germany. Hungary. Italy. Libya. Malta. Niger. Nigeria. Norway. Poland. San Marino. Slovakia. Slovenia. Svalbard. Sweden. Vatican City State.',0.0,84.0,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','2065','World - S hemisphere - 12°E to 18°E - by country','Between 12°E and 18°E, southern hemisphere between 80°S and equator, onshore and offshore. Angola. Congo. Democratic Republic of the Congo (Zaire). Gabon. Namibia. South Africa.',-80.0,0.0,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','2066','World - N hemisphere - 18°E to 24°E - by country','Between 18°E and 24°E, northern hemisphere between equator and 84°N, onshore and offshore. Albania. Belarus. Bosnia and Herzegovina. Bulgaria. Central African Republic. Chad. Croatia. Democratic Republic of the Congo (Zaire). Estonia. Finland. Greece. Hungary. Italy. Kosovo. Latvia. Libya. Lithuania. Montenegro. North Macedonia. Norway, including Svalbard and Bjornoys. Poland. Romania. Russian Federation. Serbia. Slovakia. Sudan. Sweden. Ukraine.',0.0,84.0,18.0,24.0,0); INSERT INTO "area" VALUES('EPSG','2067','World - S hemisphere - 18°E to 24°E - by country','Between 18°E and 24°E, southern hemisphere between 80°S and equator, onshore and offshore. Angola. Botswana. Democratic Republic of the Congo (Zaire). Namibia. South Africa. Zambia.',-80.0,0.0,18.0,24.0,0); INSERT INTO "area" VALUES('EPSG','2068','World - N hemisphere - 24°E to 30°E - by country','Between 24°E and 30°E, northern hemisphere between equator and 84°N, onshore and offshore. Belarus. Bulgaria. Central African Republic. Democratic Republic of the Congo (Zaire). Egypt. Estonia. Finland. Greece. Latvia. Lesotho. Libya. Lithuania. Moldova. Norway. Poland. Romania. Russian Federation. Sudan. Svalbard. Turkey. Uganda. Ukraine.',0.0,84.0,24.0,30.0,0); INSERT INTO "area" VALUES('EPSG','2069','World - S hemisphere - 24°E to 30°E - by country','Between 24°E and 30°E, southern hemisphere between 80°S and equator, onshore and offshore. Botswana. Burundi. Democratic Republic of the Congo (Zaire). Rwanda. South Africa. Tanzania. Uganda. Zambia. Zimbabwe.',-80.0,0.0,24.0,30.0,0); INSERT INTO "area" VALUES('EPSG','2070','World - N hemisphere - 30°E to 36°E - by country','Between 30°E and 36°E, northern hemisphere between equator and 84°N, onshore and offshore. Belarus. Cyprus. Egypt. Ethiopia. Finland. Israel. Jordan. Kenya. Lebanon. Moldova. Norway. Russian Federation. Saudi Arabia. Sudan. Syria. Turkey. Uganda. Ukraine.',0.0,84.0,30.0,36.0,0); INSERT INTO "area" VALUES('EPSG','2071','World - S hemisphere - 30°E to 36°E - by country','Between 30°E and 36°E, southern hemisphere between 80°S and equator, onshore and offshore. Burundi. Eswatini (Swaziland). Kenya. Malawi. Mozambique. Rwanda. South Africa. Tanzania. Uganda. Zambia. Zimbabwe.',-80.0,0.0,30.0,36.0,0); INSERT INTO "area" VALUES('EPSG','2072','World - N hemisphere - 36°E to 42°E - by country','Between 36°E and 42°E, northern hemisphere between equator and 84°N, onshore and offshore. Djibouti. Egypt. Eritrea. Ethiopia. Georgia. Iraq. Jordan. Kenya. Lebanon. Russian Federation. Saudi Arabia. Somalia. Sudan. Syria. Turkey. Ukraine.',0.0,84.0,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','2073','World - S hemisphere - 36°E to 42°E - by country','Between 36°E and 42°E, southern hemisphere between 80°S and equator, onshore and offshore. Kenya. Mozambique. Tanzania.',-80.0,0.0,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','2074','World - N hemisphere - 42°E to 48°E - by country','Between 42°E and 48°E, northern hemisphere between equator and 84°N, onshore and offshore. Armenia. Azerbaijan. Djibouti. Eritrea. Ethiopia. Georgia. Islamic Republic of Iran. Iraq. kazakhstan. Kuwait. Russian Federation. Saudi Arabia. Somalia. Turkey. Yemen.',0.0,84.0,42.0,48.0,0); INSERT INTO "area" VALUES('EPSG','2075','World - S hemisphere - 42°E to 48°E - by country','Between 42°E and 48°E, southern hemisphere between 80°S and equator, onshore and offshore. Madagascar.',-80.0,0.0,42.0,48.0,0); INSERT INTO "area" VALUES('EPSG','2076','World - N hemisphere - 48°E to 54°E - by country','Between 48°E and 54°E, northern hemisphere between equator and 84°N, onshore and offshore. Azerbaijan. Bahrain. Islamic Republic of Iran. Iraq. Kazakhstan. Kuwait. Oman. Qatar. Russian Federation. Saudi Arabia. Somalia. Turkmenistan. United Arab Emirates. Yemen.',0.0,84.0,48.0,54.0,0); INSERT INTO "area" VALUES('EPSG','2077','World - S hemisphere - 48°E to 54°E - by country','Between 48°E and 54°E, southern hemisphere between 80°S and equator, onshore and offshore. Madagascar.',-80.0,0.0,48.0,54.0,0); INSERT INTO "area" VALUES('EPSG','2078','World - N hemisphere - 54°E to 60°E - by country','Between 54°E and 60°E, northern hemisphere between equator and 84°N, onshore and offshore. Islamic Republic of Iran. kazakhstan. Oman. Russian Federation. Saudi Arabia. Turkmenistan. United Arab Emirates. Uzbekistan.',0.0,84.0,54.0,60.0,0); INSERT INTO "area" VALUES('EPSG','2079','World - S hemisphere - 54°E to 60°E - by country','Between 54°E and 60°E, southern hemisphere between 80°S and equator, onshore and offshore. Seychelles.',-80.0,0.0,54.0,60.0,0); INSERT INTO "area" VALUES('EPSG','2080','World - N hemisphere - 60°E to 66°E - by country','Between 60°E and 66°E, northern hemisphere between equator and 84°N, onshore and offshore. Afghanistan. Islamic Republic of Iran. kazakhstan. Pakistan. Russian Federation. Turkmenistan. Uzbekistan.',0.0,84.0,60.0,66.0,0); INSERT INTO "area" VALUES('EPSG','2081','World - S hemisphere - 60°E to 66°E - by country','Between 60°E and 66°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,60.0,66.0,0); INSERT INTO "area" VALUES('EPSG','2082','World - N hemisphere - 66°E to 72°E - by country','Between 66°E and 72°E, northern hemisphere between equator and 84°N, onshore and offshore. Afghanistan. India. Kazakhstan. Kyrgyzstan. Pakistan. Russian Federation. Tajikistan. Uzbekistan.',0.0,84.0,66.0,72.0,0); INSERT INTO "area" VALUES('EPSG','2083','World - S hemisphere - 66°E to 72°E - by country','Between 66°E and 72°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,66.0,72.0,0); INSERT INTO "area" VALUES('EPSG','2084','World - N hemisphere - 72°E to 78°E - by country','Between 72°E and 78°E, northern hemisphere between equator and 84°N, onshore and offshore. China. India. Kazakhstan. Kyrgyzstan. Maldives. Pakistan. Russian Federation. Tajikistan.',0.0,84.0,72.0,78.0,0); INSERT INTO "area" VALUES('EPSG','2085','World - S hemisphere - 72°E to 78°E - by country','Between 72°E and 78°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,72.0,78.0,0); INSERT INTO "area" VALUES('EPSG','2086','World - N hemisphere - 78°E to 84°E - by country','Between 78°E and 84°E, northern hemisphere between equator and 84°N, onshore and offshore. China. India. Kazakhstan. Kyrgyzstan. Nepal. Russian Federation. Sri Lanka.',0.0,84.0,78.0,84.0,0); INSERT INTO "area" VALUES('EPSG','2087','World - S hemisphere - 78°E to 84°E - by country','Between 78°E and 84°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,78.0,84.0,0); INSERT INTO "area" VALUES('EPSG','2088','World - N hemisphere - 84°E to 90°E - by country','Between 84°E and 90°E, northern hemisphere between equator and 84°N, onshore and offshore. Bangladesh. Bhutan. China. India. Kazakhstan. Mongolia. Nepal. Russian Federation.',0.0,84.0,84.0,90.0,0); INSERT INTO "area" VALUES('EPSG','2089','World - S hemisphere - 84°E to 90°E - by country','Between 84°E and 90°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,84.0,90.0,0); INSERT INTO "area" VALUES('EPSG','2090','World - N hemisphere - 90°E to 96°E - by country','Between 90°E and 96°E, northern hemisphere between equator and 84°N, onshore and offshore. Bangladesh. Bhutan. China. Indonesia. Mongolia. Myanmar (Burma). Russian Federation.',0.0,84.0,90.0,96.0,0); INSERT INTO "area" VALUES('EPSG','2091','World - S hemisphere - 90°E to 96°E - by country','Between 90°E and 96°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,90.0,96.0,0); INSERT INTO "area" VALUES('EPSG','2092','World - N hemisphere - 96°E to 102°E - by country','Between 96°E and 102°E, northern hemisphere between equator and 84°N, onshore and offshore. China. Indonesia. Laos. Malaysia - West Malaysia. Mongolia. Myanmar (Burma). Russian Federation. Thailand.',0.0,84.0,96.0,102.0,0); INSERT INTO "area" VALUES('EPSG','2093','World - S hemisphere - 96°E to 102°E - by country','Between 96°E and 102°E, southern hemisphere between 80°S and equator, onshore and offshore. Indonesia.',-80.0,0.0,96.0,102.0,0); INSERT INTO "area" VALUES('EPSG','2094','World - N hemisphere - 102°E to 108°E - by country','Between 102°E and 108°E, northern hemisphere between equator and 84°N, onshore and offshore. Cambodia. China. Indonesia. Laos. Malaysia - West Malaysia. Mongolia. Russian Federation. Singapore. Thailand. Vietnam.',0.0,84.0,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','2095','World - S hemisphere - 102°E to 108°E - by country','Between 102°E and 108°E, southern hemisphere between 80°S and equator, onshore and offshore. Indonesia.',-80.0,0.0,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','2096','World - N hemisphere - 108°E to 114°E - by country','Between 108°E and 114°E, northern hemisphere between equator and 84°N, onshore and offshore. China. Hong Kong. Indonesia. Macao. Malaysia - East Malaysia - Sarawak. Mongolia. Russian Federation. Vietnam.',0.0,84.0,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','2097','World - S hemisphere - 108°E to 114°E - by country','Between 108°E and 114°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Indonesia.',-80.0,0.0,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','2098','World - N hemisphere - 114°E to 120°E - by country','Between 114°E and 120°E, northern hemisphere between equator and 84°N, onshore and offshore. Brunei. China. Hong Kong. Indonesia. Malaysia - East Malaysia - Sarawak. Mongolia. Philippines. Russian Federation. Taiwan.',0.0,84.0,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','2099','World - S hemisphere - 114°E to 120°E - by country','Between 114°E and 120°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Indonesia.',-80.0,0.0,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','2100','World - N hemisphere - 120°E to 126°E - by country','Between 120°E and 126°E, northern hemisphere between equator and 84°N, onshore and offshore. China. Indonesia. Japan. North Korea. Philippines. Russian Federation. South Korea. Taiwan.',0.0,84.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','2101','World - S hemisphere - 120°E to 126°E - by country','Between 120°E and 126°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. East Timor. Indonesia.',-80.0,0.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','2102','World - N hemisphere - 126°E to 132°E - by country','Between 126°E and 132°E, northern hemisphere between equator and 84°N, onshore and offshore. China. Indonesia. Japan. North Korea. Russian Federation. South Korea.',0.0,84.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','2103','World - S hemisphere - 126°E to 132°E - by country','Between 126°E and 132°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. East Timor. Indonesia.',-80.0,0.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','2104','World - N hemisphere - 132°E to 138°E - by country','Between 132°E and 138°E, northern hemisphere between equator and 84°N, onshore and offshore. China. Japan. Russian Federation.',0.0,84.0,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2105','World - S hemisphere - 132°E to 138°E - by country','Between 132°E and 138°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Indonesia.',-80.0,0.0,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2106','World - N hemisphere - 138°E to 144°E - by country','Between 138°E and 144°E, northern hemisphere between equator and 84°N, onshore and offshore. Japan. Russian Federation.',0.0,84.0,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2107','World - S hemisphere - 138°E to 144°E - by country','Between 138°E and 144°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Indonesia. Papua New Guinea.',-80.0,0.0,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2108','World - N hemisphere - 144°E to 150°E - by country','Between 144°E and 150°E, northern hemisphere between equator and 84°N, onshore and offshore. Japan. Russian Federation.',0.0,84.0,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','2109','World - S hemisphere - 144°E to 150°E - by country','Between 144°E and 150°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Papua New Guinea.',-80.0,0.0,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','2110','World - N hemisphere - 150°E to 156°E - by country','Between 150°E and 156°E, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation.',0.0,84.0,150.0,156.0,0); INSERT INTO "area" VALUES('EPSG','2111','World - S hemisphere - 150°E to 156°E - by country','Between 150°E and 156°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Papua New Guinea.',-80.0,0.0,150.0,156.0,0); INSERT INTO "area" VALUES('EPSG','2112','World - N hemisphere - 156°E to 162°E - by country','Between 156°E and 162°E, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation.',0.0,84.0,156.0,162.0,0); INSERT INTO "area" VALUES('EPSG','2113','World - S hemisphere - 156°E to 162°E - by country','Between 156°E and 162°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,156.0,162.0,0); INSERT INTO "area" VALUES('EPSG','2114','World - N hemisphere - 162°E to 168°E - by country','Between 162°E and 168°E, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation.',0.0,84.0,162.0,168.0,0); INSERT INTO "area" VALUES('EPSG','2115','World - S hemisphere - 162°E to 168°E - by country','Between 162°E and 168°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,162.0,168.0,0); INSERT INTO "area" VALUES('EPSG','2116','World - N hemisphere - 168°E to 174°E - by country','Between 168°E and 174°E, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation; United States (USA) - Alaska.',0.0,84.0,168.0,174.0,0); INSERT INTO "area" VALUES('EPSG','2117','World - S hemisphere - 168°E to 174°E - by country','Between 168°E and 174°E, southern hemisphere between 80°S and equator, onshore and offshore. New Zealand.',-80.0,0.0,168.0,174.0,0); INSERT INTO "area" VALUES('EPSG','2118','World - N hemisphere - 174°E to 180°E - by country','Between 174°E and 180°E, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation; United States (USA) - Alaska (AK).',0.0,84.0,174.0,180.0,0); INSERT INTO "area" VALUES('EPSG','2119','World - S hemisphere - 174°E to 180°E - by country','Between 174°E and 180°E, southern hemisphere between 80°S and equator, onshore and offshore. New Zealand.',-80.0,0.0,174.0,180.0,0); INSERT INTO "area" VALUES('EPSG','2120','Guatemala - north of 15°51''30"N','Guatemala - north of 15°51''30"N.',15.85,17.83,-91.86,-88.34,0); INSERT INTO "area" VALUES('EPSG','2121','Guatemala - south of 15°51''30"N','Guatemala - south of 15°51''30"N.',13.69,15.86,-92.29,-88.19,0); INSERT INTO "area" VALUES('EPSG','2122','Europe - 18°W to 12°W and ETRS89 by country','Europe between 18°W and 12°W: Faroe Islands - offshore; Ireland - offshore; Jan Mayen - offshore; Portugal - offshore mainland; Spain - offshore mainland; United Kingdom (UKCS) - offshore.',34.93,72.44,-16.1,-11.99,0); INSERT INTO "area" VALUES('EPSG','2123','Europe - 12°W to 6°W and ETRS89 by country','Europe between 12°W and 6°W: Faroe Islands - onshore and offshore; Ireland - offshore; Jan Mayen - onshore and offshore; Portugal - onshore and offshore; Spain - onshore and offshore; United Kingdom - UKCS offshore.',34.91,74.13,-12.0,-6.0,0); INSERT INTO "area" VALUES('EPSG','2124','Europe - 6°W to 0°W and ETRS89 by country','Europe between 6°W and 0°W: Faroe Islands offshore; Ireland - offshore; Jan Mayen - offshore; Norway including Svalbard - offshore; Spain - onshore and offshore.',35.26,80.53,-6.0,0.0,0); INSERT INTO "area" VALUES('EPSG','2125','Europe - 0°E to 6°E and ETRS89 by country','Europe between 0°E and 6°E: Andorra; Belgium - onshore and offshore; Denmark - offshore; Germany - offshore; Jan Mayen - offshore; Norway including Svalbard - onshore and offshore; Spain - onshore and offshore.',37.0,82.41,0.0,6.01,0); INSERT INTO "area" VALUES('EPSG','2126','Europe - 6°E to 12°E and ETRS89 by country','Europe between 6°E and 12°E: Austria; Belgium; Denmark - onshore and offshore; Germany - onshore and offshore; Norway including - onshore and offshore; Spain - offshore.',38.76,83.92,6.0,12.0,0); INSERT INTO "area" VALUES('EPSG','2127','Europe - 12°E to 18°E and ETRS89 by country','Europe between 12°E and 18°E: Austria; Denmark - offshore and offshore; Germany - onshore and offshore; Norway including Svalbard - onshore and offshore.',46.4,84.01,12.0,18.01,0); INSERT INTO "area" VALUES('EPSG','2128','Europe - 18°E to 24°E and ETRS89 by country','Europe between 18°E and 24°E: Finland - onshore and offshore; Norway including Svalbard - onshore and offshore.',58.84,84.0,18.0,24.0,0); INSERT INTO "area" VALUES('EPSG','2129','Europe - 24°E to 30°E and ETRS89 by country','Europe between 24°E and 30°E: Finland - onshore and offshore; Norway including Svalbard - onshore and offshore.',59.64,84.01,24.0,30.0,0); INSERT INTO "area" VALUES('EPSG','2130','Europe - 30°E to 36°E and ETRS89 by country','Europe between 30°E and 36°E: Finland - onshore and offshore; Norway including Svalbard - onshore and offshore.',61.73,83.89,30.0,36.01,0); INSERT INTO "area" VALUES('EPSG','2131','Europe - 36°E to 42°E and ETRS89 by country','Europe between 36°E and 42°E: Norway including Svalbard - offshore.',71.27,79.09,36.0,39.65,0); INSERT INTO "area" VALUES('EPSG','2132','Europe - 42°E to 48°E and ETRS89 by country','Europe - between 42°E and 48°E.',37.0,41.65,42.0,48.0,1); INSERT INTO "area" VALUES('EPSG','2133','USA - 168°W to 162°W - AK, OCS','United States (USA) - between 168°W and 162°W - Alaska and offshore continental shelf (OCS).',49.52,74.29,-168.0,-161.99,0); INSERT INTO "area" VALUES('EPSG','2134','USA - 162°W to 156°W - AK, OCS','United States (USA) - between 162°W and 156°W - Alaska and offshore continental shelf (OCS).',50.98,74.71,-162.0,-155.99,0); INSERT INTO "area" VALUES('EPSG','2135','USA - 156°W to 150°W - AK, OCS','United States (USA) - between 156°W and 150°W - Alaska and offshore continental shelf (OCS).',52.15,74.71,-156.0,-149.99,0); INSERT INTO "area" VALUES('EPSG','2136','USA - 150°W to 144°W - AK, OCS','United States (USA) - between 150°W and 144°W - Alaska and offshore continental shelf (OCS).',54.05,74.13,-150.0,-143.99,0); INSERT INTO "area" VALUES('EPSG','2137','North America - 144°W to 138°W and NAD27 by country','North America - between 144°W and 138°W. Canada - British Columbia; Yukon. United States (USA) - Alaska. Onshore for western Canada & but onshore and offshore for Alaska.',53.47,73.59,-144.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','2138','North America - 138°W to 132°W and NAD27 by country - onshore','North America - between 138°W and 132°W - onshore. Canada - British Columbia; Northwest Territiories; Yukon. United States (USA) - Alaska. Onshore for Canadian British Columbia & Arctic and for US Pacific coast including Alaska panhandle.',52.58,73.04,-138.0,-132.0,0); INSERT INTO "area" VALUES('EPSG','2139','North America - 132°W to 126°W and NAD27 by country - onshore','North America - between 132°W and 126°W - onshore. Canada - British Columbia; Northwest Territories; Yukon. United States (USA) - Alaska. Onshore for Canadian British Colombia & Arctic coasts and for the US Pacific coast including Alaska panhandle.',49.18,72.03,-132.0,-126.0,0); INSERT INTO "area" VALUES('EPSG','2140','North America - 126°W to 120°W and NAD27 by country - onshore','North America - between 126°W and 120°W - onshore. Canada - British Columbia; Northwest Territories; Nunavut; Yukon. United States (USA) - California; Oregon; Washington.',34.4,77.13,-126.0,-120.0,0); INSERT INTO "area" VALUES('EPSG','2141','North America - 120°W to 114°W and NAD27 by country - onshore','North America - between 120°W and 114°W - onshore. Canada - Alberta; British Columbia; Northwest Territories; Nunavut. Mexico. United States (USA) - California; Idaho; Nevada; Oregon; Washington.',26.93,78.13,-120.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','2142','North America - 114°W to 108°W and NAD27 by country','North America - between 114°W and 108°W. Canada - Alberta; Northwest Territories; Nunavut; Saskatchewan. Mexico. United States (USA) - Arizona; Colorado; Idaho; Montana; New Mexico; Utah; Wyoming. Onshore for Mexican Pacific and Canadian Arctic coasts.',18.66,78.81,-114.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','2143','North America - 108°W to 102°W and NAD27 by country','North America - between 108°W and 102°W. Canada - Northwest Territories; Nunavut; Saskatchewan. Mexico. United States (USA) - Colorado; Montana; Nebraska; New Mexico; North Dakota; Oklahoma; South Dakota; Texas; Wyoming. Onshore for Mexican Pacific and Canadian Arctic coasts.',17.86,79.42,-108.0,-102.0,0); INSERT INTO "area" VALUES('EPSG','2144','North America - 102°W to 96°W and NAD27 by country','North America - between 102°W and 96°W. Canada - Manitoba; Nunavut; Saskatchewan. Mexico. United States (USA) - Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas. Onshore for Mexican Pacific coast and Canadian Arctic but onshore and offshore for US & Mexico Gulf of Mexico and Caribbean coasts.',15.59,80.74,-102.0,-96.0,0); INSERT INTO "area" VALUES('EPSG','2145','North America - 96°W to 90°W and NAD27 by country','North America - between 96°W and 90°W. Canada - Manitoba; Nunavut; Ontario. Guatemala. Mexico. United States (USA) - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin. Onshore for Canadian Arctic and Central America, onshore and offshore for Gulf of Mexico (both US and Mexican sectors).',13.63,81.96,-96.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','2146','North America - 90°W to 84°W and NAD27 by country','North America - between 90°W and 84°W. Belize. Canada - Manitoba; Nunavut; Ontario. Costa Rica. Cuba. El Salvador. Guatemala. Honduras. Mexico. Nicaragua. United States (USA) - Alabama; Arkansas; Florida; Georgia; Indiana; Illinois; Kentucky; Louisiana; Michigan; Minnesota; Mississippi; Missouri; North Carolina; Ohio; Tennessee; Wisconsin. Onshore for Canadian Arctic and Central America, onshore and offshore for Cuba and Gulf of Mexico (both US and Mexican sectors).',9.27,82.54,-90.01,-84.0,0); INSERT INTO "area" VALUES('EPSG','2147','North America - 84°W to 78°W and NAD27 by country','North America - between 84°W and 78°W. Bahamas. Canada - Nunavut; Ontario; Quebec. Costa Rica. Cuba. Honduras. Nicaragua. United States (USA) - Florida; Georgia; Kentucky; Maryland; Michigan; New York; North Carolina; Ohio; Pennsylvania; South Carolina; Tennessee; Virginia; West Virginia. Onshore for Canadian Arctic. onshore and offshore for US east coast and Cuba, with usage in Bahamas onshore plus offshore over internal continental shelf only.',7.98,83.03,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','2148','North America - 78°W to 72°W and NAD27 by country','North America - between 78°W and 72°W. Bahamas. Canada - Nunavut; Ontario; Quebec. Cuba. United States (USA) - Connecticut; Delaware; Maryland; Massachusetts; New Hampshire; New Jersey; New York; North Carolina; Pennsylvania; Virginia; Vermont. Onshore for Canadian arctic. onshore and offshore for US east coast and Cuba, with usage in Bahamas onshore plus offshore over internal continental shelf only.',18.83,83.16,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','2149','North America - 72°W to 66°W and NAD27 by country','North America - between 72°W and 66°W. Canada - New Brunswick; Labrador; Nunavut; Nova Scotia; Quebec. United States (USA) - Connecticut; Maine; Massachusetts; New Hampshire; New York (Long Island); Rhode Island; Vermont. Onshore and offshore for US and Canadian east coasts.',33.61,83.17,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','2150','North America - 66°W to 60°W and NAD27 by country','North America - between 66°W and 60°W - onshore and offshore. Canada - New Brunswick; Labrador; Nova Scotia; Nunavut; Prince Edward Island; Quebec. United States (USA) offshore Atlantic.',39.85,82.97,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','2151','Canada - 60°W to 54°W','Canada between 60°W and 54°W - Newfoundland and Labrador; Nunavut; Quebec.',40.57,84.0,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','2152','Canada - 54°W to 48°W','Canada between 54°W and 48°W onshore and offshore - Newfoundland and Labrador.',43.27,57.65,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','2153','Canada - 48°W to 42°W','Canada offshore Atlantic - east of 48°W.',46.46,49.18,-48.0,-47.74,0); INSERT INTO "area" VALUES('EPSG','2154','USA - Alabama - SPCS - E','United States (USA) - Alabama east of approximately 86°37''W - counties Barbour; Bullock; Calhoun; Chambers; Cherokee; Clay; Cleburne; Coffee; Coosa; Covington; Crenshaw; Dale; De Kalb; Elmore; Etowah; Geneva; Henry; Houston; Jackson; Lee; Macon; Madison; Marshall; Montgomery; Pike; Randolph; Russell; StClair; Talladega; Tallapoosa.',30.99,35.0,-86.79,-84.89,0); INSERT INTO "area" VALUES('EPSG','2155','USA - Alabama - SPCS - W','United States (USA) - Alabama west of approximately 86°37''W - counties Autauga; Baldwin; Bibb; Blount; Butler; Chilton; Choctaw; Clarke; Colbert; Conecuh; Cullman; Dallas; Escambia; Fayette; Franklin; Greene; Hale; Jefferson; Lamar; Lauderdale; Lawrence; Limestone; Lowndes; Marengo; Marion; Mobile; Monroe; Morgan; Perry; Pickens; Shelby; Sumter; Tuscaloosa; Walker; Washington; Wilcox; Winston.',30.14,35.02,-88.48,-86.3,0); INSERT INTO "area" VALUES('EPSG','2156','USA - Alaska - Panhandle','United States (USA) - Alaska - east of 141°W; i.e. Panhandle.',54.61,60.35,-141.0,-129.99,0); INSERT INTO "area" VALUES('EPSG','2157','USA - Alaska - Aleutian Islands','United States (USA) - Alaska - Aleutian Islands onshore.',51.3,54.34,172.42,-164.84,0); INSERT INTO "area" VALUES('EPSG','2158','USA - Alaska - 144°W to 141°W','United States (USA) - Alaska - between 144°W and 141°W, onshore.',59.72,70.16,-144.01,-140.98,0); INSERT INTO "area" VALUES('EPSG','2159','USA - Alaska - 148°W to 144°W','United States (USA) - Alaska - between 148°W and 144°W.',59.72,70.38,-148.0,-144.0,0); INSERT INTO "area" VALUES('EPSG','2160','USA - Alaska - 152°W to 148°W','United States (USA) - Alaska - between 152°W and 148°W, onshore.',59.11,70.63,-152.01,-147.99,0); INSERT INTO "area" VALUES('EPSG','2161','USA - Alaska - 156°W to 152°W','United States (USA) - Alaska - between 156°W and 152°W.',55.72,71.28,-156.0,-151.86,0); INSERT INTO "area" VALUES('EPSG','2162','USA - Alaska - 160°W to 156°W','United States (USA) - Alaska - between 160°W and 156°W, onshore.',54.89,71.4,-160.0,-155.99,0); INSERT INTO "area" VALUES('EPSG','2163','USA - Alaska - 164°W to 160°W','United States (USA) - Alaska - between 164°W and 160°W, onshore.',54.32,70.74,-164.01,-160.0,0); INSERT INTO "area" VALUES('EPSG','2164','USA - Alaska - north of 54.5°N; 168°W to 164°W','United States (USA) - Alaska onshore north of 54°30''N and between 168°W and 164°W.',54.34,69.05,-168.26,-164.0,0); INSERT INTO "area" VALUES('EPSG','2165','USA - Alaska - north of 54.5°N; west of 168°W','United States (USA) - Alaska onshore north of 54°30''N and west of 168°W.',56.49,65.82,-173.16,-168.0,0); INSERT INTO "area" VALUES('EPSG','2166','USA - Arizona - SPCS - C','United States (USA) - Arizona - counties Coconino; Maricopa; Pima; Pinal; Santa Cruz; Yavapai.',31.33,37.01,-113.35,-110.44,0); INSERT INTO "area" VALUES('EPSG','2167','USA - Arizona - SPCS - E','United States (USA) - Arizona - counties Apache; Cochise; Gila; Graham; Greenlee; Navajo.',31.33,37.01,-111.71,-109.04,0); INSERT INTO "area" VALUES('EPSG','2168','USA - Arizona - SPCS - W','United States (USA) - Arizona - counties of La Paz; Mohave; Yuma.',32.05,37.0,-114.81,-112.52,0); INSERT INTO "area" VALUES('EPSG','2169','USA - Arkansas - SPCS - N','United States (USA) - Arkansas - counties of Baxter; Benton; Boone; Carroll; Clay; Cleburne; Conway; Craighead; Crawford; Crittenden; Cross; Faulkner; Franklin; Fulton; Greene; Independence; Izard; Jackson; Johnson; Lawrence; Logan; Madison; Marion; Mississippi; Newton; Perry; Poinsett; Pope; Randolph; Scott; Searcy; Sebastian; Sharp; St Francis; Stone; Van Buren; Washington; White; Woodruff; Yell.',34.67,36.5,-94.62,-89.64,0); INSERT INTO "area" VALUES('EPSG','2170','USA - Arkansas - SPCS - S','United States (USA) - Arkansas - counties Arkansas; Ashley; Bradley; Calhoun; Chicot; Clark; Cleveland; Columbia; Dallas; Desha; Drew; Garland; Grant; Hempstead; Hot Spring; Howard; Jefferson; Lafayette; Lee; Lincoln; Little River; Lonoke; Miller; Monroe; Montgomery; Nevada; Ouachita; Phillips; Pike; Polk; Prairie; Pulaski; Saline; Sevier; Union.',33.01,35.1,-94.48,-90.4,0); INSERT INTO "area" VALUES('EPSG','2171','USA - GoM OCS - west of 96°W','United States (USA) - Gulf of Mexico outer continental shelf (GoM OCS) west of approximately 96°W - protraction areas Corpus Christi; Port Isabel.',25.97,28.43,-97.22,-95.87,0); INSERT INTO "area" VALUES('EPSG','2172','USA - GoM OCS - 96°W to 90°W','United States (USA) - Gulf of Mexico outer continental shelf (GoM OCS) between approximately 96°W and 90°W - protraction areas East Breaks; Alaminos Canyon; Garden Banks; Keathley Canyon; Sigsbee Escarpment; Ewing Bank; Green Canyon; Walker Ridge; Amery Terrace.',25.61,29.73,-96.0,-89.86,0); INSERT INTO "area" VALUES('EPSG','2173','USA - GoM OCS - 90°W to 84°W','United States (USA) - Gulf of Mexico outer continental shelf (GoM OCS) between approximately 90°W and 84°W - protraction areas Mobile; Viosca Knoll; Mississippi Canyon; Atwater Valley; Lund; Lund South; Pensacola; Destin Dome; De Soto Canyon; Lloyd Ridge; Henderson; Florida Plain; Campeche Escarpment; Apalachicola; Florida Middle Ground; The Elbow; Vernon Basin; Howell Hook; Rankin.',23.95,30.25,-90.01,-83.91,0); INSERT INTO "area" VALUES('EPSG','2174','USA - GoM OCS - east of 84°W','United States (USA) - Gulf of Mexico outer continental shelf (GoM OCS) east of approximately 84°W - protraction areas Gainesville; Tarpon Springs; St Petersburg; Charlotte Harbor; Pulley Ridge; Dry Tortugas; Tortugas Valley; Miami; Key West.',23.82,29.94,-84.09,-81.17,0); INSERT INTO "area" VALUES('EPSG','2175','USA - California - SPCS - 1','United States (USA) - California - counties Del Norte; Humboldt; Lassen; Modoc; Plumas; Shasta; Siskiyou; Tehama; Trinity.',39.59,42.01,-124.45,-119.99,0); INSERT INTO "area" VALUES('EPSG','2176','USA - California - SPCS - 2','United States (USA) - California - counties of Alpine; Amador; Butte; Colusa; El Dorado; Glenn; Lake; Mendocino; Napa; Nevada; Placer; Sacramento; Sierra; Solano; Sonoma; Sutter; Yolo; Yuba.',38.02,40.16,-124.06,-119.54,0); INSERT INTO "area" VALUES('EPSG','2177','USA - California - SPCS - 3','United States (USA) - California - counties Alameda; Calaveras; Contra Costa; Madera; Marin; Mariposa; Merced; Mono; San Francisco; San Joaquin; San Mateo; Santa Clara; Santa Cruz; Stanislaus; Tuolumne.',36.73,38.71,-123.02,-117.83,0); INSERT INTO "area" VALUES('EPSG','2178','USA - California - SPCS - 4','United States (USA) - California - counties Fresno; Inyo; Kings; Monterey; San Benito; Tulare.',35.78,37.58,-122.01,-115.62,0); INSERT INTO "area" VALUES('EPSG','2179','USA - California - SPCS27 - 5','United States (USA) - California - counties of Kern; San Bernardino; San Luis Obispo; Santa Barbara; Ventura.',32.76,35.81,-121.43,-114.12,0); INSERT INTO "area" VALUES('EPSG','2180','USA - California - SPCS - 6','United States (USA) - California - counties Imperial; Orange; Riverside; San Diego.',32.53,34.08,-118.15,-114.42,0); INSERT INTO "area" VALUES('EPSG','2181','USA - California - SPCS27 - 7','United States (USA) - California - Los Angeles county.',33.66,34.83,-118.96,-117.63,0); INSERT INTO "area" VALUES('EPSG','2182','USA - California - SPCS83 - 5','United States (USA) - California - counties Kern; Los Angeles; San Bernardino; San Luis Obispo; Santa Barbara; Ventura.',32.76,35.81,-121.42,-114.12,0); INSERT INTO "area" VALUES('EPSG','2183','USA - Colorado - SPCS - C','United States (USA) - Colorado - counties Arapahoe; Chaffee; Cheyenne; Clear Creek; Delta; Denver; Douglas; Eagle; El Paso; Elbert; Fremont; Garfield; Gunnison; Jefferson; Kit Carson; Lake; Lincoln; Mesa; Park; Pitkin; Summit; Teller.',38.14,40.09,-109.06,-102.04,0); INSERT INTO "area" VALUES('EPSG','2184','USA - Colorado - SPCS - N','United States (USA) - Colorado - counties Adams; Boulder; Gilpin; Grand; Jackson; Larimer; Logan; Moffat; Morgan; Phillips; Rio Blanco; Routt; Sedgwick; Washington; Weld; Yuma.',39.56,41.01,-109.06,-102.04,0); INSERT INTO "area" VALUES('EPSG','2185','USA - Colorado - SPCS - S','United States (USA) - Colorado - counties Alamosa; Archuleta; Baca; Bent; Conejos; Costilla; Crowley; Custer; Dolores; Hinsdale; Huerfano; Kiowa; La Plata; Las Animas; Mineral; Montezuma; Montrose; Otero; Ouray; Prowers; Pueblo; Rio Grande; Saguache; San Juan; San Miguel.',36.98,38.68,-109.06,-102.04,0); INSERT INTO "area" VALUES('EPSG','2186','USA - Florida - SPCS - E','United States (USA) - Florida - counties of Brevard; Broward; Clay; Collier; Dade; Duval; Flagler; Glades; Hendry; Highlands; Indian River; Lake; Martin; Monroe; Nassau; Okeechobee; Orange; Osceola; Palm Beach; Putnam; Seminole; St Johns; St Lucie; Volusia.',24.41,30.83,-82.33,-79.97,0); INSERT INTO "area" VALUES('EPSG','2187','USA - Florida - SPCS - N','United States (USA) - Florida - counties of Alachua; Baker; Bay; Bradford; Calhoun; Columbia; Dixie; Escambia; Franklin; Gadsden; Gilchrist; Gulf; Hamilton; Holmes; Jackson; Jefferson; Lafayette; Leon; Liberty; Madison; Okaloosa; Santa Rosa; Suwannee; Taylor; Union; Wakulla; Walton; Washington.',29.21,31.01,-87.63,-82.04,0); INSERT INTO "area" VALUES('EPSG','2188','USA - Florida - SPCS - W','United States (USA) - Florida - counties of Charlotte; Citrus; De Soto; Hardee; Hernando; Hillsborough; Lee; Levy; Manatee; Marion; Pasco; Pinellas; Polk; Sarasota; Sumter.',26.27,29.6,-83.34,-81.13,0); INSERT INTO "area" VALUES('EPSG','2189','USA - Georgia - SPCS - E','United States (USA) - Georgia - counties of Appling; Atkinson; Bacon; Baldwin; Brantley; Bryan; Bulloch; Burke; Camden; Candler; Charlton; Chatham; Clinch; Coffee; Columbia; Dodge; Echols; Effingham; Elbert; Emanuel; Evans; Franklin; Glascock; Glynn; Greene; Hancock; Hart; Jeff Davis; Jefferson; Jenkins; Johnson; Lanier; Laurens; Liberty; Lincoln; Long; Madison; McDuffie; McIntosh; Montgomery; Oglethorpe; Pierce; Richmond; Screven; Stephens; Taliaferro; Tattnall; Telfair; Toombs; Treutlen; Ware; Warren; Washington; Wayne; Wheeler; Wilkes; Wilkinson.',30.36,34.68,-83.47,-80.77,0); INSERT INTO "area" VALUES('EPSG','2190','USA - Georgia - SPCS - W','United States (USA) - Georgia - counties of Baker; Banks; Barrow; Bartow; Ben Hill; Berrien; Bibb; Bleckley; Brooks; Butts; Calhoun; Carroll; Catoosa; Chattahoochee; Chattooga; Cherokee; Clarke; Clay; Clayton; Cobb; Colquitt; Cook; Coweta; Crawford; Crisp; Dade; Dawson; De Kalb; Decatur; Dooly; Dougherty; Douglas; Early; Fannin; Fayette; Floyd; Forsyth; Fulton; Gilmer; Gordon; Grady; Gwinnett; Habersham; Hall; Haralson; Harris; Heard; Henry; Houston; Irwin; Jackson; Jasper; Jones; Lamar; Lee; Lowndes; Lumpkin; Macon; Marion; Meriwether; Miller; Mitchell; Monroe; Morgan; Murray; Muscogee; Newton; Oconee; Paulding; Peach; Pickens; Pike; Polk; Pulaski; Putnam; Quitman; Rabun; Randolph; Rockdale; Schley; Seminole; Spalding; Stewart; Sumter; Talbot; Taylor; Terrell; Thomas; Tift; Towns; Troup; Turner; Twiggs; Union; Upson; Walker; Walton; Webster; White; Whitfield; Wilcox; Worth.',30.62,35.01,-85.61,-82.99,0); INSERT INTO "area" VALUES('EPSG','2191','USA - Idaho - SPCS - C','United States (USA) - Idaho - counties of Blaine; Butte; Camas; Cassia; Custer; Gooding; Jerome; Lemhi; Lincoln; Minidoka; Twin Falls.',41.99,45.7,-115.3,-112.68,0); INSERT INTO "area" VALUES('EPSG','2192','USA - Idaho - SPCS - E','United States (USA) - Idaho - counties of Bannock; Bear Lake; Bingham; Bonneville; Caribou; Clark; Franklin; Fremont; Jefferson; Madison; Oneida; Power; Teton.',41.99,44.75,-113.24,-111.04,0); INSERT INTO "area" VALUES('EPSG','2193','USA - Idaho - SPCS - W','United States (USA) - Idaho - counties of Ada; Adams; Benewah; Boise; Bonner; Boundary; Canyon; Clearwater; Elmore; Gem; Idaho; Kootenai; Latah; Lewis; Nez Perce; Owyhee; Payette; Shoshone; Valley; Washington.',41.99,49.01,-117.24,-114.32,0); INSERT INTO "area" VALUES('EPSG','2194','USA - Illinois - SPCS - E','United States (USA) - Illinois - counties of Boone; Champaign; Clark; Clay; Coles; Cook; Crawford; Cumberland; De Kalb; De Witt; Douglas; Du Page; Edgar; Edwards; Effingham; Fayette; Ford; Franklin; Gallatin; Grundy; Hamilton; Hardin; Iroquois; Jasper; Jefferson; Johnson; Kane; Kankakee; Kendall; La Salle; Lake; Lawrence; Livingston; Macon; Marion; Massac; McHenry; McLean; Moultrie; Piatt; Pope; Richland; Saline; Shelby; Vermilion; Wabash; Wayne; White; Will; Williamson.',37.06,42.5,-89.28,-87.02,0); INSERT INTO "area" VALUES('EPSG','2195','USA - Illinois - SPCS - W','United States (USA) - Illinois - counties of Adams; Alexander; Bond; Brown; Bureau; Calhoun; Carroll; Cass; Christian; Clinton; Fulton; Greene; Hancock; Henderson; Henry; Jackson; Jersey; Jo Daviess; Knox; Lee; Logan; Macoupin; Madison; Marshall; Mason; McDonough; Menard; Mercer; Monroe; Montgomery; Morgan; Ogle; Peoria; Perry; Pike; Pulaski; Putnam; Randolph; Rock Island; Sangamon; Schuyler; Scott; St Clair; Stark; Stephenson; Tazewell; Union; Warren; Washington; Whiteside; Winnebago; Woodford.',36.98,42.51,-91.52,-88.93,0); INSERT INTO "area" VALUES('EPSG','2196','USA - Indiana - SPCS - E','United States (USA) - Indiana - counties of Adams; Allen; Bartholomew; Blackford; Brown; Cass; Clark; De Kalb; Dearborn; Decatur; Delaware; Elkhart; Fayette; Floyd; Franklin; Fulton; Grant; Hamilton; Hancock; Harrison; Henry; Howard; Huntington; Jackson; Jay; Jefferson; Jennings; Johnson; Kosciusko; Lagrange; Madison; Marion; Marshall; Miami; Noble; Ohio; Randolph; Ripley; Rush; Scott; Shelby; St Joseph; Steuben; Switzerland; Tipton; Union; Wabash; Washington; Wayne; Wells; Whitley.',37.95,41.77,-86.59,-84.78,0); INSERT INTO "area" VALUES('EPSG','2197','USA - Indiana - SPCS - W','United States (USA) - Indiana - counties of Benton; Boone; Carroll; Clay; Clinton; Crawford; Daviess; Dubois; Fountain; Gibson; Greene; Hendricks; Jasper; Knox; La Porte; Lake; Lawrence; Martin; Monroe; Montgomery; Morgan; Newton; Orange; Owen; Parke; Perry; Pike; Porter; Posey; Pulaski; Putnam; Spencer; Starke; Sullivan; Tippecanoe; Vanderburgh; Vermillion; Vigo; Warren; Warrick; White.',37.77,41.77,-88.06,-86.24,0); INSERT INTO "area" VALUES('EPSG','2198','USA - Iowa - SPCS - N','United States (USA) - Iowa - counties of Allamakee; Benton; Black Hawk; Boone; Bremer; Buchanan; Buena Vista; Butler; Calhoun; Carroll; Cerro Gordo; Cherokee; Chickasaw; Clay; Clayton; Crawford; Delaware; Dickinson; Dubuque; Emmet; Fayette; Floyd; Franklin; Greene; Grundy; Hamilton; Hancock; Hardin; Howard; Humboldt; Ida; Jackson; Jones; Kossuth; Linn; Lyon; Marshall; Mitchell; Monona; O''Brien; Osceola; Palo Alto; Plymouth; Pocahontas; Sac; Sioux; Story; Tama; Webster; Winnebago; Winneshiek; Woodbury; Worth; Wright.',41.85,43.51,-96.65,-90.15,0); INSERT INTO "area" VALUES('EPSG','2199','USA - Iowa - SPCS - S','United States (USA) - Iowa - counties of Adair; Adams; Appanoose; Audubon; Cass; Cedar; Clarke; Clinton; Dallas; Davis; Decatur; Des Moines; Fremont; Guthrie; Harrison; Henry; Iowa; Jasper; Jefferson; Johnson; Keokuk; Lee; Louisa; Lucas; Madison; Mahaska; Marion; Mills; Monroe; Montgomery; Muscatine; Page; Polk; Pottawattamie; Poweshiek; Ringgold; Scott; Shelby; Taylor; Union; Van Buren; Wapello; Warren; Washington; Wayne.',40.37,42.04,-96.14,-90.14,0); INSERT INTO "area" VALUES('EPSG','2200','USA - Kansas - SPCS - N','United States (USA) - Kansas - counties of Atchison; Brown; Cheyenne; Clay; Cloud; Decatur; Dickinson; Doniphan; Douglas; Ellis; Ellsworth; Geary; Gove; Graham; Jackson; Jefferson; Jewell; Johnson; Leavenworth; Lincoln; Logan; Marshall; Mitchell; Morris; Nemaha; Norton; Osborne; Ottawa; Phillips; Pottawatomie; Rawlins; Republic; Riley; Rooks; Russell; Saline; Shawnee; Sheridan; Sherman; Smith; Thomas; Trego; Wabaunsee; Wallace; Washington; Wyandotte.',38.52,40.01,-102.06,-94.58,0); INSERT INTO "area" VALUES('EPSG','2201','USA - Kansas - SPCS - S','United States (USA) - Kansas - counties of Allen; Anderson; Barber; Barton; Bourbon; Butler; Chase; Chautauqua; Cherokee; Clark; Coffey; Comanche; Cowley; Crawford; Edwards; Elk; Finney; Ford; Franklin; Grant; Gray; Greeley; Greenwood; Hamilton; Harper; Harvey; Haskell; Hodgeman; Kearny; Kingman; Kiowa; Labette; Lane; Linn; Lyon; Marion; McPherson; Meade; Miami; Montgomery; Morton; Neosho; Ness; Osage; Pawnee; Pratt; Reno; Rice; Rush; Scott; Sedgwick; Seward; Stafford; Stanton; Stevens; Sumner; Wichita; Wilson; Woodson.',36.99,38.88,-102.05,-94.6,0); INSERT INTO "area" VALUES('EPSG','2202','USA - Kentucky - SPCS - N','United States (USA) - Kentucky - counties of Anderson; Bath; Boone; Bourbon; Boyd; Bracken; Bullitt; Campbell; Carroll; Carter; Clark; Elliott; Fayette; Fleming; Franklin; Gallatin; Grant; Greenup; Harrison; Henry; Jefferson; Jessamine; Kenton; Lawrence; Lewis; Mason; Menifee; Montgomery; Morgan; Nicholas; Oldham; Owen; Pendleton; Robertson; Rowan; Scott; Shelby; Spencer; Trimble; Woodford.',37.71,39.15,-85.96,-82.47,0); INSERT INTO "area" VALUES('EPSG','2203','USA - Kentucky - SPCS - S','United States (USA) - Kentucky - counties of Adair; Allen; Ballard; Barren; Bell; Boyle; Breathitt; Breckinridge; Butler; Caldwell; Calloway; Carlisle; Casey; Christian; Clay; Clinton; Crittenden; Cumberland; Daviess; Edmonson; Estill; Floyd; Fulton; Garrard; Graves; Grayson; Green; Hancock; Hardin; Harlan; Hart; Henderson; Hickman; Hopkins; Jackson; Johnson; Knott; Knox; Larue; Laurel; Lee; Leslie; Letcher; Lincoln; Livingston; Logan; Lyon; Madison; Magoffin; Marion; Marshall; Martin; McCracken; McCreary; McLean; Meade; Mercer; Metcalfe; Monroe; Muhlenberg; Nelson; Ohio; Owsley; Perry; Pike; Powell; Pulaski; Rockcastle; Russell; Simpson; Taylor; Todd; Trigg; Union; Warren; Washington; Wayne; Webster; Whitley; Wolfe.',36.49,38.17,-89.57,-81.95,0); INSERT INTO "area" VALUES('EPSG','2204','USA - Louisiana - SPCS - N','United States (USA) - Louisiana - counties of Avoyelles; Bienville; Bossier; Caddo; Caldwell; Catahoula; Claiborne; Concordia; De Soto; East Carroll; Franklin; Grant; Jackson; La Salle; Lincoln; Madison; Morehouse; Natchitoches; Ouachita; Rapides; Red River; Richland; Sabine; Tensas; Union; Vernon; Webster; West Carroll; Winn.',30.85,33.03,-94.05,-90.86,0); INSERT INTO "area" VALUES('EPSG','2205','USA - Louisiana - SPCS27 - S','United States (USA) - Louisiana - counties of Acadia; Allen; Ascension; Assumption; Beauregard; Calcasieu; Cameron; East Baton Rouge; East Feliciana; Evangeline; Iberia; Iberville; Jefferson; Jefferson Davis; Lafayette; LaFourche; Livingston; Orleans; Plaquemines; Pointe Coupee; St Bernard; St Charles; St Helena; St James; St John the Baptist; St Landry; St Martin; St Mary; St Tammany; Tangipahoa; Terrebonne; Vermilion; Washington; West Baton Rouge; West Feliciana. Also Gulf of Mexico outer continental shelf (GoM OCS) protraction areas Sabine Pass (LA); West Cameron; East Cameron; Vermilion; South Marsh Island; Eugene Island; Ship Shoal; South Pelto; Bay Marchand; South Timbalier; Grand Isle; West Delta; South Pass; Main Pass; Breton Sound; Chandeleur.',27.82,31.07,-93.94,-87.76,0); INSERT INTO "area" VALUES('EPSG','2206','USA - Maine - SPCS - E','United States (USA) - Maine - counties of Aroostook; Hancock; Knox; Penobscot; Piscataquis; Waldo; Washington.',43.88,47.47,-70.03,-66.91,0); INSERT INTO "area" VALUES('EPSG','2207','USA - Maine - SPCS - W','United States (USA) - Maine - counties of Androscoggin; Cumberland; Franklin; Kennebec; Lincoln; Oxford; Sagadahoc; Somerset; York.',43.04,46.58,-71.09,-69.26,0); INSERT INTO "area" VALUES('EPSG','2208','USA - Massachusetts - SPCS - islands','United States (USA) - Massachusetts offshore - counties of Dukes; Nantucket.',41.19,41.51,-70.91,-69.89,0); INSERT INTO "area" VALUES('EPSG','2209','USA - Massachusetts - SPCS - mainland','United States (USA) - Massachusetts onshore - counties of Barnstable; Berkshire; Bristol; Essex; Franklin; Hampden; Hampshire; Middlesex; Norfolk; Plymouth; Suffolk; Worcester.',41.46,42.89,-73.5,-69.86,0); INSERT INTO "area" VALUES('EPSG','2210','USA - Montana - SPCS27 - C','United States (USA) - Montana - counties of Cascade; Dawson; Fergus; Garfield; Judith Basin; Lake; Lewis and Clark; McCone; Meagher; Mineral; Missoula; Petroleum; Powell; Prairie; Richland; Sanders; Wibaux.',46.17,48.26,-116.06,-104.04,0); INSERT INTO "area" VALUES('EPSG','2211','USA - Montana - SPCS27 - N','United States (USA) - Montana north of approximately 47°50''N - counties of Blaine; Chouteau; Daniels; Flathead; Glacier; Hill; Liberty; Lincoln; Phillips; Pondera; Roosevelt; Sheridan; Teton; Toole; Valley.',47.41,49.01,-116.07,-104.04,0); INSERT INTO "area" VALUES('EPSG','2212','USA - Montana - SPCS27 - S','United States (USA) - Montana - counties of Beaverhead; Big Horn; Broadwater; Carbon; Carter; Custer; Deer Lodge; Fallon; Gallatin; Golden Valley; Granite; Jefferson; Madison; Musselshell; Park; Powder River; Ravalli; Rosebud; Silver Bow; Stillwater; Sweet Grass; Treasure; Wheatland; Yellowstone.',44.35,46.87,-114.57,-104.04,0); INSERT INTO "area" VALUES('EPSG','2213','USA - Minnesota - SPCS - C','United States (USA) - Minnesota - counties of Aitkin; Becker; Benton; Carlton; Cass; Chisago; Clay; Crow Wing; Douglas; Grant; Hubbard; Isanti; Kanabec; Mille Lacs; Morrison; Otter Tail; Pine; Pope; Stearns; Stevens; Todd; Traverse; Wadena; Wilkin.',45.28,47.48,-96.86,-92.29,0); INSERT INTO "area" VALUES('EPSG','2214','USA - Minnesota - SPCS - N','United States (USA) - Minnesota - counties of Beltrami; Clearwater; Cook; Itasca; Kittson; Koochiching; Lake; Lake of the Woods; Mahnomen; Marshall; Norman; Pennington; Polk; Red Lake; Roseau; St Louis.',46.64,49.38,-97.22,-89.49,0); INSERT INTO "area" VALUES('EPSG','2215','USA - Minnesota - SPCS - S','United States (USA) - Minnesota - counties of Anoka; Big Stone; Blue Earth; Brown; Carver; Chippewa; Cottonwood; Dakota; Dodge; Faribault; Fillmore; Freeborn; Goodhue; Hennepin; Houston; Jackson; Kandiyohi; Lac Qui Parle; Le Sueur; Lincoln; Lyon; Martin; McLeod; Meeker; Mower; Murray; Nicollet; Nobles; Olmsted; Pipestone; Ramsey; Redwood; Renville; Rice; Rock; Scott; Sherburne; Sibley; Steele; Swift; Wabasha; Waseca; Washington; Watonwan; Winona; Wright; Yellow Medicine.',43.49,45.59,-96.85,-91.21,0); INSERT INTO "area" VALUES('EPSG','2216','USA - Mississippi - SPCS - E','United States (USA) - Mississippi - counties of Alcorn; Attala; Benton; Calhoun; Chickasaw; Choctaw; Clarke; Clay; Covington; Forrest; George; Greene; Hancock; Harrison; Itawamba; Jackson; Jasper; Jones; Kemper; Lafayette; Lamar; Lauderdale; Leake; Lee; Lowndes; Marshall; Monroe; Neshoba; Newton; Noxubee; Oktibbeha; Pearl River; Perry; Pontotoc; Prentiss; Scott; Smith; Stone; Tippah; Tishomingo; Union; Wayne; Webster; Winston.',30.01,35.01,-89.97,-88.09,0); INSERT INTO "area" VALUES('EPSG','2217','USA - Mississippi - SPCS - W','United States (USA) - Mississippi - counties of Adams; Amite; Bolivar; Carroll; Claiborne; Coahoma; Copiah; De Soto; Franklin; Grenada; Hinds; Holmes; Humphreys; Issaquena; Jefferson; Jefferson Davis; Lawrence; Leflore; Lincoln; Madison; Marion; Montgomery; Panola; Pike; Quitman; Rankin; Sharkey; Simpson; Sunflower; Tallahatchie; Tate; Tunica; Walthall; Warren; Washington; Wilkinson; Yalobusha; Yazoo.',31.0,35.01,-91.65,-89.37,0); INSERT INTO "area" VALUES('EPSG','2218','USA - Missouri - SPCS - C','United States (USA) - Missouri - counties of Adair; Audrain; Benton; Boone; Callaway; Camden; Carroll; Chariton; Christian; Cole; Cooper; Dallas; Douglas; Greene; Grundy; Hickory; Howard; Howell; Knox; Laclede; Linn; Livingston; Macon; Maries; Mercer; Miller; Moniteau; Monroe; Morgan; Osage; Ozark; Pettis; Phelps; Polk; Pulaski; Putnam; Randolph; Saline; Schuyler; Scotland; Shelby; Stone; Sullivan; Taney; Texas; Webster; Wright.',36.48,40.61,-93.79,-91.41,0); INSERT INTO "area" VALUES('EPSG','2219','USA - Missouri - SPCS - E','United States (USA) - Missouri - counties of Bollinger; Butler; Cape Girardeau; Carter; Clark; Crawford; Dent; Dunklin; Franklin; Gasconade; Iron; Jefferson; Lewis; Lincoln; Madison; Marion; Mississippi; Montgomery; New Madrid; Oregon; Pemiscot; Perry; Pike; Ralls; Reynolds; Ripley; Scott; Shannon; St Charles; St Francois; St Louis; Ste. Genevieve; Stoddard; Warren; Washington; Wayne.',35.98,40.61,-91.97,-89.1,0); INSERT INTO "area" VALUES('EPSG','2220','USA - Missouri - SPCS - W','United States (USA) - Missouri - counties of Andrew; Atchison; Barry; Barton; Bates; Buchanan; Caldwell; Cass; Cedar; Clay; Clinton; Dade; Daviess; De Kalb; Gentry; Harrison; Henry; Holt; Jackson; Jasper; Johnson; Lafayette; Lawrence; McDonald; Newton; Nodaway; Platte; Ray; St Clair; Vernon; Worth.',36.48,40.59,-95.77,-93.48,0); INSERT INTO "area" VALUES('EPSG','2221','USA - Nebraska - SPCS27 - N','United States (USA) - Nebraska - counties of Antelope; Blaine; Box Butte; Boyd; Brown; Burt; Cedar; Cherry; Cuming; Dakota; Dawes; Dixon; Garfield; Grant; Holt; Hooker; Keya Paha; Knox; Loup; Madison; Pierce; Rock; Sheridan; Sioux; Stanton; Thomas; Thurston; Wayne; Wheeler.',41.68,43.01,-104.06,-96.07,0); INSERT INTO "area" VALUES('EPSG','2222','USA - Nebraska - SPCS27 - S','United States (USA) - Nebraska - counties of Adams; Arthur; Banner; Boone; Buffalo; Butler; Cass; Chase; Cheyenne; Clay; Colfax; Custer; Dawson; Deuel; Dodge; Douglas; Dundy; Fillmore; Franklin; Frontier; Furnas; Gage; Garden; Gosper; Greeley; Hall; Hamilton; Harlan; Hayes; Hitchcock; Howard; Jefferson; Johnson; Kearney; Keith; Kimball; Lancaster; Lincoln; Logan; McPherson; Merrick; Morrill; Nance; Nemaha; Nuckolls; Otoe; Pawnee; Perkins; Phelps; Platte; Polk; Red Willow; Richardson; Saline; Sarpy; Saunders; Scotts Bluff; Seward; Sherman; Thayer; Valley; Washington; Webster; York.',39.99,42.01,-104.06,-95.3,0); INSERT INTO "area" VALUES('EPSG','2223','USA - Nevada - SPCS - C','United States (USA) - Nevada - counties of Lander; Nye.',36.0,41.0,-118.19,-114.99,0); INSERT INTO "area" VALUES('EPSG','2224','USA - Nevada - SPCS - E','United States (USA) - Nevada - counties of Clark; Elko; Eureka; Lincoln; White Pine.',34.99,42.0,-117.01,-114.03,0); INSERT INTO "area" VALUES('EPSG','2225','USA - Nevada - SPCS - W','United States (USA) - Nevada - counties of Churchill; Douglas; Esmeralda; Humboldt; Lyon; Mineral; Pershing; Storey; Washoe.',36.95,42.0,-120.0,-116.99,0); INSERT INTO "area" VALUES('EPSG','2226','Canada - Newfoundland - east of 54.5°W','Canada - Newfoundland - onshore east of 54°30''W.',46.56,49.71,-54.5,-52.54,0); INSERT INTO "area" VALUES('EPSG','2227','Canada - Newfoundland and Labrador - 57.5°W to 54.5°W','Canada - Newfoundland and Labrador between 57°30''W and 54°30''W.',46.81,54.71,-57.5,-54.49,0); INSERT INTO "area" VALUES('EPSG','2228','USA - New Mexico - SPCS - E','United States (USA) - New Mexico - counties of Chaves; Colfax; Curry; De Baca; Eddy; Guadalupe; Harding; Lea; Mora; Quay; Roosevelt; San Miguel; Union.',32.0,37.0,-105.72,-102.99,0); INSERT INTO "area" VALUES('EPSG','2229','USA - New Mexico - SPCS27 - C','United States (USA) - New Mexico - counties of Bernalillo; Dona Ana; Lincoln; Los Alamos; Otero; Rio Arriba; Sandoval; Santa Fe; Socorro; Taos; Torrance.',31.78,37.0,-107.73,-104.83,0); INSERT INTO "area" VALUES('EPSG','2230','USA - New Mexico - SPCS27 - W','United States (USA) - New Mexico - counties of Catron; Cibola; Grant; Hidalgo; Luna; McKinley; San Juan; Sierra; Valencia.',31.33,37.0,-109.06,-106.32,0); INSERT INTO "area" VALUES('EPSG','2231','USA - New Mexico - SPCS83 - C','United States (USA) - New Mexico - counties of Bernalillo; Dona Ana; Lincoln; Los Alamos; Otero; Rio Arriba; Sandoval; Santa Fe; Socorro; Taos; Torrance; Valencia.',31.78,37.0,-107.73,-104.84,0); INSERT INTO "area" VALUES('EPSG','2232','USA - New Mexico - SPCS83 - W','United States (USA) - New Mexico - counties of Catron; Cibola; Grant; Hidalgo; Luna; McKinley; San Juan; Sierra.',31.33,37.0,-109.06,-106.32,0); INSERT INTO "area" VALUES('EPSG','2233','USA - New York - SPCS - C','United States (USA) - New York - counties of Broome; Cayuga; Chemung; Chenango; Cortland; Jefferson; Lewis; Madison; Oneida; Onondaga; Ontario; Oswego; Schuyler; Seneca; Steuben; Tioga; Tompkins; Wayne; Yates.',41.99,44.41,-77.75,-75.04,0); INSERT INTO "area" VALUES('EPSG','2234','USA - New York - SPCS - E','United States (USA) - New York mainland - counties of Albany; Clinton; Columbia; Delaware; Dutchess; Essex; Franklin; Fulton; Greene; Hamilton; Herkimer; Montgomery; Orange; Otsego; Putnam; Rensselaer; Rockland; Saratoga; Schenectady; Schoharie; St Lawrence; Sullivan; Ulster; Warren; Washington; Westchester.',40.88,45.02,-75.87,-73.23,0); INSERT INTO "area" VALUES('EPSG','2235','USA - New York - SPCS - Long Island','United States (USA) - New York - counties of Bronx; Kings; Nassau; New York; Queens; Richmond; Suffolk.',40.47,41.3,-74.26,-71.8,0); INSERT INTO "area" VALUES('EPSG','2236','USA - New York - SPCS - W','United States (USA) - New York - counties of Allegany; Cattaraugus; Chautauqua; Erie; Genesee; Livingston; Monroe; Niagara; Orleans; Wyoming.',41.99,43.64,-79.77,-77.36,0); INSERT INTO "area" VALUES('EPSG','2237','USA - North Dakota - SPCS - N','United States (USA) - North Dakota - counties of Benson; Bottineau; Burke; Cavalier; Divide; Eddy; Foster; Grand Forks; Griggs; McHenry; McKenzie; McLean; Mountrial; Nelson; Pembina; Pierce; Ramsey; Renville; Rolette; Sheridan; Steele; Towner; Traill; Walsh; Ward; Wells; Williams.',47.15,49.01,-104.07,-96.83,0); INSERT INTO "area" VALUES('EPSG','2238','USA - North Dakota - SPCS - S','United States (USA) - North Dakota - counties of Adams; Barnes; Billings; Bowman; Burleigh; Cass; Dickey; Dunn; Emmons; Golden Valley; Grant; Hettinger; Kidder; La Moure; Logan; McIntosh; Mercer; Morton; Oliver; Ransom; Richland; Sargent; Sioux; Slope; Stark; Stutsman.',45.93,47.83,-104.05,-96.55,0); INSERT INTO "area" VALUES('EPSG','2239','USA - Ohio - SPCS - N','United States (USA) - Ohio - counties of Allen;Ashland; Ashtabula; Auglaize; Carroll; Columbiana; Coshocton; Crawford; Cuyahoga; Defiance; Delaware; Erie; Fulton; Geauga; Hancock; Hardin; Harrison; Henry; Holmes; Huron; Jefferson; Knox; Lake; Logan; Lorain; Lucas; Mahoning; Marion; Medina; Mercer; Morrow; Ottawa; Paulding; Portage; Putnam; Richland; Sandusky; Seneca; Shelby; Stark; Summit; Trumbull; Tuscarawas; Union; Van Wert; Wayne; Williams; Wood; Wyandot.',40.1,42.33,-84.81,-80.51,0); INSERT INTO "area" VALUES('EPSG','2240','USA - Ohio - SPCS - S','United States (USA) - Ohio - counties of Adams; Athens; Belmont; Brown; Butler; Champaign; Clark; Clermont; Clinton; Darke; Fairfield; Fayette; Franklin; Gallia; Greene; Guernsey; Hamilton; Highland; Hocking; Jackson; Lawrence; Licking; Madison; Meigs; Miami; Monroe; Montgomery; Morgan; Muskingum; Noble; Perry; Pickaway; Pike; Preble; Ross; Scioto; Vinton; Warren; Washington.',38.4,40.36,-84.83,-80.7,0); INSERT INTO "area" VALUES('EPSG','2241','USA - Oklahoma - SPCS - N','United States (USA) - Oklahoma - counties of Adair; Alfalfa; Beaver; Blaine; Canadian; Cherokee; Cimarron; Craig; Creek; Custer; Delaware; Dewey; Ellis; Garfield; Grant; Harper; Kay; Kingfisher; Lincoln; Logan; Major; Mayes; Muskogee; Noble; Nowata; Okfuskee; Oklahoma; Okmulgee; Osage; Ottawa; Pawnee; Payne; Roger Mills; Rogers; Sequoyah; Texas; Tulsa; Wagoner; Washington; Woods; Woodward.',35.27,37.01,-103.0,-94.42,0); INSERT INTO "area" VALUES('EPSG','2242','USA - Oklahoma - SPCS - S','United States (USA) - Oklahoma - counties of Atoka; Beckham; Bryan; Caddo; Carter; Choctaw; Cleveland; Coal; Comanche; Cotton; Garvin; Grady; Greer; Harmon; Haskell; Hughes; Jackson; Jefferson; Johnston; Kiowa; Latimer; Le Flore; Love; Marshall; McClain; McCurtain; McIntosh; Murray; Pittsburg; Pontotoc; Pottawatomie; Pushmataha; Seminole; Stephens; Tillman; Washita.',33.62,35.57,-100.0,-94.42,0); INSERT INTO "area" VALUES('EPSG','2243','USA - Oregon - SPCS - N','United States (USA) - Oregon - counties of Baker; Benton; Clackamas; Clatsop; Columbia; Gilliam; Grant; Hood River; Jefferson; Lincoln; Linn; Marion; Morrow; Multnomah; Polk; Sherman; Tillamook; Umatilla; Union; Wallowa; Wasco; Washington; Wheeler; Yamhill.',43.95,46.26,-124.17,-116.47,0); INSERT INTO "area" VALUES('EPSG','2244','USA - Oregon - SPCS - S','United States (USA) - Oregon - counties of Coos; Crook; Curry; Deschutes; Douglas; Harney; Jackson; Josephine; Klamath; Lake; Lane; Malheur.',41.98,44.56,-124.6,-116.9,0); INSERT INTO "area" VALUES('EPSG','2245','USA - Pennsylvania - SPCS - N','United States (USA) - Pennsylvania - counties of Bradford; Cameron; Carbon; Centre; Clarion; Clearfield; Clinton; Columbia; Crawford; Elk; Erie; Forest; Jefferson; Lackawanna; Luzerne; Lycoming; McKean; Mercer; Monroe; Montour; Northumberland; Pike; Potter; Sullivan; Susquehanna; Tioga; Union; Venango; Warren; Wayne; Wyoming.',40.6,42.53,-80.53,-74.7,0); INSERT INTO "area" VALUES('EPSG','2246','USA - Pennsylvania - SPCS - S','United States (USA) - Pennsylvania - counties of Adams; Allegheny; Armstrong; Beaver; Bedford; Berks; Blair; Bucks; Butler; Cambria; Chester; Cumberland; Dauphin; Delaware; Fayette; Franklin; Fulton; Greene; Huntingdon; Indiana; Juniata; Lancaster; Lawrence; Lebanon; Lehigh; Mifflin; Montgomery; Northampton; Perry; Philadelphia; Schuylkill; Snyder; Somerset; Washington; Westmoreland; York.',39.71,41.18,-80.53,-74.72,0); INSERT INTO "area" VALUES('EPSG','2247','USA - South Carolina - SPCS27 - N','United States (USA) - South Carolina - counties of Abbeville; Anderson; Calhoun; Cherokee; Chester; Chesterfield; Darlington; Dillon; Edgefield; Fairfield; Florence; Greenville; Greenwood; Horry; Kershaw; Lancaster; Laurens; Lee; Lexington; Marion; Marlboro; McCormick; Newberry; Oconee; Pickens; Richland; Saluda; Spartanburg; Sumter; Union; York.',33.46,35.21,-83.36,-78.52,0); INSERT INTO "area" VALUES('EPSG','2248','USA - South Carolina - SPCS27 - S','United States (USA) - South Carolina - counties of Aiken; Allendale; Bamberg; Barnwell; Beaufort; Berkeley; Charleston; Clarendon; Colleton; Dorchester; Georgetown; Hampton; Jasper; Orangeburg; Williamsburg.',32.05,33.95,-82.03,-78.95,0); INSERT INTO "area" VALUES('EPSG','2249','USA - South Dakota - SPCS - N','United States (USA) - South Dakota - counties of Beadle; Brookings; Brown; Butte; Campbell; Clark; Codington; Corson; Day; Deuel; Dewey; Edmunds; Faulk; Grant; Hamlin; Hand; Harding; Hyde; Kingsbury; Lawrence; Marshall; McPherson; Meade; Perkins; Potter; Roberts; Spink; Sully; Walworth; Ziebach.',44.14,45.95,-104.07,-96.45,0); INSERT INTO "area" VALUES('EPSG','2250','USA - South Dakota - SPCS - S','United States (USA) - South Dakota - counties of Aurora; Bennett; Bon Homme; Brule; Buffalo; Charles Mix; Clay; Custer; Davison; Douglas; Fall River; Gregory; Haakon; Hanson; Hughes; Hutchinson; Jackson; Jerauld; Jones; Lake; Lincoln; Lyman; McCook; Mellette; Miner; Minnehaha; Moody; Pennington; Sanborn; Shannon; Stanley; Todd; Tripp; Turner; Union; Yankton.',42.48,44.79,-104.06,-96.43,0); INSERT INTO "area" VALUES('EPSG','2251','Caribbean - Puerto Rico and US Virgin Islands','Puerto Rico and US Virgin Islands - onshore and offshore.',14.92,21.86,-68.49,-63.88,0); INSERT INTO "area" VALUES('EPSG','2252','USA - Texas - SPCS - C','United States (USA) - Texas - counties of Anderson; Angelina; Bastrop; Bell; Blanco; Bosque; Brazos; Brown; Burleson; Burnet; Cherokee; Coke; Coleman; Comanche; Concho; Coryell; Crane; Crockett; Culberson; Ector; El Paso; Falls; Freestone; Gillespie; Glasscock; Grimes; Hamilton; Hardin; Houston; Hudspeth; Irion; Jasper; Jeff Davis; Kimble; Lampasas; Lee; Leon; Liberty; Limestone; Llano; Loving; Madison; Mason; McCulloch; McLennan; Menard; Midland; Milam; Mills; Montgomery; Nacogdoches; Newton; Orange; Pecos; Polk; Reagan; Reeves; Robertson; Runnels; Sabine; San Augustine; San Jacinto; San Saba; Schleicher; Shelby; Sterling; Sutton; Tom Green; Travis; Trinity; Tyler; Upton; Walker; Ward; Washington; Williamson; Winkler.',29.78,32.27,-106.66,-93.5,0); INSERT INTO "area" VALUES('EPSG','2253','USA - Texas - SPCS - N','United States (USA) - Texas - counties of: Armstrong; Briscoe; Carson; Castro; Childress; Collingsworth; Dallam; Deaf Smith; Donley; Gray; Hall; Hansford; Hartley; Hemphill; Hutchinson; Lipscomb; Moore; Ochiltree; Oldham; Parmer; Potter; Randall; Roberts; Sherman; Swisher; Wheeler.',34.3,36.5,-103.03,-99.99,0); INSERT INTO "area" VALUES('EPSG','2254','USA - Texas - SPCS - NC','United States (USA) - Texas - counties of: Andrews; Archer; Bailey; Baylor; Borden; Bowie; Callahan; Camp; Cass; Clay; Cochran; Collin; Cooke; Cottle; Crosby; Dallas; Dawson; Delta; Denton; Dickens; Eastland; Ellis; Erath; Fannin; Fisher; Floyd; Foard; Franklin; Gaines; Garza; Grayson; Gregg; Hale; Hardeman; Harrison; Haskell; Henderson; Hill; Hockley; Hood; Hopkins; Howard; Hunt; Jack; Johnson; Jones; Kaufman; Kent; King; Knox; Lamar; Lamb; Lubbock; Lynn; Marion; Martin; Mitchell; Montague; Morris; Motley; Navarro; Nolan; Palo Pinto; Panola; Parker; Rains; Red River; Rockwall; Rusk; Scurry; Shackelford; Smith; Somervell; Stephens; Stonewall; Tarrant; Taylor; Terry; Throckmorton; Titus; Upshur; Van Zandt; Wichita; Wilbarger; Wise; Wood; Yoakum; Young.',31.72,34.58,-103.07,-94.0,0); INSERT INTO "area" VALUES('EPSG','2255','USA - Texas - SPCS27 - S','United States (USA) - Texas - counties of Brooks; Cameron; Duval; Hidalgo; Jim Hogg; Jim Wells; Kenedy; Kleberg; Nueces; San Patricio; Starr; Webb; Willacy; Zapata. Gulf of Mexico outer continental shelf (GoM OCS) protraction areas: South Padre Island; North Padre Island; Mustang Island.',25.83,28.21,-100.2,-95.37,0); INSERT INTO "area" VALUES('EPSG','2256','USA - Texas - SPCS27 - SC','United States (USA) - Texas - counties of Aransas; Atascosa; Austin; Bandera; Bee; Bexar; Brazoria; Brewster; Caldwell; Calhoun; Chambers; Colorado; Comal; De Witt; Dimmit; Edwards; Fayette; Fort Bend; Frio; Galveston; Goliad; Gonzales; Guadalupe; Harris; Hays; Jackson; Jefferson; Karnes; Kendall; Kerr; Kinney; La Salle; Lavaca; Live Oak; Matagorda; Maverick; McMullen; Medina; Presidio; Real; Refugio; Terrell; Uvalde; Val Verde; Victoria; Waller; Wharton; Wilson; Zavala. Gulf of Mexico outer continental shelf (GoM OCS) protraction areas: Matagorda Island; Brazos; Galveston; High Island, Sabine Pass (TX).',27.78,30.67,-105.0,-93.41,0); INSERT INTO "area" VALUES('EPSG','2257','USA - Utah - SPCS - C','United States (USA) - Utah - counties of Carbon; Duchesne; Emery; Grand; Juab; Millard; Salt Lake; Sanpete; Sevier; Tooele; Uintah; Utah; Wasatch.',38.49,41.08,-114.05,-109.04,0); INSERT INTO "area" VALUES('EPSG','2258','USA - Utah - SPCS - N','United States (USA) - Utah - counties of Box Elder; Cache; Daggett; Davis; Morgan; Rich; Summit; Weber.',40.55,42.01,-114.04,-109.04,0); INSERT INTO "area" VALUES('EPSG','2259','USA - Utah - SPCS - S','United States (USA) - Utah - counties of Beaver; Garfield; Iron; Kane; Piute; San Juan; Washington; Wayne.',36.99,38.58,-114.05,-109.04,0); INSERT INTO "area" VALUES('EPSG','2260','USA - Virginia - SPCS - N','United States (USA) - Virginia - counties of Arlington; Augusta; Bath; Caroline; Clarke; Culpeper; Fairfax; Fauquier; Frederick; Greene; Highland; King George; Loudoun; Madison; Orange; Page; Prince William; Rappahannock; Rockingham; Shenandoah; Spotsylvania; Stafford; Warren; Westmoreland.',37.77,39.46,-80.06,-76.51,0); INSERT INTO "area" VALUES('EPSG','2261','USA - Virginia - SPCS - S','United States (USA) - Virginia - counties of Accomack; Albemarle; Alleghany; Amelia; Amherst; Appomattox; Bedford; Bland; Botetourt; Bristol; Brunswick; Buchanan; Buckingham; Campbell; Carroll; Charles City; Charlotte; Chesapeake; Chesterfield; Colonial Heights; Craig; Cumberland; Dickenson; Dinwiddie; Essex; Floyd; Fluvanna; Franklin; Giles; Gloucester; Goochland; Grayson; Greensville; Halifax; Hampton; Hanover; Henrico; Henry; Isle of Wight; James City; King and Queen; King William; Lancaster; Lee; Louisa; Lunenburg; Lynchburg; Mathews; Mecklenburg; Middlesex; Montgomery; Nelson; New Kent; Newport News; Norfolk; Northampton; Northumberland; Norton; Nottoway; Patrick; Petersburg; Pittsylvania; Portsmouth; Powhatan; Prince Edward; Prince George; Pulaski; Richmond; Roanoke; Rockbridge; Russell; Scott; Smyth; Southampton; Suffolk; Surry; Sussex; Tazewell; Washington; Wise; Wythe; York.',36.54,38.28,-83.68,-75.31,0); INSERT INTO "area" VALUES('EPSG','2262','USA - Washington - SPCS27 - N','United States (USA) - Washington - counties of Chelan; Clallam; Douglas; Ferry; Island; Jefferson; King; Kitsap; Lincoln; Okanogan; Pend Oreille; San Juan; Skagit; Snohomish; Spokane; Stevens; Whatcom.',47.08,49.05,-124.79,-117.02,0); INSERT INTO "area" VALUES('EPSG','2263','USA - Washington - SPCS27 - S','United States (USA) - Washington - counties of Adams; Asotin; Benton; Clark; Columbia; Cowlitz; Franklin; Garfield; Grant; Grays Harbor; Kittitas; Klickitat; Lewis; Mason; Pacific; Pierce; Skamania; Thurston; Wahkiakum; Walla Walla; Whitman; Yakima.',45.54,47.96,-124.4,-116.91,0); INSERT INTO "area" VALUES('EPSG','2264','USA - West Virginia - SPCS - N','United States (USA) - West Virginia - counties of Barbour; Berkeley; Brooke; Doddridge; Grant; Hampshire; Hancock; Hardy; Harrison; Jefferson; Marion; Marshall; Mineral; Monongalia; Morgan; Ohio; Pleasants; Preston; Ritchie; Taylor; Tucker; Tyler; Wetzel; Wirt; Wood.',38.76,40.64,-81.76,-77.72,0); INSERT INTO "area" VALUES('EPSG','2265','USA - West Virginia - SPCS - S','United States (USA) - West Virginia - counties of Boone; Braxton; Cabell; Calhoun; Clay; Fayette; Gilmer; Greenbrier; Jackson; Kanawha; Lewis; Lincoln; Logan; Mason; McDowell; Mercer; Mingo; Monroe; Nicholas; Pendleton; Pocahontas; Putnam; Raleigh; Randolph; Roane; Summers; Upshur; Wayne; Webster; Wyoming.',37.2,39.17,-82.65,-79.05,0); INSERT INTO "area" VALUES('EPSG','2266','USA - Wisconsin - SPCS - C','United States (USA) - Wisconsin - counties of Barron; Brown; Buffalo; Chippewa; Clark; Door; Dunn; Eau Claire; Jackson; Kewaunee; Langlade; Lincoln; Marathon; Marinette; Menominee; Oconto; Outagamie; Pepin; Pierce; Polk; Portage; Rusk; Shawano; St Croix; Taylor; Trempealeau; Waupaca; Wood.',43.98,45.8,-92.89,-86.25,0); INSERT INTO "area" VALUES('EPSG','2267','USA - Wisconsin - SPCS - N','United States (USA) - Wisconsin - counties of Ashland; Bayfield; Burnett; Douglas; Florence; Forest; Iron; Oneida; Price; Sawyer; Vilas; Washburn.',45.37,47.31,-92.89,-88.05,0); INSERT INTO "area" VALUES('EPSG','2268','USA - Wisconsin - SPCS - S','United States (USA) - Wisconsin - counties of Adams; Calumet; Columbia; Crawford; Dane; Dodge; Fond Du Lac; Grant; Green; Green Lake; Iowa; Jefferson; Juneau; Kenosha; La Crosse; Lafayette; Manitowoc; Marquette; Milwaukee; Monroe; Ozaukee; Racine; Richland; Rock; Sauk; Sheboygan; Vernon; Walworth; Washington; Waukesha; Waushara; Winnebago.',42.48,44.33,-91.43,-86.95,0); INSERT INTO "area" VALUES('EPSG','2269','USA - Wyoming - SPCS - E','United States (USA) - Wyoming - counties of Albany; Campbell; Converse; Crook; Goshen; Laramie; Niobrara; Platte; Weston.',40.99,45.01,-106.33,-104.05,0); INSERT INTO "area" VALUES('EPSG','2270','USA - Wyoming - SPCS - EC','United States (USA) - Wyoming - counties of Big Horn; Carbon; Johnson; Natrona; Sheridan; Washakie.',40.99,45.01,-108.63,-106.0,0); INSERT INTO "area" VALUES('EPSG','2271','USA - Wyoming - SPCS - W','United States (USA) - Wyoming - counties of Lincoln; Sublette; Teton; Uinta.',40.99,44.67,-111.06,-109.04,0); INSERT INTO "area" VALUES('EPSG','2272','USA - Wyoming - SPCS - WC','United States (USA) - Wyoming - counties of Fremont; Hot Springs; Park; Sweetwater.',40.99,45.01,-111.06,-107.5,0); INSERT INTO "area" VALUES('EPSG','2273','USA - Washington - SPCS83 - N','United States (USA) - Washington - counties of Chelan; Clallam; Douglas; Ferry; Grant north of approximately 47°30''N; Island; Jefferson; King; Kitsap; Lincoln; Okanogan; Pend Oreille; San Juan; Skagit; Snohomish; Spokane; Stevens; Whatcom.',47.08,49.05,-124.79,-117.02,0); INSERT INTO "area" VALUES('EPSG','2274','USA - Washington - SPCS83 - S','United States (USA) - Washington - counties of Adams; Asotin; Benton; Clark; Columbia; Cowlitz; Franklin; Garfield; Grant south of approximately 47°30''N; Grays Harbor; Kittitas; Klickitat; Lewis; Mason; Pacific; Pierce; Skamania; Thurston; Wahkiakum; Walla Walla; Whitman; Yakima.',45.54,47.61,-124.4,-116.91,0); INSERT INTO "area" VALUES('EPSG','2275','Canada - Newfoundland and Labrador - 60°W to 57.5°W','Canada - Newfoundland west of 57°30''W.',47.5,50.54,-59.48,-57.5,0); INSERT INTO "area" VALUES('EPSG','2276','Canada - Quebec and Labrador - 63°W to 60°W','Canada - Quebec and Labrador between 63°W and 60°W.',47.16,58.92,-63.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','2277','Canada - Quebec and Labrador - 66°W to 63°W','Canada - Quebec and Labrador between 66°W and 63°W.',47.95,60.52,-66.0,-63.0,0); INSERT INTO "area" VALUES('EPSG','2278','Canada - Quebec and Labrador - 69°W to 66°W','Canada - Quebec and Labrador between 69°W and 66°W.',47.31,59.0,-69.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','2279','Canada - Quebec and Ontario - 75°W to 72°W','Canada - Quebec between 75°W and 72°W.; Canada - Ontario - east of 75°W.',44.98,62.53,-75.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','2280','Canada - Quebec and Ontario - 78°W to 75°W','Canada - Quebec and Ontario - between 78°W and 75°W.',43.63,62.65,-78.0,-75.0,0); INSERT INTO "area" VALUES('EPSG','2281','Canada - Quebec and Ontario - MTM zone 10','Canada - Quebec west of 78°W; Canada - Ontario - between 79°30''W and 78°W in area to north of 47°N; between 80°15''W and 78°W in area between 46°N and 47°N; between 81°W and 78°W in area south of 46°N.',42.26,62.45,-81.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','2282','Cote d''Ivoire (Ivory Coast) - Abidjan area','Côte d''Ivoire (Ivory Coast) - Abidjan area.',5.15,5.54,-4.22,-3.85,0); INSERT INTO "area" VALUES('EPSG','2283','Australia - Australian Capital Territory','Australia - Australian Capital Territory.',-35.93,-35.12,148.76,149.4,0); INSERT INTO "area" VALUES('EPSG','2284','Australia - Northern Territory','Australia - Northern Territory.',-26.01,-10.86,128.99,138.0,0); INSERT INTO "area" VALUES('EPSG','2285','Australia - Victoria','Australia - Victoria.',-39.2,-33.98,140.96,150.04,0); INSERT INTO "area" VALUES('EPSG','2286','Australia - New South Wales and Victoria','Australia - New South Wales and Victoria.',-39.2,-28.15,140.96,153.69,0); INSERT INTO "area" VALUES('EPSG','2287','Australia - SE Australia (ACT NSW Vic)','Australia - Australian Capital Territory, New South Wales, Victoria.',-39.2,-28.15,140.96,153.69,0); INSERT INTO "area" VALUES('EPSG','2288','American Samoa - Tutuila island','American Samoa - Tutuila island.',-14.43,-14.2,-170.88,-170.51,0); INSERT INTO "area" VALUES('EPSG','2289','American Samoa - Ofu, Olesega and Ta''u islands','American Samoa - Ofu, Olesega and Ta''u islands.',-14.31,-14.11,-169.73,-169.38,0); INSERT INTO "area" VALUES('EPSG','2290','Canada - Quebec, Newfoundland and Labrador - MTM zone 3','Canada - Newfoundland and Labrador between 60°W and 57°30''W; Canada - Quebec east of 60°W.',47.5,55.38,-60.0,-57.1,0); INSERT INTO "area" VALUES('EPSG','2291','Australasia - Australia and PNG - 150°E to 156°E','Australia - onshore and offshore between 150°E and 156°E. Papua New Guinea onshore east of 150°E.',-46.44,-2.32,150.0,156.0,0); INSERT INTO "area" VALUES('EPSG','2292','Asia - Bangladesh; Myanmar - onshore 15°N to 21°N','Bangladesh - onshore south of 21°N; Myanmar (Burma) - onshore between 15°N and 21°N.',15.0,21.01,92.1,100.65,0); INSERT INTO "area" VALUES('EPSG','2293','Myanmar (Burma) - onshore south of 15°N','Myanmar (Burma) - onshore south of 15°N.',9.78,15.0,97.74,99.66,0); INSERT INTO "area" VALUES('EPSG','2294','Asia - Middle East - Iraq zone','Iran - onshore south of 36°N. Iraq - onshore. Kuwait - onshore.',25.02,37.39,38.79,63.34,0); INSERT INTO "area" VALUES('EPSG','2295','Caribbean - Windward and Leeward Islands','Windward Islands - Dominica; Grenada; St Lucia; St Vincent; Leeward Islands - Anguilla; Antigua (excluding Barbuda); Montserrat; St Kitts and Nevis; Barbados.',11.94,18.33,-63.22,-59.37,0); INSERT INTO "area" VALUES('EPSG','2296','Cote d''Ivoire (Ivory Coast) - offshore','Côte d''Ivoire (Ivory Coast) - offshore.',1.02,5.19,-7.55,-3.11,0); INSERT INTO "area" VALUES('EPSG','2297','USA - California - north of 36.5°N','United States (USA) - California north of 36.5°N.',36.5,42.01,-124.44,-116.54,0); INSERT INTO "area" VALUES('EPSG','2298','USA - California - south of 36.5°N','United States (USA) - California south of 36.5°N',32.53,36.5,-121.98,-114.12,0); INSERT INTO "area" VALUES('EPSG','2299','World - N hemisphere - 3-degree CM 003°E','Between 1°30''E and 4°30''E, northern hemisphere.',0.0,84.0,1.5,4.5,0); INSERT INTO "area" VALUES('EPSG','2300','World - N hemisphere - 3-degree CM 006°E','Between 4°30''E and 7°30''E, northern hemisphere.',0.0,84.0,4.5,7.5,0); INSERT INTO "area" VALUES('EPSG','2301','World - N hemisphere - 3-degree CM 009°E','Between 7°30''E and 10°30''E, northern hemisphere.',0.0,84.0,7.5,10.5,0); INSERT INTO "area" VALUES('EPSG','2302','World - N hemisphere - 3-degree CM 012°E','Between 10°30''E and 13°30''E, northern hemisphere.',0.0,84.0,10.5,13.5,0); INSERT INTO "area" VALUES('EPSG','2303','World - N hemisphere - 3-degree CM 015°E','Between 13°30''E and 16°30''E, northern hemisphere.',0.0,84.0,13.5,16.5,0); INSERT INTO "area" VALUES('EPSG','2304','World - N hemisphere - 3-degree CM 018°E','Between 16°30''E and 19°30''E, northern hemisphere.',0.0,84.0,16.5,19.5,0); INSERT INTO "area" VALUES('EPSG','2305','World - N hemisphere - 3-degree CM 021°E','Between 19°30''E and 22°30''E, northern hemisphere.',0.0,84.0,19.5,22.5,0); INSERT INTO "area" VALUES('EPSG','2306','World - N hemisphere - 3-degree CM 024°E','Between 22°30''E and 25°30''E, northern hemisphere.',0.0,84.0,22.5,25.5,0); INSERT INTO "area" VALUES('EPSG','2307','Brazil - Campos; Espirito Santo and Santos basins','Brazil - offshore - Campos; Espirito Santo and Santos basins.',-28.41,-17.59,-48.8,-35.18,0); INSERT INTO "area" VALUES('EPSG','2308','Brazil - Tucano basin north','Brazil - Tucano basin north.',-9.8,-8.39,-39.04,-37.09,0); INSERT INTO "area" VALUES('EPSG','2309','Brazil - Tucano basin central','Brazil - Tucano basin central.',-10.61,-9.79,-39.14,-37.99,0); INSERT INTO "area" VALUES('EPSG','2310','Brazil - Tucano basin south','Brazil - Tucano basin south.',-12.27,-10.6,-39.07,-37.98,0); INSERT INTO "area" VALUES('EPSG','2311','Africa - Kenya and Tanzania','Kenya; Tanzania.',-11.75,4.63,29.34,41.91,0); INSERT INTO "area" VALUES('EPSG','2312','Africa - Botswana, Eswatini, Lesotho, Malawi, Zambia, Zimbabwe','Botswana; Eswatini (Swaziland); Lesotho; Malawi; Zambia; Zimbabwe.',-30.66,-8.19,19.99,35.93,0); INSERT INTO "area" VALUES('EPSG','2313','Canada - Nova Scotia','Canada - Nova Scotia onshore.',43.41,47.08,-66.28,-59.73,0); INSERT INTO "area" VALUES('EPSG','2314','Asia - FSU - Caspian states','Azerbaijan; Kazakhstan; Russian Federation; Turkmenistan - Caspian Sea.',35.15,81.85,26.0,90.0,1); INSERT INTO "area" VALUES('EPSG','2315','Colombia - Cusiana','Colombia - Casanare province BP Cusiana/Cupiagua field areas. Also used by Total in Rivera and Gatanas blocks.',4.75,5.68,-73.0,-72.25,0); INSERT INTO "area" VALUES('EPSG','2316','Angola - offshore block 5','Angola - offshore block 5.',-8.59,-7.75,12.58,13.4,0); INSERT INTO "area" VALUES('EPSG','2317','Angola - offshore block 2','Angola - offshore block 2.',-7.01,-6.01,12.08,12.84,0); INSERT INTO "area" VALUES('EPSG','2318','Angola - offshore block 3','Angola - offshore block 3.',-7.34,-6.66,11.74,12.5,0); INSERT INTO "area" VALUES('EPSG','2319','Angola - offshore block 7','Angola - offshore block 7.',-10.09,-9.41,12.66,13.39,0); INSERT INTO "area" VALUES('EPSG','2320','Angola - offshore blocks 7 8 24 + WGC spec','Angola - offshore blocks 7 and 8. Also used rounded to integer metre in offshore block 24 and for GSI/HGS/Western Geophysical speculative seismic data throughout offshore Angola.',-17.26,-6.01,8.2,13.86,0); INSERT INTO "area" VALUES('EPSG','2321','Angola - offshore blocks 1 and 16','Angola - offshore blocks 1 and 16.',-7.26,-6.03,11.08,12.09,0); INSERT INTO "area" VALUES('EPSG','2322','Angola - offshore blocks 3 7 15 and 17','Angola - offshore blocks 3, 7,15 and 17.',-10.09,-6.03,10.83,13.39,0); INSERT INTO "area" VALUES('EPSG','2323','Angola - offshore blocks 1 16 and 18','Angola - offshore blocks 1, 16 and 18.',-8.34,-6.03,11.08,12.75,0); INSERT INTO "area" VALUES('EPSG','2324','Angola - offshore blocks 2 3 17-18 and 31-33','Angola - offshore blocks 2, 3, 17, 18, 31, 32 and 33.',-8.59,-6.01,10.41,12.84,0); INSERT INTO "area" VALUES('EPSG','2325','Argentina - Neuquen province Auca Mahuida area','Argentina - Neuquen province - Auca Mahuida area.',-38.75,-37.5,-69.5,-68.25,0); INSERT INTO "area" VALUES('EPSG','2326','Germany - West Germany all states','Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein.',47.27,55.09,5.87,13.84,0); INSERT INTO "area" VALUES('EPSG','2327','Syria - Al Whaleed area','Syria - Al Whaleed area',35.33,35.9,39.15,40.41,0); INSERT INTO "area" VALUES('EPSG','2328','Syria - Shaddadeh area','Syria - Shaddadeh area (36°N, 41°E)',35.79,36.5,40.5,41.39,0); INSERT INTO "area" VALUES('EPSG','2329','Syria - Deir area','Syria - Deir area (35°22''N, 40°06''E)',34.49,35.9,39.3,40.81,0); INSERT INTO "area" VALUES('EPSG','2330','Europe - North Sea','Denmark - North Sea; Germany - North Sea; Netherlands - offshore; Norway - North Sea south of 62°N; United Kingdom (UKCS) - North Sea south of 62°N.',51.03,62.01,-5.05,11.14,0); INSERT INTO "area" VALUES('EPSG','2331','Norway - offshore north of 65°N','Norway - offshore north of 65°N.',65.0,72.0,-0.5,32.02,1); INSERT INTO "area" VALUES('EPSG','2332','Norway - offshore north of 65°N; Svalbard','Norway - offshore north of 65°N. Also Svalbard.',65.0,84.17,-3.7,39.65,0); INSERT INTO "area" VALUES('EPSG','2333','Norway - offshore 62°N to 65°N and west of 5°E','Norway - offshore between 62°N and 65°N and west of 5°E.',62.0,65.0,-0.49,5.0,0); INSERT INTO "area" VALUES('EPSG','2334','Norway - North Sea - offshore south of 62°N','Norway - offshore south of 62°N - North Sea.',56.08,62.0,1.37,11.14,0); INSERT INTO "area" VALUES('EPSG','2335','Spain - Balearic Islands','Spain - Balearic Islands.',38.59,40.11,1.14,4.39,0); INSERT INTO "area" VALUES('EPSG','2336','Spain - mainland except northwest','Spain - onshore mainland except northwest (north of 41°30''N and west of 4°30''W).',35.26,43.56,-7.54,3.39,0); INSERT INTO "area" VALUES('EPSG','2337','Spain - mainland northwest','Spain - onshore mainland north of 41°30''N and west of 4°30'' W.',41.5,43.82,-9.37,-4.5,0); INSERT INTO "area" VALUES('EPSG','2338','Europe - Portugal and Spain','Portugal; Spain - mainland.',35.26,43.82,-9.56,3.39,0); INSERT INTO "area" VALUES('EPSG','2339','Italy - Sardinia onshore','Italy - Sardinia onshore.',38.82,41.31,8.08,9.89,0); INSERT INTO "area" VALUES('EPSG','2340','Italy - Sicily onshore','Italy - Sicily onshore.',36.59,38.35,12.36,15.71,0); INSERT INTO "area" VALUES('EPSG','2341','Egypt - Gulf of Suez','Egypt - Gulf of Suez.',27.19,30.01,32.34,34.27,0); INSERT INTO "area" VALUES('EPSG','2342','Europe - common offshore','Denmark - offshore North Sea; Ireland - offshore; Netherlands - offshore; United Kingdom - UKCS offshore.',47.42,63.89,-16.1,10.86,0); INSERT INTO "area" VALUES('EPSG','2343','Europe - British Isles and Channel Islands onshore','Channel islands - onshore. Ireland - onshore. Isle of Man - onshore. United Kingdom (UK) - onshore - England; Scotland; Wales; Northern Ireland.',49.11,60.9,-10.56,1.84,0); INSERT INTO "area" VALUES('EPSG','2344','Europe - Finland and Norway - onshore','Finland and Norway - onshore.',57.93,71.21,4.68,31.59,0); INSERT INTO "area" VALUES('EPSG','2345','Asia - Middle East - Iraq; Israel; Jordan; Lebanon; Kuwait; Saudi Arabia; Syria','Iraq, Israel, Jordan, Lebanon, Kuwait, Saudi Arabia and Syria - onshore.',15.61,37.39,34.17,55.67,0); INSERT INTO "area" VALUES('EPSG','2346','World - WGS72 BE to WGS 84 - by country','World. Vietnam - offshore.',-90.0,90.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','2347','Algeria - north of 31.5°N','Algeria - onshore north of 35 grads North (31°30''N).',31.5,37.14,-3.85,9.22,0); INSERT INTO "area" VALUES('EPSG','2348','Brunei - offshore','Brunei Darussalam - offshore.',4.58,6.37,112.5,115.24,1); INSERT INTO "area" VALUES('EPSG','2349','Brunei - onshore','Brunei Darussalam - onshore.',4.01,5.11,114.09,115.37,0); INSERT INTO "area" VALUES('EPSG','2350','Mozambique - A','Mozambique - Maputo province and southern part of Gaza province; i.e. south of approximately 24°S.',-26.87,-23.91,31.91,34.5,0); INSERT INTO "area" VALUES('EPSG','2351','Mozambique - B','Mozambique - provinces of Gaza; Inhambane and southern parts of Sofala and Manhica; i.e. between approximately 24°S and 20°S.',-24.91,-19.74,31.29,35.65,0); INSERT INTO "area" VALUES('EPSG','2352','Mozambique - C','Mozambique - provinces of Sofala north of Beira corridor; Manhica; Tete and Zambezia; i.e. between approximately 20°S and 16°S.',-19.91,-14.01,30.21,39.18,0); INSERT INTO "area" VALUES('EPSG','2353','Mozambique - D','Mozambique - provinces of Nampula; Niassa; Cabo Delgado; i.e. north of approximately 16°S.',-16.94,-10.42,34.36,40.9,0); INSERT INTO "area" VALUES('EPSG','2354','Indonesia - Kalimantan','Indonesia - Kalimantan.',-4.24,4.37,108.79,119.06,0); INSERT INTO "area" VALUES('EPSG','2355','Falkland Islands - East Falkland Island','Falkland Islands (Malvinas) - East Falkland Island.',-52.51,-51.16,-59.98,-57.61,0); INSERT INTO "area" VALUES('EPSG','2356','Ecuador - Galapagos onshore','Ecuador - Baltra; Galapagos - onshore.',-1.41,0.18,-91.72,-89.19,0); INSERT INTO "area" VALUES('EPSG','2357','Argentina - Tierra del Fuego onshore','Argentina - Tierra del Fuego onshore.',-55.11,-52.59,-68.64,-63.73,0); INSERT INTO "area" VALUES('EPSG','2358','Thailand - Bongkot field','Thailand - Bongkot field.',6.74,8.16,102.16,103.05,0); INSERT INTO "area" VALUES('EPSG','2359','Vietnam - 14°N to 18°N onshore','Vietnam - onshore between 14°N and 18°N.',14.0,18.01,105.61,109.36,0); INSERT INTO "area" VALUES('EPSG','2360','Vietnam - Con Son Island','Vietnam - Con Son Island.',8.57,8.83,106.48,106.8,0); INSERT INTO "area" VALUES('EPSG','2361','Myanmar (Burma) - Moattama area','Myanmar (Burma) - Moattama area.',9.48,17.87,93.94,99.66,0); INSERT INTO "area" VALUES('EPSG','2362','Iran - Kangan district','Iran - Kangan district.',27.3,28.2,51.8,53.01,0); INSERT INTO "area" VALUES('EPSG','2363','Venezuela - east','Venezuela - east - Delta Amacuro; Anzoategui; Bolivar; Monagas; Sucre states.',3.56,10.8,-67.49,-59.8,0); INSERT INTO "area" VALUES('EPSG','2364','Philippines - onshore excluding Mindanao','Philippines - onshore excluding Mindanao.',7.75,19.45,116.89,125.88,0); INSERT INTO "area" VALUES('EPSG','2365','Philippines - Mindanao onshore','Philippines - Mindanao onshore.',4.99,10.52,119.76,126.65,0); INSERT INTO "area" VALUES('EPSG','2366','Spain - mainland onshore','Spain - mainland onshore.',35.95,43.82,-9.37,3.39,0); INSERT INTO "area" VALUES('EPSG','2367','Spain - mainland northeast','Spain - onshore mainland north of the parallel of approximately 41°58''N from approximately 6°35''W to the meridian of 4°W of Greenwich and then a line from 41°58''N, 4°W through 40°N, 0°E of Greenwich.',39.96,43.82,-9.37,3.39,0); INSERT INTO "area" VALUES('EPSG','2368','Spain - mainland southwest','Spain - onshore mainland south of the parallel of approximately 41°58''N from approximately 6°35''W to the meridian of 4°W of Greenwich and then a line from 41°58''N, 4°W through 40°N, 0°E of Greenwich.',35.95,41.98,-7.54,0.28,0); INSERT INTO "area" VALUES('EPSG','2369','Seychelles - Mahe Island','Seychelles - Mahe Island.',-4.86,-4.5,55.3,55.59,0); INSERT INTO "area" VALUES('EPSG','2370','Europe - former Yugoslavia onshore','Boznia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia; Slovenia - onshore.',40.85,46.88,13.38,23.04,0); INSERT INTO "area" VALUES('EPSG','2371','Nigeria - south','Nigeria - onshore south.',4.22,6.95,4.35,9.45,0); INSERT INTO "area" VALUES('EPSG','2372','Italy - mainland','Italy - mainland including San Marino and Vatican City State.',37.86,47.1,6.62,18.58,0); INSERT INTO "area" VALUES('EPSG','2373','USA - Alaska including EEZ','United States (USA) - Alaska including EEZ.',47.88,74.71,167.65,-129.99,0); INSERT INTO "area" VALUES('EPSG','2374','USA - CONUS including EEZ','United States (USA) - CONUS including EEZ -onshore and offshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Gulf of Mexico (GoM) OCS.',23.81,49.38,-129.17,-65.69,0); INSERT INTO "area" VALUES('EPSG','2375','Canada - Saskatchewan','Canada - Saskatchewan.',49.0,60.01,-110.0,-101.34,0); INSERT INTO "area" VALUES('EPSG','2376','Canada - Alberta','Canada - Alberta.',48.99,60.0,-120.0,-109.98,0); INSERT INTO "area" VALUES('EPSG','2377','USA - Delaware and Maryland','United States (USA) - Delaware and Maryland.',37.97,39.85,-79.49,-74.97,0); INSERT INTO "area" VALUES('EPSG','2378','USA - New England - south (CT, MA, NH, RI, VT)','United States (USA) - Connecticut; Massachusetts; New Hampshire; Rhode Island; Vermont.',40.98,45.31,-73.73,-69.86,0); INSERT INTO "area" VALUES('EPSG','2379','USA - Texas east of 100°W','United States (USA) - Texas east of 100°W.',25.83,34.58,-100.0,-93.5,0); INSERT INTO "area" VALUES('EPSG','2380','USA - Texas west of 100°W','United States (USA) - Texas west of 100°W.',28.04,36.5,-106.66,-100.0,0); INSERT INTO "area" VALUES('EPSG','2381','USA - Oregon and Washington','United States (USA) - Oregon and Washington.',41.98,49.05,-124.79,-116.47,0); INSERT INTO "area" VALUES('EPSG','2382','USA - Idaho and Montana - east of 113°W','United States (USA) - Idaho and Montana - east of 113°W.',41.99,49.01,-113.0,-104.04,0); INSERT INTO "area" VALUES('EPSG','2383','USA - Idaho and Montana - west of 113°W','United States (USA) - Idaho and Montana - west of 113°W.',41.99,49.01,-117.24,-113.0,0); INSERT INTO "area" VALUES('EPSG','2384','Canada - Alberta and British Columbia','Canada - Alberta; British Columbia.',48.25,60.01,-139.04,-109.98,0); INSERT INTO "area" VALUES('EPSG','2385','Panama - Canal Zone','Panama - Canal Zone.',8.82,9.45,-80.07,-79.46,0); INSERT INTO "area" VALUES('EPSG','2386','Greenland - Hayes Peninsula','Greenland - Hayes Peninsula.',75.86,79.2,-73.29,-60.98,0); INSERT INTO "area" VALUES('EPSG','2387','USA - Alaska - Aleutian Islands east of 180°E','United States (USA) - Alaska - Aleutian Islands onshore east of 180°E.',51.54,54.34,-178.3,-164.84,0); INSERT INTO "area" VALUES('EPSG','2388','USA - Alaska - Aleutian Islands west of 180°W','United States (USA) - Alaska - Aleutian Islands onshore west of 180°W.',51.3,53.07,172.42,179.86,0); INSERT INTO "area" VALUES('EPSG','2389','USA - CONUS east of Mississippi River - onshore','United States (USA) - CONUS east of Mississippi River - onshore - including entire states of Louisiana; Missouri; Minnesota as well as Alabama; Connecticut; Delaware; Florida; Georgia; Illinois; Indiana; Kentucky; Maine; Maryland; Massachusetts; Michigan; Mississippi; New Hampshire; New Jersey; New York; North Carolina; Ohio; Pennsylvania; Rhode Island; South Carolina; Tennessee; Vermont; Virginia; West Virginia; Wisconsin.',24.41,49.38,-97.22,-66.91,0); INSERT INTO "area" VALUES('EPSG','2390','USA - CONUS west of Mississippi River - onshore','United States (USA) - CONUS west of Mississippi River - onshore - excludes those states covered under Area 2389 - Includes Arizona; Arkansas; California; Colorado; Idaho; Iowa; Kansas; Montana; Nebraska; Nevada; New Mexico; North Dakota; Oklahoma; Oregon; South Dakota; Texas; Utah; Washington; Wyoming.',25.83,49.05,-124.79,-89.64,0); INSERT INTO "area" VALUES('EPSG','2391','Oman - Masirah Island','Oman - Masirah Island.',20.12,20.74,58.58,59.01,0); INSERT INTO "area" VALUES('EPSG','2392','UAE - Abu al Bu Khoosh','United Arab Emirates (UAE) - Abu Dhabi offshore - Abu al Bu Khoosh.',25.33,25.54,53.03,53.4,0); INSERT INTO "area" VALUES('EPSG','2393','Algeria - Hassi Messaoud','Algeria - Hassi Messaoud.',31.48,32.09,5.59,6.5,0); INSERT INTO "area" VALUES('EPSG','2394','UK - Great Britain and UKCS','United Kingdom (UKCS) - Great Britain (GB) - England; Scotland; Wales; UKCS including North Sea.',49.15,63.83,-6.0,3.4,1); INSERT INTO "area" VALUES('EPSG','2395','UK - England','United Kingdom (UK) - England onshore.',49.81,55.85,-6.5,1.84,0); INSERT INTO "area" VALUES('EPSG','2396','UK - England and Wales, Isle of Man','United Kingdom (UK) - England and Wales; Isle of Man - onshore.',49.81,55.85,-6.5,1.84,0); INSERT INTO "area" VALUES('EPSG','2397','UK - Scotland','United Kingdom (UK) - Scotland (including Orkney and Shetland Islands), onshore and nearshore.',54.57,60.9,-8.74,-0.65,0); INSERT INTO "area" VALUES('EPSG','2398','UK - Wales','United Kingdom (UK) - Wales onshore.',51.28,53.48,-5.34,-2.65,0); INSERT INTO "area" VALUES('EPSG','2399','South America - Bolivia; Chile; Ecuador; Guyana; Peru; Venezuela','Bolivia; Chile - onshore north of 43°30''S; Ecuador - mainland onshore; Guyana - onshore; Peru - onshore; Venezuela - onshore.',-43.5,12.25,-81.41,-56.47,0); INSERT INTO "area" VALUES('EPSG','2400','Bolivia - Madidi','Bolivia - Madidi.',-14.43,-13.56,-68.96,-67.79,0); INSERT INTO "area" VALUES('EPSG','2401','Bolivia - Block 20','Bolivia - Block 20.',-21.71,-21.09,-63.44,-62.95,0); INSERT INTO "area" VALUES('EPSG','2402','Chile - onshore north of 21°30''S','Chile - onshore north of 21°30''S.',-21.51,-17.5,-70.49,-68.18,0); INSERT INTO "area" VALUES('EPSG','2403','Chile - onshore 39°S to 43°30''S','Chile - onshore between 39°S and 43°30''S.',-43.5,-38.99,-74.48,-71.38,0); INSERT INTO "area" VALUES('EPSG','2404','Oman - block 4','Oman - block 4.',19.58,21.17,56.5,59.02,0); INSERT INTO "area" VALUES('EPSG','2405','Kazakhstan - Caspian Sea','Kazakhstan - Caspian Sea.',41.15,46.97,48.9,53.15,0); INSERT INTO "area" VALUES('EPSG','2406','Qatar - offshore','Qatar - offshore.',24.64,27.05,50.55,53.04,0); INSERT INTO "area" VALUES('EPSG','2407','Greenland - south of 72°N','Greenland - south of 72°N.',59.75,72.0,-55.0,-40.0,1); INSERT INTO "area" VALUES('EPSG','2408','Japan - Okinawa','Japan - onshore Okinawa.',23.98,26.91,122.83,131.38,0); INSERT INTO "area" VALUES('EPSG','2409','Asia - Japan and South Korea','Japan - onshore; South Korea - onshore.',20.37,45.54,122.83,145.87,0); INSERT INTO "area" VALUES('EPSG','2410','Canada - NWT; Nunavut; Saskatchewan','Canada - Northwest Territories; Nunavut; Saskatchewan.',49.0,83.17,-136.46,-60.72,0); INSERT INTO "area" VALUES('EPSG','2411','Asia - India mainland and Nepal','India - mainland onshore; Nepal.',8.02,35.51,68.13,97.42,0); INSERT INTO "area" VALUES('EPSG','2412','USA - Alaska mainland','United States (USA) - Alaska mainland.',54.34,71.4,-168.26,-129.99,0); INSERT INTO "area" VALUES('EPSG','2413','Bahamas - main islands onshore','Bahamas - onshore southwest of a line from 27°30''N, 77°30''W through 23°15''N, 74°30''W to 22°30''N, 72°30''W.',20.86,27.29,-79.04,-72.68,0); INSERT INTO "area" VALUES('EPSG','2414','Bahamas (San Salvador Island) - onshore','Bahamas (San Salvador Island) - onshore.',23.9,24.19,-74.6,-74.37,0); INSERT INTO "area" VALUES('EPSG','2415','Canada - Manitoba and Ontario','Canada - Manitoba; Ontario.',41.67,60.01,-102.0,-74.35,0); INSERT INTO "area" VALUES('EPSG','2416','Canada - eastern provinces','Canada - onshore - New Brunswick; Newfoundland and Labrador; Nova Scotia; Prince Edward Island; Quebec.',43.41,62.62,-79.85,-52.54,0); INSERT INTO "area" VALUES('EPSG','2417','Canada - Yukon','Canada - Yukon.',59.99,69.7,-141.01,-123.91,0); INSERT INTO "area" VALUES('EPSG','2418','Caribbean - central (DMA tfm)','Antigua; Barbados; Barbuda; Cuba; Dominican Republic; Grand Cayman; Jamaica; Turks and Caicos Islands. Note: does not include other islands within this geographic area.',13.0,23.25,-85.01,-59.37,0); INSERT INTO "area" VALUES('EPSG','2419','Central America - Belize to Costa Rica','Onshore Belize, Costa Rica, El Salvador, Guatemala, Honduras and Nicaragua.',7.98,18.49,-92.29,-82.53,0); INSERT INTO "area" VALUES('EPSG','2420','Europe - west (DMA ED50 mean)','Austria; Belgium; Denmark; Finland; Faroe islands; France; Germany (west); Gibraltar; Greece; Italy; Luxembourg; Netherlands; Norway; Portugal; Spain; Sweden; Switzerland.',34.88,71.21,-9.56,31.59,0); INSERT INTO "area" VALUES('EPSG','2421','Europe - west central (by country)','Austria; Denmark; France; Germany (west); Netherlands; Switzerland.',42.33,57.8,-4.87,17.17,0); INSERT INTO "area" VALUES('EPSG','2422','Slovenia - Gorenjska - central','Slovenia - central Gorenjska (Upper Carniola) with part of the Kamnik or Savinja Alps.',46.14,46.45,14.01,14.61,0); INSERT INTO "area" VALUES('EPSG','2423','Europe - FSU onshore','Armenia; Azerbaijan; Belarus; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia - onshore; Lithuania - onshore; Moldova; Russian Federation - onshore; Tajikistan; Turkmenistan; Ukraine - onshore; Uzbekistan.',35.14,81.91,19.57,-168.97,0); INSERT INTO "area" VALUES('EPSG','2424','USA - HARN','American Samoa; Puerto Rico and the Virgin Islands; United States (USA) - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Hawaii; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',NULL,NULL,NULL,NULL,1); INSERT INTO "area" VALUES('EPSG','2425','Japan - 45°20''N to 46°N; 141°E to 142°E','Japan - onshore mainland 45°20''N to 46°N; 141°E to 142°E.',45.33,45.54,141.56,142.0,0); INSERT INTO "area" VALUES('EPSG','2426','Japan - 45°20''N to 46°N; 142°E to 143°E','Japan - onshore 45°20''N to 46°N; 142°E to 143°E.',45.33,45.54,142.0,142.27,0); INSERT INTO "area" VALUES('EPSG','2427','Japan - 44°40''N to 45°20''N; 141°E to 142°E','Japan - onshore mainland 44°40''N to 45°20''N; 141°E to 142°E.',44.66,45.34,141.5,142.0,0); INSERT INTO "area" VALUES('EPSG','2428','Japan - 44°40''N to 45°20''N; 142°E to 143°E','Japan - onshore 44°40''N to 45°20''N; 142°E to 143°E.',44.66,45.34,142.0,142.97,0); INSERT INTO "area" VALUES('EPSG','2429','Japan - 44°N to 44°40''N; 141°E to 142°E','Japan - onshore mainland 44°N to 44°40''N; 141°E to 142°E.',43.99,44.67,141.58,142.0,0); INSERT INTO "area" VALUES('EPSG','2430','Japan - 44°N to 44°40''N; 142°E to 143°E','Japan - 44°N to 44°40''N; 142°E to 143°E.',43.99,44.67,142.0,143.0,0); INSERT INTO "area" VALUES('EPSG','2431','Japan - 44°N to 44°40''N; 143°E to 144°E','Japan - onshore 44°N to 44°40''N; 143°E to 144°E.',43.99,44.65,143.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2432','Japan - 44°N to 44°40''N; 144°E to 145°E','Japan - onshore 44°N to 44°40''N; 144°E to 145°E.',43.99,44.19,144.0,145.0,0); INSERT INTO "area" VALUES('EPSG','2433','Japan - 43°20''N to 44°N; 141°E to 142°E','Japan - onshore 43°20''N to 44°N; 141°E to 142°E.',43.33,44.0,141.26,142.0,0); INSERT INTO "area" VALUES('EPSG','2434','Japan - 43°20''N to 44°N; 142°E to 143°E','Japan - 43°20''N to 44°N; 142°E to 143°E.',43.33,44.0,142.0,143.0,0); INSERT INTO "area" VALUES('EPSG','2435','Japan - 43°20''N to 44°N; 143°E to 144°E','Japan - 43°20''N to 44°N; 143°E to 144°E.',43.33,44.0,143.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2436','Japan - 43°20''N to 44°N; 144°E to 145°E','Japan - 43°20''N to 44°N; 144°E to 145°E.',43.33,44.0,144.0,145.0,0); INSERT INTO "area" VALUES('EPSG','2437','Japan - north of 43°20''N; 145°E to 146°E','Japan - onshore north of 43°20''N and west of 145°E.',43.33,44.4,145.0,145.87,0); INSERT INTO "area" VALUES('EPSG','2438','Japan - 42°40''N to 43°25''N; 140°E to 141°E','Japan - onshore 42°40''N to 43°25''N; 140°E to 141°E.',42.66,43.42,140.0,141.0,0); INSERT INTO "area" VALUES('EPSG','2439','Japan - 42°40''N to 43°20''N; 141°E to 142°E','Japan - 42°40''N to 43°20''N; 141°E to 142°E.',42.66,43.34,141.0,142.0,0); INSERT INTO "area" VALUES('EPSG','2440','Japan - 42°40''N to 43°20''N; 142°E to 143°E','Japan - 42°40''N to 43°20''N; 142°E to 143°E.',42.66,43.34,142.0,143.0,0); INSERT INTO "area" VALUES('EPSG','2441','Japan - 42°40''N to 43°20''N; 143°E to 144°E','Japan - 42°40''N to 43°20''N; 143°E to 144°E.',42.66,43.34,143.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2442','Japan - 42°40''N to 43°20''N; 144°E to 145°E','Japan - onshore 42°40''N to 43°20''N; 144°E to 145°E.',42.84,43.34,144.0,145.0,0); INSERT INTO "area" VALUES('EPSG','2443','Japan - 42°40''N to 43°20''N; 145°E to 146°E','Japan - onshore 42°40''N to 43°20''N; 145°E to 146°E.',42.93,43.34,145.0,145.87,0); INSERT INTO "area" VALUES('EPSG','2444','Japan - north of 42°N; west of 140°E','Japan - onshore mainland north of 42°N and west of 140°E.',42.05,42.73,139.7,140.0,0); INSERT INTO "area" VALUES('EPSG','2445','Japan - 42°N to 42°40''N; 140°E to 141°E','Japan - 42°N to 42°40''N; 140°E to 141°E.',41.99,42.67,140.0,141.0,0); INSERT INTO "area" VALUES('EPSG','2446','Japan - 42°N to 42°40''N; 141°E to 142°E','Japan - onshore 42°N to 42°40''N; 141°E to 142°E.',42.24,42.67,141.0,142.0,0); INSERT INTO "area" VALUES('EPSG','2447','Japan - 42°N to 42°40''N; 142°E to 143°E','Japan - onshore 42°N to 42°40''N; 142°E to 143°E.',42.02,42.67,142.0,143.0,0); INSERT INTO "area" VALUES('EPSG','2448','Japan - south of 42°40''N; 143°E to 144°E','Japan - onshore south of 42°40''N; east of 143°E.',41.87,42.67,143.0,143.76,0); INSERT INTO "area" VALUES('EPSG','2449','Japan - 41°20''N to 42°N; west of 141°E','Japan - onshore mainland 41°20''N to 42°N; west of 141°E.',41.33,42.0,139.91,141.0,0); INSERT INTO "area" VALUES('EPSG','2450','Japan - 41°20''N to 42°N; 141°E to 142°E','Japan - onshore 41°20''N to 42°N; 141°E to 142°E.',41.33,41.96,141.0,141.53,0); INSERT INTO "area" VALUES('EPSG','2451','Japan - 40°40''N to 41°20''N; 140°E to 141°E','Japan - 40°40''N to 41°20''N; 140°E to 141°E.',40.66,41.34,140.0,141.0,0); INSERT INTO "area" VALUES('EPSG','2452','Japan - 40°40''N to 41°20''N; 141°E to 142°E','Japan - onshore 40°40''N to 41°20''N; 141°E to 142°E.',40.66,41.34,141.0,141.53,0); INSERT INTO "area" VALUES('EPSG','2453','Japan - 40°N to 40°48''N; 139°E to 140°E','Japan - onshore 40°N to 40°48''N; 139°E to 140°E.',39.99,40.8,139.63,140.0,0); INSERT INTO "area" VALUES('EPSG','2454','Japan - 40°N to 40°40''N; 140°E to 141°E','Japan - 40°N to 40°40''N; 140°E to 141°E.',39.99,40.67,140.0,141.0,0); INSERT INTO "area" VALUES('EPSG','2455','Japan - 40°N to 40°40''N; 141°E to 142°E','Japan - 40°N to 40°40''N; 141°E to 142°E.',39.99,40.67,141.0,142.0,0); INSERT INTO "area" VALUES('EPSG','2456','Japan - 39°20''N to 40°N; 139°E to 140°E','Japan - onshore 39°20''N to 40°N; 139°E to 140°E.',39.33,40.0,139.63,140.0,0); INSERT INTO "area" VALUES('EPSG','2457','Japan - 39°20''N to 40°N; 140°E to 141°E','Japan - 39°20''N to 40°N; 140°E to 141°E.',39.33,40.0,140.0,141.0,0); INSERT INTO "area" VALUES('EPSG','2458','Japan - 39°20''N to 40°N; east of 141°E','Japan - onshore 39°20''N to 40°N; east of 141°E.',39.33,40.0,141.0,142.14,0); INSERT INTO "area" VALUES('EPSG','2459','Japan - 38°40''N to 39°20''N; 139°E to 140°E','Japan - onshore 38°40''N to 39°20''N; 139°E to 140°E.',38.66,39.34,139.55,140.0,0); INSERT INTO "area" VALUES('EPSG','2460','Japan - 38°40''N to 39°20''N; 140°E to 141°E','Japan - 38°40''N to 39°20''N; 140°E to 141°E.',38.66,39.34,140.0,141.0,0); INSERT INTO "area" VALUES('EPSG','2461','Japan - 38°40''N to 39°20''N; 141°E to 142°E','Japan - onshore 38°40''N to 39°20''N; 141°E to 142°E.',38.66,39.34,141.0,141.99,0); INSERT INTO "area" VALUES('EPSG','2462','Japan - 38°N to 38°40''N; 139°E to 140°E','Japan - onshore 38°N to 38°40''N; 139°E to 140°E.',37.99,38.67,139.11,140.0,0); INSERT INTO "area" VALUES('EPSG','2463','Japan - 38°N to 38°40''N; 140°E to 141°E','Japan - 38°N to 38°40''N; 140°E to 141°E.',37.99,38.67,140.0,141.0,0); INSERT INTO "area" VALUES('EPSG','2464','Japan - 38°N to 38°40''N; 141°E to 142°E','Japan - onshore 38°N to 38°40''N; 141°E to 142°E.',38.08,38.67,141.0,141.62,0); INSERT INTO "area" VALUES('EPSG','2465','Japan - 37°20''N to 38°N; 136°E to 137°E','Japan - onshore 37°20''N to 38°N; 136°E to 137°E.',37.33,37.47,136.67,137.0,0); INSERT INTO "area" VALUES('EPSG','2466','Japan - 37°20''N to 38°N; 137°E to 138°E','Japan - onshore 37°20''N to 38°N; 137°E to 138°E.',37.33,37.58,137.0,137.43,0); INSERT INTO "area" VALUES('EPSG','2467','Japan - 37°20''N to 38°N; 138°E to 139°E','Japan - onshore mainland 37°20''N to 38°N; 138°E to 139°E.',37.33,37.97,138.39,139.0,0); INSERT INTO "area" VALUES('EPSG','2468','Japan - 37°20''N to 38°N; 139°E to 140°E','Japan - 37°20''N to 38°N; 139°E to 140°E.',37.33,38.0,139.0,140.0,0); INSERT INTO "area" VALUES('EPSG','2469','Japan - 37°20''N to 38°N; 140°E to 141°E','Japan - 37°20''N to 38°N; 140°E to 141°E.',37.33,38.0,140.0,141.0,0); INSERT INTO "area" VALUES('EPSG','2470','Japan - 37°20''N to 38°N; 141°E to 142°E','Japan - onshore 37°20''N to 38°N; 141°E to 142°E.',37.33,37.87,141.0,141.11,0); INSERT INTO "area" VALUES('EPSG','2471','Japan - 36°40''N to 37°20''N; 136°E to 137°E','Japan - onshore 36°40''N to 37°20''N; 136°E to 137°E.',36.66,37.34,136.58,137.0,0); INSERT INTO "area" VALUES('EPSG','2472','Japan - 36°40''N to 37°20''N; 137°E to 138°E','Japan - 36°40''N to 37°20''N; 137°E to 138°E.',36.66,37.34,137.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2473','Japan - 36°40''N to 37°20''N; 138°E to 139°E','Japan - 36°40''N to 37°20''N; 138°E to 139°E.',36.66,37.34,138.0,139.0,0); INSERT INTO "area" VALUES('EPSG','2474','Japan - 36°40''N to 37°20''N; 139°E to 140°E','Japan - 36°40''N to 37°20''N; 139°E to 140°E.',36.66,37.34,139.0,140.0,0); INSERT INTO "area" VALUES('EPSG','2475','Japan - 36°40''N to 37°20''N; east of 140°E','Japan - onshore between 36°40''N and 37°20''N; east of 140°E.',36.66,37.34,140.0,141.1,0); INSERT INTO "area" VALUES('EPSG','2476','Japan - 36°N to 36°40''N; west of137°E','Japan - onshore between 36°N and 36°40''N; west of 137°E.',35.99,36.67,135.9,137.0,0); INSERT INTO "area" VALUES('EPSG','2477','Japan - 36°N to 36°40''N; 137°E to 138°E','Japan - 36°N to 36°40''N; 137°E to 138°E.',35.99,36.67,137.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2478','Japan - 36°N to 36°40''N; 138°E to 139°E','Japan - 36°N to 36°40''N; 138°E to 139°E.',35.99,36.67,138.0,139.0,0); INSERT INTO "area" VALUES('EPSG','2479','Japan - 36°N to 36°40''N; 139°E to 140°E','Japan - 36°N to 36°40''N; 139°E to 140°E.',35.99,36.67,139.0,140.0,0); INSERT INTO "area" VALUES('EPSG','2480','Japan - 36°N to 36°40''N; 140°E to 141°E','Japan - onshore 36°N to 36°40''N; 140°E to 141°E.',35.99,36.67,140.0,140.77,0); INSERT INTO "area" VALUES('EPSG','2481','Japan - 35°20''N to 36°N; 132°E to 133°E','Japan - onshore mainland 35°20''N to 36°N; 132°E to 133°E.',35.33,35.58,132.56,133.0,0); INSERT INTO "area" VALUES('EPSG','2482','Japan - 35°20''N to 36°N; 133°E to 134°E','Japan - onshore mainland 35°20''N to 36°N; 133°E to 134°E.',35.33,35.64,133.0,134.0,0); INSERT INTO "area" VALUES('EPSG','2483','Japan - 35°20''N to 36°N; 134°E to 135°E','Japan - onshore 35°20''N to 36°N; 134°E to 135°E.',35.33,35.73,134.0,135.0,0); INSERT INTO "area" VALUES('EPSG','2484','Japan - 35°20''N to 36°N; 135°E to 136°E','Japan - 35°20''N to 36°N; 135°E to 136°E.',35.33,36.0,135.0,136.0,0); INSERT INTO "area" VALUES('EPSG','2485','Japan - 35°20''N to 36°N; 136°E to 137°E','Japan - 35°20''N to 36°N; 136°E to 137°E.',35.33,36.0,136.0,137.0,0); INSERT INTO "area" VALUES('EPSG','2486','Japan - 35°20''N to 36°N; 137°E to 138°E','Japan - 35°20''N to 36°N; 137°E to 138°E.',35.33,36.0,137.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2487','Japan - 35°20''N to 36°N; 138°E to 139°E','Japan - 35°20''N to 36°N; 138°E to 139°E.',35.33,36.0,138.0,139.0,0); INSERT INTO "area" VALUES('EPSG','2488','Japan - 35°20''N to 36°N; 139°E to 140°E','Japan - 35°20''N to 36°N; 139°E to 140°E.',35.33,36.0,139.0,140.0,0); INSERT INTO "area" VALUES('EPSG','2489','Japan - 35°20''N to 36°N; 140°E to 141°E','Japan - onshore 35°20''N to 36°N; 140°E to 141°E.',35.33,36.0,140.0,140.9,0); INSERT INTO "area" VALUES('EPSG','2490','Japan - 34°40''N to 35°20''N; 132°E to 133°E','Japan - 34°40''N to 35°20''N; 132°E to 133°E.',34.66,35.34,132.0,133.0,0); INSERT INTO "area" VALUES('EPSG','2491','Japan - 34°40''N to 35°20''N; 133°E to 134°E','Japan - 34°40''N to 35°20''N; 133°E to 134°E.',34.66,35.34,133.0,134.0,0); INSERT INTO "area" VALUES('EPSG','2492','Japan - 34°40''N to 35°20''N; 134°E to 135°E','Japan - 34°40''N to 35°20''N; 134°E to 135°E.',34.66,35.34,134.0,135.0,0); INSERT INTO "area" VALUES('EPSG','2493','Japan - 34°40N'' to 35°20''N; 135°E to 136°E','Japan - 34°40N'' to 35°20''N; 135°E to 136°E.',34.66,35.34,135.0,136.0,0); INSERT INTO "area" VALUES('EPSG','2494','Japan - 34°40''N to 35°20''N; 136°E to 137°E','Japan - 34°40''N to 35°20''N; 136°E to 137°E.',34.66,35.34,136.0,137.0,0); INSERT INTO "area" VALUES('EPSG','2495','Japan - 34°40''N to 35°20''N; 137°E to 138°E','Japan - 34°40''N to 35°20''N; 137°E to 138°E.',34.66,35.34,137.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2496','Japan - 34°40''N to 35°20''N; 138°E to 139°E','Japan - 34°40''N to 35°20''N; 138°E to 139°E.',34.66,35.34,138.0,139.0,0); INSERT INTO "area" VALUES('EPSG','2497','Japan - 34°40''N to 35°20''N; 139°E to 140°E','Japan - onshore mainland 34°40''N to 35°20''N; 139°E to 140°E.',34.66,35.34,139.0,140.0,0); INSERT INTO "area" VALUES('EPSG','2498','Japan - 34°40''N to 35°20''N; 140°E to 141°E','Japan - onshore 34°40''N to 35°20''N; 140°E to 141°E.',34.87,35.34,140.0,140.48,0); INSERT INTO "area" VALUES('EPSG','2499','Japan - 34°N to 34°40''N; 130°E to 131°E','Japan - onshore 34°N to 34°40''N; 130°E to 131°E.',33.99,34.48,130.81,131.0,0); INSERT INTO "area" VALUES('EPSG','2500','Japan - north of 34°N; 131°E to 132°E','Japan - onshore north of 34°N; between 131°E and 132°E.',33.99,34.9,131.0,132.0,0); INSERT INTO "area" VALUES('EPSG','2501','Japan - 34°N to 34°40''N; 132°E to 133°E','Japan - 34°N to 34°40''N; 132°E to 133°E.',33.99,34.67,132.0,133.0,0); INSERT INTO "area" VALUES('EPSG','2502','Japan - 34°N to 34°40''N; 133°E to 134°E','Japan - 34°N to 34°40''N; 133°E to 134°E.',33.99,34.67,133.0,134.0,0); INSERT INTO "area" VALUES('EPSG','2503','Japan - 34°N to 34°40''N; 134°E to 135°E','Japan - 34°N to 34°40''N; 134°E to 135°E.',33.99,34.67,134.0,135.0,0); INSERT INTO "area" VALUES('EPSG','2504','Japan - 34°N to 34°40''N; 135°E to 136°E','Japan - 34°N to 34°40''N; 135°E to 136°E.',33.99,34.67,135.0,136.0,0); INSERT INTO "area" VALUES('EPSG','2505','Japan - 34°N to 34°40''N; 136°E to 137°E','Japan - 34°N to 34°40''N; 136°E to 137°E.',33.99,34.67,136.0,137.0,0); INSERT INTO "area" VALUES('EPSG','2506','Japan - 34°N to 34°40''N; 137°E to 138°E','Japan - onshore 34°N to 34°40''N; 137°E to 138°E.',34.51,34.67,137.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2507','Japan - 34°N to 34°40''N; 138°E to 139°E','Japan - onshore 34°N to 34°40''N; 138°E to 139°E.',34.54,34.67,138.0,139.0,0); INSERT INTO "area" VALUES('EPSG','2508','Japan - 33°20''N to 34°N; 129°E to 130°E','Japan - onshore mainland 33°20''N to 34°N; 129°E to 130°E.',33.33,33.59,129.38,130.0,0); INSERT INTO "area" VALUES('EPSG','2509','Japan - 33°20''N to 34°N; 130°E to 131°E','Japan - onshore mainland 33°20''N to 34°N; 130°E to 131°E.',33.33,34.0,130.0,131.0,0); INSERT INTO "area" VALUES('EPSG','2510','Japan - 33°20''N to 34°N; 131°E to 132°E','Japan - 33°20''N to 34°N; 131°E to 132°E.',33.33,34.0,131.0,132.0,0); INSERT INTO "area" VALUES('EPSG','2511','Japan - 33°20''N to 34°N; 132°E to 133°E','Japan - 33°20''N to 34°N; 132°E to 133°E.',33.33,34.0,132.0,133.0,0); INSERT INTO "area" VALUES('EPSG','2512','Japan - 33°20''N to 34°N; 133°E to 134°E','Japan - 33°20''N to 34°N; 133°E to 134°E.',33.33,34.0,133.0,134.0,0); INSERT INTO "area" VALUES('EPSG','2513','Japan - 33°20''N to 34°N; 134°E to 135°E','Japan - onshore 33°20''N to 34°N; 134°E to 135°E.',33.33,34.0,134.0,134.81,0); INSERT INTO "area" VALUES('EPSG','2514','Japan - 33°20''N to 34°N; 135°E to 136°E','Japan - onshore 33°20''N to 34°N; 135°E to 136°E.',33.4,34.0,135.0,136.0,0); INSERT INTO "area" VALUES('EPSG','2515','Japan - 33°20''N to 34°N; 136°E to 137°E','Japan - onshore 33°20''N to 34°N; 136°E to 137°E.',33.54,34.0,136.0,136.34,0); INSERT INTO "area" VALUES('EPSG','2516','Japan - 32°40''N to 33°20''N; 129°E to 130°E','Japan - onshore mainland 32°40''N to 33°20''N; 129°E to 130°E.',32.51,33.34,129.3,130.0,0); INSERT INTO "area" VALUES('EPSG','2517','Japan - 32°40''N to 33°20''N; 130°E to 131°E','Japan - 32°40''N to 33°20''N; 130°E to 131°E.',32.66,33.34,130.0,131.0,0); INSERT INTO "area" VALUES('EPSG','2518','Japan - 32°40''N to 33°20''N; 131°E to 132°E','Japan - 32°40''N to 33°20''N; 131°E to 132°E.',32.66,33.34,131.0,132.0,0); INSERT INTO "area" VALUES('EPSG','2519','Japan - 32°40''N to 33°20''N; 132°E to 133°E','Japan - onshore mainland 32°40''N to 33°20''N; 132°E to 133°E.',32.69,33.34,132.0,133.0,0); INSERT INTO "area" VALUES('EPSG','2520','Japan - 32°40''N to 33°20''N; 133°E to 134°E','Japan - onshore 32°40''N to 33°20''N; 133°E to 134°E.',32.7,33.34,133.0,134.0,0); INSERT INTO "area" VALUES('EPSG','2521','Japan - 32°40''N to 33°20''N; 134°E to 135°E','Japan - onshore 32°40''N to 33°20''N; 134°E to 135°E.',33.19,33.34,134.0,134.27,0); INSERT INTO "area" VALUES('EPSG','2522','Japan - 32°N to 32°40''N; 129°54''E to 131°E','Japan - onshore 32°N to 32°40''N; 129°54''E to 131°E.',31.99,32.67,129.89,131.0,0); INSERT INTO "area" VALUES('EPSG','2523','Japan - 32°N to 32°40''N; 131°E to 132°E','Japan - onshore 32°N to 32°40''N; 131°E to 132°E.',31.99,32.67,131.0,131.91,0); INSERT INTO "area" VALUES('EPSG','2524','Japan - 31°20''N to 32°N; 130°E to 131°E','Japan - onshore mainland 31°20''N to 32°N; 130°E to 131°E.',31.33,32.0,130.1,131.0,0); INSERT INTO "area" VALUES('EPSG','2525','Japan - 31°20''N to 32°N; 131°E to 132°E','Japan - onshore 31°20''N to 32°N; 131°E to 132°E.',31.33,32.0,131.0,131.55,0); INSERT INTO "area" VALUES('EPSG','2526','Japan - onshore mainland south of 31°20''N','Japan - onshore mainland south of 31°20''N.',30.94,31.34,130.14,131.19,0); INSERT INTO "area" VALUES('EPSG','2527','USA - Texas - SPCS83 - SC','United States (USA) - Texas - counties of Aransas; Atascosa; Austin; Bandera; Bee; Bexar; Brazoria; Brewster; Caldwell; Calhoun; Chambers; Colorado; Comal; De Witt; Dimmit; Edwards; Fayette; Fort Bend; Frio; Galveston; Goliad; Gonzales; Guadalupe; Harris; Hays; Jackson; Jefferson; Karnes; Kendall; Kerr; Kinney; La Salle; Lavaca; Live Oak; Matagorda; Maverick; McMullen; Medina; Presidio; Real; Refugio; Terrell; Uvalde; Val Verde; Victoria; Waller; Wharton; Wilson; Zavala.',27.78,30.67,-105.0,-93.76,0); INSERT INTO "area" VALUES('EPSG','2528','USA - Texas - SPCS83 - S','United States (USA) - Texas - counties of Brooks; Cameron; Duval; Hidalgo; Jim Hogg; Jim Wells; Kenedy; Kleberg; Nueces; San Patricio; Starr; Webb; Willacy; Zapata.',25.83,28.21,-100.2,-96.85,0); INSERT INTO "area" VALUES('EPSG','2529','USA - Louisiana - SPCS83 - S','United States (USA) - Louisiana - counties of Acadia; Allen; Ascension; Assumption; Beauregard; Calcasieu; Cameron; East Baton Rouge; East Feliciana; Evangeline; Iberia; Iberville; Jefferson; Jefferson Davis; Lafayette; LaFourche; Livingston; Orleans; Plaquemines; Pointe Coupee; St Bernard; St Charles; St Helena; St James; St John the Baptist; St Landry; St Martin; St Mary; St Tammany; Tangipahoa; Terrebonne; Vermilion; Washington; West Baton Rouge; West Feliciana.',28.85,31.07,-93.94,-88.75,0); INSERT INTO "area" VALUES('EPSG','2530','UK - Northern Ireland - onshore','United Kingdom (UK) - Northern Ireland (Ulster) - onshore.',53.96,55.36,-8.18,-5.34,0); INSERT INTO "area" VALUES('EPSG','2531','Denmark - onshore Jutland and Funen','Denmark - Jutland and Funen - onshore.',54.67,57.8,8.0,11.29,0); INSERT INTO "area" VALUES('EPSG','2532','Denmark - onshore Zealand and Lolland','Denmark - Zealand and Lolland (onshore).',54.51,56.18,10.79,12.69,0); INSERT INTO "area" VALUES('EPSG','2533','Denmark - onshore Bornholm','Denmark - Bornholm onshore.',54.94,55.36,14.59,15.24,0); INSERT INTO "area" VALUES('EPSG','2534','World - N hemisphere - 3-degree CM 027°E','Between 25°30''E and 28°30''E, northern hemisphere.',0.0,84.0,25.5,28.5,0); INSERT INTO "area" VALUES('EPSG','2535','World - N hemisphere - 3-degree CM 030°E','Between 28°30''E and 31°30''E, northern hemisphere.',0.0,84.0,28.5,31.5,0); INSERT INTO "area" VALUES('EPSG','2536','World - N hemisphere - 3-degree CM 033°E','Between 31°30''E and 34°30''E, northern hemisphere.',0.0,84.0,31.5,34.5,0); INSERT INTO "area" VALUES('EPSG','2537','World - N hemisphere - 3-degree CM 036°E','Between 34°30''E and 37°30''E, northern hemisphere.',0.0,84.0,34.5,37.5,0); INSERT INTO "area" VALUES('EPSG','2538','World - N hemisphere - 3-degree CM 039°E','Between 37°30''E and 40°30''E, northern hemisphere.',0.0,84.0,37.5,40.5,0); INSERT INTO "area" VALUES('EPSG','2539','World - N hemisphere - 3-degree CM 042°E','Between 40°30''E and 43°30''E, northern hemisphere.',0.0,84.0,40.5,43.5,0); INSERT INTO "area" VALUES('EPSG','2540','World - N hemisphere - 3-degree CM 045°E','Between 43°30''E and 46°30''E, northern hemisphere.',0.0,84.0,43.5,46.5,0); INSERT INTO "area" VALUES('EPSG','2541','Germany - West Germany N','Germany - states of former West Germany - onshore north of 52°20''N.',52.33,55.09,6.58,11.59,0); INSERT INTO "area" VALUES('EPSG','2542','Germany - West Germany C','Germany - states of former West Germany - between 50°20''N and 52°20''N.',50.33,52.34,5.86,12.03,0); INSERT INTO "area" VALUES('EPSG','2543','Germany - West Germany S','Germany - states of former West Germany - south of 50°20''N.',47.27,50.34,6.11,13.84,0); INSERT INTO "area" VALUES('EPSG','2544','Germany - Thuringen','Germany - Thuringen.',50.2,51.64,9.92,12.56,0); INSERT INTO "area" VALUES('EPSG','2545','Germany - Saxony','Germany - Sachsen.',50.2,51.66,11.89,15.04,0); INSERT INTO "area" VALUES('EPSG','2546','Romania - offshore','Romania - offshore.',43.44,45.2,28.64,31.41,0); INSERT INTO "area" VALUES('EPSG','2547','Serbia and Montenegro - Montenegro','Serbia and Montenegro - Montenegro.',41.82,43.53,18.44,20.37,1); INSERT INTO "area" VALUES('EPSG','2548','Africa - AOF west of 10°W','French West Africa onshore west of 10°W - Guinea, Mali, Mauritania, Senegal.',8.29,26.01,-17.59,-10.0,0); INSERT INTO "area" VALUES('EPSG','2549','Africa - AOF 10°W to 3.5°W','French West Africa between 10°W and 3°30''W - Burkina Faso, Côte d''Ivoire (Ivory Coast), Guinea, Mali, Mauritania.',4.29,27.3,-10.0,-3.49,0); INSERT INTO "area" VALUES('EPSG','2550','Africa - AOF 3.5°W to 4°E','French West Africa onshore between 3°30''W and 4°E - Benin, Burkina Faso, Côte d''Ivoire (Ivory Coast), Mali, Niger, Togo.',5.03,24.18,-3.5,4.0,0); INSERT INTO "area" VALUES('EPSG','2551','Africa - AOF 4°E to 9°E','French West Africa between 4°E and 9°E - Mali, Niger.',12.82,21.79,4.0,9.0,0); INSERT INTO "area" VALUES('EPSG','2552','Africa - AEF 9°E to 14°E','French Equatorial Africa onshore west of 14°E - Cameroon, Chad, Congo, Gabon, Niger - between 9°E and 14°E.',-5.06,23.53,8.45,14.0,0); INSERT INTO "area" VALUES('EPSG','2553','Africa - AEF 14°E to 21°E','French Equatorial Africa between 14°E and 21°E - Cameroon, Central African Republic, Chad, Congo, Gabon, Niger.',-4.91,23.46,14.0,21.0,0); INSERT INTO "area" VALUES('EPSG','2554','Africa - AEF east of 21°E','French Equatorial Africa east of 21°E - Central African Republic, Chad.',4.12,21.06,21.0,27.46,0); INSERT INTO "area" VALUES('EPSG','2555','Cameroon - coastal area','Cameroon - coastal area.',2.16,4.99,8.45,10.4,0); INSERT INTO "area" VALUES('EPSG','2556','Greenland - north of 81°N','Greenland - onshore north of 81°N.',81.0,83.67,-65.06,-11.81,0); INSERT INTO "area" VALUES('EPSG','2557','Greenland - east - 78°N to 81°N','Greenland - east of 44°W and between 78°N and 81°N, onshore.',78.0,81.0,-44.0,-14.33,0); INSERT INTO "area" VALUES('EPSG','2558','Greenland - east - 75°N to 78°N','Greenland - east of 44°W and between 75°N and 78°N, onshore.',75.0,78.0,-44.0,-17.12,0); INSERT INTO "area" VALUES('EPSG','2559','Greenland - east - 72°N to 75°N','Greenland - east of 38°W and between 72°N and 75°N, onshore.',72.0,75.0,-38.0,-17.21,0); INSERT INTO "area" VALUES('EPSG','2560','Greenland - east - 69°N to 72°N','Greenland - east of 38°W and between 69°N and 72°N, onshore.',69.0,72.0,-38.0,-21.32,0); INSERT INTO "area" VALUES('EPSG','2561','Greenland - east - 66°N to 69°N','Greenland - east of 42°W and between 66°N and 69°N, onshore.',66.0,69.0,-42.0,-25.14,0); INSERT INTO "area" VALUES('EPSG','2562','Greenland - east - 63°N to 66°N','Greenland - east of 46°W and between 63°N and 66°N, onshore.',63.0,66.0,-46.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','2563','Greenland - west - 78°N to 81°N','Greenland - west of 44°W and between 78°N and 81°N, onshore.',78.0,81.0,-73.29,-44.0,0); INSERT INTO "area" VALUES('EPSG','2564','Greenland - west - 75°N to 78°N','Greenland - west of 44°W and between 75°N and 78°N, onshore.',75.0,78.0,-72.79,-44.0,0); INSERT INTO "area" VALUES('EPSG','2565','Greenland - west - 72°N to 75°N','Greenland - west of 38°W and between 72°N and 75°N, onshore.',72.0,75.0,-58.21,-38.0,0); INSERT INTO "area" VALUES('EPSG','2566','Greenland - west - 69°N to 72°N','Greenland - west of 38°W and between 69°N and 72°N, onshore.',69.0,72.0,-56.06,-38.0,0); INSERT INTO "area" VALUES('EPSG','2567','Greenland - west - 66°N to 69°N','Greenland - west of 42°W and between 66°N and 69°N, onshore.',66.0,69.0,-54.09,-42.0,0); INSERT INTO "area" VALUES('EPSG','2568','Greenland - west - 63°N to 66°N','Greenland - west of 46°W and between 63°N and 66°N, onshore.',63.0,66.0,-53.7,-46.0,0); INSERT INTO "area" VALUES('EPSG','2569','Greenland - south of 63°N','Greenland - onshore south of 63°N.',59.74,63.0,-50.72,-41.33,0); INSERT INTO "area" VALUES('EPSG','2570','Greenland - Scoresbysund area','Greenland - Scoresbysund area onshore.',68.66,74.58,-29.69,-19.89,0); INSERT INTO "area" VALUES('EPSG','2571','Greenland - Ammassalik area','Greenland - Ammassalik area onshore.',65.52,65.91,-38.86,-36.81,0); INSERT INTO "area" VALUES('EPSG','2572','Greenland - southwest coast east of 48°W','Greenland - southwest coast east of 48°W.',59.74,62.05,-48.0,-42.52,0); INSERT INTO "area" VALUES('EPSG','2573','Greenland - southwest coast 54°W to 48°W','Greenland - southwest coast between 54°W and 48°W.',60.63,73.05,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','2574','Congo - coastal area and offshore','Congo - coastal area and offshore.',-6.91,-3.55,8.84,12.34,0); INSERT INTO "area" VALUES('EPSG','2575','Australia - onshore','Australia - Australian Capital Territory; New South Wales; Northern Territory; Queensland; South Australia; Tasmania; Western Australia; Victoria.',-43.7,-9.86,112.85,153.69,0); INSERT INTO "area" VALUES('EPSG','2576','Australia - AGD84','Australia - Queensland, South Australia, Western Australia, federal areas offshore west of 129°E.',-38.53,-9.37,109.23,153.61,0); INSERT INTO "area" VALUES('EPSG','2577','Indonesia - Java Sea - offshore northwest Java','Indonesia - southern Java Sea offshore northwest Java.',-6.89,-4.07,105.77,110.01,0); INSERT INTO "area" VALUES('EPSG','2578','Slovenia - upper Soca Valley','Slovenia - upper Soca Valley and Julian Alps.',46.16,46.49,13.38,13.87,0); INSERT INTO "area" VALUES('EPSG','2579','Slovenia - Gorica','Slovenia - Gorica region including the Trnovo Forest, Nanos and Idrija Mountains.',45.77,46.18,13.47,14.11,0); INSERT INTO "area" VALUES('EPSG','2580','Slovenia - upper Savinja','Slovenia - upper Savinja region with part of Koroska (Slovene Carinthia).',46.21,46.56,14.55,15.0,0); INSERT INTO "area" VALUES('EPSG','2581','Slovenia - Suha Krajina','Slovenia - Suha Krajina with the Ribnica and Zuzemberk area.',45.66,45.89,14.57,15.08,0); INSERT INTO "area" VALUES('EPSG','2582','Slovenia - Karst','Slovenia - The Karst with part of the Gorica area.',45.64,45.9,13.57,14.12,0); INSERT INTO "area" VALUES('EPSG','2583','Slovenia - Littoral onshore','Slovenia - the Slovene Littoral with parts of the Karst and the Brkini Hills - onshore.',45.44,45.73,13.5,14.24,0); INSERT INTO "area" VALUES('EPSG','2584','Slovenia - Bela Krajina','Slovenia - Bela Krajina including the broad region of Crnomelj and Metlika.',45.42,45.74,15.06,15.36,0); INSERT INTO "area" VALUES('EPSG','2585','Slovenia - Pohorje','Slovenia - Pohorje with the Paski Kozjak and Konjiska Gora (Mountain).',46.28,46.58,15.15,15.54,0); INSERT INTO "area" VALUES('EPSG','2586','Slovenia - lower Posavje','Slovenia - lower Posavje (the Sava Basin) with part of the Kozjansko region.',45.81,46.17,15.2,15.73,0); INSERT INTO "area" VALUES('EPSG','2587','Slovenia - Maribor and Ptuj','Slovenia - Maribor and Ptuj with parts of the Kozjak range and the Slovenske Gorice (the Slovene Humpback).',46.33,46.74,15.44,16.0,0); INSERT INTO "area" VALUES('EPSG','2588','Indonesia - Bali Sea west','Indonesia - offshore Madura Strait and western Bali Sea.',-8.46,-6.8,112.8,117.01,0); INSERT INTO "area" VALUES('EPSG','2589','Indonesia - West Papua - Tangguh','Indonesia - West Papua (formerly Irian Jaya) - Tangguh.',-2.94,-1.97,131.89,133.82,0); INSERT INTO "area" VALUES('EPSG','2590','Cameroon - Garoua area','Cameroon - Garoua area.',8.92,9.87,12.9,14.19,0); INSERT INTO "area" VALUES('EPSG','2591','Cameroon - N''Djamena area','Cameroon - N''Djamena area.',11.7,12.77,14.17,15.09,0); INSERT INTO "area" VALUES('EPSG','2592','Azerbaijan - offshore and Sangachal','Azerbaijan - Caspian offshore and onshore Sangachal terminal.',37.89,42.59,48.66,51.73,0); INSERT INTO "area" VALUES('EPSG','2593','Asia - FSU - Azerbaijan and Georgia','Azerbaijan (including Caspian) and Georgia onshore.',37.89,43.59,39.99,51.73,0); INSERT INTO "area" VALUES('EPSG','2594','Azerbaijan - coastal area Baku to Astara','Azerbaijan - coastal area Baku to Astara.',38.31,40.33,48.93,50.4,0); INSERT INTO "area" VALUES('EPSG','2595','Egypt - Western Desert','Egypt - Western Desert.',25.71,31.68,24.7,30.0,0); INSERT INTO "area" VALUES('EPSG','2596','Argentina - Tierra del Fuego offshore west of 66°W','Argentina - Tierra del Fuego offshore Atlantic west of 66°W.',-54.61,-51.65,-68.62,-66.0,0); INSERT INTO "area" VALUES('EPSG','2597','Argentina - Tierra del Fuego offshore east of 66°W','Argentina - Tierra del Fuego offshore Atlantic east of 66°W.',-54.93,-51.36,-66.0,-61.49,0); INSERT INTO "area" VALUES('EPSG','2598','Algeria - District 3','Algeria - District 3 (In Salah).',25.0,32.0,1.0,3.3,0); INSERT INTO "area" VALUES('EPSG','2599','Algeria - In Amenas','Algeria - In Amenas block.',27.5,28.3,8.83,9.92,0); INSERT INTO "area" VALUES('EPSG','2600','Algeria - Hassi Bir Reikaz','Algeria - Hassi Bir Reikaz.',31.75,32.42,7.16,8.0,0); INSERT INTO "area" VALUES('EPSG','2601','Norway - offshore north of 62°N; Svalbard','Norway - offshore north of 62°N. Also Svalbard.',62.0,84.17,-3.7,39.65,0); INSERT INTO "area" VALUES('EPSG','2602','Palestine Territory','Palestine Territory.',31.21,32.55,34.17,35.58,0); INSERT INTO "area" VALUES('EPSG','2603','Asia - Middle East - Israel and Palestine Territory onshore','Israel - onshore; Palestine Territory - onshore.',29.45,33.28,34.17,35.69,0); INSERT INTO "area" VALUES('EPSG','2604','World - N hemisphere - 3-degree CM 048°E','Between 46°30''E and 49°30''E, northern hemisphere.',0.0,84.0,46.5,49.5,0); INSERT INTO "area" VALUES('EPSG','2605','World - N hemisphere - 3-degree CM 051°E','Between 49°30''E and 52°30''E, northern hemisphere.',0.0,84.0,49.5,52.5,0); INSERT INTO "area" VALUES('EPSG','2606','World - N hemisphere - 3-degree CM 054°E','Between 52°30''E and 55°30''E, northern hemisphere.',0.0,84.0,52.5,55.5,0); INSERT INTO "area" VALUES('EPSG','2607','World - N hemisphere - 3-degree CM 057°E','Between 55°30''E and 58°30''E, northern hemisphere.',0.0,84.0,55.5,58.5,0); INSERT INTO "area" VALUES('EPSG','2608','World - N hemisphere - 3-degree CM 060°E','Between 58°30''E and 61°30''E, northern hemisphere.',0.0,84.0,58.5,61.5,0); INSERT INTO "area" VALUES('EPSG','2609','World - N hemisphere - 3-degree CM 063°E','Between 61°30''E and 64°30''E, northern hemisphere.',0.0,84.0,61.5,64.5,0); INSERT INTO "area" VALUES('EPSG','2610','World - N hemisphere - 3-degree CM 066°E','Between 64°30''E and 67°30''E, northern hemisphere.',0.0,84.0,64.5,67.5,0); INSERT INTO "area" VALUES('EPSG','2611','World - N hemisphere - 3-degree CM 069°E','Between 67°30''E and 70°30''E, northern hemisphere.',0.0,84.0,67.5,70.5,0); INSERT INTO "area" VALUES('EPSG','2612','World - N hemisphere - 3-degree CM 072°E','Between 70°30''E and 73°30''E, northern hemisphere.',0.0,84.0,70.5,73.5,0); INSERT INTO "area" VALUES('EPSG','2613','World - N hemisphere - 3-degree CM 075°E','Between 73°30''E and 76°30''E, northern hemisphere.',0.0,84.0,73.5,76.5,0); INSERT INTO "area" VALUES('EPSG','2614','World - N hemisphere - 3-degree CM 078°E','Between 76°30''E and 79°30''E, northern hemisphere.',0.0,84.0,76.5,79.5,0); INSERT INTO "area" VALUES('EPSG','2615','World - N hemisphere - 3-degree CM 081°E','Between 79°30''E and 82°30''E, northern hemisphere.',0.0,84.0,79.5,82.5,0); INSERT INTO "area" VALUES('EPSG','2616','World - N hemisphere - 3-degree CM 084°E','Between 82°30''E and 85°30''E, northern hemisphere.',0.0,84.0,82.5,85.5,0); INSERT INTO "area" VALUES('EPSG','2617','World - N hemisphere - 3-degree CM 087°E','Between 85°30''E and 88°30''E, northern hemisphere.',0.0,84.0,85.5,88.5,0); INSERT INTO "area" VALUES('EPSG','2618','World - N hemisphere - 3-degree CM 090°E','Between 88°30''E and 91°30''E, northern hemisphere.',0.0,84.0,88.5,91.5,0); INSERT INTO "area" VALUES('EPSG','2619','World - N hemisphere - 3-degree CM 093°E','Between 91°30''E and 94°30''E, northern hemisphere.',0.0,84.0,91.5,94.5,0); INSERT INTO "area" VALUES('EPSG','2620','World - N hemisphere - 3-degree CM 096°E','Between 94°30''E and 97°30''E, northern hemisphere.',0.0,84.0,94.5,97.5,0); INSERT INTO "area" VALUES('EPSG','2621','World - N hemisphere - 3-degree CM 099°E','Between 97°30''E and 100°30''E, northern hemisphere.',0.0,84.0,97.5,100.5,0); INSERT INTO "area" VALUES('EPSG','2622','World - N hemisphere - 3-degree CM 102°E','Between 100°30''E and 103°30''E, northern hemisphere.',0.0,84.0,100.5,103.5,0); INSERT INTO "area" VALUES('EPSG','2623','World - N hemisphere - 3-degree CM 105°E','Between 103°30''E and 106°30''E, northern hemisphere.',0.0,84.0,103.5,106.5,0); INSERT INTO "area" VALUES('EPSG','2624','World - N hemisphere - 3-degree CM 108°E','Between 106°30''E and 109°30''E, northern hemisphere.',0.0,84.0,106.5,109.5,0); INSERT INTO "area" VALUES('EPSG','2625','World - N hemisphere - 3-degree CM 111°E','Between 109°30''Eand 112°30''E, northern hemisphere.',0.0,84.0,109.5,112.5,0); INSERT INTO "area" VALUES('EPSG','2626','World - N hemisphere - 3-degree CM 114°E','Between 112°30''E and 115°30''E, northern hemisphere.',0.0,84.0,112.5,115.5,0); INSERT INTO "area" VALUES('EPSG','2627','World - N hemisphere - 3-degree CM 117°E','Between 115°30''E and 118°30''E, northern hemisphere.',0.0,84.0,115.5,118.5,0); INSERT INTO "area" VALUES('EPSG','2628','World - N hemisphere - 3-degree CM 120°E','Between 118°30''E and 121°30''E, northern hemisphere.',0.0,84.0,118.5,121.5,0); INSERT INTO "area" VALUES('EPSG','2629','World - N hemisphere - 3-degree CM 123°E','Between 121°30''E and 124°30''E, northern hemisphere.',0.0,84.0,121.5,124.5,0); INSERT INTO "area" VALUES('EPSG','2630','World - N hemisphere - 3-degree CM 126°E','Between 124°30''E and 127°30''E, northern hemisphere.',0.0,84.0,124.5,127.5,0); INSERT INTO "area" VALUES('EPSG','2631','World - N hemisphere - 3-degree CM 129°E','Between 127°30''E and 130°30''E, northern hemisphere.',0.0,84.0,127.5,130.5,0); INSERT INTO "area" VALUES('EPSG','2632','World - N hemisphere - 3-degree CM 132°E','Between 130°30''E and 133°30''E, northern hemisphere.',0.0,84.0,130.5,133.5,0); INSERT INTO "area" VALUES('EPSG','2633','World - N hemisphere - 3-degree CM 135°E','Between 133°30''E and 136°30''E, northern hemisphere.',0.0,84.0,133.5,136.5,0); INSERT INTO "area" VALUES('EPSG','2634','World - N hemisphere - 3-degree CM 138°E','Between 136°30''E and 139°30''E, northern hemisphere.',0.0,84.0,136.5,139.5,0); INSERT INTO "area" VALUES('EPSG','2635','World - N hemisphere - 3-degree CM 141°E','Between 139°30''E and 142°30''E, northern hemisphere.',0.0,84.0,139.5,142.5,0); INSERT INTO "area" VALUES('EPSG','2636','World - N hemisphere - 3-degree CM 144°E','Between 142°30''E and 145°30''E, northern hemisphere.',0.0,84.0,142.5,145.5,0); INSERT INTO "area" VALUES('EPSG','2637','World - N hemisphere - 3-degree CM 147°E','Between 145°30''E and 148°30''E, northern hemisphere.',0.0,84.0,145.5,148.5,0); INSERT INTO "area" VALUES('EPSG','2638','World - N hemisphere - 3-degree CM 150°E','Between 148°30''E and 151°30''E, northern hemisphere.',0.0,84.0,148.5,151.5,0); INSERT INTO "area" VALUES('EPSG','2639','World - N hemisphere - 3-degree CM 153°E','Between 151°30''E and 154°30''E, northern hemisphere.',0.0,84.0,151.5,154.5,0); INSERT INTO "area" VALUES('EPSG','2640','World - N hemisphere - 3-degree CM 156°E','Between 154°30''E and 157°30''E, northern hemisphere.',0.0,84.0,154.5,157.5,0); INSERT INTO "area" VALUES('EPSG','2641','World - N hemisphere - 3-degree CM 159°E','Between 157°30''E and 160°30''E, northern hemisphere.',0.0,84.0,157.5,160.5,0); INSERT INTO "area" VALUES('EPSG','2642','World - N hemisphere - 3-degree CM 162°E','Between 160°30''E and 163°30''E, northern hemisphere.',0.0,84.0,160.5,163.5,0); INSERT INTO "area" VALUES('EPSG','2643','World - N hemisphere - 3-degree CM 165°E','Between 163°30''E and 166°30''E, northern hemisphere.',0.0,84.0,163.5,166.5,0); INSERT INTO "area" VALUES('EPSG','2644','World - N hemisphere - 3-degree CM 168°E','Between 166°30''E and 169°30''E, northern hemisphere.',0.0,84.0,166.5,169.5,0); INSERT INTO "area" VALUES('EPSG','2645','World - N hemisphere - 3-degree CM 171°E','Between 169°30''E and 172°30''E, northern hemisphere.',0.0,84.0,169.5,172.5,0); INSERT INTO "area" VALUES('EPSG','2646','World - N hemisphere - 3-degree CM 174°E','Between 172°30''E and 175°30''E, northern hemisphere.',0.0,84.0,172.5,175.5,0); INSERT INTO "area" VALUES('EPSG','2647','World - N hemisphere - 3-degree CM 177°E','Between 175°30''E and 178°30''E, northern hemisphere.',0.0,84.0,175.5,178.5,0); INSERT INTO "area" VALUES('EPSG','2648','World - N hemisphere - 3-degree CM 180°E','Between 178°30''E and 178°30''W, northern hemisphere.',0.0,84.0,178.5,-178.5,0); INSERT INTO "area" VALUES('EPSG','2649','World - N hemisphere - 3-degree CM 177°W','Between 178°30''W and 175°30''W, northern hemisphere.',0.0,84.0,-178.5,-175.5,0); INSERT INTO "area" VALUES('EPSG','2650','World - N hemisphere - 3-degree CM 174°W','Between 175°30''W and 172°30''W, northern hemisphere.',0.0,84.0,-175.5,-172.5,0); INSERT INTO "area" VALUES('EPSG','2651','World - N hemisphere - 3-degree CM 171°W','Between 172°30''W and 169°30''W, northern hemisphere.',0.0,84.0,-172.5,-169.5,0); INSERT INTO "area" VALUES('EPSG','2652','World - N hemisphere - 3-degree CM 168°W','Between 169°30''W and 166°30''W, northern hemisphere.',0.0,84.0,-169.5,-166.5,0); INSERT INTO "area" VALUES('EPSG','2653','Europe - FSU - 19.5°E to 22.5°E onshore','Estonia, Latvia, Lithuania, Russian Federation (Kaliningrad) and Ukraine - onshore between 19°30''E and 22°30''E.',48.24,59.1,19.57,22.5,0); INSERT INTO "area" VALUES('EPSG','2654','Europe - FSU - 22.5°E to 25.5°E onshore','Belarus, Estonia, Latvia, Lithuania, Russian Federation (Kaliningrad) and Ukraine - onshore between 22°30''E and 25°30''E.',47.71,59.75,22.5,25.5,0); INSERT INTO "area" VALUES('EPSG','2655','Europe - FSU - 25.5°E to 28.5°E onshore','Belarus, Estonia, Latvia, Lithuania, Moldova, Russian Federation and Ukraine - onshore between 25°30''E and 28°30''E.',45.26,68.93,25.49,28.51,0); INSERT INTO "area" VALUES('EPSG','2656','Europe - FSU - 28.5°E to 31.5°E onshore','Belarus, Moldova, Russian Federation and Ukraine - onshore between 28°30''E and 31°30''E.',45.18,69.85,28.5,31.5,0); INSERT INTO "area" VALUES('EPSG','2657','Europe - FSU - 31.5°E to 34.5°E onshore','Belarus, Russian Federation and Ukraine - onshore between 31°30''E and 34°30''E.',44.32,70.02,31.5,34.5,0); INSERT INTO "area" VALUES('EPSG','2658','Europe - FSU - 34.5°E to 37.5°E onshore','Russian Federation and Ukraine - onshore between 34°30''E and 37°30''E.',44.61,69.39,34.5,37.5,0); INSERT INTO "area" VALUES('EPSG','2659','Europe - FSU - 37.5°E to 40.5°E onshore','Georgia, Russian Federation and Ukraine - onshore between 37°30''E and 40°30''E.',43.07,68.8,37.5,40.5,0); INSERT INTO "area" VALUES('EPSG','2660','Europe - FSU - 40.5°E to 43.5°E onshore','Georgia, Russian Federation - onshore between 40°30''E and 43°30''E.',41.01,68.74,40.5,43.51,0); INSERT INTO "area" VALUES('EPSG','2661','Europe - FSU - 43.5°E to 46.5°E onshore','Armenia, Azerbaijan, Georgia and Russian Federation onshore - between 43°30''E and 46°30''E.',38.84,80.8,43.5,46.5,0); INSERT INTO "area" VALUES('EPSG','2662','Europe - FSU - 46.5°E to 49.5°E onshore','Azerbaijan, Georgia, Kazakhstan and Russian Federation onshore - between 46°30''E and 49°30''E.',38.31,80.91,46.5,49.5,0); INSERT INTO "area" VALUES('EPSG','2663','Asia - FSU - 49.5°E to 52.5°E onshore','Azerbaijan, Kazakhstan and Russian Federation onshore - between 49°30''E and 52°30''E.',37.66,81.22,49.5,52.5,0); INSERT INTO "area" VALUES('EPSG','2664','Asia - FSU - 52.5°E to 55.5°E onshore','Kazakhstan, Russian Federation onshore and Turkmenistan - between 52°30''E and 55°30''E.',37.33,81.41,52.5,55.5,0); INSERT INTO "area" VALUES('EPSG','2665','Asia - FSU - 55.5°E to 58.5°E onshore','Kazakhstan, Russian Federation onshore, Turkmenistan and Uzbekistan - between 55°30''E and 58°30''E.',37.64,81.89,55.5,58.5,0); INSERT INTO "area" VALUES('EPSG','2666','Asia - FSU - 58.5°E to 61.5°E onshore','Kazakhstan, Russian Federation onshore, Turkmenistan and Uzbekistan - between 58°30''E and 61°30''E.',35.51,81.91,58.5,61.5,0); INSERT INTO "area" VALUES('EPSG','2667','Asia - FSU - 61.5°E to 64.5°E onshore','Kazakhstan, Russian Federation onshore, Turkmenistan and Uzbekistan - between 61°30''E and 64°30''E.',35.14,81.77,61.5,64.5,0); INSERT INTO "area" VALUES('EPSG','2668','Asia - FSU - 64.5°E to 67.5°E onshore','Kazakhstan, Russian Federation onshore, Tajikistan, Turkmenistan and Uzbekistan - between 64°30''E and 67°30''E.',36.27,81.25,64.5,67.5,0); INSERT INTO "area" VALUES('EPSG','2669','Asia - FSU - 67.5°E to 70.5°E onshore','Kazakhstan, Kyrgyzstan, Russian Federation onshore, Tajikistan and Uzbekistan - between 67°30''E and 70°30''E.',36.93,77.07,67.5,70.5,0); INSERT INTO "area" VALUES('EPSG','2670','Asia - FSU - 70.5°E to 73.5°E onshore','Kazakhstan, Kyrgyzstan, Russian Federation onshore, Tajikistan and Uzbekistan - between 70°30''E and 73°30''E.',36.67,73.57,70.5,73.5,0); INSERT INTO "area" VALUES('EPSG','2671','Asia - FSU - 73.5°E to 76.5°E onshore','Kazakhstan, Kyrgyzstan, Russian Federation onshore and Tajikistan - between 73°30''E and 76°30''E.',37.22,79.71,73.5,76.5,0); INSERT INTO "area" VALUES('EPSG','2672','Asia - FSU - 76.5°E to 79.5°E onshore','Kazakhstan, Kyrgyzstan and Russian Federation onshore - between 76°30''E and 79°30''E.',40.44,81.03,76.5,79.5,0); INSERT INTO "area" VALUES('EPSG','2673','Asia - FSU - 79.5°E to 82.5°E onshore','Kazakhstan, Kyrgyzstan and Russian Federation onshore - between 79°30''E and 82°30''E.',41.82,81.03,79.5,82.5,0); INSERT INTO "area" VALUES('EPSG','2674','Asia - FSU - 82.5°E to 85.5°E onshore','Kazakhstan and Russian Federation onshore - between 82°30''E and 85°30''E.',45.11,77.56,82.5,85.5,0); INSERT INTO "area" VALUES('EPSG','2675','Asia - FSU - 85.5°E to 88.5°E onshore','Kazakhstan and Russian Federation onshore - between 85°30''E and 88°30''E.',47.05,77.16,85.5,88.5,0); INSERT INTO "area" VALUES('EPSG','2676','Russia - 88.5°E to 91.5°E onshore','Russian Federation - onshore between 88°30''E and 91°30''E.',49.44,81.28,88.5,91.5,0); INSERT INTO "area" VALUES('EPSG','2677','Russia - 91.5°E to 94.5°E onshore','Russian Federation - onshore between 91°30''E and 94°30''E.',50.16,81.26,91.5,94.5,0); INSERT INTO "area" VALUES('EPSG','2678','Russia - 94.5°E to 97.5°E onshore','Russian Federation - onshore between 94°30''E and 97°30''E.',49.73,81.35,94.5,97.5,0); INSERT INTO "area" VALUES('EPSG','2679','Russia - 97.5°E to 100.5°E onshore','Russian Federation - onshore between 97°30''E and 100°30''E.',49.79,80.9,97.5,100.5,0); INSERT INTO "area" VALUES('EPSG','2680','Russia - 100.5°E to 103.5°E onshore','Russian Federation - onshore between 100°30''E and 103°30''E.',50.17,79.71,100.5,103.5,0); INSERT INTO "area" VALUES('EPSG','2681','Russia - 103.5°E to 106.5°E onshore','Russian Federation - onshore between 103°30''E and 106°30''E.',50.13,79.21,103.5,106.5,0); INSERT INTO "area" VALUES('EPSG','2682','Russia - 106.5°E to 109.5°E onshore','Russian Federation - onshore between 106°30''E and 109°30''E.',49.25,78.4,106.5,109.5,0); INSERT INTO "area" VALUES('EPSG','2683','Russia - 109.5°E to 112.5°E onshore','Russian Federation - onshore between 109°30''E and 112°30''E.',49.14,76.81,109.5,112.5,0); INSERT INTO "area" VALUES('EPSG','2684','Russia - 112.5°E to 115.5°E onshore','Russian Federation - onshore between 112°30''E and 115°30''E.',49.49,76.7,112.5,115.5,0); INSERT INTO "area" VALUES('EPSG','2685','Russia - 115.5°E to 118.5°E onshore','Russian Federation - onshore between 115°30''E and 118°30''E.',49.51,74.43,115.5,118.5,0); INSERT INTO "area" VALUES('EPSG','2686','Russia - 118.5°E to 121.5°E onshore','Russian Federation - onshore between 118°30''E and 121°30''E.',49.87,73.63,118.5,121.5,0); INSERT INTO "area" VALUES('EPSG','2687','Russia - 121.5°E to 124.5°E onshore','Russian Federation - onshore between 121°30''E and 124°30''E.',53.18,74.0,121.5,124.5,0); INSERT INTO "area" VALUES('EPSG','2688','Russia - 124.5°E to 127.5°E onshore','Russian Federation - onshore between 124°30''E and 127°30''E.',49.88,74.0,124.5,127.5,0); INSERT INTO "area" VALUES('EPSG','2689','Russia - 127.5°E to 130.5°E onshore','Russian Federation - onshore between 127°30''E and 130°30''E.',42.67,73.59,127.5,130.5,0); INSERT INTO "area" VALUES('EPSG','2690','Russia - 130.5°E to 133.5°E onshore','Russian Federation - onshore between 130°30''E and 133°30''E.',42.25,71.99,130.5,133.5,0); INSERT INTO "area" VALUES('EPSG','2691','Russia - 133.5°E to 136.5°E onshore','Russian Federation - onshore between 133°30''E and 136°30''E.',42.74,75.9,133.5,136.5,0); INSERT INTO "area" VALUES('EPSG','2692','Russia - 136.5°E to 139.5°E onshore','Russian Federation - onshore between 136°30''E and 139°30''E.',44.76,76.27,136.5,139.5,0); INSERT INTO "area" VALUES('EPSG','2693','Russia - 139.5°E to 142.5°E onshore','Russian Federation - onshore between 139°30''E and 142°30''E.',45.84,76.23,139.5,142.5,0); INSERT INTO "area" VALUES('EPSG','2694','Russia - 142.5°E to 145.5°E onshore','Russian Federation - onshore between 142°30''E and 145°30''E.',43.61,75.98,142.5,145.5,0); INSERT INTO "area" VALUES('EPSG','2695','Russia - 145.5°E to 148.5°E onshore','Russian Federation - onshore between 145°30''E and 148°30''E.',43.6,76.76,145.5,148.5,0); INSERT INTO "area" VALUES('EPSG','2696','Russia - 148.5°E to 151.5°E onshore','Russian Federation - onshore between 148°30''E and 151°30''E.',45.21,76.82,148.5,151.5,0); INSERT INTO "area" VALUES('EPSG','2697','Russia - 151.5°E to 154.5°E onshore','Russian Federation - onshore between 151°30''E and 154°30''E.',46.72,76.26,151.5,154.5,0); INSERT INTO "area" VALUES('EPSG','2698','Russia - 154.5°E to 157.5°E onshore','Russian Federation - onshore between 154°30''E and 157°30''E.',49.02,77.2,154.5,157.5,0); INSERT INTO "area" VALUES('EPSG','2699','Russia - 157.5°E to 160.5°E onshore','Russian Federation - onshore between 157°30''E and 160°30''E.',51.36,71.12,157.5,160.5,0); INSERT INTO "area" VALUES('EPSG','2700','Russia - 160.5°E to 163.5°E onshore','Russian Federation - onshore between 160°30''E and 163°30''E.',54.34,70.98,160.5,163.5,0); INSERT INTO "area" VALUES('EPSG','2701','Russia - 163.5°E to 166.5°E onshore','Russian Federation - onshore between 163°30''E and 166°30''E.',54.69,69.82,163.5,166.5,0); INSERT INTO "area" VALUES('EPSG','2702','Russia - 166.5°E to 169.5°E onshore','Russian Federation - onshore between 166°30''E and 169°30''E.',54.45,70.07,166.5,169.5,0); INSERT INTO "area" VALUES('EPSG','2703','Russia - 169.5°E to 172.5°E onshore','Russian Federation - onshore between 169°30''E and 172°30''E.',59.86,70.19,169.5,172.5,0); INSERT INTO "area" VALUES('EPSG','2704','Russia - 172.5°E to 175.5°E onshore','Russian Federation - onshore between 172°30''E and 175°30''E.',60.99,70.02,172.5,175.5,0); INSERT INTO "area" VALUES('EPSG','2705','Russia - 175.5°E to 178.5°E onshore','Russian Federation - onshore between 175°30''E and 178°30''E.',62.09,71.1,175.5,178.5,0); INSERT INTO "area" VALUES('EPSG','2706','Russia - 178.5°E to 178.5°W onshore','Russian Federation - onshore between 178°30''E and 178°30''W.',62.24,71.65,178.5,-178.5,0); INSERT INTO "area" VALUES('EPSG','2707','Russia - 178.5°W to 175.5°W onshore','Russian Federation - onshore between 178°30''W and 175°30''W.',64.74,71.61,-178.5,-175.5,0); INSERT INTO "area" VALUES('EPSG','2708','Russia - 175.5°W to 172.5°W onshore','Russian Federation - onshore between 175°30''W and 172°30''W.',64.2,67.78,-175.5,-172.5,0); INSERT INTO "area" VALUES('EPSG','2709','Russia - 172.5°W to 169.5°W onshore','Russian Federation - onshore between 172°30''W and 169°30''W.',64.35,67.06,-172.5,-169.57,0); INSERT INTO "area" VALUES('EPSG','2710','Russia - east of 169.5°W onshore','Russian Federation - onshore between 169°30''W and 166°30''W.',65.7,65.86,-169.22,-168.97,0); INSERT INTO "area" VALUES('EPSG','2711','China - west of 76.5°E','China - west of 76°30''E.',35.81,40.65,73.62,76.5,0); INSERT INTO "area" VALUES('EPSG','2712','China - 76.5°E to 79.5°E','China - between 76°30''E and 79°30''E.',31.03,41.83,76.5,79.5,0); INSERT INTO "area" VALUES('EPSG','2713','China - 79.5°E to 82.5°E','China - between 79°30''E and 82°30''E.',29.95,45.88,79.5,82.51,0); INSERT INTO "area" VALUES('EPSG','2714','China - 82.5°E to 85.5°E','China - between 82°30''E and 85°30''E.',28.26,47.23,82.5,85.5,0); INSERT INTO "area" VALUES('EPSG','2715','China - 85.5°E to 88.5°E','China - between 85°30''E and 88°30''E.',27.8,49.18,85.5,88.5,0); INSERT INTO "area" VALUES('EPSG','2716','China - 88.5°E to 91.5°E','China - between 88°30''E and 91°30''E.',27.32,48.42,88.49,91.51,0); INSERT INTO "area" VALUES('EPSG','2717','China - 91.5°E to 94.5°E','China - between 91°30''E and 94°30''E.',27.71,45.13,91.5,94.5,0); INSERT INTO "area" VALUES('EPSG','2718','China - 94.5°E to 97.5°E','China - between 94°30''E and 97°30''E.',28.23,44.5,94.5,97.51,0); INSERT INTO "area" VALUES('EPSG','2719','China - 97.5°E to 100.5°E','China - between 97°30''E and 100°30''E.',21.43,42.76,97.5,100.5,0); INSERT INTO "area" VALUES('EPSG','2720','China - 100.5°E to 103.5°E','China - between 100°30''E and 103°30''E.',21.13,42.69,100.5,103.5,0); INSERT INTO "area" VALUES('EPSG','2721','China - 103.5°E to 106.5°E','China - between 103°30''E and 106°30''E.',22.5,42.21,103.5,106.51,0); INSERT INTO "area" VALUES('EPSG','2722','China - 106.5°E to 109.5°E onshore','China - onshore between 106°30''E and 109°30''E.',18.19,42.47,106.5,109.51,0); INSERT INTO "area" VALUES('EPSG','2723','China - 109.5°E to 112.5°E onshore','China - onshore between 109°30''E and 112°30''E.',18.11,45.11,109.5,112.5,0); INSERT INTO "area" VALUES('EPSG','2724','China - 112.5°E to 115.5°E onshore','China - onshore between 112°30''E and 115°30''E.',21.52,45.45,112.5,115.5,0); INSERT INTO "area" VALUES('EPSG','2725','China - 115.5°E to 118.5°E onshore','China - onshore between 115°30''E and 118°30''E.',22.6,49.88,115.5,118.5,0); INSERT INTO "area" VALUES('EPSG','2726','China - 118.5°E to 121.5°E onshore','China - onshore between 118°30''E and 121°30''E.',24.43,53.33,118.5,121.5,0); INSERT INTO "area" VALUES('EPSG','2727','China - 121.5°E to 124.5°E onshore','China - onshore between 121°30''E and 124°30''E.',28.22,53.56,121.5,124.5,0); INSERT INTO "area" VALUES('EPSG','2728','China - 124.5°E to 127.5°E onshore','China - onshore between 124°30''E and 127°30''E.',40.19,53.2,124.5,127.5,0); INSERT INTO "area" VALUES('EPSG','2729','China - 127.5°E to 130.5°E','China - between 127°30''E and 130°30''E.',41.37,50.25,127.5,130.5,0); INSERT INTO "area" VALUES('EPSG','2730','China - 130.5°E to 133.5°E','China - between 130°30''E and 133°30''E.',42.42,48.88,130.5,133.5,0); INSERT INTO "area" VALUES('EPSG','2731','China - east of 133.5°E','China - east of 133°30''E.',45.85,48.4,133.5,134.77,0); INSERT INTO "area" VALUES('EPSG','2732','World - 6-degree CM 081°W','Between 84°W and 78°W.',-80.0,84.0,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','2733','World - 6-degree CM 075°W','Between 78°W and 72°W.',-80.0,84.0,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','2734','World - 6-degree CM 069°W','Between 72°W and 66°W.',-80.0,84.0,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','2735','World - 6-degree CM 063°W','Between 66°W and 60°W.',-80.0,84.0,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','2736','World - 6-degree CM 057°W','Between 60°W and 54°W.',-80.0,84.0,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','2737','World - 6-degree CM 051°W','Between 54°W and 48°W.',-80.0,84.0,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','2738','World - 6-degree CM 045°W','Between 48°W and 42°W.',-80.0,84.0,-48.0,-42.0,0); INSERT INTO "area" VALUES('EPSG','2739','World - 6-degree CM 039°W','Between 42°W and 36°W.',-80.0,84.0,-42.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','2740','World - 6-degree CM 033°W','Between 36°W and 30°W.',-80.0,84.0,-36.0,-30.0,0); INSERT INTO "area" VALUES('EPSG','2741','World - 6-degree CM 009°E','Between 6°E and 12°E.',-80.0,84.0,6.0,12.0,0); INSERT INTO "area" VALUES('EPSG','2742','World - 6-degree CM 015°E','Between 12°E and 18°E.',-80.0,84.0,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','2743','World - 6-degree CM 021°E','Between 18°E and 24°E.',-80.0,84.0,18.0,24.0,0); INSERT INTO "area" VALUES('EPSG','2744','World - 6-degree CM 027°E','Between 24°E and 30°E.',-80.0,84.0,24.0,30.0,0); INSERT INTO "area" VALUES('EPSG','2745','World - 6-degree CM 033°E','Between 30°E and 36°E.',-80.0,84.0,30.0,36.0,0); INSERT INTO "area" VALUES('EPSG','2746','World - 6-degree CM 039°E','Between 36°E and 42°E.',-80.0,84.0,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','2747','Russia - 19.5°E to 22.5°E onshore','Russian Federation - Kaliningrad - onshore between 19°30''E and 22°30''E.',54.32,55.32,19.57,22.5,0); INSERT INTO "area" VALUES('EPSG','2748','Russia - 22.5°E to 25.5°E onshore','Russian Federation - onshore between 22°30''E and 25°30''E - Kaliningrad.',54.34,55.07,22.5,22.87,0); INSERT INTO "area" VALUES('EPSG','2749','Russia - 25.5°E to 28.5°E onshore','Russian Federation - onshore between 25°30''E and 28°30''E.',56.05,68.93,26.61,28.51,0); INSERT INTO "area" VALUES('EPSG','2750','Russia - 28.5°E to 31.5°E onshore','Russian Federation - onshore between 28°30''E and 31°30''E.',52.85,69.85,28.5,31.5,0); INSERT INTO "area" VALUES('EPSG','2751','Russia - 31.5°E to 34.5°E onshore','Russian Federation - onshore between 31°30''E and 34°30''E.',51.24,70.02,31.5,34.5,0); INSERT INTO "area" VALUES('EPSG','2752','Russia - 34.5°E to 37.5°E onshore','Russian Federation - onshore between 34°30''E and 37°30''E.',44.61,69.39,34.5,37.51,0); INSERT INTO "area" VALUES('EPSG','2753','Russia - 37.5°E to 40.5°E onshore','Russian Federation - onshore between 37°30''E and 40°30''E.',43.33,68.8,37.5,40.5,0); INSERT INTO "area" VALUES('EPSG','2754','Russia - 40.5°E to 43.5°E onshore','Russian Federation - onshore between 40°30''E and 43°30''E.',42.87,68.74,40.5,43.5,0); INSERT INTO "area" VALUES('EPSG','2755','Russia - 43.5°E to 46.5°E onshore','Russian Federation - onshore between 43°30''E and 46°30''E.',41.89,80.8,43.5,46.5,0); INSERT INTO "area" VALUES('EPSG','2756','Russia - 46.5°E to 49.5°E onshore','Russian Federation - onshore between 46°30''E and 49°30''E.',41.19,80.91,46.5,49.5,0); INSERT INTO "area" VALUES('EPSG','2757','Russia - 49.5°E to 52.5°E onshore','Russian Federation - onshore between 49°30''E and 52°30''E.',42.36,81.22,49.5,52.5,0); INSERT INTO "area" VALUES('EPSG','2758','Russia - 52.5°E to 55.5°E onshore','Russian Federation - onshore between 52°30''E and 55°30''E.',50.52,81.41,52.5,55.5,0); INSERT INTO "area" VALUES('EPSG','2759','Russia - 55.5°E to 58.5°E onshore','Russian Federation - onshore between 55°30''E and 58°30''E.',50.53,81.89,55.5,58.5,0); INSERT INTO "area" VALUES('EPSG','2760','Russia - 58.5°E to 61.5°E onshore','Russian Federation - onshore between 58°30''E and 61°30''E.',50.47,81.91,58.5,61.5,0); INSERT INTO "area" VALUES('EPSG','2761','Russia - 61.5°E to 64.5°E onshore','Russian Federation - onshore between 61°30''E and 64°30''E.',51.03,81.77,61.5,64.5,0); INSERT INTO "area" VALUES('EPSG','2762','Russia - 64.5°E to 67.5°E onshore','Russian Federation - onshore between 64°30''E and 67°30''E.',54.31,81.25,64.5,67.5,0); INSERT INTO "area" VALUES('EPSG','2763','Russia - 67.5°E to 70.5°E onshore','Russian Federation - onshore between 67°30''E and 70°30''E.',54.85,77.07,67.5,70.5,0); INSERT INTO "area" VALUES('EPSG','2764','Russia - 70.5°E to 73.5°E onshore','Russian Federation - onshore between 70°30''E and 73°30''E.',53.43,73.57,70.5,73.5,0); INSERT INTO "area" VALUES('EPSG','2765','Russia - 73.5°E to 76.5°E onshore','Russian Federation - onshore between 73°30''E and 76°30''E.',53.47,79.71,73.5,76.5,0); INSERT INTO "area" VALUES('EPSG','2766','Russia - 76.5°E to 79.5°E onshore','Russian Federation - onshore between 76°30''E and 79°30''E.',51.49,81.03,76.5,79.5,0); INSERT INTO "area" VALUES('EPSG','2767','Russia - 79.5°E to 82.5°E onshore','Russian Federation - onshore between 79°30''E and 82°30''E.',50.7,81.03,79.5,82.5,0); INSERT INTO "area" VALUES('EPSG','2768','Russia - 82.5°E to 85.5°E onshore','Russian Federation - onshore between 82°30''E and 85°30''E.',49.58,77.56,82.5,85.5,0); INSERT INTO "area" VALUES('EPSG','2769','Russia - 85.5°E to 88.5°E onshore','Russian Federation - onshore between 85°30''E and 88°30''E.',49.07,77.16,85.5,88.5,0); INSERT INTO "area" VALUES('EPSG','2770','Indonesia - northeast Kalimantan','Indonesia - northeast Kalimantan.',-0.07,4.29,116.96,119.06,0); INSERT INTO "area" VALUES('EPSG','2771','Niger - southeast','Niger - southeast',12.8,16.7,7.81,14.9,0); INSERT INTO "area" VALUES('EPSG','2772','Asia - FSU - CS63 zone A1','Armenia and Georgia onshore west of 43°02''E.',41.37,43.59,39.99,43.04,0); INSERT INTO "area" VALUES('EPSG','2773','Asia - FSU - CS63 zone A2','Armenia and Georgia between 43°02''E and 46°02''E; Azerbaijan west of 46°02''E.',38.87,43.05,43.03,46.04,0); INSERT INTO "area" VALUES('EPSG','2774','Asia - FSU - CS63 zone A3','Armenia and Georgia east of 46°02''E; Azerbaijan between 46°02'' and 49°02''E.',38.38,42.1,46.03,49.04,0); INSERT INTO "area" VALUES('EPSG','2775','Asia - FSU - CS63 zone A4','Azerbaijan east of 49°02''E.',37.89,42.59,49.03,51.73,0); INSERT INTO "area" VALUES('EPSG','2776','Asia - FSU - CS63 zone K2','Kazakhstan between 49°16''E and 52°16''E.',41.15,51.77,49.26,52.27,0); INSERT INTO "area" VALUES('EPSG','2777','Asia - FSU - CS63 zone K3','Kazakhstan between 52°16''E and 55°16''E.',41.46,51.79,52.26,55.27,0); INSERT INTO "area" VALUES('EPSG','2778','Asia - FSU - CS63 zone K4','Kazakhstan between 55°16''E and 58°16''E.',41.26,51.14,55.26,58.27,0); INSERT INTO "area" VALUES('EPSG','2779','Portugal - Selvagens onshore','Portugal - Selvagens islands (Madeira province) - onshore.',29.98,30.21,-16.11,-15.79,0); INSERT INTO "area" VALUES('EPSG','2780','Malaysia - East Malaysia - offshore SCS','Malaysia - East Malaysia (Sabah; Sarawak) - offshore South China Sea.',1.56,7.67,109.31,117.31,0); INSERT INTO "area" VALUES('EPSG','2781','Iran - Kharg Island','Iran - Kharg Island.',29.16,29.39,50.22,50.42,0); INSERT INTO "area" VALUES('EPSG','2782','Iran - Lavan Island and Balal field','Iran - Lavan Island and Balal field.',26.21,26.87,52.49,53.43,0); INSERT INTO "area" VALUES('EPSG','2783','Iran - South Pars blocks 2 and 3','Iran - South Pars field phases 2 and 3.',26.58,26.71,52.07,52.28,0); INSERT INTO "area" VALUES('EPSG','2784','Canada - south of 60°N','Canada south of 60°N - Alberta, British Columbia (BC), Manitoba, New Brunswick (NB), Newfoundland and Labrador, Nova Scotia (NS), Ontario, Prince Edward Island (PEI), Quebec and Saskatchewan.',41.68,60.0,-139.05,-52.62,1); INSERT INTO "area" VALUES('EPSG','2785','Libya - Murzuq and En Naga','Libya - Murzuq and En Naga fields.',27.32,27.67,18.37,18.72,0); INSERT INTO "area" VALUES('EPSG','2786','Libya - Mabruk','Libya - Mabruk field.',29.61,30.07,17.13,17.51,0); INSERT INTO "area" VALUES('EPSG','2787','Morocco - south of 31.5°N','Morocco onshore south of 35 grads North (31°30''N).',27.66,31.51,-13.24,-3.59,0); INSERT INTO "area" VALUES('EPSG','2788','Western Sahara - north of 24.3°N','Western Sahara - onshore north of 27grads North (24°18''N).',24.29,27.67,-15.42,-8.66,0); INSERT INTO "area" VALUES('EPSG','2789','Western Sahara - south of 24.3°N','Western Sahara - onshore south of 27grads North (24°18''N).',20.71,24.31,-17.16,-12.0,0); INSERT INTO "area" VALUES('EPSG','2790','Africa - 12th parallel N','Senegal - central, Mali - southwest, Burkina Faso - central, Niger - southwest, Nigeria - north, Chad - central. All in proximity to the parallel of latitude of 12°N.',10.26,15.7,-17.19,30.42,0); INSERT INTO "area" VALUES('EPSG','2791','Africa - Burkina Faso and SW Niger','Burkina Faso - central; Niger - southwest, in proximity to the parallel of latitude of 12°N.',11.83,14.23,-4.64,4.0,0); INSERT INTO "area" VALUES('EPSG','2792','UK - Great Britain mainland onshore','United Kingdom (UK) - Great Britain onshore - England and Wales - mainland; Scotland - mainland and Inner Hebrides.',49.93,58.71,-7.06,1.8,0); INSERT INTO "area" VALUES('EPSG','2793','UK - Orkney Islands onshore','United Kingdom (UK) - Great Britain - Scotland - Orkney Islands onshore.',58.72,59.41,-3.48,-2.34,0); INSERT INTO "area" VALUES('EPSG','2794','UK - Fair Isle onshore','United Kingdom (UK) - Great Britain - Scotland - Fair Isle onshore.',59.45,59.6,-1.76,-1.5,0); INSERT INTO "area" VALUES('EPSG','2795','UK - Shetland Islands onshore','United Kingdom (UK) - Great Britain - Scotland - Shetland Islands onshore.',59.83,60.87,-1.78,-0.67,0); INSERT INTO "area" VALUES('EPSG','2796','UK - Foula onshore','United Kingdom (UK) - Great Britain - Scotland - Foula onshore.',60.06,60.2,-2.21,-1.95,0); INSERT INTO "area" VALUES('EPSG','2797','UK - Sule Skerry onshore','United Kingdom (UK) - Great Britain - Scotland - Sule Skerry onshore.',59.05,59.13,-4.5,-4.3,0); INSERT INTO "area" VALUES('EPSG','2798','UK - North Rona onshore','United Kingdom (UK) - Great Britain - Scotland - North Rona onshore.',59.07,59.19,-5.92,-5.73,0); INSERT INTO "area" VALUES('EPSG','2799','UK - Outer Hebrides onshore','United Kingdom (UK) - Great Britain - Scotland - Outer Hebrides onshore.',56.76,58.54,-7.72,-6.1,0); INSERT INTO "area" VALUES('EPSG','2800','UK - St. Kilda onshore','United Kingdom (UK) - Great Britain - Scotland - St Kilda onshore.',57.74,57.93,-8.74,-8.41,0); INSERT INTO "area" VALUES('EPSG','2801','UK - Flannan Isles onshore','United Kingdom (UK) - Great Britain - Scotland - Flannan Isles onshore.',58.21,58.35,-7.75,-7.46,0); INSERT INTO "area" VALUES('EPSG','2802','UK - Scilly Isles onshore','United Kingdom (UK) - Great Britain - England - Isles of Scilly onshore.',49.86,49.99,-6.41,-6.23,0); INSERT INTO "area" VALUES('EPSG','2803','Isle of Man - onshore','Isle of Man - onshore.',54.02,54.44,-4.87,-4.27,0); INSERT INTO "area" VALUES('EPSG','2804','Europe - Austria and FR Yugoslavia','Austria; Boznia and Herzegovina; Croatia; Czech Republic; FYR Macedonia; Montenegro; Serbia; Slovakia; Slovenia.',40.86,51.05,9.53,23.03,1); INSERT INTO "area" VALUES('EPSG','2805','Chile - Tierra del Fuego','Chile - Tierra del Fuego onshore.',-55.96,-51.99,-74.83,-66.33,0); INSERT INTO "area" VALUES('EPSG','2806','Iran - northern Gulf coast','Iran - northern Gulf coast area.',29.0,31.67,47.75,50.83,1); INSERT INTO "area" VALUES('EPSG','2807','Comoros - Njazidja (Grande Comore)','Comoros - Njazidja (Grande Comore).',-11.99,-11.31,43.16,43.55,0); INSERT INTO "area" VALUES('EPSG','2808','Comoros - Nzwani','Comoros - Nzwani.',-12.43,-12.02,44.16,44.59,0); INSERT INTO "area" VALUES('EPSG','2809','Comoros - Mwali','Comoros - Mwali.',-12.44,-12.19,43.57,43.92,0); INSERT INTO "area" VALUES('EPSG','2810','French Polynesia - Marquesas Islands - Nuku Hiva','French Polynesia - Marquesas Islands - Nuku Hiva.',-9.01,-8.72,-140.31,-139.96,0); INSERT INTO "area" VALUES('EPSG','2811','French Polynesia - Society Islands - Moorea and Tahiti','French Polynesia - Society Islands - Moorea and Tahiti.',-17.93,-17.41,-150.0,-149.11,0); INSERT INTO "area" VALUES('EPSG','2812','French Polynesia - Society Islands - Bora Bora, Huahine, Raiatea, Tahaa','French Polynesia - Society Islands - Bora Bora, Huahine, Raiatea and Tahaa.',-16.96,-16.17,-151.91,-150.89,0); INSERT INTO "area" VALUES('EPSG','2813','New Caledonia - Ouvea','New Caledonia - Loyalty Islands - Ouvea.',-20.77,-20.34,166.44,166.71,0); INSERT INTO "area" VALUES('EPSG','2814','New Caledonia - Lifou','New Caledonia - Loyalty Islands - Lifou.',-21.24,-20.62,166.98,167.52,0); INSERT INTO "area" VALUES('EPSG','2815','Wallis and Futuna - Wallis','Wallis and Futuna - Wallis.',-13.41,-13.16,-176.25,-176.07,0); INSERT INTO "area" VALUES('EPSG','2816','French Southern Territories - Kerguelen onshore','French Southern Territories - Kerguelen onshore.',-49.78,-48.6,68.69,70.62,0); INSERT INTO "area" VALUES('EPSG','2817','Antarctica - Adelie Land - Petrels island','Antarctica - Adelie Land - Petrels island.',-66.78,-66.1,139.44,141.5,0); INSERT INTO "area" VALUES('EPSG','2818','Antarctica - Adelie Land coastal area','Antarctica - Adelie Land - coastal area between 136°E and 142°E.',-67.13,-65.61,136.0,142.0,0); INSERT INTO "area" VALUES('EPSG','2819','New Caledonia - Mare','New Caledonia - Loyalty Islands - Mare.',-21.71,-21.32,167.75,168.19,0); INSERT INTO "area" VALUES('EPSG','2820','New Caledonia - Ile des Pins','New Caledonia - Ile des Pins.',-22.73,-22.49,167.36,167.61,0); INSERT INTO "area" VALUES('EPSG','2821','New Caledonia - Belep','New Caledonia - Belep.',-19.85,-19.5,163.54,163.75,0); INSERT INTO "area" VALUES('EPSG','2822','New Caledonia - Grande Terre','New Caledonia - Grande Terre.',-22.45,-20.03,163.92,167.09,0); INSERT INTO "area" VALUES('EPSG','2823','New Caledonia - Grande Terre - Noumea','New Caledonia - Grande Terre - Noumea district.',-22.37,-22.19,166.35,166.54,0); INSERT INTO "area" VALUES('EPSG','2824','Caribbean - French Antilles','French Antilles onshore and offshore - Guadeloupe (including Grande Terre, Basse Terre, Marie Galante, Les Saintes, Iles de la Petite Terre, La Desirade, St Barthélemy, and northern St Martin) and Martinique.',14.08,18.54,-63.66,-57.52,0); INSERT INTO "area" VALUES('EPSG','2825','Africa - Ethiopia and Sudan - 30°E to 36°E','Ethiopia - west of 36°E. South Sudan - east of 30°E. Sudan - between 30°E and 36°E.',3.49,22.24,29.99,36.0,0); INSERT INTO "area" VALUES('EPSG','2826','Africa - South Sudan and Sudan - west of 24°E','South Sudan and Sudan - west of 24°E.',8.7,15.76,21.82,24.01,0); INSERT INTO "area" VALUES('EPSG','2827','Africa - South Sudan and Sudan - 24°E to 30°E','South Sudan and Sudan - between 24°E and 30°E.',4.21,22.01,23.99,30.01,0); INSERT INTO "area" VALUES('EPSG','2828','Guadeloupe - St Martin and St Barthelemy - onshore','Guadeloupe - onshore - St Martin and St Barthélemy islands.',17.82,18.17,-63.21,-62.73,0); INSERT INTO "area" VALUES('EPSG','2829','Guadeloupe - Grande-Terre and surrounding islands - onshore','Guadeloupe - onshore - Basse-Terre, Grande-Terre, La Desirade, Marie-Galante, Les Saintes.',15.8,16.55,-61.85,-60.97,0); INSERT INTO "area" VALUES('EPSG','2830','World (by country)','World: Afghanistan, Albania, Algeria, American Samoa, Andorra, Angola, Anguilla, Antarctica, Antigua and Barbuda, Argentina, Armenia, Aruba, Australia, Austria, Azerbaijan, Bahamas, Bahrain, Bangladesh, Barbados, Belgium, Belgium, Belize, Benin, Bermuda, Bhutan, Bolivia, Bonaire, Saint Eustasius and Saba, Bosnia and Herzegovina, Botswana, Bouvet Island, Brazil, British Indian Ocean Territory, British Virgin Islands, Brunei Darussalam, Bulgaria, Burkina Faso, Burundi, Cambodia, Cameroon, Canada, Cape Verde, Cayman Islands, Central African Republic, Chad, Chile, China, Christmas Island, Cocos (Keeling) Islands, Comoros, Congo, Cook Islands, Costa Rica, Côte d''Ivoire (Ivory Coast), Croatia, Cuba, Curacao, Cyprus, Czechia, Denmark, Djibouti, Dominica, Dominican Republic, East Timor, Ecuador, Egypt, El Salvador, Equatorial Guinea, Eritrea, Estonia, Eswatini (Swaziland), Ethiopia, Falkland Islands (Malvinas), Faroe Islands, Fiji, Finland, France, French Guiana, French Polynesia, French Southern Territories, Gabon, Gambia, Georgia, Germany, Ghana, Gibraltar, Greece, Greenland, Grenada, Guadeloupe, Guam, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Heard Island and McDonald Islands, Holy See (Vatican City State), Honduras, China - Hong Kong, Hungary, Iceland, India, Indonesia, Islamic Republic of Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan, Kenya, Kiribati, Democratic People''s Republic of Korea (North Korea), Republic of Korea (South Korea), Kosovo, Kuwait, Kyrgyzstan, Lao People''s Democratic Republic (Laos), Latvia, Lebanon, Lesotho, Liberia, Libyan Arab Jamahiriya, Liechtenstein, Lithuania, Luxembourg, China - Macao, Madagascar, Malawi, Malaysia, Maldives, Mali, Malta, Marshall Islands, Martinique, Mauritania, Mauritius, Mayotte, Mexico, Federated States of Micronesia, Monaco, Mongolia, Montenegro, Montserrat, Morocco, Mozambique, Myanmar (Burma), Namibia, Nauru, Nepal, Netherlands, New Caledonia, New Zealand, Nicaragua, Niger, Nigeria, Niue, Norfolk Island, North Macedonia, Northern Mariana Islands, Norway, Oman, Pakistan, Palau, Panama, Papua New Guinea (PNG), Paraguay, Peru, Philippines, Pitcairn, Poland, Portugal, Puerto Rico, Qatar, Reunion, Romania, Russian Federation, Rwanda, Saint Kitts and Nevis, Saint Helena, Ascension and Tristan da Cunha, Saint Lucia, Saint Pierre and Miquelon, Saint Vincent and the Grenadines, Samoa, San Marino, Sao Tome and Principe, Saudi Arabia, Senegal, Serbia, Seychelles, Sierra Leone, Singapore, Slovakia (Slovak Republic), Slovenia, Sint Maarten, Solomon Islands, Somalia, South Africa, South Georgia and the South Sandwich Islands, South Sudan, Spain, Sri Lanka, Sudan, Suriname, Svalbard and Jan Mayen, Sweden, Switzerland, Syrian Arab Republic, Taiwan, Tajikistan, United Republic of Tanzania, Thailand, The Democratic Republic of the Congo (Zaire), Togo, Tokelau, Tonga, Trinidad and Tobago, Tunisia, Turkey, Turkmenistan, Turks and Caicos Islands, Tuvalu, Uganda, Ukraine, United Arab Emirates (UAE), United Kingdom (UK), United States (USA), United States Minor Outlying Islands, Uruguay, Uzbekistan, Vanuatu, Venezuela, Vietnam, US Virgin Islands, Wallis and Futuna, Western Sahara, Yemen, Zambia, Zimbabwe.',-90.0,90.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','2831','Canada - Atlantic offshore','Canada - offshore Newfoundland and Labrador, New Brunswick and Nova Scotia.',40.04,64.21,-67.75,-47.74,0); INSERT INTO "area" VALUES('EPSG','2832','Canada - British Columbia','Canada - British Columbia.',48.25,60.01,-139.04,-114.08,0); INSERT INTO "area" VALUES('EPSG','2833','Sweden - 12 00','Sweden - communes west of approximately 12°45''E and south of approximately 60°N. See information source for map.',56.74,60.13,10.93,13.11,0); INSERT INTO "area" VALUES('EPSG','2834','Sweden - 13 30','Sweden - communes between approximately 12°45''E and 14°15''E and south of approximately 62°10''N. See information source for map.',55.28,62.28,12.12,14.79,0); INSERT INTO "area" VALUES('EPSG','2835','Sweden - 15 00','Sweden - communes between approximately 14°15''E and 15°45''E and south of approximately 61°30''N. See information source for map.',55.95,61.62,13.54,16.15,0); INSERT INTO "area" VALUES('EPSG','2836','Sweden - 16 30','Sweden - communes between approximately 15°45''E and 17°15''E and south of approximately 62°20''N. See information source for map.',56.15,62.26,15.41,17.63,0); INSERT INTO "area" VALUES('EPSG','2837','Sweden - 18 00','Sweden - communes east of approximately 17°15''E between approximately 60°40''N and 58°50''N. See information source for map.',58.66,60.7,17.08,19.61,0); INSERT INTO "area" VALUES('EPSG','2838','Sweden - 14 15','Sweden - communes west of approximately 15°E and between approximately 61°35''N and 64°25''N. See information source for map.',61.55,64.39,11.93,15.55,0); INSERT INTO "area" VALUES('EPSG','2839','Sweden - 15 45','Sweden - communes between approximately 15°E and 16°30''E and between approximately 60°30''N and 65°N. See information source for map.',60.44,65.13,13.66,17.01,0); INSERT INTO "area" VALUES('EPSG','2840','Sweden - 17 15','Sweden - communes between approximately 14°20''E and 18°50''E and between approximately 67°10''N and 62°05''N. See information source for map.',62.12,67.19,14.31,19.04,0); INSERT INTO "area" VALUES('EPSG','2841','Sweden - 18 45','Sweden - mainland communes between approximately 18°E and 19°30''E and between approximately 62°50''N and 66°N. Also Gotland. See information source for map.',56.86,66.17,17.18,20.22,0); INSERT INTO "area" VALUES('EPSG','2842','Sweden - 20 15','Sweden - communes in Vaasterbotten east of approximately 19°30''E and (i) north of 63°30''N and (ii) south of approximately 65°05''N. Also Norbotten west of approximately 23°20''E. See information source for map.',63.45,69.07,16.08,23.28,0); INSERT INTO "area" VALUES('EPSG','2843','Sweden - 21 45','Sweden - communes in Norbotten east of approximately 19°30''E and south of approximately 65°50''N. See information source for map.',65.01,66.43,19.63,22.91,0); INSERT INTO "area" VALUES('EPSG','2844','Sweden - 23 15','Sweden - communes east of approximately 21°50''E. See information source for map.',65.49,68.14,21.85,24.17,0); INSERT INTO "area" VALUES('EPSG','2845','Sweden - 7.5 gon W','Sweden - communes west of approximately 12°26''E. See information source for map.',57.29,59.73,10.93,12.91,0); INSERT INTO "area" VALUES('EPSG','2846','Sweden - 5 gon W','Sweden - communes between approximately 12°26''E and 14°40''E. See information source for map.',55.28,64.39,11.81,15.44,0); INSERT INTO "area" VALUES('EPSG','2847','Sweden - 2.5 gon W','Sweden. For medium and small scale applications:- all country. For large scale applications:- communes between approximately 14°40''E and 16°55''E. See information source for map.',55.95,67.18,13.66,17.73,0); INSERT INTO "area" VALUES('EPSG','2848','Sweden - 0 gon','Sweden - communes between approximately 16°55''E and 19°10''E; Gotland. See information source for map.',56.86,68.54,16.08,20.22,0); INSERT INTO "area" VALUES('EPSG','2849','Sweden - 2.5 gon E','Sweden - communes between approximately 19°10''E and 21°25''E. See information source for map.',63.37,69.07,18.4,22.2,0); INSERT INTO "area" VALUES('EPSG','2850','Sweden - 5 gon E','Sweden - east of approximately 21°26''E. See information source for map.',65.24,68.58,21.34,24.17,0); INSERT INTO "area" VALUES('EPSG','2851','Iceland - onshore west of 24°W','Iceland - onshore west of 24°W.',64.71,65.86,-24.66,-24.0,0); INSERT INTO "area" VALUES('EPSG','2852','Iceland - onshore 24°W to 18°W','Iceland - onshore between 24°W and 18°W.',63.34,66.52,-24.0,-18.0,0); INSERT INTO "area" VALUES('EPSG','2853','Iceland - onshore east of 18°W','Iceland - onshore east of 18°W.',63.45,66.59,-18.0,-13.38,0); INSERT INTO "area" VALUES('EPSG','2854','Europe - 36°W to 30°W','Europe - between 36°W and 30°W.',39.3,39.85,-36.0,-30.0,1); INSERT INTO "area" VALUES('EPSG','2855','Europe - 30°W to 24°W','Europe - between 30°W and 24°W.',25.1,65.8,-30.0,-24.0,1); INSERT INTO "area" VALUES('EPSG','2856','Europe - 24°W to 18°W','Europe - between 24°W and 18°W.',27.6,66.5,-24.0,-18.0,1); INSERT INTO "area" VALUES('EPSG','2857','Europe - 18°W to 12°W','Europe - between 18°W and 12°W.',27.6,66.55,-18.0,-12.0,1); INSERT INTO "area" VALUES('EPSG','2858','Europe - 12°W to 6°W','Europe - between 12°W and 6°W.',36.0,62.33,-12.0,-6.0,1); INSERT INTO "area" VALUES('EPSG','2859','Europe - 6°W to 0°W','Europe - between 6°W and 0°W.',34.75,62.33,-6.0,0.0,1); INSERT INTO "area" VALUES('EPSG','2860','Germany - west of 6°E','Germany - onshore and offshore west of 6°E.',50.97,55.92,3.34,6.0,0); INSERT INTO "area" VALUES('EPSG','2861','Germany - 6°E to 12°E','Germany - onshore and offshore between 6°E and 12°E, including Mecklenburg-Vorpommern west of 12°E and Schleswig-Holstein.',47.27,55.47,6.0,12.0,0); INSERT INTO "area" VALUES('EPSG','2862','Germany - east of 12°E','Germany - onshore and offshore east of 12°E, including Brandenburg (all state, including that part west of 12°E) and Mecklenburg-Vorpommern east of 12°E.',47.46,55.03,11.57,15.04,0); INSERT INTO "area" VALUES('EPSG','2863','Europe - 18°E to 24°E','Europe - between 18°E and 24°E.',34.8,75.0,18.0,24.0,1); INSERT INTO "area" VALUES('EPSG','2864','Europe - 24°E to 30°E','Europe - between 24°E and 30°E.',34.8,75.0,24.0,30.0,1); INSERT INTO "area" VALUES('EPSG','2865','Europe - 30°E to 36°E','Europe - between 30°E and 36°E.',34.5,75.0,30.0,36.0,1); INSERT INTO "area" VALUES('EPSG','2866','Europe - 36°E to 42°E','Europe - between 36°E and 42°E.',35.75,75.0,36.0,42.0,1); INSERT INTO "area" VALUES('EPSG','2867','Europe - 42°E to 48°E','Europe - between 42°E and 48°E.',36.95,75.0,42.0,48.0,1); INSERT INTO "area" VALUES('EPSG','2868','Europe - 48°E to 54°E','Europe - between 48°E and 54°E.',36.0,75.0,48.0,54.0,1); INSERT INTO "area" VALUES('EPSG','2869','Jan Mayen - onshore','Jan Mayen - onshore.',70.75,71.24,-9.17,-7.87,0); INSERT INTO "area" VALUES('EPSG','2870','Portugal - Madeira and Porto Santo islands onshore','Portugal - Madeira and Porto Santo islands onshore.',32.58,33.15,-17.31,-16.23,0); INSERT INTO "area" VALUES('EPSG','2871','Portugal - Azores E - S Miguel onshore','Portugal - eastern Azores - Sao Miguel island onshore.',37.65,37.96,-25.92,-25.08,0); INSERT INTO "area" VALUES('EPSG','2872','Portugal - Azores C - Terceira onshore','Portugal - central Azores - Terceira island onshore.',38.57,38.86,-27.44,-26.97,0); INSERT INTO "area" VALUES('EPSG','2873','Portugal - Azores C - Faial onshore','Portugal - central Azores - Faial island onshore.',38.46,38.7,-28.9,-28.54,0); INSERT INTO "area" VALUES('EPSG','2874','Portugal - Azores C - Pico onshore','Portugal - central Azores - Pico island onshore.',38.32,38.61,-28.61,-27.98,0); INSERT INTO "area" VALUES('EPSG','2875','Portugal - Azores C - S Jorge onshore','Portugal - central Azores - Sao Jorge island onshore.',38.48,38.8,-28.37,-27.71,0); INSERT INTO "area" VALUES('EPSG','2876','Asia - Middle East - Iraq-Kuwait boundary','Iraq - Kuwait boundary.',29.06,30.32,46.36,48.61,0); INSERT INTO "area" VALUES('EPSG','2877','Slovenia - Slovenska Bistrica','Slovenia - Slovenska Bistrica with the Dravinja River Basin, area of Boc and parts of the Haloze and the Kozjansko region.',46.14,46.46,15.31,16.0,0); INSERT INTO "area" VALUES('EPSG','2878','Slovenia - Slovenske Gorice','Slovenia - Slovenske Gorice (the Slovene Humpback) with the broad region of Ormoz.',46.29,46.76,15.9,16.3,0); INSERT INTO "area" VALUES('EPSG','2879','Germany - offshore North Sea','Germany - offshore North Sea.',53.6,55.92,3.34,8.88,0); INSERT INTO "area" VALUES('EPSG','2880','Antarctica - Australian sector north of 80°S','Antarctica - north of 80°S and between 45°E and 136°E and between 142°E and 160°E - Australian sector north of 80°S.',-80.0,-60.0,45.0,160.0,0); INSERT INTO "area" VALUES('EPSG','2881','Europe - LCC & LAEA','Europe - European Union (EU) countries and candidates. Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Iceland; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal including Madeira and Azores; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain including Canary Islands; Sweden; Switzerland; Turkey; United Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.',24.6,84.17,-35.58,44.83,0); INSERT INTO "area" VALUES('EPSG','2882','Italy - Adriatic - North Ancona','Italy - offshore - Adriatic Sea - North Ancona.',43.62,45.73,12.22,13.96,0); INSERT INTO "area" VALUES('EPSG','2883','Italy - Adriatic - South Ancona / North Gargano','Italy - offshore - Adriatic Sea - South Ancona and North Gargano.',41.95,44.04,13.61,16.14,0); INSERT INTO "area" VALUES('EPSG','2884','Italy - Adriatic - South Gargano','Italy - offshore - Adriatic Sea - South Gargano.',40.72,42.28,15.95,18.63,0); INSERT INTO "area" VALUES('EPSG','2885','Italy - Otranto channel','Italy - offshore - Otranto channel.',39.77,41.03,17.95,18.99,0); INSERT INTO "area" VALUES('EPSG','2886','Italy - north Ionian Sea','Italy - offshore - north Ionian Sea.',37.67,40.47,16.55,18.93,0); INSERT INTO "area" VALUES('EPSG','2887','Italy - Sicily Strait east of 13°E','Italy - offshore - Strait of Sicily - east of 13°E (of Greenwich).',35.22,37.48,13.0,15.16,0); INSERT INTO "area" VALUES('EPSG','2888','Italy - Sicily Strait west of 13°E','Italy - offshore - Strait of Sicily - west of 13°E (of Greenwich).',35.28,38.45,10.68,13.01,0); INSERT INTO "area" VALUES('EPSG','2889','New Zealand - Chatham Islands group','New Zealand - Chatham Islands group - onshore.',-44.64,-43.3,-177.25,-175.54,0); INSERT INTO "area" VALUES('EPSG','2890','Guadeloupe - St Martin - onshore','Guadeloupe - onshore - St Martin island.',18.01,18.17,-63.21,-62.96,0); INSERT INTO "area" VALUES('EPSG','2891','Guadeloupe - St Barthelemy - onshore','Guadeloupe - onshore - St Barthelemy island.',17.82,17.98,-62.92,-62.73,0); INSERT INTO "area" VALUES('EPSG','2892','Guadeloupe - Grande-Terre and Basse-Terre - onshore','Guadeloupe - onshore - Basse-Terre and Grande-Terre.',15.88,16.55,-61.85,-61.15,0); INSERT INTO "area" VALUES('EPSG','2893','Guadeloupe - La Desirade - onshore','Guadeloupe - onshore - La Desirade.',16.26,16.38,-61.13,-60.97,0); INSERT INTO "area" VALUES('EPSG','2894','Guadeloupe - Marie-Galante - onshore','Guadeloupe - onshore - Marie-Galante.',15.8,16.05,-61.39,-61.13,0); INSERT INTO "area" VALUES('EPSG','2895','Guadeloupe - Les Saintes - onshore','Guadeloupe - onshore - Les Saintes.',15.8,15.94,-61.68,-61.52,0); INSERT INTO "area" VALUES('EPSG','2896','Asia - Middle East - Israel, Palestine Territory, Turkey - offshore','Israel and Palestine Territory - offshore Mediterranean Sea; Turkey - offshore Black Sea.',31.35,43.45,28.03,41.47,0); INSERT INTO "area" VALUES('EPSG','2897','Asia - Middle East - Israel and Palestine Territory offshore','Israel and Palestine Territory - offshore Mediterranean Sea.',31.33,33.1,33.5,35.1,1); INSERT INTO "area" VALUES('EPSG','2898','Germany - Berlin','Germany - Berlin.',52.33,52.65,13.09,13.76,0); INSERT INTO "area" VALUES('EPSG','2899','Australia - 126°E to 132°E, 8°S to 12°S (SC52) onshore','Australia - onshore mainland between 8°S and 12°S and 126°E and 132°E.',-12.0,-11.07,131.02,132.0,0); INSERT INTO "area" VALUES('EPSG','2900','Australia - 132°E to 138°E, 8°S to 12°S (SC53) onshore','Australia - onshore mainland between 8°S and 12°S and 132°E and 138°E.',-12.0,-10.92,132.0,136.83,0); INSERT INTO "area" VALUES('EPSG','2901','Australia - 138°E to 144°E, 8°S to 12°S (SC54) onshore','Australia - onshore mainland between 8°S and 12°S and 138°E and 144°E.',-12.0,-10.65,141.77,143.31,0); INSERT INTO "area" VALUES('EPSG','2902','Australia - 120°E to 126°E, 12°S to 16°S (SD51) onshore','Australia - onshore mainland between 12°S and 16°S and 120°E and 126°E.',-16.0,-13.87,124.17,126.0,0); INSERT INTO "area" VALUES('EPSG','2903','Australia - 126°E to 132°E, 12°S to 16°S (SD52) onshore','Australia - onshore mainland between 12°S and 16°S and 126°E and 132°E.',-16.0,-12.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','2904','Australia - 132°E to 138°E, 12°S to 16°S (SD53) onshore','Australia - onshore mainland between 12°S and 16°S and 132°E and 138°E.',-16.0,-12.0,132.0,137.28,0); INSERT INTO "area" VALUES('EPSG','2905','Australia - 138°E to 144°E, 12°S to 16°S (SD54) onshore','Australia - onshore mainland between 12°S and 16°S and 138°E and 144°E.',-16.0,-12.0,141.34,144.01,0); INSERT INTO "area" VALUES('EPSG','2906','Australia - 144°E to 150°E, 12°S to 16°S (SD55) onshore','Australia - onshore mainland between 12°S and 16°S and 144°E and 150°E.',-16.0,-14.01,144.0,145.49,0); INSERT INTO "area" VALUES('EPSG','2907','Australia - 114°E to 120°E, 16°S to 20°S (SE50) onshore','Australia - onshore mainland between 16°S and 20°S and 114°E and 120°E.',-20.0,-19.88,118.94,120.0,0); INSERT INTO "area" VALUES('EPSG','2908','Australia - 120°E to 126°E, 16°S to 20°S (SE51) onshore','Australia - onshore mainland between 16°S and 20°S and 120°E and 126°E.',-20.0,-16.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','2909','Australia - 126°E to 132°E, 16°S to 20°S (SE52)','Australia - between 16°S and 20°S and 126°E and 132°E.',-20.0,-16.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','2910','Australia - 132°E to 138°E, 16°S to 20°S (SE53) onshore','Australia - onshore between 16°S and 20°S and 132°E and 138°E.',-20.0,-16.0,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2911','Australia - 138°E to 144°E, 16°S to 20°S (SE54) onshore','Australia - onshore mainland between 16°S and 20°S and 138°E and 144°E.',-20.0,-16.0,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2912','Australia - 144°E to 150°E, 16°S to 20°S (SE55) onshore','Australia - onshore mainland between 16°S and 20°S and 144°E and 150°E.',-20.0,-16.0,144.0,148.97,0); INSERT INTO "area" VALUES('EPSG','2913','Australia - 108°E to 114°E, 20°S to 24°S (SF49) onshore','Australia - onshore mainland between 20°S and 24°S and 108°E and 114°E.',-24.0,-21.8,113.39,114.0,0); INSERT INTO "area" VALUES('EPSG','2914','Australia - 114°E to 120°E, 20°S to 24°S (SF50) onshore','Australia - onshore mainland between 20°S and 24°S and 114°E and 120°E.',-24.0,-20.0,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','2915','Australia - 120°E to 126°E, 20°S to 24°S (SF51)','Australia - between 20°S and 24°S and 120°E and 126°E.',-24.0,-20.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','2916','Australia - 126°E to 132°E, 20°S to 24°S (SF52)','Australia - between 20°S and 24°S and 126°E and 132°E.',-24.0,-20.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','2917','Australia - 132°E to 138°E, 20°S to 24°S (SF53)','Australia - between 20°S and 24°S and 132°E and 138°E.',-24.0,-20.0,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2918','Australia - 138°E to 144°E, 20°S to 24°S (SF54)','Australia - between 20°S and 24°S and 138°E and 144°E.',-24.0,-20.0,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2919','Australia - 144°E to 150°E, 20°S to 24°S (SF55) onshore','Australia - onshore mainland between 20°S and 24°S and 144°E and 150°E.',-24.0,-20.0,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','2920','Australia - 150°E to 156°E, 20°S to 24°S (SF56) onshore','Australia - onshore mainland between 20°S and 24°S and 150°E and 156°E.',-24.0,-22.0,150.0,151.82,0); INSERT INTO "area" VALUES('EPSG','2921','Australia - 108°E to 114°E, 24°S to 28°S (SG49) onshore','Australia - onshore mainland between 24°S and 28°S and 108°E and 114°E.',-27.44,-24.0,112.85,114.0,0); INSERT INTO "area" VALUES('EPSG','2922','Australia - 114°E to 120°E, 24°S to 28°S (SG50) onshore','Australia - onshore mainland between 24°S and 28°S and 114°E and 120°E.',-28.0,-24.0,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','2923','Australia - 120°E to 126°E, 24°S to 28°S (SG51)','Australia - between 24°S and 28°S and 120°E and 126°E.',-28.0,-24.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','2924','Australia - 126°E to 132°E, 24°S to 28°S (SG52)','Australia - between 24°S and 28°S and 126°E and 132°E.',-28.0,-24.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','2925','Australia - 132°E to 138°E, 24°S to 28°S (SG53)','Australia - between 24°S and 28°S and 132°E and 138°E.',-28.0,-24.0,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2926','Australia - 138°E to 144°E, 24°S to 28°S (SG54)','Australia - between 24°S and 28°S and 138°E and 144°E.',-28.0,-24.0,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2927','Australia - 144°E to 150°E, 24°S to 28°S (SG55)','Australia - between 24°S and 28°S and 144°E and 150°E.',-28.0,-24.0,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','2928','Australia - 150°E to 156°E, 24°S to 28°S (SG56) onshore','Australia - onshore mainland between 24°S and 28°S and 150°E and 156°E.',-28.0,-24.0,150.0,153.6,0); INSERT INTO "area" VALUES('EPSG','2929','Australia - 108°E to 114°E, 28°S to 32°S (SH49)','Australia - between 28°S and 32°S and 108°E and 114°E.',-32.0,-28.0,108.0,114.0,1); INSERT INTO "area" VALUES('EPSG','2930','Australia - 114°E to 120°E, 28°S to 32°S (SH50) onshore','Australia - onshore mainland between 28°S and 32°S and 114°E and 120°E.',-32.0,-28.0,114.07,120.0,0); INSERT INTO "area" VALUES('EPSG','2931','Australia - 120°E to 126°E, 28°S to 32°S (SH51)','Australia - between 28°S and 32°S and 120°E and 126°E.',-32.0,-28.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','2932','Australia - 126°E to 132°E, south of 28°S (SH52) onshore','Australia - onshore mainland south of 28°S and between 126°E and 132°E.',-32.37,-28.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','2933','Australia - 132°E to 138°E, 28°S to 32°S (SH53) onshore','Australia - onshore between 28°S and 32°S and 132°E and 138°E.',-32.0,-28.0,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2934','Australia - 138°E to 144°E, 28°S to 32°S (SH54)','Australia - between 28°S and 32°S and 138°E and 144°E.',-32.0,-28.0,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2935','Australia - 144°E to 150°E, 28°S to 32°S (SH55)','Australia - between 28°S and 32°S and 144°E and 150°E.',-32.0,-28.0,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','2936','Australia - 150°E to 156°E, 28°S to 32°S (SH56) onshore','Australia - onshore mainland between 28°S and 32°S and 150°E and 156°E.',-32.0,-28.0,150.0,153.69,0); INSERT INTO "area" VALUES('EPSG','2937','Australia - 114°E to 120°E, 32°S to 36°S (SI50) onshore','Australia - onshore mainland between 32°S and 36°S and 114°E and 120°E.',-35.19,-32.0,114.89,120.0,0); INSERT INTO "area" VALUES('EPSG','2938','Australia - 120°E to 126°E, 32°S to 36°S (SI51) onshore','Australia - onshore mainland between 32°S and 36°S and 120°E and 126°E.',-34.16,-32.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','2939','Australia - 132°E to 138°E, 32°S to 36°S (SI53) onshore','Australia - onshore mainland and Kangaroo Island between 32°S and 36°S and 132°E and 138°E.',-36.0,-32.0,132.08,138.0,0); INSERT INTO "area" VALUES('EPSG','2940','Australia - 138°E to 144°E, 32°S to 36°S (SI54) onshore','Australia - onshore between 32°S and 36°S and 138°E and 144°E.',-36.0,-32.0,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2941','Australia - 144°E to 150°E, 32°S to 36°S (SI55)','Australia - between 32°S and 36°S and 144°E and 150°E.',-36.0,-32.0,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','2942','Australia - 150°E to 156°E, 32°S to 36°S (SI56) onshore','Australia - onshore mainland between 32°S and 36°S and 150°E and 156°E.',-36.0,-32.0,150.0,152.66,0); INSERT INTO "area" VALUES('EPSG','2943','Australia - 132°E to 138°E, 36°S to 40°S (SJ53) onshore','Australia - onshore Kangaroo Island between 36°S and 40°S and 132°E and 138°E.',-36.14,-36.0,136.57,137.68,0); INSERT INTO "area" VALUES('EPSG','2944','Australia - 138°E to 144°E, 36°S to 40°S (SJ54) onshore','Australia - onshore mainland between 36°S and 40°S and 138°E and 144°E.',-38.91,-36.0,139.38,144.0,0); INSERT INTO "area" VALUES('EPSG','2945','Australia - 144°E to 150°E, 36°S to 40°S (SJ55) onshore','Australia - onshore mainland between 36°S and 40°S and 144°E and 150°E.',-39.2,-36.0,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','2946','Australia - 150°E to 156°E, 36°S to 40°S (SJ56) onshore','Australia - onshore mainland between 36°S and 40°S and 150°E and 156°E.',-37.57,-36.0,150.0,150.22,0); INSERT INTO "area" VALUES('EPSG','2947','Australia - Tasmania mainland onshore','Australia - Tasmania mainland - onshore.',-43.7,-40.24,144.55,148.44,0); INSERT INTO "area" VALUES('EPSG','2948','USA - CONUS east of 89°W - onshore','United States (USA) - CONUS east of 89°W - onshore - Alabama; Connecticut; Delaware; Florida; Georgia; llinois; Indiana; Kentucky; Maine; Maryland; Massachusetts; Michigan; Mississippi; New Hampshire; New Jersey; New York; North Carolina; Ohio; Pennsylvania; Rhode Island; South Carolina; Tennessee; Vermont; Virginia; West Virginia; Wisconsin.',24.41,48.32,-89.0,-66.91,0); INSERT INTO "area" VALUES('EPSG','2949','USA - CONUS 89°W-107°W - onshore','United States (USA) - CONUS between 89°W and 107°W - onshore - Arkansas; Colorado; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; New Mexico; North Dakota; Oklahoma; South Dakota; Tennessee; Texas; Wisconsin; Wyoming.',25.83,49.38,-107.0,-89.0,0); INSERT INTO "area" VALUES('EPSG','2950','USA - CONUS west of 107°W - onshore','United States (USA) - CONUS west of 107°W - onshore - Arizona; California; Colorado; Idaho; Montana; Nevada; New Mexico; Oregon; Utah; Washington; Wyoming.',31.33,49.05,-124.79,-107.0,0); INSERT INTO "area" VALUES('EPSG','2951','Japan - 120°E to 126°E onshore','Japan - onshore west of 126°E.',23.98,24.94,123.62,125.51,0); INSERT INTO "area" VALUES('EPSG','2952','Japan - 126°E to 132°E onshore','Japan - onshore between 126°E and 132°E.',24.4,34.9,126.63,132.0,0); INSERT INTO "area" VALUES('EPSG','2953','Japan - 132°E to 138°E onshore','Japan - onshore between 132°E and 138°E.',20.37,37.58,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','2954','Japan - 138°E to 144°E onshore','Japan - onshore between 138°E and 144°E.',24.67,45.54,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','2955','Japan - 144°E to 150°E onshore','Japan - onshore east of 144°E.',42.84,44.4,144.0,145.87,0); INSERT INTO "area" VALUES('EPSG','2956','Kuwait - north of 29.25°N','Kuwait - onshore north of a line between Al Jahra'' and the Kuwait/Iraq/Saudi Arabia border tripoint.',29.1,30.09,46.54,48.42,0); INSERT INTO "area" VALUES('EPSG','2957','Kuwait - south of 29.25°N','Kuwait - onshore south of a line between Al Jahra'' and the Kuwait/Iraq/Saudi Arabia border tripoint.',28.53,29.45,46.54,48.48,0); INSERT INTO "area" VALUES('EPSG','2958','USA - Maine - CS2000 - W','United States (USA) - Maine west of approximately 69°40''W. The area is bounded by the following: Beginning at the point determined by the intersection of the Maine State line and the County Line between Aroostook and Somerset Counties, thence following the Somerset County line Easterly to the Northwest corner of the Somerset and Piscataquis county line, thence Southerly along this county line to the northeast corner of the Athens town line, thence westerly along the town line between Brighton Plantation and Athens to the westerly corner of Athens, and continuing southerly to the southwest corner of the town of Athens where it meets the Cornville town line, thence westerly along the Cornville - Solon town line to the intersection of the Cornville - Madison town line, thence southerly and westerly following the Madison town line to the intersection of the Norridgewock - Skowhegan town line, thence southerly along the Skowhegan town line to the Fairfield town line, thence easterly along the Fairfield town line to the Clinton town line (being determined by the Kennebec River), thence southerly along the Kennebec River to the Augusta city line, thence easterly along the city line to the Windsor town line, thence southerly along the Augusta - Windsor town line to the northwest corner of the Lincoln County line, thence southerly along the westerly Lincoln county line to the boundary of the State of Maine as determined by Maritime law, thence following the State boundary on the westerly side of the state to the point of beginning.',43.07,46.58,-71.09,-69.61,0); INSERT INTO "area" VALUES('EPSG','2959','USA - Maine - CS2000 - C','United States (USA) - Maine between approximately 69°40''W and 68°25''W. The area is bounded by the following: Beginning at the point determined by the intersection of the Maine State line and the County Line between Aroostook and Somerset Counties, thence northeasterly along the state line to the intersection of the Fort Kent - Frenchville town line, thence southerly along this town line to the intersection with the New Canada Plantation - T17 R5 WELS town line, thence continuing southerly along town lines to the northeast corner of Penobscot County, thence continuing southerly along the Penobscot County line to the intersection of the Woodville - Mattawamkeag town line (being determined by the Penobscot River), thence along the Penobscot River to the Enfield - Lincoln town line, thence southeasterly along the Enfield - Lincoln town line and the Enfield - Lowell town line to the Passadumkeag - Edinburg town line, thence south-southeasterly along town lines to the intersection of the Hancock County line, thence southerly along the county line to the intersection of the Otis - Mariaville town line, thence southerly along the Otis - Mariaville town line to the Ellsworth city line, thence southerly along the Ellsworth city line to the intersection of the Surry - Trenton town line, thence southerly along the easterly town lines of Surry, Blue Hill, Brooklin, Deer Isle, and Stonington to the Knox County line, thence following the Knox County line to the boundary of the State of Maine as determined by Maritime law, thence following the State boundary westerly to the intersection of the Sagadahoc - Lincoln county line, thence northerly along the easterly boundary of the Maine 2000 West Zone, as defined, to the point of beginning.',43.75,47.47,-70.03,-68.33,0); INSERT INTO "area" VALUES('EPSG','2960','USA - Maine - CS2000 - E','United States (USA) - Maine east of approximately 68°25''W. The area is bounded by the following: Beginning at the point determined by the intersection of the Maine State line and the Fort Kent - Frenchville town line, thence continuing easterly and then southerly along the state line to the boundary of the State of Maine as determined by Maritime law, thence following the State boundary westerly to the intersection of the Knox and Hancock County line, thence northerly along the easterly boundary of the Maine 2000 Central Zone, as defined, to the point of beginning.',44.18,47.37,-68.58,-66.91,0); INSERT INTO "area" VALUES('EPSG','2961','Ireland - Corrib and Errigal','Ireland - offshore - Corrib and Errigal fields.',53.75,55.76,-12.5,-9.49,0); INSERT INTO "area" VALUES('EPSG','2962','Brazil - Santos','Brazil - offshore - Santos basin.',-28.41,-22.66,-48.8,-40.2,0); INSERT INTO "area" VALUES('EPSG','2963','Brazil - Campos','Brazil - offshore - Campos basin.',-25.91,-20.45,-42.04,-37.11,0); INSERT INTO "area" VALUES('EPSG','2964','Brazil - Espirito Santo and Mucuri','Brazil - offshore - Espirito Santo and Mucuri basins.',-22.04,-17.59,-40.37,-35.18,0); INSERT INTO "area" VALUES('EPSG','2965','Brazil - Pelotas','Brazil - offshore - Pelotas basin.',-35.71,-28.11,-53.38,-44.71,0); INSERT INTO "area" VALUES('EPSG','2966','Brazil - offshore 18°S to 34°S','Brazil - offshore between 18°S and 34°S.',-34.0,-18.0,-53.38,-35.19,0); INSERT INTO "area" VALUES('EPSG','2967','Mauritania - north coast','Mauritania - coastal area north of Cape Timiris.',19.37,21.34,-17.08,-15.88,0); INSERT INTO "area" VALUES('EPSG','2968','Mauritania - central coast','Mauritania - coastal area south of Cape Timiris.',16.81,19.41,-16.57,-15.59,0); INSERT INTO "area" VALUES('EPSG','2969','Mauritania - east of 6°W','Mauritania - east of 6°W.',15.49,25.74,-6.0,-4.8,0); INSERT INTO "area" VALUES('EPSG','2970','Mauritania - 12°W to 6°W','Mauritania - between 12°W and 6°W.',14.75,27.3,-12.0,-6.0,0); INSERT INTO "area" VALUES('EPSG','2971','Mauritania - west of 12°W onshore','Mauritania - onshore west of 12°W.',14.72,23.46,-17.08,-12.0,0); INSERT INTO "area" VALUES('EPSG','2972','Mauritania - Nouakchutt','Mauritania - Nouakchutt.',17.89,18.25,-16.11,-15.83,0); INSERT INTO "area" VALUES('EPSG','2973','USA - CONUS south of 41°N, west of 112°W - onshore','United States (USA) - CONUS onshore south of 41°N and west of 112°W - Arizona west of 112°W; California and Nevada south of 41°N; Utah south of 41°N and west of 112°W.',31.64,41.0,-124.45,-112.0,0); INSERT INTO "area" VALUES('EPSG','2974','USA - CONUS south of 41°N, 112°W to 95°W - onshore','United States (USA) - CONUS onshore south of 41°N and between 112°W and 95°W - Colorado and New Mexico; Arizona east of 112°W; Utah south of 41°N and east of 112°W; Nebraska south of 41°N; Iowa south of 41°N and west of 95°W; Kansas, Missouri, Oklahoma and Texas west of 95°W.',25.83,41.01,-112.0,-94.99,0); INSERT INTO "area" VALUES('EPSG','2975','USA - CONUS south of 41°N, 95°W to 78°W - onshore','United States (USA) - CONUS onshore south of 41°N and between 95°W and 78°W - Alabama, Arkansas, Florida, Georgia, Kentucky, Louisiana, Mississippi, South Carolina and Tennessee; Kansas, Missouri, Oklahoma and Texas east of 95°W; Iowa south of 41°N and east of 95°W; Illinois, Indiana and Ohio south of 41°N; Pennsylvania south of 41°N and west of 78°W; Maryland, North Carolina, Virginia and West Virginia west of 78°W.',24.41,41.01,-95.0,-77.99,0); INSERT INTO "area" VALUES('EPSG','2976','USA - CONUS south of 41°N, east of 78°W - onshore','United States (USA) - CONUS onshore - south of 41°N and east of 78°W - Delaware; Maryland, North Carolina, Virginia and West Virginia east of 78°W; Pennsylvania south of 41°N and east of 78°W; New Jersey and New York south of 41°N.',33.84,41.01,-78.0,-71.9,0); INSERT INTO "area" VALUES('EPSG','2977','USA - CONUS north of 41°N, west of 112°W - onshore','United States (USA) - CONUS onshore north of 41°N and west of 112°W - Oregon and Washington; California and Nevada north of 41°N; Utah north of 41°N and west of 112°W; Idaho and Montana west of 112°W.',41.0,49.05,-124.79,-112.0,0); INSERT INTO "area" VALUES('EPSG','2978','USA - CONUS north of 41°N, 112°W to 95°W','United States (USA) - CONUS north of 41°N and between 112°W and 95°W - North Dakota, South Dakota and Wyoming; Idaho and Montana east of 112°W; Utah north of 41°N and east of 112°W; Nebraska north of 41°N; Iowa north of 41°N and west of 95°W; Minnesota west of 95°W.',41.0,49.38,-112.0,-95.0,0); INSERT INTO "area" VALUES('EPSG','2979','USA - CONUS north of 41°N, 95°W to 78°W','United States (USA) - CONUS north of 41°N and between 95°W and 78°W - Michigan and Wisconsin; Minnesota east of 95°W; Iowa north of 41°N and east of 95°W; Illinois, Indiana and Ohio north of 41°N; Pennsylvania north of 41°N and west of 78°W; New York west of 78°W.',41.0,49.37,-95.0,-77.99,0); INSERT INTO "area" VALUES('EPSG','2980','USA - CONUS north of 41°N, east of 78°W - onshore','United States (USA) - CONUS onshore north of 41°N and east of 78°W - Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island and Vermont; New Jersey north of 41°N; New York and Pennsylvania north of 41°N and east of 78°W.',41.0,47.47,-78.0,-66.91,0); INSERT INTO "area" VALUES('EPSG','2981','Nigeria - offshore','Nigeria - offshore.',1.92,6.38,2.66,8.49,0); INSERT INTO "area" VALUES('EPSG','2982','Pakistan - Karachi','Pakistan - Karachi licence area.',24.69,25.76,66.83,68.0,0); INSERT INTO "area" VALUES('EPSG','2983','Pakistan - East Sind','Pakistan - East Sind.',24.16,28.61,68.27,71.14,0); INSERT INTO "area" VALUES('EPSG','2984','Pakistan - Badin and Mehran','Pakistan - Badin and Mehran blocks.',24.0,25.64,67.74,69.87,0); INSERT INTO "area" VALUES('EPSG','2985','Pakistan - offshore Indus','Pakistan - offshore Indus fan.',21.05,25.39,64.0,68.24,0); INSERT INTO "area" VALUES('EPSG','2986','Australia - SA','Australia - South Australia.',-38.13,-25.99,128.99,141.01,0); INSERT INTO "area" VALUES('EPSG','2987','Libya - Amal','Libya - Amal field.',29.1,29.8,20.8,21.4,0); INSERT INTO "area" VALUES('EPSG','2988','Channel Islands - Jersey, Les Ecrehos and Les Minquiers','Channel Islands - Jersey, Les Ecrehos and Les Minquiers - onshore and offshore.',48.77,49.44,-2.72,-1.81,0); INSERT INTO "area" VALUES('EPSG','2989','Channel Islands - Guernsey, Alderney, Sark','Channel Islands - Guernsey, Alderney, Sark, Herm, Brecqhou, Jethou, Lihou - onshore and offshore.',49.11,50.16,-3.73,-2.02,0); INSERT INTO "area" VALUES('EPSG','2990','Australia - Brisbane','Australia - Brisbane area. Local authorities in south-east Queensland: Gold Coast, Logan, Beaudesert, Redcliffe, Redlands, Pine Rivers, Caboolture, Caloundra, Maroochy, Noosa, Maryborough; local authorities in north-east New South Wales: Tweed, Byron, Lismore, Ballina and Richmond Valley.',-29.88,-24.64,151.19,153.69,0); INSERT INTO "area" VALUES('EPSG','2991','Antarctica - 60°S to 64°S, 72°W to 60°W (SP19-20)','Antarctica - 60°S to 64°S and 72°W to 60°W.',-64.0,-60.0,-72.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','2992','Antarctica - 60°S to 64°S, 60°W to 48°W (SP21-22)','Antarctica - 60°S to 64°S and 60°W to 48°W.',-64.0,-60.0,-60.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','2993','Antarctica - 60°S to 64°S, 48°W to 36°W (SP23-24)','Antarctica - 60°S to 64°S and 48°W to 36°W.',-64.0,-60.0,-48.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','2994','Antarctica - 64°S to 68°S, 180°W to 168°W (SQ01-02)','Antarctica - 64°S to 68°S and 180°W to 168°W.',-68.0,-64.0,-180.0,-168.0,0); INSERT INTO "area" VALUES('EPSG','2995','Antarctica - 64°S to 68°S, 72°W to 60°W (SQ19-20)','Antarctica - 64°S to 68°S and 72°W to 60°W.',-68.0,-64.0,-72.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','2996','Antarctica - 64°S to 68°S, 60°W to 48°W (SQ21-22)','Antarctica - 64°S to 68°S and 60°W to 48°W.',-68.0,-64.0,-60.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','2997','Antarctica - 64°S to 68°S, 36°E to 48°E (SQ37-38)','Antarctica - 64°S to 68°S and 36°E to 48°E.',-68.0,-64.0,36.0,48.0,0); INSERT INTO "area" VALUES('EPSG','2998','Antarctica - 64°S to 68°S, 48°E to 60°E (SQ39-40)','Antarctica - 64°S to 68°S and 48°E to 60°E.',-68.0,-64.0,48.0,60.0,0); INSERT INTO "area" VALUES('EPSG','2999','Antarctica - 64°S to 68°S, 60°E to 72°E (SQ41-42)','Antarctica - 64°S to 68°S and 60°E to 72°E.',-68.0,-64.0,60.0,72.0,0); INSERT INTO "area" VALUES('EPSG','3000','Antarctica - 64°S to 68°S, 72°E to 84°E (SQ43-44)','Antarctica - 64°S to 68°S and 72°E to 84°E.',-68.0,-64.0,72.0,84.0,0); INSERT INTO "area" VALUES('EPSG','3001','Antarctica - 64°S to 68°S, 84°E to 96°E (SQ45-46)','Antarctica - 64°S to 68°S and 84°E to 96°E.',-68.0,-64.0,84.0,96.0,0); INSERT INTO "area" VALUES('EPSG','3002','Antarctica - 64°S to 68°S, 96°E to 108°E (SQ47-48)','Antarctica - 64°S to 68°S and 96°E to 108°E.',-68.0,-64.0,96.0,108.0,0); INSERT INTO "area" VALUES('EPSG','3003','Antarctica - 64°S to 68°S, 108°E to 120°E (SQ49-50)','Antarctica - 64°S to 68°S and 108°E to 120°E.',-68.0,-64.0,108.0,120.0,0); INSERT INTO "area" VALUES('EPSG','3004','Antarctica - 64°S to 68°S, 120°E to 132°E (SQ51-52)','Antarctica - 64°S to 68°S and 120°E to 132°E.',-68.0,-64.0,120.0,132.0,0); INSERT INTO "area" VALUES('EPSG','3005','Antarctica - 64°S to 68°S, 132°E to 144°E (SQ53-54)','Antarctica - 64°S to 68°S and 132°E to 144°E.',-68.0,-64.0,132.0,144.0,0); INSERT INTO "area" VALUES('EPSG','3006','Antarctica - 64°S to 68°S, 144°E to 156°E (SQ55-56)','Antarctica - 64°S to 68°S and 144°E to 156°E.',-68.0,-64.0,144.0,156.0,0); INSERT INTO "area" VALUES('EPSG','3007','Antarctica - 64°S to 68°S, 156°E to 168°E (SQ57-58)','Antarctica - 64°S to 68°S and 156°E to 168°E.',-68.0,-64.0,156.0,168.0,0); INSERT INTO "area" VALUES('EPSG','3008','Antarctica - 68°S to 72°S, 108°W to 96°W (SR13-14)','Antarctica - 68°S to 72°S and 108°W to 96°W.',-72.0,-68.0,-108.0,-96.0,0); INSERT INTO "area" VALUES('EPSG','3009','Antarctica - 68°S to 72°S, 96°W to 84°W (SR15-16)','Antarctica - 68°S to 72°S and 96°W to 84°W.',-72.0,-68.0,-96.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','3010','Antarctica - 68°S to 72°S, 84°W to 72°W (SR17-18)','Antarctica - 68°S to 72°S and 84°W to 72°W.',-72.0,-68.0,-84.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','3011','Antarctica - 68°S to 72°S, 72°W to 60°W (SR19-20)','Antarctica - 68°S to 72°S and 72°W to 60°W.',-72.0,-68.0,-72.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','3012','Antarctica - 68°S to 72°S, 24°W to 12°W (SR27-28)','Antarctica - 68°S to 72°S and 24°W to 12°W.',-72.0,-68.0,-24.0,-12.0,0); INSERT INTO "area" VALUES('EPSG','3013','Antarctica - 68°S to 72°S, 12°W to 0°W (SR29-30)','Antarctica - 68°S to 72°S and 12°W to 0°W.',-72.0,-68.0,-12.0,0.0,0); INSERT INTO "area" VALUES('EPSG','3014','Antarctica - 68°S to 72°S, 0°E to 12°E (SR31-32)','Antarctica - 68°S to 72°S and 0°E to 12°E.',-72.0,-68.0,0.0,12.0,0); INSERT INTO "area" VALUES('EPSG','3015','Antarctica - 68°S to 72°S, 12°E to 24°E (SR33-34)','Antarctica - 68°S to 72°S and 12°E to 24°E.',-72.0,-68.0,12.0,24.0,0); INSERT INTO "area" VALUES('EPSG','3016','Antarctica - 68°S to 72°S, 24°E to 36°E (SR35-36)','Antarctica - 68°S to 72°S and 24°E to 36°E.',-72.0,-68.0,24.0,36.0,0); INSERT INTO "area" VALUES('EPSG','3017','Antarctica - 68°S to 72°S, 36°E to 48°E (SR37-38)','Antarctica - 68°S to 72°S and 36°E to 48°E.',-72.0,-68.0,36.0,48.0,0); INSERT INTO "area" VALUES('EPSG','3018','Antarctica - 68°S to 72°S, 48°E to 60°E (SR39-40)','Antarctica - 68°S to 72°S and 48°E to 60°E.',-72.0,-68.0,48.0,60.0,0); INSERT INTO "area" VALUES('EPSG','3019','Antarctica - 68°S to 72°S, 60°E to 72°E (SR41-42)','Antarctica - 68°S to 72°S and 60°E to 72°E.',-72.0,-68.0,60.0,72.0,0); INSERT INTO "area" VALUES('EPSG','3020','Antarctica - 68°S to 72°S, 72°E to 84°E (SR43-44)','Antarctica - 68°S to 72°S and 72°E to 84°E.',-72.0,-68.0,72.0,84.0,0); INSERT INTO "area" VALUES('EPSG','3021','Antarctica - 68°S to 72°S, 84°E to 96°E (SR45-46)','Antarctica - 68°S to 72°S and 84°E to 96°E.',-72.0,-68.0,84.0,96.0,0); INSERT INTO "area" VALUES('EPSG','3022','Antarctica - 68°S to 72°S, 96°E to 108°E (SR47-48)','Antarctica - 68°S to 72°S and 96°E to 108°E.',-72.0,-68.0,96.0,108.0,0); INSERT INTO "area" VALUES('EPSG','3023','Antarctica - 68°S to 72°S, 108°E to 120°E (SR49-50)','Antarctica - 68°S to 72°S and 108°E to 120°E.',-72.0,-68.0,108.0,120.0,0); INSERT INTO "area" VALUES('EPSG','3024','Antarctica - 68°S to 72°S, 120°E to 132°E (SR51-52)','Antarctica - 68°S to 72°S and 120°E to 132°E.',-72.0,-68.0,120.0,132.0,0); INSERT INTO "area" VALUES('EPSG','3025','Antarctica - 68°S to 72°S, 132°E to 144°E (SR53-54)','Antarctica - 68°S to 72°S and 132°E to 144°E.',-72.0,-68.0,132.0,144.0,0); INSERT INTO "area" VALUES('EPSG','3026','Antarctica - 68°S to 72°S, 144°E to 156°E (SR55-56)','Antarctica - 68°S to 72°S and 144°E to 156°E.',-72.0,-68.0,144.0,156.0,0); INSERT INTO "area" VALUES('EPSG','3027','Antarctica - 68°S to 72°S, 156°E to 168°E (SR57-58)','Antarctica - 68°S to 72°S and 156°E to 168°E.',-72.0,-68.0,156.0,168.0,0); INSERT INTO "area" VALUES('EPSG','3028','Antarctica - 68°S to 72°S, 168°E to 180°E (SR59-60)','Antarctica - 68°S to 72°S and 168°E to 180°E.',-72.0,-68.0,168.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3029','Antarctica - 72°S to 76°S, 162°W to 144°W (SS04-06)','Antarctica - 72°S to 76°S and 162°W to 144°W.',-76.0,-72.0,-162.0,-144.0,0); INSERT INTO "area" VALUES('EPSG','3030','Antarctica - 72°S to 76°S, 144°W to 126°W (SS07-09)','Antarctica - 72°S to 76°S and 144°W to 126°W.',-76.0,-72.0,-144.0,-126.0,0); INSERT INTO "area" VALUES('EPSG','3031','Antarctica - 72°S to 76°S, 126°W to 108°W (SS10-12)','Antarctica - 72°S to 76°S and 126°W to 108°W.',-76.0,-72.0,-126.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','3032','Antarctica - 72°S to 76°S, 108°W to 90°W (SS13-15)','Antarctica - 72°S to 76°S and 108°W to 90°W.',-76.0,-72.0,-108.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','3033','Antarctica - 72°S to 76°S, 90°W to 72°W (SS16-18)','Antarctica - 72°S to 76°S and 90°W to 72°W.',-76.0,-72.0,-90.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','3034','Antarctica - 72°S to 76°S, 72°W to 54°W (SS19-21)','Antarctica - 72°S to 76°S and 72°W to 54°W.',-76.0,-72.0,-72.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','3035','Antarctica - 72°S to 76°S, 36°W to 18°W (SS25-27)','Antarctica - 72°S to 76°S and 36°W to 18°W.',-76.0,-72.0,-36.0,-18.0,0); INSERT INTO "area" VALUES('EPSG','3036','Antarctica - 72°S to 76°S, 18°W to 0°W (SS28-30)','Antarctica - 72°S to 76°S and 18°W to 0°W.',-76.0,-72.0,-18.0,0.0,0); INSERT INTO "area" VALUES('EPSG','3037','Antarctica - 72°S to 76°S, 0°E to 18°E (SS31-33)','Antarctica - 72°S to 76°S and 0°E to 18°E.',-76.0,-72.0,0.0,18.0,0); INSERT INTO "area" VALUES('EPSG','3038','Antarctica - 72°S to 76°S, 18°E to 36°E (SS34-36)','Antarctica - 72°S to 76°S and 18°E to 36°E.',-76.0,-72.0,18.0,36.0,0); INSERT INTO "area" VALUES('EPSG','3039','Antarctica - 72°S to 76°S, 36°E to 54°E (SS37-39)','Antarctica - 72°S to 76°S and 36°E to 54°E.',-76.0,-72.0,36.0,54.0,0); INSERT INTO "area" VALUES('EPSG','3040','Antarctica - 72°S to 76°S, 54°E to 72°E (SS40-42)','Antarctica - 72°S to 76°S and 54°E to 72°E.',-76.0,-72.0,54.0,72.0,0); INSERT INTO "area" VALUES('EPSG','3041','Antarctica - 72°S to 76°S, 72°E to 90°E (SS43-45)','Antarctica - 72°S to 76°S and 72°E to 90°E.',-76.0,-72.0,72.0,90.0,0); INSERT INTO "area" VALUES('EPSG','3042','Antarctica - 72°S to 76°S, 90°E to 108°E (SS46-48)','Antarctica - 72°S to 76°S and 90°E to 108°E.',-76.0,-72.0,90.0,108.0,0); INSERT INTO "area" VALUES('EPSG','3043','Antarctica - 72°S to 76°S, 108°E to 126°E (SS49-51)','Antarctica - 72°S to 76°S and 108°E to 126°E.',-76.0,-72.0,108.0,126.0,0); INSERT INTO "area" VALUES('EPSG','3044','Antarctica - 72°S to 76°S, 126°E to 144°E (SS52-54)','Antarctica - 72°S to 76°S and 126°E to 144°E.',-76.0,-72.0,126.0,144.0,0); INSERT INTO "area" VALUES('EPSG','3045','Antarctica - 72°S to 76°S, 144°E to 162°E (SS55-57)','Antarctica - 72°S to 76°S and 144°E to 162°E.',-76.0,-72.0,144.0,162.0,0); INSERT INTO "area" VALUES('EPSG','3046','Antarctica - 72°S to 76°S, 162°E to 180°E (SS58-60)','Antarctica - 72°S to 76°S and 162°E to 180°E.',-76.0,-72.0,162.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3047','Antarctica - 76°S to 80°S, 180°W to 156°W (ST01-04)','Antarctica - 76°S to 80°S and 180°W to 156°W.',-80.0,-76.0,-180.0,-156.0,0); INSERT INTO "area" VALUES('EPSG','3048','Antarctica - 76°S to 80°S, 156°W to 132°W (ST05-08)','Antarctica - 76°S to 80°S and 156°W to 132°W.',-80.0,-76.0,-156.0,-132.0,0); INSERT INTO "area" VALUES('EPSG','3049','Antarctica - 76°S to 80°S, 132°W to 108°W (ST09-12)','Antarctica - 76°S to 80°S and 132°W to 108°W.',-80.0,-76.0,-132.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','3050','Antarctica - 76°S to 80°S, 108°W to 84°W (ST13-16)','Antarctica - 76°S to 80°S and 108°W to 84°W.',-80.0,-76.0,-108.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','3051','Antarctica - 76°S to 80°S, 84°W to 60°W (ST17-20)','Antarctica - 76°S to 80°S and 84°W to 60°W.',-80.0,-76.0,-84.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','3052','Antarctica - 76°S to 80°S, 60°W to 36°W (ST21-24)','Antarctica - 76°S to 80°S and 60°W to 36°W.',-80.0,-76.0,-60.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','3053','Antarctica - 76°S to 80°S, 36°W to 12°W (ST25-28)','Antarctica - 76°S to 80°S and 36°W to 12°W.',-80.0,-76.0,-36.0,-12.0,0); INSERT INTO "area" VALUES('EPSG','3054','Antarctica - 76°S to 80°S, 12°W to 12°E (ST29-32)','Antarctica - 76°S to 80°S and 12°W to 12°E.',-80.0,-76.0,-12.0,12.0,0); INSERT INTO "area" VALUES('EPSG','3055','Antarctica - 76°S to 80°S, 12°E to 36°E (ST33-36)','Antarctica - 76°S to 80°S and 12°E to 36°E.',-80.0,-76.0,12.0,36.0,0); INSERT INTO "area" VALUES('EPSG','3056','Antarctica - 76°S to 80°S, 36°E to 60°E (ST37-40)','Antarctica - 76°S to 80°S and 36°E to 60°E.',-80.0,-76.0,36.0,60.0,0); INSERT INTO "area" VALUES('EPSG','3057','Antarctica - 76°S to 80°S, 60°E to 84°E (ST41-44)','Antarctica - 76°S to 80°S and 60°E to 84°E.',-80.0,-76.0,60.0,84.0,0); INSERT INTO "area" VALUES('EPSG','3058','Antarctica - 76°S to 80°S, 84°E to 108°E (ST45-48)','Antarctica - 76°S to 80°S and 84°E to 108°E.',-80.0,-76.0,84.0,108.0,0); INSERT INTO "area" VALUES('EPSG','3059','Antarctica - 76°S to 80°S, 108°E to 132°E (ST49-52)','Antarctica - 76°S to 80°S and 108°E to 132°E.',-80.0,-76.0,108.0,132.0,0); INSERT INTO "area" VALUES('EPSG','3060','Antarctica - 76°S to 80°S, 132°E to 156°E (ST53-56)','Antarctica - 76°S to 80°S and 132°E to 156°E.',-80.0,-76.0,132.0,156.0,0); INSERT INTO "area" VALUES('EPSG','3061','Antarctica - 76°S to 80°S, 156°E to 180°E (ST57-60)','Antarctica - 76°S to 80°S and 156°E to 180°E.',-80.0,-76.0,156.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3062','Antarctica - 80°S to 84°S, 180°W to 150°W (SU01-05)','Antarctica - 80°S to 84°S and 180°W to 150°W.',-84.0,-80.0,-180.0,-150.0,0); INSERT INTO "area" VALUES('EPSG','3063','Antarctica - 80°S to 84°S, 150°W to 120°W (SU06-10)','Antarctica - 80°S to 84°S and 150°W to 120°W.',-84.0,-80.0,-150.0,-120.0,0); INSERT INTO "area" VALUES('EPSG','3064','Antarctica - 80°S to 84°S, 120°W to 90°W (SU11-15)','Antarctica - 80°S to 84°S and 120°W to 90°W.',-84.0,-80.0,-120.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','3065','Antarctica - 80°S to 84°S, 90°W to 60°W (SU16-20)','Antarctica - 80°S to 84°S and 90°W to 60°W.',-84.0,-80.0,-90.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','3066','Antarctica - 80°S to 84°S, 60°W to 30°W (SU21-25)','Antarctica - 80°S to 84°S and 60°W to 30°W.',-84.0,-80.0,-60.0,-30.0,0); INSERT INTO "area" VALUES('EPSG','3067','Antarctica - 80°S to 84°S, 30°W to 0°W (SU26-30)','Antarctica - 80°S to 84°S and 30°W to 0°W.',-84.0,-80.0,-30.0,0.0,0); INSERT INTO "area" VALUES('EPSG','3068','Antarctica - 80°S to 84°S, 0°E to 30°E (SU31-35)','Antarctica - 80°S to 84°S and 0°E to 30°E.',-84.0,-80.0,0.0,30.0,0); INSERT INTO "area" VALUES('EPSG','3069','Antarctica - 80°S to 84°S, 30°E to 60°E (SU36-40)','Antarctica - 80°S to 84°S and 30°E to 60°E.',-84.0,-80.0,30.0,60.0,0); INSERT INTO "area" VALUES('EPSG','3070','Antarctica - 80°S to 84°S, 60°E to 90°E (SU41-45)','Antarctica - 80°S to 84°S and 60°E to 90°E.',-84.0,-80.0,60.0,90.0,0); INSERT INTO "area" VALUES('EPSG','3071','Antarctica - 80°S to 84°S, 90°E to 120°E (SU46-50)','Antarctica - 80°S to 84°S and 90°E to 120°E.',-84.0,-80.0,90.0,120.0,0); INSERT INTO "area" VALUES('EPSG','3072','Antarctica - 80°S to 84°S, 120°E to 150°E (SU51-55)','Antarctica - 80°S to 84°S and 120°E to 150°E.',-84.0,-80.0,120.0,150.0,0); INSERT INTO "area" VALUES('EPSG','3073','Antarctica - 80°S to 84°S, 150°E to 180° (SU56-60)','Antarctica - 80°S to 84°S and 150°E to 180°E.',-84.0,-80.0,150.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3074','Antarctica - 84°S to 88°S, 180°W to 120°W (SV01-10)','Antarctica - 84°S to 88°S and 180°W to 120°W.',-88.0,-84.0,-180.0,-120.0,0); INSERT INTO "area" VALUES('EPSG','3075','Antarctica - 84°S to 88°S, 120°W to 60°W (SV11-20)','Antarctica - 84°S to 88°S and 120°W to 60°W.',-88.0,-84.0,-120.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','3076','Antarctica - 84°S to 88°S, 60°W to 0°W (SV21-30)','Antarctica - 84°S to 88°S and 60°W to 0°W.',-88.0,-84.0,-60.0,0.0,0); INSERT INTO "area" VALUES('EPSG','3077','Antarctica - 84°S to 88°S, 0°E to 60°E (SV31-40)','Antarctica - 84°S to 88°S and 0°E to 60°E.',-88.0,-84.0,0.0,60.0,0); INSERT INTO "area" VALUES('EPSG','3078','Antarctica - 84°S to 88°S, 60°E to 120°E (SV41-50)','Antarctica - 84°S to 88°S and 60°E to 120°E.',-88.0,-84.0,60.0,120.0,0); INSERT INTO "area" VALUES('EPSG','3079','Antarctica - 84°S to 88°S, 120°E to 180°E (SV51-60)','Antarctica - 84°S to 88°S and 120°E to 180°E.',-88.0,-84.0,120.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3080','Antarctica - 88°S to 90°S, 180°W to 180°E (SW01-60)','Antarctica - 88°S to 90°S and 180°W to 180°E.',-90.0,-88.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3081','Antarctica - Transantarctic mountains north of 80°S','Antarctica - Transantarctic mountains north of 80°S.',-80.0,-68.6,149.83,174.01,0); INSERT INTO "area" VALUES('EPSG','3082','Colombia region 1','Colombia - region I (north east). Onshore north of 9°48''N and east of 73°W.',9.8,12.52,-73.0,-71.06,0); INSERT INTO "area" VALUES('EPSG','3083','Colombia region 2','Colombia - region II (north west). Onshore north of 9°24''N and west of 73°W.',9.39,11.59,-76.08,-73.0,0); INSERT INTO "area" VALUES('EPSG','3084','Colombia region 3','Colombia - region III - onshore between 8°N and 9°24''N and west of 74°24''W.',8.0,9.4,-77.48,-74.39,0); INSERT INTO "area" VALUES('EPSG','3085','Colombia region 4','Colombia - region IV - between 5°N and 9°24''N and between 74°24''W and 72°W.',5.0,9.4,-74.4,-71.99,0); INSERT INTO "area" VALUES('EPSG','3086','Colombia region 5','Colombia - region V - onshore between 5°N and 8°N and west of 74°24''W.',5.0,8.01,-77.92,-74.39,0); INSERT INTO "area" VALUES('EPSG','3087','Colombia region 6','Colombia - region VI - onshore between 3°N and 5°N and west of 74°24''W.',3.0,5.01,-77.68,-74.39,0); INSERT INTO "area" VALUES('EPSG','3088','Colombia region 7','Colombia - region VII (south west). Onshore south of 3°N and west of 74°W.',-1.13,3.01,-79.1,-74.0,0); INSERT INTO "area" VALUES('EPSG','3089','Colombia region 8','Colombia - region VIII (south east). South and east of a line from the intersection of the meridian of 74°W with the southern border, northwards to 3°N, 74°W, westwards to 3°''N, 74°24''W, northwards to 5°N, 74°24''W, eastwards to 5°N, 72°W, and then northwards to the intersection of the meridian of 72°W with the international border.',-4.23,7.1,-74.4,-66.87,0); INSERT INTO "area" VALUES('EPSG','3090','Colombia - 78°35''W to 75°35''W','Colombia - onshore between 78°35''W and 75°35''W of Greenwich (4°30'' W and 1°30'' W of Bogota).',0.03,10.21,-78.59,-75.58,0); INSERT INTO "area" VALUES('EPSG','3091','Colombia - west of 78°35''W','Colombia - mainland onshore west of 78°35''W of Greenwich (4°30'' W of Bogota).',1.23,2.48,-79.1,-78.58,0); INSERT INTO "area" VALUES('EPSG','3092','Finland - west of 19.5°E onshore','Finland - onshore west of 19°30''E.',60.08,60.34,19.24,19.5,0); INSERT INTO "area" VALUES('EPSG','3093','Finland - 19.5°E to 20.5°E onshore','Finland - onshore between 19°30''E and 20°30''E.',59.92,60.48,19.5,20.5,0); INSERT INTO "area" VALUES('EPSG','3094','Finland - 20.5°E to 21.5°E onshore','Finland - onshore between 20°30''E and 21°30''E.',59.84,69.33,20.5,21.5,0); INSERT INTO "area" VALUES('EPSG','3095','Finland - 21.5°E to 22.5°E onshore','Finland - onshore between 21°30''E and 22°30''E.',59.76,69.31,21.5,22.5,0); INSERT INTO "area" VALUES('EPSG','3096','Finland - 22.5°E to 23.5°E onshore','Finland - onshore between 22°30''E and 23°30''E.',59.75,68.74,22.5,23.5,0); INSERT INTO "area" VALUES('EPSG','3097','Finland - 23.5°E to 24.5°E onshore','Finland - onshore between 23°30''E and 24°30''E.',59.86,68.84,23.5,24.5,0); INSERT INTO "area" VALUES('EPSG','3098','Finland - 24.5°E to 25.5°E onshore','Finland - onshore between 24°30''E and 25°30''E.',59.94,68.9,24.5,25.5,0); INSERT INTO "area" VALUES('EPSG','3099','Finland - 25.5°E to 26.5°E onshore','Finland - onshore between 25°30''E and 26°30''E.',60.18,69.94,25.5,26.5,0); INSERT INTO "area" VALUES('EPSG','3100','Finland - 26.5°E to 27.5°E onshore','Finland - onshore between 26°30''E and 27°30''E.',60.36,70.05,26.5,27.5,0); INSERT INTO "area" VALUES('EPSG','3101','Finland - 27.5°E to 28.5°E onshore','Finland - onshore between 27°30''E and 28°30''E.',60.42,70.09,27.5,28.5,0); INSERT INTO "area" VALUES('EPSG','3102','Finland - 28.5°E to 29.5°E','Finland - between 28°30''E and 29°30''E.',60.94,69.81,28.5,29.5,0); INSERT INTO "area" VALUES('EPSG','3103','Finland - 29.5°E to 30.5°E','Finland - between 29°30''E and 30°30''E.',61.43,67.98,29.5,30.5,0); INSERT INTO "area" VALUES('EPSG','3104','Finland - east of 30.5°E','Finland - east of 30°30''E.',62.08,64.27,30.5,31.59,0); INSERT INTO "area" VALUES('EPSG','3105','French Guiana - coastal area','French Guiana - coastal area.',3.43,5.81,-54.45,-51.61,0); INSERT INTO "area" VALUES('EPSG','3106','Saudi Arabia - east of 54°E','Saudi Arabia - east of 54°E.',19.66,22.77,54.0,55.67,0); INSERT INTO "area" VALUES('EPSG','3107','Saudi Arabia - onshore west of 36°E','Saudi Arabia - onshore west of 36°E.',26.82,29.38,34.51,36.0,0); INSERT INTO "area" VALUES('EPSG','3108','Micronesia - Yap Islands','Federated States of Micronesia - Yap Islands.',9.39,9.69,137.99,138.27,0); INSERT INTO "area" VALUES('EPSG','3109','American Samoa - 2 main island groups','American Samoa - Tutuila, Aunu''u, Ofu, Olesega and Ta''u islands.',-14.43,-14.11,-170.88,-169.38,0); INSERT INTO "area" VALUES('EPSG','3110','American Samoa - 2 main island groups and Rose Island','American Samoa - Tutuila, Aunu''u, Ofu, Olesega, Ta''u and Rose islands.',-14.59,-14.11,-170.88,-168.09,0); INSERT INTO "area" VALUES('EPSG','3111','Europe - ED79 tfm','Austria; Finland; Netherlands; Norway; Spain; Sweden, Switzerland.',36.0,71.05,-8.95,31.6,1); INSERT INTO "area" VALUES('EPSG','3112','South America - 84°W to 78°W, N hemisphere and PSAD56 by country','South America (Ecuador) between 84°W and 78°W, northern hemisphere, onshore.',0.0,1.45,-80.18,-78.0,0); INSERT INTO "area" VALUES('EPSG','3113','Nigeria - OML 58','Nigeria - block OML 58.',5.05,5.36,6.53,6.84,0); INSERT INTO "area" VALUES('EPSG','3114','North America - 96°W to 90°W and NAD83 by country','North America - between 96°W and 90°W - onshore and offshore. Canada - Manitoba; Nunavut; Ontario. United States (USA) - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin.',25.61,84.0,-96.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','3115','North America - 90°W to 84°W and NAD83 by country','North America - between 90°W and 84°W - onshore and offshore. Canada - Manitoba; Nunavut; Ontario. United States (USA) - Alabama; Arkansas; Florida; Georgia; Indiana; Illinois; Kentucky; Louisiana; Michigan; Minnesota; Mississippi; Missouri; North Carolina; Ohio; Tennessee; Wisconsin.',23.97,84.0,-90.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','3116','North America - 84°W to 78°W and NAD83 by country','North America - between 84°W and 78°W - onshore and offshore. Canada - Nunavut; Ontario; Quebec. United States (USA) - Florida; Georgia; Kentucky; Maryland; Michigan; New York; North Carolina; Ohio; Pennsylvania; South Carolina; Tennessee; Virginia; West Virginia.',23.81,84.0,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','3117','North America - 78°W to 72°W and NAD83 by country','North America - between 78°W and 72°W - onshore and offshore. Canada - Nunavut; Ontario; Quebec. United States (USA) - Connecticut; Delaware; Maryland; Massachusetts; New Hampshire; New Jersey; New York; North Carolina; Pennsylvania; Virginia; Vermont.',28.28,84.0,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','3118','Grenada - main island - onshore','Grenada - main island - onshore.',11.94,12.29,-61.84,-61.54,0); INSERT INTO "area" VALUES('EPSG','3119','Greenland - onshore','Greenland - onshore.',59.74,83.67,-73.29,-11.81,0); INSERT INTO "area" VALUES('EPSG','3120','French Polynesia - west of 150°W','French Polynesia - west of 150°W onshore and offshore.',-26.7,-12.5,-158.13,-150.0,0); INSERT INTO "area" VALUES('EPSG','3121','French Polynesia - 150°W to 144°W','French Polynesia - between 150°W and 144°W onshore and offshore.',-31.2,-7.29,-150.0,-144.0,0); INSERT INTO "area" VALUES('EPSG','3122','French Polynesia - 144°W to 138°W','French Polynesia - between 144°W and 138°W onshore and offshore.',-31.24,-4.52,-144.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','3123','French Polynesia - east of 138°W','French Polynesia - east of 138°W.',-26.58,-5.52,-138.0,-131.97,0); INSERT INTO "area" VALUES('EPSG','3124','French Polynesia - Society Islands - Tahiti','French Polynesia - Society Islands - Tahiti.',-17.93,-17.44,-149.7,-149.09,0); INSERT INTO "area" VALUES('EPSG','3125','French Polynesia - Society Islands - Moorea','French Polynesia - Society Islands - Moorea.',-17.63,-17.41,-150.0,-149.73,0); INSERT INTO "area" VALUES('EPSG','3126','French Polynesia - Society Islands - Maupiti','French Polynesia - Society Islands - Maupiti.',-16.57,-16.34,-152.39,-152.14,0); INSERT INTO "area" VALUES('EPSG','3127','French Polynesia - Marquesas Islands - Ua Huka','French Polynesia - Marquesas Islands - Ua Huka.',-9.0,-8.81,-139.66,-139.44,0); INSERT INTO "area" VALUES('EPSG','3128','French Polynesia - Marquesas Islands - Ua Pou','French Polynesia - Marquesas Islands - Ua Pou.',-9.57,-9.27,-140.21,-139.95,0); INSERT INTO "area" VALUES('EPSG','3129','French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou','French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou.',-9.57,-8.72,-140.31,-139.44,0); INSERT INTO "area" VALUES('EPSG','3130','French Polynesia - Marquesas Islands - Hiva Oa and Tahuata','French Polynesia - Marquesas Islands - Hiva Oa and Tahuata.',-10.08,-9.64,-139.23,-138.75,0); INSERT INTO "area" VALUES('EPSG','3131','French Polynesia - Marquesas Islands - Hiva Oa','French Polynesia - Marquesas Islands - Hiva Oa.',-9.89,-9.64,-139.23,-138.75,0); INSERT INTO "area" VALUES('EPSG','3132','French Polynesia - Marquesas Islands - Tahuata','French Polynesia - Marquesas Islands - Tahuata.',-10.08,-9.86,-139.19,-138.98,0); INSERT INTO "area" VALUES('EPSG','3133','French Polynesia - Marquesas Islands - Fatu Hiva','French Polynesia - Marquesas Islands - Fatu Hiva.',-10.6,-10.36,-138.75,-138.54,0); INSERT INTO "area" VALUES('EPSG','3134','French Polynesia - Society Islands - main islands','French Polynesia - Society Islands - Bora Bora, Huahine, Maupiti, Moorea, Raiatea, Tahaa and Tahiti.',-17.93,-16.17,-152.39,-149.09,0); INSERT INTO "area" VALUES('EPSG','3135','French Polynesia - Society Islands - Huahine','French Polynesia - Society Islands - Huahine.',-16.87,-16.63,-151.11,-150.89,0); INSERT INTO "area" VALUES('EPSG','3136','French Polynesia - Society Islands - Raiatea','French Polynesia - Society Islands - Raiatea.',-16.96,-16.68,-151.55,-151.3,0); INSERT INTO "area" VALUES('EPSG','3137','French Polynesia - Society Islands - Bora Bora','French Polynesia - Society Islands - Bora Bora.',-16.62,-16.39,-151.86,-151.61,0); INSERT INTO "area" VALUES('EPSG','3138','French Polynesia - Society Islands - Tahaa','French Polynesia - Society Islands - Tahaa.',-16.72,-16.5,-151.63,-151.36,0); INSERT INTO "area" VALUES('EPSG','3139','Australia - New South Wales','Australia - New South Wales.',-37.53,-28.15,140.99,153.69,0); INSERT INTO "area" VALUES('EPSG','3140','Iran - South Pars block 11','Iran - South Pars field phase 11.',26.46,26.64,52.22,52.41,0); INSERT INTO "area" VALUES('EPSG','3141','Iran - Tombak LNG plant','Iran - Tombak LNG plant.',27.63,27.81,52.09,52.26,0); INSERT INTO "area" VALUES('EPSG','3142','Libya - Sirte NC192','Libya - Sirte Basin licence NC192.',27.5,28.07,21.25,21.59,0); INSERT INTO "area" VALUES('EPSG','3143','Trinidad and Tobago - Trinidad - onshore','Trinidad and Tobago - Trinidad - onshore.',9.99,10.9,-61.98,-60.85,0); INSERT INTO "area" VALUES('EPSG','3144','French Guiana - east of 54°W','French Guiana - east of 54°W, onshore and offshore.',2.17,8.88,-54.0,-49.45,0); INSERT INTO "area" VALUES('EPSG','3145','French Guiana - west of 54°W','French Guiana - west of 54°W.',2.11,5.69,-54.61,-54.0,0); INSERT INTO "area" VALUES('EPSG','3146','French Guiana - onshore','French Guiana - onshore.',2.11,5.81,-54.61,-51.61,0); INSERT INTO "area" VALUES('EPSG','3147','Congo DR (Zaire) - Katanga','The Democratic Republic of the Congo (Zaire) - Katanga.',-13.46,-4.99,21.74,30.78,0); INSERT INTO "area" VALUES('EPSG','3148','Congo DR (Zaire) - Kasai - SE','The Democratic Republic of the Congo (Zaire) - Kasai - south of 5°S and east of 21°30''E.',-7.31,-5.01,21.5,26.26,0); INSERT INTO "area" VALUES('EPSG','3149','Congo DR (Zaire) - 6th parallel south','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse.',-7.36,-3.29,12.17,29.64,0); INSERT INTO "area" VALUES('EPSG','3150','Congo DR (Zaire) - 11°E to 13°E onshore','The Democratic Republic of the Congo (Zaire) - onshore west of 13°E.',-6.04,-4.67,12.17,13.01,0); INSERT INTO "area" VALUES('EPSG','3151','Congo DR (Zaire) - 13°E to 15°E','The Democratic Republic of the Congo (Zaire) - between 13°E to 15°E.',-5.91,-4.28,13.0,15.01,0); INSERT INTO "area" VALUES('EPSG','3152','Congo DR (Zaire) - 15°E to 17°E','The Democratic Republic of the Congo (Zaire) - between 15°E to 17°E.',-7.31,-1.13,14.99,17.01,0); INSERT INTO "area" VALUES('EPSG','3153','Congo DR (Zaire) - 17°E to 19°E','The Democratic Republic of the Congo (Zaire) - between 17°E to 19°E.',-8.11,4.77,17.0,19.01,0); INSERT INTO "area" VALUES('EPSG','3154','Congo DR (Zaire) - 19°E to 21°E','The Democratic Republic of the Congo (Zaire) - between 19°E to 21°E.',-8.0,5.16,18.99,21.01,0); INSERT INTO "area" VALUES('EPSG','3155','Congo DR (Zaire) - 21°E to 23°E','The Democratic Republic of the Congo (Zaire) - between 21°E to 23°E.',-11.24,4.84,20.99,23.01,0); INSERT INTO "area" VALUES('EPSG','3156','Congo DR (Zaire) - 23°E to 25°E','The Democratic Republic of the Congo (Zaire) - between 23°E to 25°E.',-11.47,5.12,22.99,25.01,0); INSERT INTO "area" VALUES('EPSG','3157','Congo DR (Zaire) - 25°E to 27°E','The Democratic Republic of the Congo (Zaire) - between 25°E to 27°E.',-11.99,5.39,24.99,27.0,0); INSERT INTO "area" VALUES('EPSG','3158','Congo DR (Zaire) - 27°E to 29°E','The Democratic Republic of the Congo (Zaire) - between 27°E to 29°E.',-13.39,5.21,26.99,29.01,0); INSERT INTO "area" VALUES('EPSG','3159','Congo DR (Zaire) - east of 29°E','The Democratic Republic of the Congo (Zaire) - east of 29°E.',-13.46,4.69,29.0,31.31,0); INSERT INTO "area" VALUES('EPSG','3160','Congo DR (Zaire) - 6th parallel south 15°E to 17°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 15°E and 17°E.',-5.87,-3.29,15.0,17.0,0); INSERT INTO "area" VALUES('EPSG','3161','Congo DR (Zaire) - 6th parallel south 17°E to 19°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel traverse between 17°E and 19°E.',-5.38,-3.4,17.0,19.0,0); INSERT INTO "area" VALUES('EPSG','3162','Congo DR (Zaire) - 6th parallel south 19°E to 21°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 19°E and 21°E.',-7.29,-4.01,19.0,21.0,0); INSERT INTO "area" VALUES('EPSG','3163','Congo DR (Zaire) - 6th parallel south 21°E to 23°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 21°E and 23°E.',-7.31,-5.31,21.0,23.0,0); INSERT INTO "area" VALUES('EPSG','3164','Congo DR (Zaire) - 6th parallel south 23°E to 25°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 23°E and 25°E.',-6.99,-5.01,23.0,25.0,0); INSERT INTO "area" VALUES('EPSG','3165','Congo DR (Zaire) - 6th parallel south 25°E to 27°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 25°E and 27°E.',-7.26,-4.23,25.0,27.0,0); INSERT INTO "area" VALUES('EPSG','3166','Congo DR (Zaire) - 6th parallel south 27°E to 29°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 27°E and 29°E.',-7.36,-4.24,27.0,29.0,0); INSERT INTO "area" VALUES('EPSG','3167','Congo DR (Zaire) - 6th parallel south 29°E to 31°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse and east of 29°E.',-6.04,-4.34,29.0,29.64,0); INSERT INTO "area" VALUES('EPSG','3168','Poland - west of 18°E','Poland - west of 18°E.',49.98,54.85,14.14,18.0,1); INSERT INTO "area" VALUES('EPSG','3169','Poland - 18°E to 24°E','Poland - between 18°E and 24°E.',49.03,55.95,18.0,24.0,1); INSERT INTO "area" VALUES('EPSG','3170','Poland - east of 24°E','Poland - east of 24°E.',50.4,50.9,24.0,24.16,1); INSERT INTO "area" VALUES('EPSG','3171','Congo DR (Zaire) - Bas Congo','The Democratic Republic of the Congo (Zaire) - Lower Congo (Bas Congo)',-6.04,-4.28,12.17,16.28,0); INSERT INTO "area" VALUES('EPSG','3172','Pacific Ocean','Pacific Ocean - American Samoa, Antarctica, Australia, Brunei Darussalam, Cambodia, Canada, Chile, China, China - Hong Kong, China - Macao, Cook Islands, Ecuador, Fiji, French Polynesia, Guam, Indonesia, Japan, Kiribati, Democratic People''s Republic of Korea (North Korea), Republic of Korea (South Korea), Malaysia, Marshall Islands, Federated States of Micronesia, Nauru, New Caledonia, New Zealand, Niue, Norfolk Island, Northern Mariana Islands, Palau, Panama, Papua New Guinea (PNG), Peru, Philippines, Pitcairn, Russian Federation, Samoa, Singapore, Solomon Islands, Taiwan, Thailand, Tokelau, Tonga, Tuvalu, United States (USA), United States Minor Outlying Islands, Vanuatu, Venezuela, Vietnam, Wallis and Futuna.',-60.0,66.67,98.69,-68.0,0); INSERT INTO "area" VALUES('EPSG','3173','Europe - FSU - CS63 zone C0','Estonia, Latvia and Lithuania - onshore west of 23°27''E. Russia - Kaliningrad onshore.',54.17,59.27,19.57,23.45,0); INSERT INTO "area" VALUES('EPSG','3174','Europe - FSU - CS63 zone C1','Estonia, Latvia and Lithuania - onshore between 23°27''E and 26°27''E.',53.89,59.72,23.45,26.45,0); INSERT INTO "area" VALUES('EPSG','3175','Europe - FSU - CS63 zone C2','Estonia, Latvia and Lithuania - onshore east of 26°27''E.',55.15,59.61,26.45,28.24,0); INSERT INTO "area" VALUES('EPSG','3176','Brazil - 54°W to 48°W and south of 15°S','Brazil - onshore between 54°W and 48°W and south of 15°S.',-33.78,-15.0,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','3177','Brazil - 48°W to 42°W and south of 15°S','Brazil - onshore between 48°W and 42°W and south of 15°S.',-25.29,-15.0,-48.0,-42.0,0); INSERT INTO "area" VALUES('EPSG','3178','Brazil - east of 36°W onshore','Brazil - onshore east of 36°W .',-10.1,-4.99,-36.0,-34.74,0); INSERT INTO "area" VALUES('EPSG','3179','Africa - Angola (Cabinda) and DR Congo (Zaire) - coastal','Angola (Cabinda) - onshore and offshore; The Democratic Republic of the Congo (Zaire) - onshore coastal area and offshore.',-6.04,-4.38,10.53,13.1,0); INSERT INTO "area" VALUES('EPSG','3180','Africa - Angola (Cabinda) and DR Congo (Zaire) - offshore','Angola (Cabinda) - offshore; The Democratic Republic of the Congo (Zaire) - offshore.',-6.04,-5.05,10.53,12.37,0); INSERT INTO "area" VALUES('EPSG','3181','USA - Hawaii - Tern Island and Sorel Atoll','United States (USA) - Hawaii - Tern Island and Sorel Atoll.',23.69,23.93,-166.36,-166.03,0); INSERT INTO "area" VALUES('EPSG','3182','St Helena - Ascension Island','St Helena, Ascension and Tristan da Cunha - Ascension Island - onshore.',-8.03,-7.83,-14.46,-14.24,0); INSERT INTO "area" VALUES('EPSG','3183','St Helena - St Helena Island','St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.',-16.08,-15.85,-5.85,-5.58,0); INSERT INTO "area" VALUES('EPSG','3184','St Helena - Tristan da Cunha','St Helena, Ascension and Tristan da Cunha - Tristan da Cunha island group including Tristan, Inaccessible, Nightingale, Middle and Stoltenhoff Islands.',-40.42,-37.0,-12.76,-9.8,0); INSERT INTO "area" VALUES('EPSG','3185','Cayman Islands - Grand Cayman','Cayman Islands - Grand Cayman.',19.21,19.41,-81.46,-81.04,0); INSERT INTO "area" VALUES('EPSG','3186','Cayman Islands - Little Cayman and Cayman Brac','Cayman Islands - Little Cayman and Cayman Brac.',19.63,19.78,-80.14,-79.69,0); INSERT INTO "area" VALUES('EPSG','3187','South Georgia and the South Sandwich Islands - onshore','South Georgia and the South Sandwich Islands - onshore.',-59.53,-53.49,-42.14,-26.19,0); INSERT INTO "area" VALUES('EPSG','3188','Chile - Easter Island onshore','Chile - Easter Island onshore.',-27.25,-27.01,-109.51,-109.16,0); INSERT INTO "area" VALUES('EPSG','3189','British Indian Ocean Territory - Diego Garcia','British Indian Ocean Territory - Chagos Archipelago - Diego Garcia.',-7.49,-7.18,72.3,72.55,0); INSERT INTO "area" VALUES('EPSG','3190','Wake - onshore','Wake atoll - onshore.',19.22,19.38,166.55,166.72,0); INSERT INTO "area" VALUES('EPSG','3191','Pacific - Marshall Islands, Wake - onshore','Marshall Islands - onshore. Wake atoll onshore.',8.66,19.38,162.27,167.82,0); INSERT INTO "area" VALUES('EPSG','3192','Micronesia - Kosrae (Kusaie)','Federated States of Micronesia - Kosrae (Kusaie).',5.21,5.43,162.85,163.1,0); INSERT INTO "area" VALUES('EPSG','3193','Vanuatu - southern islands','Vanuatu - southern islands - Aneityum, Efate, Erromango and Tanna.',-20.31,-17.37,168.09,169.95,0); INSERT INTO "area" VALUES('EPSG','3194','Vanuatu - northern islands','Vanuatu - northern islands - Aese, Ambrym, Aoba, Epi, Espiritu Santo, Maewo, Malo, Malkula, Paama, Pentecost, Shepherd and Tutuba.',-17.32,-14.57,166.47,168.71,0); INSERT INTO "area" VALUES('EPSG','3195','Fiji - Viti Levu','Fiji - Viti Levu island.',-18.32,-17.25,177.19,178.75,0); INSERT INTO "area" VALUES('EPSG','3196','Kiribati - Phoenix Islands','Kiribati - Phoenix Islands: Kanton, Orona, McKean Atoll, Birnie Atoll, Phoenix Seamounts.',-4.76,-2.68,-174.6,-170.66,0); INSERT INTO "area" VALUES('EPSG','3197','Solomon Islands - Guadalcanal Island','Solomon Islands - Guadalcanal Island.',-9.98,-9.2,159.55,160.88,0); INSERT INTO "area" VALUES('EPSG','3198','Solomon Islands - New Georgia - Ghizo (Gizo)','Solomon Islands - Western Islands - New Georgia, Ghizo (Gizo).',-8.86,-7.52,156.44,158.2,0); INSERT INTO "area" VALUES('EPSG','3199','Spain - Canary Islands','Spain - Canary Islands onshore and offshore.',24.6,32.76,-21.93,-11.75,0); INSERT INTO "area" VALUES('EPSG','3200','Japan - Iwo Jima','Japan - Iwo Jima island.',24.67,24.89,141.2,141.42,0); INSERT INTO "area" VALUES('EPSG','3201','Johnston Island','United States Minor Outlying Islands - Johnston Island.',16.67,16.79,-169.59,-169.47,0); INSERT INTO "area" VALUES('EPSG','3202','Midway Islands - Sand and Eastern Islands','United States Minor Outlying Islands - Midway Islands - Sand Island and Eastern Island.',28.13,28.28,-177.45,-177.31,0); INSERT INTO "area" VALUES('EPSG','3203','Japan - Minamitori-shima (Marcus Island)','Japan - Minamitori-shima (Marcus Island).',24.26,24.32,153.95,154.01,1); INSERT INTO "area" VALUES('EPSG','3204','Antarctica - Deception Island','Antarctica - South Shetland Islands - Deception Island.',-63.08,-62.82,-60.89,-60.35,0); INSERT INTO "area" VALUES('EPSG','3205','Antarctica - Camp McMurdo area','Antarctica - McMurdo Sound, Camp McMurdo area.',-77.94,-77.17,165.73,167.43,0); INSERT INTO "area" VALUES('EPSG','3206','North America - Bahamas and USA - Florida - onshore','North America - onshore - Bahamas and USA - Florida (east).',20.86,30.83,-82.33,-72.68,0); INSERT INTO "area" VALUES('EPSG','3207','Cayman Islands - Cayman Brac','Cayman Islands - Cayman Brac.',19.66,19.78,-79.92,-79.69,0); INSERT INTO "area" VALUES('EPSG','3208','Pitcairn - Pitcairn Island','Pitcairn - Pitcairn Island.',-25.14,-25.0,-130.16,-130.01,0); INSERT INTO "area" VALUES('EPSG','3209','Mauritius - mainland','Mauritius - mainland onshore.',-20.57,-19.94,57.25,57.85,0); INSERT INTO "area" VALUES('EPSG','3210','Serbia and Montenegro','Serbia and Montenegro - onshore and offshore.',41.82,46.23,18.44,23.05,1); INSERT INTO "area" VALUES('EPSG','3211','Aaland Islands','Åland Islands - onshore and offshore.',59.84,60.48,19.24,21.19,0); INSERT INTO "area" VALUES('EPSG','3212','Albania - onshore','Albania - onshore.',39.64,42.67,19.22,21.06,0); INSERT INTO "area" VALUES('EPSG','3213','Algeria - onshore','Algeria - onshore.',18.97,37.14,-8.67,11.99,0); INSERT INTO "area" VALUES('EPSG','3214','Anguilla - onshore','Anguilla - onshore.',18.11,18.33,-63.22,-62.92,0); INSERT INTO "area" VALUES('EPSG','3215','Argentina - mainland onshore','Argentina - mainland onshore.',-52.43,-21.78,-73.59,-53.65,0); INSERT INTO "area" VALUES('EPSG','3216','Aruba - onshore','Aruba - onshore.',12.36,12.68,-70.11,-69.82,0); INSERT INTO "area" VALUES('EPSG','3217','Bangladesh - onshore','Bangladesh - onshore.',20.52,26.64,88.01,92.67,0); INSERT INTO "area" VALUES('EPSG','3218','Barbados - onshore','Barbados - onshore.',13.0,13.39,-59.71,-59.37,0); INSERT INTO "area" VALUES('EPSG','3219','Belize - onshore','Belize - onshore.',15.88,18.49,-89.22,-87.72,0); INSERT INTO "area" VALUES('EPSG','3220','Benin - onshore','Benin - onshore.',6.17,12.4,0.77,3.86,0); INSERT INTO "area" VALUES('EPSG','3221','Bermuda - onshore','Bermuda - onshore.',32.21,32.43,-64.89,-64.61,0); INSERT INTO "area" VALUES('EPSG','3222','Bouvet Island - onshore','Bouvet Island - onshore.',-54.52,-54.33,3.29,3.54,0); INSERT INTO "area" VALUES('EPSG','3223','Brazil - onshore','Brazil - onshore.',-33.78,5.28,-74.01,-34.74,0); INSERT INTO "area" VALUES('EPSG','3224','Bulgaria - onshore','Bulgaria - onshore.',41.24,44.23,22.36,28.68,0); INSERT INTO "area" VALUES('EPSG','3225','Cambodia - onshore','Cambodia - onshore.',10.39,14.73,102.34,107.64,0); INSERT INTO "area" VALUES('EPSG','3226','Cameroon - onshore','Cameroon - onshore.',1.65,13.09,8.45,16.21,0); INSERT INTO "area" VALUES('EPSG','3227','Chile - onshore north of 45°S','Chile - onshore north of 45°S.',-45.0,-17.5,-75.22,-67.0,0); INSERT INTO "area" VALUES('EPSG','3228','China - onshore','China - onshore.',18.11,53.56,73.62,134.77,0); INSERT INTO "area" VALUES('EPSG','3229','Colombia - mainland','Colombia - mainland onshore.',-4.23,12.52,-79.1,-66.87,0); INSERT INTO "area" VALUES('EPSG','3230','Congo - onshore','Congo - onshore.',-5.06,3.72,11.11,18.65,0); INSERT INTO "area" VALUES('EPSG','3231','Congo DR (Zaire) - onshore','The Democratic Republic of the Congo (Zaire) - onshore.',-13.46,5.39,12.17,31.31,0); INSERT INTO "area" VALUES('EPSG','3232','Costa Rica - onshore','Costa Rica - onshore.',7.98,11.22,-85.97,-82.53,0); INSERT INTO "area" VALUES('EPSG','3233','Cote d''Ivoire (Ivory Coast) - onshore','Côte d''Ivoire (Ivory Coast) - onshore.',4.29,10.74,-8.61,-2.48,0); INSERT INTO "area" VALUES('EPSG','3234','Croatia - onshore','Croatia - onshore.',42.34,46.54,13.43,19.43,0); INSERT INTO "area" VALUES('EPSG','3235','Cuba - onshore','Cuba - onshore.',19.77,23.25,-85.01,-74.07,0); INSERT INTO "area" VALUES('EPSG','3236','Cyprus - onshore','Cyprus - onshore.',34.59,35.74,32.2,34.65,0); INSERT INTO "area" VALUES('EPSG','3237','Denmark - onshore','Denmark - onshore.',54.51,57.8,8.0,15.24,0); INSERT INTO "area" VALUES('EPSG','3238','Djibouti - onshore','Djibouti - onshore.',10.94,12.72,41.75,43.48,0); INSERT INTO "area" VALUES('EPSG','3239','Dominica - onshore','Dominica - onshore.',15.14,15.69,-61.55,-61.2,0); INSERT INTO "area" VALUES('EPSG','3240','Dominican Republic - onshore','Dominican Republic - onshore.',17.55,19.99,-72.01,-68.27,0); INSERT INTO "area" VALUES('EPSG','3241','Ecuador - mainland onshore','Ecuador - mainland - onshore.',-5.01,1.45,-81.03,-75.21,0); INSERT INTO "area" VALUES('EPSG','3242','Egypt - onshore','Egypt - onshore.',21.97,31.68,24.7,36.95,0); INSERT INTO "area" VALUES('EPSG','3243','El Salvador - onshore','El Salvador - onshore.',13.1,14.44,-90.11,-87.69,0); INSERT INTO "area" VALUES('EPSG','3244','Equatorial Guinea - onshore','Equatorial Guinea - onshore.',0.93,3.82,8.37,11.36,0); INSERT INTO "area" VALUES('EPSG','3245','Eritrea - onshore','Eritrea - onshore.',12.36,18.01,36.44,43.18,0); INSERT INTO "area" VALUES('EPSG','3246','Estonia - onshore','Estonia - onshore.',57.52,59.75,21.74,28.2,0); INSERT INTO "area" VALUES('EPSG','3247','Falkland Islands - onshore','Falkland Islands (Malvinas) - onshore.',-52.51,-50.96,-61.54,-57.61,0); INSERT INTO "area" VALUES('EPSG','3248','Faroe Islands - onshore','Faroe Islands - onshore.',61.33,62.41,-7.49,-6.33,0); INSERT INTO "area" VALUES('EPSG','3249','Gabon - onshore','Gabon - onshore.',-3.98,2.32,8.65,14.52,0); INSERT INTO "area" VALUES('EPSG','3250','Gambia - onshore','Gambia - onshore.',13.05,13.83,-16.88,-13.79,0); INSERT INTO "area" VALUES('EPSG','3251','Georgia - onshore','Georgia - onshore.',41.04,43.59,39.99,46.72,0); INSERT INTO "area" VALUES('EPSG','3252','Ghana - onshore','Ghana - onshore.',4.67,11.16,-3.25,1.23,0); INSERT INTO "area" VALUES('EPSG','3253','Gibraltar - onshore','Gibraltar - onshore.',36.07,36.16,-5.42,-5.27,0); INSERT INTO "area" VALUES('EPSG','3254','Greece - onshore','Greece - onshore.',34.88,41.75,19.57,28.3,0); INSERT INTO "area" VALUES('EPSG','3255','Guam - onshore','Guam - onshore.',13.18,13.7,144.58,145.01,0); INSERT INTO "area" VALUES('EPSG','3256','Guatemala - onshore','Guatemala - onshore.',13.69,17.83,-92.29,-88.19,0); INSERT INTO "area" VALUES('EPSG','3257','Guinea - onshore','Guinea - onshore.',7.19,12.68,-15.13,-7.65,0); INSERT INTO "area" VALUES('EPSG','3258','Guinea-Bissau - onshore','Guinea-Bissau - onshore.',10.87,12.69,-16.77,-13.64,0); INSERT INTO "area" VALUES('EPSG','3259','Guyana - onshore','Guyana - onshore.',1.18,8.58,-61.39,-56.47,0); INSERT INTO "area" VALUES('EPSG','3260','Haiti - onshore','Haiti - onshore.',17.97,20.15,-74.52,-71.62,0); INSERT INTO "area" VALUES('EPSG','3261','Honduras - onshore','Honduras - onshore.',12.98,16.49,-89.36,-83.08,0); INSERT INTO "area" VALUES('EPSG','3262','Iceland - onshore','Iceland - onshore.',63.34,66.59,-24.66,-13.38,0); INSERT INTO "area" VALUES('EPSG','3263','Japan - onshore mainland','Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.',30.94,45.54,129.3,145.87,0); INSERT INTO "area" VALUES('EPSG','3264','Kenya - onshore','Kenya - onshore.',-4.72,4.63,33.9,41.91,0); INSERT INTO "area" VALUES('EPSG','3265','Korea, Democratic People''s Republic of (North Korea) - onshore','Democratic People''s Republic of Korea (North Korea) - onshore.',37.62,43.01,124.27,130.75,0); INSERT INTO "area" VALUES('EPSG','3266','Korea, Republic of (South Korea) - onshore','Republic of Korea (South Korea) - onshore.',33.14,38.64,124.53,131.01,0); INSERT INTO "area" VALUES('EPSG','3267','Kuwait - onshore','Kuwait - onshore.',28.53,30.09,46.54,48.48,0); INSERT INTO "area" VALUES('EPSG','3268','Latvia - onshore','Latvia - onshore.',55.67,58.09,20.87,28.24,0); INSERT INTO "area" VALUES('EPSG','3269','Lebanon - onshore','Lebanon - onshore.',33.06,34.65,35.04,36.63,0); INSERT INTO "area" VALUES('EPSG','3270','Liberia - onshore','Liberia - onshore.',4.29,8.52,-11.52,-7.36,0); INSERT INTO "area" VALUES('EPSG','3271','Libya - onshore','Libya - onshore.',19.5,33.23,9.31,25.21,0); INSERT INTO "area" VALUES('EPSG','3272','Lithuania - onshore','Lithuania - onshore.',53.89,56.45,20.86,26.82,0); INSERT INTO "area" VALUES('EPSG','3273','Madagascar - onshore','Madagascar - onshore.',-25.64,-11.89,43.18,50.56,0); INSERT INTO "area" VALUES('EPSG','3274','Maldives - onshore','Maldives - onshore.',-0.69,7.08,72.81,73.69,0); INSERT INTO "area" VALUES('EPSG','3275','Malta - onshore','Malta - onshore.',35.74,36.05,14.27,14.63,0); INSERT INTO "area" VALUES('EPSG','3276','Martinique - onshore','Martinique - onshore.',14.35,14.93,-61.29,-60.76,0); INSERT INTO "area" VALUES('EPSG','3277','Mauritania - onshore','Mauritania - onshore.',14.72,27.3,-17.08,-4.8,0); INSERT INTO "area" VALUES('EPSG','3278','Mexico - onshore','Mexico - onshore.',14.51,32.72,-118.47,-86.68,0); INSERT INTO "area" VALUES('EPSG','3279','Montserrat - onshore','Montserrat - onshore.',16.62,16.87,-62.29,-62.08,0); INSERT INTO "area" VALUES('EPSG','3280','Morocco - onshore','Morocco - onshore.',27.66,35.97,-13.24,-1.01,0); INSERT INTO "area" VALUES('EPSG','3281','Mozambique - onshore','Mozambique - onshore.',-26.87,-10.42,30.21,40.9,0); INSERT INTO "area" VALUES('EPSG','3282','Myanmar (Burma) - onshore','Myanmar (Burma) - onshore.',9.78,28.55,92.2,101.17,0); INSERT INTO "area" VALUES('EPSG','3283','Namibia - onshore','Namibia - onshore.',-28.97,-16.95,11.66,25.27,0); INSERT INTO "area" VALUES('EPSG','3284','Netherlands - onshore','Netherlands - onshore.',50.78,53.6,3.33,7.3,1); INSERT INTO "area" VALUES('EPSG','3285','New Zealand - onshore and nearshore','New Zealand - North Island, South Island, Stewart Island - onshore and nearshore.',-47.65,-33.89,165.87,179.27,0); INSERT INTO "area" VALUES('EPSG','3286','Nicaragua - onshore','Nicaragua - onshore.',10.7,15.03,-87.74,-83.08,0); INSERT INTO "area" VALUES('EPSG','3287','Nigeria - onshore','Nigeria - onshore.',4.22,13.9,2.69,14.65,0); INSERT INTO "area" VALUES('EPSG','3288','Oman - onshore','Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.',16.59,26.58,51.99,59.91,0); INSERT INTO "area" VALUES('EPSG','3289','Pakistan - onshore','Pakistan - onshore.',23.64,37.07,60.86,77.83,0); INSERT INTO "area" VALUES('EPSG','3290','Panama - onshore','Panama - onshore.',7.15,9.68,-83.04,-77.19,0); INSERT INTO "area" VALUES('EPSG','3291','Papua New Guinea - onshore','Papua New Guinea - onshore.',-11.7,-1.3,140.85,156.02,0); INSERT INTO "area" VALUES('EPSG','3292','Peru - onshore','Peru - onshore.',-18.35,-0.03,-81.41,-68.67,0); INSERT INTO "area" VALUES('EPSG','3293','Poland - onshore','Poland - onshore.',49.0,54.89,14.14,24.15,0); INSERT INTO "area" VALUES('EPSG','3294','Puerto Rico - onshore','Puerto Rico - onshore.',17.87,18.57,-67.97,-65.19,0); INSERT INTO "area" VALUES('EPSG','3295','Romania - onshore','Romania - onshore.',43.62,48.27,20.26,29.74,0); INSERT INTO "area" VALUES('EPSG','3296','Russia - onshore','Russian Federation - onshore.',41.19,81.91,19.58,-168.97,0); INSERT INTO "area" VALUES('EPSG','3297','St Kitts and Nevis - onshore','St Kitts and Nevis - onshore.',17.06,17.46,-62.92,-62.5,0); INSERT INTO "area" VALUES('EPSG','3298','St Lucia - onshore','St Lucia - onshore.',13.66,14.16,-61.13,-60.82,0); INSERT INTO "area" VALUES('EPSG','3299','St Pierre and Miquelon - onshore','St Pierre and Miquelon - onshore.',46.69,47.19,-56.48,-56.07,0); INSERT INTO "area" VALUES('EPSG','3300','St Vincent and the Grenadines - onshore','St Vincent and the northern Grenadine Islands - onshore.',12.54,13.44,-61.52,-61.07,0); INSERT INTO "area" VALUES('EPSG','3301','Samoa - onshore','Samoa - onshore.',-14.11,-13.41,-172.84,-171.37,0); INSERT INTO "area" VALUES('EPSG','3302','Sao Tome and Principe - onshore','Sao Tome and Principe - onshore.',-0.04,1.76,6.41,7.52,0); INSERT INTO "area" VALUES('EPSG','3303','Saudi Arabia - onshore','Saudi Arabia - onshore.',15.61,32.16,34.51,55.67,0); INSERT INTO "area" VALUES('EPSG','3304','Senegal - onshore','Senegal - onshore.',12.29,16.7,-17.59,-11.36,0); INSERT INTO "area" VALUES('EPSG','3305','Serbia and Montenegro - onshore','Serbia and Montenegro - onshore.',41.82,46.23,18.44,23.05,1); INSERT INTO "area" VALUES('EPSG','3306','Sierra Leone - onshore','Sierra Leone - onshore.',6.88,10.0,-13.35,-10.26,0); INSERT INTO "area" VALUES('EPSG','3307','Slovenia - onshore','Slovenia - onshore.',45.42,46.88,13.38,16.61,0); INSERT INTO "area" VALUES('EPSG','3308','Somalia - onshore','Somalia - onshore.',-1.71,12.03,40.99,51.47,0); INSERT INTO "area" VALUES('EPSG','3309','South Africa - onshore','South Africa - mainland onshore.',-34.88,-22.13,16.45,32.95,0); INSERT INTO "area" VALUES('EPSG','3310','Sri Lanka - onshore','Sri Lanka - onshore.',5.86,9.88,79.64,81.95,0); INSERT INTO "area" VALUES('EPSG','3311','Africa - South Sudan and Sudan onshore','South Sudan. Sudan - onshore.',3.49,22.24,21.82,38.66,0); INSERT INTO "area" VALUES('EPSG','3312','Suriname - onshore','Suriname - onshore.',1.83,6.06,-58.08,-53.95,0); INSERT INTO "area" VALUES('EPSG','3313','Sweden - onshore','Sweden - onshore.',55.28,69.07,10.93,24.17,0); INSERT INTO "area" VALUES('EPSG','3314','Syria - onshore','Syria - onshore.',32.31,37.3,35.61,42.38,0); INSERT INTO "area" VALUES('EPSG','3315','Taiwan - onshore - mainland and Penghu','Taiwan, Republic of China - onshore - Taiwan Island, Penghu (Pescadores) Islands.',21.87,25.34,119.25,122.06,0); INSERT INTO "area" VALUES('EPSG','3316','Tanzania - onshore','Tanzania - onshore.',-11.75,-0.99,29.34,40.48,0); INSERT INTO "area" VALUES('EPSG','3317','Thailand - onshore','Thailand - onshore.',5.63,20.46,97.34,105.64,0); INSERT INTO "area" VALUES('EPSG','3318','East Timor - onshore','Timor-Leste (East Timor) - onshore.',-9.5,-8.08,124.03,127.36,0); INSERT INTO "area" VALUES('EPSG','3319','Togo - onshore','Togo - onshore.',6.05,11.14,-0.15,1.8,0); INSERT INTO "area" VALUES('EPSG','3320','Tokelau - onshore','Tokelau - onshore.',-9.27,-9.12,-171.92,-171.79,0); INSERT INTO "area" VALUES('EPSG','3321','Tonga - onshore','Tonga - onshore.',-21.32,-18.51,-175.42,-173.85,0); INSERT INTO "area" VALUES('EPSG','3322','Turkey - onshore','Turkey - onshore.',35.81,42.15,25.62,44.83,0); INSERT INTO "area" VALUES('EPSG','3323','Turks and Caicos Islands - onshore','Turks and Caicos Islands - onshore.',21.38,22.01,-72.09,-71.07,0); INSERT INTO "area" VALUES('EPSG','3324','Ukraine - onshore','Ukraine - onshore.',44.32,52.38,22.15,40.18,0); INSERT INTO "area" VALUES('EPSG','3325','UAE - onshore','United Arab Emirates (UAE) - onshore. Abu Dhabi, Dubai, Sharjah, Umm al Qaywayn, Al Fujairah, Ras al Khaymah.',22.63,26.1,51.56,56.44,0); INSERT INTO "area" VALUES('EPSG','3326','Uruguay - onshore','Uruguay - onshore.',-35.0,-30.09,-58.49,-53.09,0); INSERT INTO "area" VALUES('EPSG','3327','Venezuela - onshore','Venezuela - onshore.',0.64,12.25,-73.38,-59.8,0); INSERT INTO "area" VALUES('EPSG','3328','Vietnam - onshore','Vietnam - onshore.',8.33,23.4,102.14,109.53,0); INSERT INTO "area" VALUES('EPSG','3329','Virgin Islands, British - onshore','British Virgin Islands - onshore - Anegada, Jost Van Dyke, Tortola, and Virgin Gorda.',18.28,18.78,-64.88,-64.25,0); INSERT INTO "area" VALUES('EPSG','3330','Virgin Islands, US - onshore','US Virgin Islands - onshore - St Croix, St John, and St Thomas.',17.62,18.44,-65.09,-64.51,0); INSERT INTO "area" VALUES('EPSG','3331','Western Sahara - onshore','Western Sahara - onshore.',20.71,27.67,-17.16,-8.66,0); INSERT INTO "area" VALUES('EPSG','3332','Yemen - onshore','Yemen - onshore.',12.09,19.0,41.8,54.53,0); INSERT INTO "area" VALUES('EPSG','3333','Finland - onshore','Finland - onshore.',59.75,70.09,19.24,31.59,0); INSERT INTO "area" VALUES('EPSG','3334','China - Hong Kong - onshore','China - Hong Kong - onshore.',22.19,22.56,113.82,114.39,0); INSERT INTO "area" VALUES('EPSG','3335','China - Hong Kong - offshore','China - Hong Kong - offshore.',22.13,22.58,113.76,114.51,0); INSERT INTO "area" VALUES('EPSG','3336','Iran - onshore','Iran - onshore.',25.02,39.78,44.03,63.34,0); INSERT INTO "area" VALUES('EPSG','3337','Reunion - onshore','Reunion - onshore.',-21.42,-20.81,55.16,55.91,0); INSERT INTO "area" VALUES('EPSG','3338','New Zealand - Stewart Island','New Zealand - Stewart Island.',-47.33,-46.63,167.29,168.34,0); INSERT INTO "area" VALUES('EPSG','3339','Germany - onshore','Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen, Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt, Schleswig-Holstein, Thuringen.',47.27,55.09,5.86,15.04,0); INSERT INTO "area" VALUES('EPSG','3340','Mayotte - onshore','Mayotte - onshore.',-13.05,-12.61,44.98,45.35,0); INSERT INTO "area" VALUES('EPSG','3341','India - mainland','India - mainland onshore.',8.02,35.51,68.13,97.42,0); INSERT INTO "area" VALUES('EPSG','3342','Jamaica - onshore','Jamaica - onshore.',17.64,18.58,-78.43,-76.17,0); INSERT INTO "area" VALUES('EPSG','3343','Italy - including San Marino and Vatican','Italy - onshore and offshore; San Marino, Vatican City State.',34.76,47.1,5.93,18.99,0); INSERT INTO "area" VALUES('EPSG','3344','New Zealand - South and Stewart Islands','New Zealand - South Island, Stewart Island.',-47.33,-40.44,166.37,174.46,0); INSERT INTO "area" VALUES('EPSG','3345','Slovenia - Ljubljana east','Slovenia - eastern part of the Ljubljana region with the Kamnik-Domzale area.',45.85,46.32,14.45,15.01,0); INSERT INTO "area" VALUES('EPSG','3346','Slovenia - Prekmurje','Slovenia - Prekmurje (the Transmuraland).',46.47,46.88,15.98,16.61,0); INSERT INTO "area" VALUES('EPSG','3347','Slovenia - Novo Mesto','Slovenia - Novo Mesto with the Gorjanci.',45.66,45.87,15.06,15.47,0); INSERT INTO "area" VALUES('EPSG','3348','Slovenia - Gorenjska - upper','Slovenia - upper Gorenjska (Upper Carniola) with the Baca Valley and part of the Cerkno Mountains.',46.09,46.53,13.7,14.18,0); INSERT INTO "area" VALUES('EPSG','3349','Slovenia - Ljubliana west','Slovenia - western part of the Ljubljana region with part of Skofja Loka Hills and the Idrija-Cerklje region.',45.86,46.21,13.95,14.52,0); INSERT INTO "area" VALUES('EPSG','3350','Slovenia - Notranjska','Slovenia - Notranjska (Inner Carniola) with parts of the Karst and the Brkini Hills.',45.47,45.88,14.08,14.59,0); INSERT INTO "area" VALUES('EPSG','3351','Slovenia - Kocevje','Slovenia - Kocevje with the Kocevski Forest and Gotenica Mountain.',45.46,45.76,14.6,15.12,0); INSERT INTO "area" VALUES('EPSG','3352','Slovenia - Koroska','Slovenia - Koroska Region (Slovene Carinthia).',46.46,46.66,14.83,15.51,0); INSERT INTO "area" VALUES('EPSG','3353','Slovenia - Velenje','Slovenia - Velenje with part of Koroska Region (Slovene Carinthia).',46.28,46.51,14.9,15.26,0); INSERT INTO "area" VALUES('EPSG','3354','Slovenia - Zasavje','Slovenia - Zasavje (the Sava Valley) with the broad region of Celje.',46.0,46.32,14.84,15.35,0); INSERT INTO "area" VALUES('EPSG','3355','Brazil - south of 18°S and west of 54°W','Brazil - onshore south of 18°S and west of 54°W.',-31.91,-17.99,-58.16,-54.0,0); INSERT INTO "area" VALUES('EPSG','3356','South America - Brazil - south of 18°S and west of 54°W + DF; N Paraguay','Brazil - south of 18°S and west of 54°W, plus Distrito Federal. Paraguay - north.',-31.91,-15.37,-62.57,-47.1,0); INSERT INTO "area" VALUES('EPSG','3357','USA - GoM OCS','United States (USA) - offshore Gulf of Mexico outer continental shelf (GoM OCS) - protraction areas South Padre Island; North Padre Island; Mustang Island; Matagorda Island; Brazos; Galveston; High Island; Sabine Pass; West Cameron; East Cameron; Vermilion; South Marsh Island; Eugene Island; Ship Shoal; South Pelto; Bay Marchand; South Timbalier; Grand Isle; West Delta; South Pass; Main Pass; Breton Sound; Chandeleur; Corpus Christi; Port Isabel; East Breaks; Alaminos Canyon; Garden Banks; Keathley Canyon; Sigsbee Escarpment; Ewing Bank; Green Canyon; Walker Ridge; Amery Terrace; Mobile; Viosca Knoll; Mississippi Canyon; Atwater Valley; Lund; Lund South; Pensacola; Destin Dome; De Soto Canyon; Lloyd Ridge; Henderson; Florida Plain; Campeche Escarpment; Apalachicola; Florida Middle Ground; The Elbow; Vernon Basin; Howell Hook; Rankin; Gainesville; Tarpon Springs; St Petersburg; Charlotte Harbor; Pulley Ridge; Dry Tortugas; Tortugas Valley; Miami; Key West.',23.82,30.25,-97.22,-81.17,0); INSERT INTO "area" VALUES('EPSG','3358','USA - GoM - east of 87.25°W','United States (USA) - offshore Gulf of Mexico (GoM) east of approximately 87°15''W - protraction areas Gainesville, Tarpon Springs, St Petersburg, Charlotte Harbor, Pulley Ridge, Dry Tortugas, Tortugas Valley, Miami, Key West, Apalachicola, Florida Middle Ground, The Elbow, Vernon Basin, Howell Hook, Rankin and Campeche Escarpment. Also for protraction areas Pensacola, Destin Dome, Desoto Canyon, Lloyd Ridge, Henderson and Florida Plain - east of 87°15''W.',23.82,30.25,-87.25,-81.17,0); INSERT INTO "area" VALUES('EPSG','3359','USA - GoM - 95°W to 87.25°W','United States (USA) - offshore Gulf of Mexico (GoM) between approximately 95°W and 87°15''W - protraction areas High Island (including all additions and extensions), Sabine Pass, West Cameron (including west and south additions), East Cameron (including south addition), Vermillion (including south addition), South Marsh Island (including north and south additions), Eugene Island (including south addition), Ship Shoal (including south addition), South Timbalier (including south addition), Grand Isle (including south addition), West Delta (including south addition), South Pass (including south and east additions), Main Pass (including south and east addition), Breton Sound, Chandeleur (including east addition), Mobile, Viosca Knoll, Mississippi Canyon, Atwater Valley, Lund, Lund South, Ewing Bank, Green Canyon, Walker Ridge, Amery Terrace, Garden Banks, Keathley Canyon and Sigsbee Escarpment. Also for protraction areas Galveston (including south addition), East Breaks and Aliminos Canyon - east of 95°W; for protraction areas Pensacola, Destin Dome, Desoto Canyon, Lloyd Ridge, Henderson and Florida Plain - west of 87°15''W.',25.61,30.23,-95.0,-87.25,0); INSERT INTO "area" VALUES('EPSG','3360','USA - GoM - west of 95°W','United States (USA) - offshore Gulf of Mexico (GoM) west of approximately 95°W - protraction areas Brazos (including south addition), Matagorda Island, Mustang Island (including east addition); North Padre Island (including east addition), South Padre Island (including east addition), Corpus Christi and Port Isabel. Also protraction areas Galveston (including south addition), East Breaks and Aliminos Canyon - west of 95°W.',25.97,28.97,-97.22,-95.0,0); INSERT INTO "area" VALUES('EPSG','3361','Mexico - offshore GoM - Tampico area','Mexico - offshore Gulf of Mexico (GoM) - Tampico area.',21.51,22.75,-98.1,-96.89,0); INSERT INTO "area" VALUES('EPSG','3362','Greenland - west coast','Greenland - west coast onshore.',59.74,79.0,-73.29,-42.52,0); INSERT INTO "area" VALUES('EPSG','3363','Greenland - west coast - 63°N to 66°N','Greenland - west coast onshore - between 63°N and 66°N.',63.0,66.0,-53.7,-49.17,0); INSERT INTO "area" VALUES('EPSG','3364','Greenland - west coast - 66°N to 69°N','Greenland - west coast onshore - between 66°N and 69°N.',66.0,69.0,-54.09,-49.4,0); INSERT INTO "area" VALUES('EPSG','3365','Greenland - west coast - 69°N to 72°N','Greenland - west coast onshore - between 69°N and 72°N.',69.0,72.0,-56.06,-49.11,0); INSERT INTO "area" VALUES('EPSG','3366','Greenland - west coast - 72°N to 75°N','Greenland - west coast onshore - between 72°N and 75°N.',72.0,75.0,-58.21,-52.02,0); INSERT INTO "area" VALUES('EPSG','3367','Greenland - west coast - 75°N to 78°N','Greenland - west coast - between 75°N and 78°N.',75.0,78.0,-72.79,-56.31,0); INSERT INTO "area" VALUES('EPSG','3368','Greenland - west coast - 78°N to 79°N','Greenland - west coast onshore - between 78°N and 79°N.',78.0,79.0,-73.29,-65.24,0); INSERT INTO "area" VALUES('EPSG','3369','Greenland - east coast - 68°N to 69°N','Greenland - east coast onshore - between 68°N and 69°N.',68.66,69.0,-26.99,-25.14,0); INSERT INTO "area" VALUES('EPSG','3370','Greenland - east coast - 69°N to 72°N','Greenland - east coast onshore - between 69°N and 72°N.',69.0,72.0,-29.69,-21.32,0); INSERT INTO "area" VALUES('EPSG','3371','Greenland - east coast - 72°N to 75°N','Greenland - east coast onshore - between 72°N and 75°N.',72.0,74.58,-29.15,-19.89,0); INSERT INTO "area" VALUES('EPSG','3372','USA - west of 174°E - AK, OCS','United States (USA) - west of 174°E. Alaska and offshore continental shelf (OCS).',49.01,56.28,167.65,174.01,0); INSERT INTO "area" VALUES('EPSG','3373','USA - 174°E to 180°E - AK, OCS','United States (USA) - between 174°E and 180°E - Alaska and offshore continental shelf (OCS).',47.92,56.67,174.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3374','USA - 180°W to 174°W - AK, OCS','United States (USA) - between 180°W and 174°W - Alaska and offshore continental shelf (OCS).',47.88,63.21,-180.0,-173.99,0); INSERT INTO "area" VALUES('EPSG','3375','USA - 174°W to 168°W - AK, OCS','United States (USA) - between 174°W and 168°W - Alaska and offshore continental shelf (OCS).',48.66,73.05,-174.0,-167.99,0); INSERT INTO "area" VALUES('EPSG','3376','Malaysia - West Malaysia - Johor','Malaysia - West Malaysia - Johor.',1.21,2.95,102.44,104.6,0); INSERT INTO "area" VALUES('EPSG','3377','Malaysia - West Malaysia - Sembilan and Melaka','Malaysia - West Malaysia - Negeri Sembilan and Melaka.',2.03,3.28,101.7,102.71,0); INSERT INTO "area" VALUES('EPSG','3378','Malaysia - West Malaysia - Pahang','Malaysia - West Malaysia - Pahang.',2.45,4.78,101.33,103.67,0); INSERT INTO "area" VALUES('EPSG','3379','Malaysia - West Malaysia - Selangor','Malaysia - West Malaysia - Selangor.',2.54,3.87,100.76,101.97,0); INSERT INTO "area" VALUES('EPSG','3380','Malaysia - West Malaysia - Terengganu','Malaysia - West Malaysia - Terengganu.',3.89,5.9,102.38,103.72,0); INSERT INTO "area" VALUES('EPSG','3381','Malaysia - West Malaysia - Pulau Pinang','Malaysia - West Malaysia - Pulau Pinang - Pinang (Penang) Island and Seberang Perai (Province Wellesley).',5.12,5.59,100.12,100.56,0); INSERT INTO "area" VALUES('EPSG','3382','Malaysia - West Malaysia - Kedah and Perlis','Malaysia - West Malaysia - Kedah and Perlis.',5.08,6.72,99.59,101.12,0); INSERT INTO "area" VALUES('EPSG','3383','Malaysia - West Malaysia - Perak','Malaysia - West Malaysia - Perak.',3.66,5.92,100.07,102.0,0); INSERT INTO "area" VALUES('EPSG','3384','Malaysia - West Malaysia - Kelantan','Malaysia - West Malaysia - Kelantan.',4.54,6.29,101.33,102.67,0); INSERT INTO "area" VALUES('EPSG','3385','Finland - east of 31.5°E','Finland - east of 31°30''E.',62.83,63.0,31.5,31.59,0); INSERT INTO "area" VALUES('EPSG','3386','Asia - Middle East - Iraq and Kuwait 42°E to 48°E','Iraq - between 42°E and 48°E. Kuwait - west of 48°E.',28.53,37.39,42.0,48.0,1); INSERT INTO "area" VALUES('EPSG','3387','Iraq - west of 42°E','Iraq - west of 42°E.',31.14,36.75,38.79,42.0,0); INSERT INTO "area" VALUES('EPSG','3388','Iraq - 42°E to 48°E','Iraq - between 42°E and 48°E.',29.06,37.39,42.0,48.0,0); INSERT INTO "area" VALUES('EPSG','3389','Iraq - east of 48°E onshore','Iraq - onshore east of 48°E.',29.87,31.0,48.0,48.61,0); INSERT INTO "area" VALUES('EPSG','3390','Asia - Middle East -SE Iraq and SW Iran','Iraq - onshore southeast; Iran - onshore northern Gulf coast and west bordering southeast Iraq.',29.06,33.5,44.3,51.06,0); INSERT INTO "area" VALUES('EPSG','3391','World - between 80°S and 84°N','World between 80°S and 84°N.',-80.0,84.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3392','Germany - Thuringen - west of 10.5°E','Germany - Thuringen - west of 10°30''E.',50.35,51.56,9.92,10.5,0); INSERT INTO "area" VALUES('EPSG','3393','Germany - Thuringen - east of 10.5°E','Germany - Thuringen - east of 10°30''E.',50.2,51.64,10.5,12.56,0); INSERT INTO "area" VALUES('EPSG','3394','Germany - Saxony - east of 13.5°E','Germany - Sachsen - east of 13°30''E.',50.62,51.58,13.5,15.04,0); INSERT INTO "area" VALUES('EPSG','3395','Germany - Saxony - west of 13.5°E','Germany - Sachsen - west of 13°30''E.',50.2,51.66,11.89,13.51,0); INSERT INTO "area" VALUES('EPSG','3396','Germany - Mecklenburg-Vorpommern and Sachsen-Anhalt','Germany - Mecklenburg-Vorpommern and Sachsen-Anhalt.',50.94,53.05,10.54,14.43,1); INSERT INTO "area" VALUES('EPSG','3397','Iraq - Basra area','Iraq - Basra area.',29.87,31.09,46.46,48.61,0); INSERT INTO "area" VALUES('EPSG','3398','Fiji - main islands','Fiji - onshore - Vanua Levu, Taveuni, Viti Levu and and immediately adjacent smaller islands of Yasawa and Kandavu groups.',-19.22,-16.1,176.81,-179.77,0); INSERT INTO "area" VALUES('EPSG','3399','Fiji - main islands - west of 180°','Fiji - onshore west of 180° - Vanua Levu, Taveuni, Viti Levu and and immediately adjacent smaller islands of Yasawa and Kandavu groups.',-19.22,-16.1,176.81,180.0,0); INSERT INTO "area" VALUES('EPSG','3400','Fiji - main islands - east of 180°','Fiji - onshore east of 180° - Vanua Levu, Taveuni.',-17.04,-16.1,-180.0,-179.77,0); INSERT INTO "area" VALUES('EPSG','3401','Fiji - Vanua Levu and Taveuni','Fiji - Vanua Levu and Taveuni.',-17.07,-16.1,178.42,-179.77,0); INSERT INTO "area" VALUES('EPSG','3402','Algeria - Hassi Mouina licence area','Algeria - Hassi Mouina licence area.',29.25,31.0,0.0,1.25,0); INSERT INTO "area" VALUES('EPSG','3403','Russia - west of 19.5°E','Russian Federation - Kaliningrad - west of 19°30''E.',54.32,55.3,19.2,19.5,1); INSERT INTO "area" VALUES('EPSG','3404','North America - 120°W to 114°W and NAD83 by country','North America - between 120°W and 114°W - onshore and offshore. Canada - Alberta; British Columbia; Northwest Territories; Nunavut. United States (USA) - California; Idaho; Nevada, Oregon; Washington.',30.88,83.5,-120.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','3405','North America - 114°W to 108°W and NAD83 by country','North America - between 114°W and 108°W - onshore and offshore. Canada - Alberta; Northwest Territories; Nunavut; Saskatchewan. United States (USA) - Arizona; Colorado; Idaho; Montana; New Mexico; Utah; Wyoming.',31.33,84.0,-114.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','3406','North America - 108°W to 102°W and NAD83 by country','North America - between 108°W and 102°W - onshore and offshore. Canada - Northwest Territories; Nunavut; Saskatchewan. United States (USA) - Colorado; Montana; Nebraska; New Mexico; North Dakota; Oklahoma; South Dakota; Texas; Wyoming.',28.98,84.0,-108.0,-102.0,0); INSERT INTO "area" VALUES('EPSG','3407','North America - 102°W to 96°W and NAD83 by country','North America - between 102°W and 96°W - onshore and offshore. Canada - Manitoba; Nunavut; Saskatchewan. United States (USA) - Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas.',25.83,84.0,-102.0,-96.0,0); INSERT INTO "area" VALUES('EPSG','3408','Sweden - Stockholm','Sweden - Stockholm commune.',59.22,59.43,17.75,18.2,0); INSERT INTO "area" VALUES('EPSG','3409','Canada - 144°W to 138°W','Canada west of 138°W, onshore and offshore south of 84°N - British Columbia, Yukon.',52.05,72.53,-141.01,-138.0,0); INSERT INTO "area" VALUES('EPSG','3410','Canada - 138°W to 132°W','Canada between 138°W and 132°W, onshore and offshore south of 84°N - British Columbia, Northwest Territories, Yukon.',48.06,79.42,-138.0,-132.0,0); INSERT INTO "area" VALUES('EPSG','3411','Canada - 132°W to 126°W','Canada - between 132°W and 126°W, onshore and offshore south of 84°N - British Columbia, Northwest Territories, Yukon.',46.52,80.93,-132.0,-126.0,0); INSERT INTO "area" VALUES('EPSG','3412','Canada - 126°W to 120°W','Canada between 126°W and 120°W, onshore and offshore south of 84°N - British Columbia, Northwest Territories, Yukon.',48.13,81.8,-126.0,-120.0,0); INSERT INTO "area" VALUES('EPSG','3413','Canada - 102°W to 96°W','Canada between 102°W and 96°W, onshore and offshore south of 84°N - Manitoba, Nunavut, Saskatchewan.',48.99,84.0,-102.0,-96.0,0); INSERT INTO "area" VALUES('EPSG','3414','Canada - 96°W to 90°W','Canada between 96°W and 90°W, onshore and offshore south of 84°N - Manitoba, Nunavut, Ontario.',48.03,84.0,-96.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','3415','Canada - 90°W to 84°W','Canada between 90°W and 84°W, onshore and offshore south of 84°N - Manitoba, Nunavut, Ontario.',46.11,84.0,-90.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','3416','Canada - 84°W to 78°W','Canada between 84°W and 78°W, onshore and offshore south of 84°N - Nunavut, Ontario and Quebec.',41.67,84.0,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','3417','Canada - 78°W to 72°W','Canada between 78°W and 72°W, onshore and offshore south of 84°N - Nunavut, Ontario and Quebec.',43.63,84.0,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','3418','Latin America - SIRGAS 2000 by country','Latin America - Central America and South America - onshore and offshore. Brazil - onshore and offshore.',-59.87,32.72,-122.19,-25.28,0); INSERT INTO "area" VALUES('EPSG','3419','North America - 72°W to 66°W and NAD83 by country','North America - between 72°W and 66°W - onshore and offshore. Canada - Labrador; New Brunswick; Nova Scotia; Nunavut; Quebec. Puerto Rico. United States (USA) - Connecticut; Maine; Massachusetts; New Hampshire; New York (Long Island); Rhode Island; Vermont.',14.92,84.0,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','3420','North America - 66°W to 60°W and NAD83 by country','North America - between 66°W and 60°W - onshore and offshore. British Virgin Islands. Canada - New Brunswick; Labrador; Nunavut; Prince Edward Island; Quebec. Puerto Rico. US Virgin Islands. United States (USA) offshore Atlantic.',15.63,84.0,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','3421','Latin America - 84°W to 78°West; N hemisphere and SIRGAS by country','Latin America - Central America and South America - between 84°W and 78°W, northern hemisphere, onshore and offshore.',0.0,19.54,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','3422','Latin America - 78°W to 72°West; N hemisphere and SIRGAS by country','Latin America - Central America and South America - between 78°W and 72°W, northern hemisphere, onshore and offshore.',0.0,15.04,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','3423','Mexico - west of 114°W','Mexico west of 114°W, onshore and offshore.',15.01,32.72,-122.19,-114.0,0); INSERT INTO "area" VALUES('EPSG','3424','Mexico - 114°W to 108°W','Mexico between 114°W and 108°W, onshore and offshore.',15.09,32.27,-114.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','3425','Mexico - 108°W to 102°W','Mexico between 108°W and 102°W, onshore and offshore.',14.05,31.79,-108.0,-102.0,0); INSERT INTO "area" VALUES('EPSG','3426','Mexico - 102°W to 96°W','Mexico between 102°W and 96°W, onshore and offshore.',12.3,29.81,-102.0,-96.0,0); INSERT INTO "area" VALUES('EPSG','3427','Latin America - 96°W to 90°W; N hemisphere and SIRGAS 2000 by country','Latin America - Central and South America - between 96°W and 90°W, northern hemisphere, onshore and offshore.',0.0,26.0,-96.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','3428','Latin America - 90°W to 84°W; N hemisphere and SIRGAS 2000 by country','Latin America - Central America and South America - between 90°W and 84°W, northern hemisphere, onshore and offshore.',0.0,25.77,-90.0,-83.99,0); INSERT INTO "area" VALUES('EPSG','3429','Spain - mainland and Balearic Islands onshore','Spain - mainland, Balearic Islands, Ceuta and Melila - onshore.',35.26,43.82,-9.37,4.39,0); INSERT INTO "area" VALUES('EPSG','3430','New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands','New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands (Lifou, Mare, Ouvea).',-22.73,-19.5,163.54,168.19,0); INSERT INTO "area" VALUES('EPSG','3431','New Caledonia - west of 162°E','New Caledonia - west of 162°E onshore and offshore.',-26.03,-15.34,156.25,162.01,0); INSERT INTO "area" VALUES('EPSG','3432','New Caledonia - 162°E to 168°E','New Caledonia - between 162°E and 168°E onshore and offshore.',-26.45,-14.83,162.0,168.0,0); INSERT INTO "area" VALUES('EPSG','3433','New Caledonia - east of 168°E','New Caledonia - east of 168°E onshore and offshore.',-25.95,-19.75,168.0,174.28,0); INSERT INTO "area" VALUES('EPSG','3434','New Caledonia - Mare - west of 168°E','New Caledonia - Loyalty Islands - Mare - west of 168°E.',-21.71,-21.32,167.75,168.0,0); INSERT INTO "area" VALUES('EPSG','3435','New Caledonia - Mare - east of 168°E','New Caledonia - Loyalty Islands - Mare - east of 168°E.',-21.71,-21.35,168.0,168.19,0); INSERT INTO "area" VALUES('EPSG','3436','South America - 72°W to 66°W, N hemisphere and SIRGAS 2000 by country','South America between 72°W and 66°W and north of approximately 2°N, onshore and offshore.',0.0,15.64,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','3437','South America - 66°W to 60°W, N hemisphere and SIRGAS 2000 by country','South America between 66°W and 60°W, north of approximately 4°N, onshore and offshore.',0.64,16.75,-66.0,-59.99,0); INSERT INTO "area" VALUES('EPSG','3438','South America - 60°W to 54°W, N hemisphere and SIRGAS 2000 by country','South America between 60°W and 54°W, north of approximately 2°N, onshore and offshore.',1.18,12.19,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','3439','South America - 54°W to 48°W, N hemisphere and SIRGAS 2000 by country','South America between 54°W and 48°W, northern hemisphere, onshore and offshore except Brazil where offshore only.',0.0,9.24,-54.0,-47.99,0); INSERT INTO "area" VALUES('EPSG','3440','South America - 78°W to 72°W, S hemisphere and SIRGAS 2000 by country','Brazil west of 72°W. In remainder of South America, between 78°W and 72°W, southern hemisphere, onshore and offshore.',-59.36,0.0,-78.0,-71.99,0); INSERT INTO "area" VALUES('EPSG','3441','South America - 72°W to 66°W, S hemisphere and SIRGAS 2000 by country','Brazil - between 72°W and 66°W, northern and southern hemispheres. In remainder of South America - between 72°W and 66°W, southern hemisphere, onshore and offshore.',-59.87,2.15,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','3442','South America - 66°W to 60°W, S hemisphere and SIRGAS 2000 by country','Brazil - between 66°W and 60°W, northern and southern hemispheres. In remainder of South America - between 66°W and 60°W, southern hemisphere, onshore and offshore.',-58.39,5.28,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','3443','South America - 60°W to 54°W, S hemisphere and SIRGAS 2000 by country','Brazil - between 60°W and 54°W, northern and southern hemispheres. In remainder of South America - between 60°W and 54°W, southern hemisphere, onshore and offshore.',-44.82,4.51,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','3444','South America - 54°W to 48°W, S hemisphere and SIRGAS 2000 by country','Brazil - between 54°W and 48°W, northern and southern hemispheres, onshore and offshore. In remainder of South America - between 54°W and 48°W, southern hemisphere, onshore and offshore.',-54.18,7.04,-54.0,-47.99,0); INSERT INTO "area" VALUES('EPSG','3445','Brazil - 48°W to 42°W','Brazil - between 48°W and 42°W, northern and southern hemispheres, onshore and offshore.',-33.5,5.13,-48.0,-42.0,0); INSERT INTO "area" VALUES('EPSG','3446','Brazil - 42°W to 36°W','Brazil - between 42°W and 36°W, northern and southern hemispheres, onshore and offshore.',-26.35,0.74,-42.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','3447','Brazil - 36°W to 30°W','Brazil - between 36°W and 30°W, northern and southern hemispheres, onshore and offshore.',-23.8,4.19,-36.0,-29.99,0); INSERT INTO "area" VALUES('EPSG','3448','South America - SIRGAS 1995 by country','South America - onshore and offshore. Ecuador (mainland and Galapagos) - onshore and offshore.',-59.87,16.75,-113.21,-26.0,0); INSERT INTO "area" VALUES('EPSG','3449','Greenland - west of 72°W','Greenland - west of 72°W, onshore and offshore.',74.52,79.04,-75.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','3450','Greenland - 72°W to 66°W','Greenland - between 72°W and 66°W, onshore and offshore.',73.24,80.9,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','3451','Greenland - 66°W to 60°W','Greenland - between 66°W and 60°W, onshore and offshore.',68.92,82.22,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','3452','Greenland - 60°W to 54°W','Greenland - between 60°W and 54°W, onshore and offshore south of 84°N.',58.91,84.0,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','3453','Greenland - 54°W to 48°W','Greenland - between 54°W and 48°W, onshore and offshore south of 84°N.',56.9,84.0,-54.0,-48.0,0); INSERT INTO "area" VALUES('EPSG','3454','Greenland - 48°W to 42°W','Greenland - between 48°W and 42°W, onshore and offshore south of 84°N.',56.38,84.0,-48.0,-42.0,0); INSERT INTO "area" VALUES('EPSG','3455','Greenland - 42°W to 36°W','Greenland - between 42°W and 36°W, onshore and offshore south of 84°N.',56.56,84.0,-42.0,-36.0,0); INSERT INTO "area" VALUES('EPSG','3456','Greenland - 36°W to 30°W','Greenland - between 36°W and 30°W, onshore and offshore south of 84°N.',60.16,84.0,-36.0,-30.0,0); INSERT INTO "area" VALUES('EPSG','3457','Greenland - 30°W to 24°W','Greenland - between 30°W and 24°W, onshore and offshore south of 84°N.',64.96,84.0,-30.0,-24.0,0); INSERT INTO "area" VALUES('EPSG','3458','Greenland - 24°W to 18°W','Greenland - between 24°W and 18°W, onshore and offshore south of 84°N.',67.7,84.0,-24.0,-18.0,0); INSERT INTO "area" VALUES('EPSG','3459','Greenland - 18°W to 12°W','Greenland - between 18°W and 12°W, onshore and offshore south of 84°N.',68.67,84.0,-18.0,-12.0,0); INSERT INTO "area" VALUES('EPSG','3460','Greenland - 12°W to 6°W','Greenland - 12°W to 6°W, onshore and offshore south of 84°N.',72.43,84.0,-12.0,-6.0,0); INSERT INTO "area" VALUES('EPSG','3461','Mexico - offshore GoM - Campeche area N','Mexico - offshore Gulf of Mexico (GoM) - Bay of Campeche northeast.',20.87,23.01,-94.33,-88.67,0); INSERT INTO "area" VALUES('EPSG','3462','Mexico - offshore GoM - Campeche area S','Mexico - offshore Gulf of Mexico (GoM) - Bay of Campeche southeast.',17.85,20.89,-94.79,-89.75,0); INSERT INTO "area" VALUES('EPSG','3463','World - 86°S to 86°N','World between 86°S and 86°N.',-86.0,86.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3464','World - N hemisphere - 12°E to 18°E - by country and WGS 72BE','Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Chad - west of 18°E.',0.0,84.0,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','3465','World - N hemisphere - 18°E to 24°E - by country and WGS 72BE','Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Chad - east of 18°E.',0.0,84.0,18.0,24.0,0); INSERT INTO "area" VALUES('EPSG','3466','China - Ordos - 108°E to 108.5°E and 37.75°N to 38.25°N','China - Ordos basin.',35.0,39.0,107.0,110.01,0); INSERT INTO "area" VALUES('EPSG','3467','North America - Great Lakes basin','Canada and United States (USA) - Great Lakes basin.',40.99,50.74,-93.17,-74.47,0); INSERT INTO "area" VALUES('EPSG','3468','North America - Great Lakes basin and St Lawrence Seaway','Canada and United States (USA) - Great Lakes basin and St Lawrence Seaway.',40.99,52.22,-93.17,-54.75,0); INSERT INTO "area" VALUES('EPSG','3469','China - offshore - Yellow Sea','China - offshore - Huang Hai (Yellow Sea).',31.23,37.4,119.23,125.06,0); INSERT INTO "area" VALUES('EPSG','3470','China - offshore - Pearl River basin','China - offshore South China Sea - Pearl River basin.',18.31,22.89,110.13,116.76,0); INSERT INTO "area" VALUES('EPSG','3471','Denmark - onshore west of 12°E','Denmark - onshore west of 12°E - Zealand, Jutland, Fuen and Lolland.',54.51,57.8,8.0,12.0,0); INSERT INTO "area" VALUES('EPSG','3472','Denmark - onshore east of 12°E','Denmark - onshore east of 12°E - Zealand and Falster, Bornholm.',54.51,56.18,12.0,15.24,0); INSERT INTO "area" VALUES('EPSG','3473','World - south of 40°S','Southern hemisphere - south of 40°S including Antarctica.',-90.0,-40.0,-180.0,180.0,1); INSERT INTO "area" VALUES('EPSG','3474','World - south of 0°N','Southern hemisphere.',-90.0,0.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3475','World - north of 0°N','Northern hemisphere.',0.0,90.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3476','World - north of 30°N','Northern hemisphere - north of 30°N, including Arctic.',30.0,90.0,-180.0,180.0,1); INSERT INTO "area" VALUES('EPSG','3477','Libya - Cyrenaica','Libya - Cyrenaica area 42, blocks 2 and 4.',32.0,32.8,22.49,23.0,0); INSERT INTO "area" VALUES('EPSG','3478','Jamaica - west of 78°W','Jamaica - west of 78°W onshore and offshore.',14.16,19.36,-80.6,-77.99,0); INSERT INTO "area" VALUES('EPSG','3479','Jamaica - east of 78°W','Jamaica - east of 78°W onshore and offshore.',14.08,19.2,-78.0,-74.51,0); INSERT INTO "area" VALUES('EPSG','3480','World - north of 45°N','Northern hemisphere - north of 45°N, including Arctic.',45.0,90.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3481','Canada - NWT','Canada - Northwest Territories onshore.',59.98,78.81,-136.46,-102.0,0); INSERT INTO "area" VALUES('EPSG','3482','USA - west of 174°E - AK','United States (USA) - west of 174°E - Alaska (AK).',49.0,56.3,168.0,174.0,1); INSERT INTO "area" VALUES('EPSG','3483','USA - 174°E to 180°E - AK','United States (USA) - between 174°E and 180°E - Alaska (AK).',48.0,59.8,174.0,180.0,1); INSERT INTO "area" VALUES('EPSG','3484','USA - 180°W to 174°W - AK','United States (USA) - between 180°W and 174°W - Alaska (AK).',48.0,63.3,-180.0,-174.0,1); INSERT INTO "area" VALUES('EPSG','3485','USA - 174°W to 168°W - AK','United States (USA) - between 174°W and 168°W - Alaska (AK).',48.7,73.0,-174.0,-168.0,1); INSERT INTO "area" VALUES('EPSG','3486','USA - 168°W to 162°W - AK','United States (USA) - between 168°W and 162°W - Alaska (AK).',49.6,74.3,-168.0,-162.0,1); INSERT INTO "area" VALUES('EPSG','3487','USA - 162°W to 156°W - AK','United States (USA) - between 162°W and 156°W - Alaska (AK).',51.1,74.7,-162.0,-156.0,1); INSERT INTO "area" VALUES('EPSG','3488','USA - 162°W to 156°W onshore - HI','United States (USA) - between 162°W and 156°W onshore - Hawaii.',19.51,22.29,-160.3,-155.99,0); INSERT INTO "area" VALUES('EPSG','3489','USA - 162°W to 156°W - AK, HI','United States (USA) - between 162°W and 156°W onshore and offshore - Alaska, Hawaii.',15.57,74.71,-162.0,-155.99,0); INSERT INTO "area" VALUES('EPSG','3490','USA - 156°W to 150°W - AK','United States (USA) - between 156°W and 150°W - Alaska (AK).',52.1,74.7,-156.0,-150.0,1); INSERT INTO "area" VALUES('EPSG','3491','USA - 156°W to 150°W onshore - HI','United States (USA) - between 156°W and 150°W onshore - Hawaii.',18.87,20.86,-156.0,-154.74,0); INSERT INTO "area" VALUES('EPSG','3492','USA - 156°W to 150°W - AK, HI','United States (USA) - between 156°W and 150°W onshore and offshore - Alaska, Hawaii.',15.56,74.71,-156.0,-149.99,0); INSERT INTO "area" VALUES('EPSG','3493','USA - 150°W to 144°W - AK','United States (USA) - between 150°W and 144°W - Alaska (AK).',54.0,74.2,-150.0,-144.0,1); INSERT INTO "area" VALUES('EPSG','3494','USA - 144°W to 138°W','United States (USA) - between 144°W and 138°W onshore and offshore - Alaska.',53.47,73.59,-144.0,-137.99,0); INSERT INTO "area" VALUES('EPSG','3495','USA - 138°W to 132°W','United States (USA) - between 138°W and 132°W onshore and offshore - Alaska.',53.6,73.04,-138.0,-131.99,0); INSERT INTO "area" VALUES('EPSG','3496','USA - 132°W to 126°W','United States (USA) - between 132°W and 126°W onshore and offshore - Alaska.',35.38,56.84,-132.0,-126.0,0); INSERT INTO "area" VALUES('EPSG','3497','USA - 126°W to 120°W','United States (USA) - between 126°W and 120°W onshore and offshore - California; Oregon; Washington.',30.54,49.09,-126.0,-119.99,0); INSERT INTO "area" VALUES('EPSG','3498','USA - 120°W to 114°W','United States (USA) - between 120°W and 114°W onshore and offshore - California, Idaho, Nevada, Oregon, Washington.',30.88,49.01,-120.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','3499','USA - 114°W to 108°W','United States (USA) - between 114°W and 108°W - Arizona; Colorado; Idaho; Montana; New Mexico; Utah; Wyoming.',31.33,49.01,-114.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','3500','USA - 108°W to 102°W','United States (USA) - between 108°W and 102°W - Colorado; Montana; Nebraska; New Mexico; North Dakota; Oklahoma; South Dakota; Texas; Wyoming.',28.98,49.01,-108.0,-102.0,0); INSERT INTO "area" VALUES('EPSG','3501','USA - 102°W to 96°W','United States (USA) - between 102°W and 96°W onshore and offshore - Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas.',25.83,49.01,-102.0,-96.0,0); INSERT INTO "area" VALUES('EPSG','3502','USA - 96°W to 90°W','United States (USA) - between 96°W and 90°W onshore and offshore - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin.',25.61,49.38,-96.01,-90.0,0); INSERT INTO "area" VALUES('EPSG','3503','USA - 90°W to 84°W','United States (USA) - between 90°W and 84°W onshore and offshore - Alabama; Arkansas; Florida; Georgia; Indiana; Illinois; Kentucky; Louisiana; Michigan; Minnesota; Mississippi; Missouri; North Carolina; Ohio; Tennessee; Wisconsin.',23.97,48.32,-90.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','3504','USA - 84°W to 78°W','United States (USA) - between 84°W and 78°W onshore and offshore - Florida; Georgia; Kentucky; Maryland; Michigan; New York; North Carolina; Ohio; Pennsylvania; South Carolina; Tennessee; Virginia; West Virginia.',23.81,46.13,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','3505','USA - 78°W to 72°W','United States (USA) - between 78°W and 72°W onshore and offshore - Connecticut; Delaware; Maryland; Massachusetts; New Hampshire; New Jersey; New York; North Carolina; Pennsylvania; Virginia; Vermont.',28.28,45.03,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','3506','USA - 72°W to 66°W','United States (USA) - between 72°W and 66°W onshore and offshore - Connecticut; Maine; Massachusetts; New Hampshire; New York (Long Island); Rhode Island; Vermont.',33.61,47.47,-72.0,-65.99,0); INSERT INTO "area" VALUES('EPSG','3507','China - Tarim - 77.5°E to 88°E and 37°N to 42°N','China - south and west Tarim basin.',37.0,41.99,77.45,88.0,0); INSERT INTO "area" VALUES('EPSG','3508','New Zealand - offshore Pacific Ocean, Southern Ocean','Southwestern Pacific Ocean and Southern Ocean areas surrounding New Zealand.',-60.0,-25.0,155.0,-170.0,0); INSERT INTO "area" VALUES('EPSG','3509','UAE - Abu Dhabi - offshore','United Arab Emirates (UAE) - Abu Dhabi offshore.',24.0,25.64,51.5,54.85,0); INSERT INTO "area" VALUES('EPSG','3510','Indonesia - 96°E to 99°E onshore','Indonesia - onshore between 96°E and 99°E.',-1.81,5.42,96.0,99.0,0); INSERT INTO "area" VALUES('EPSG','3511','Indonesia - 99°E to 102°E onshore','Indonesia - onshore between 99°E and 102°E.',-3.57,3.71,99.0,102.0,0); INSERT INTO "area" VALUES('EPSG','3512','Indonesia - 102°E to 105°E onshore','Indonesia - onshore between 102°E and 105°E.',-5.99,1.68,102.0,105.0,0); INSERT INTO "area" VALUES('EPSG','3513','Indonesia - 105°E to 108°E onshore','Indonesia - onshore between 105°E and 108°E.',-7.79,4.11,105.0,108.0,0); INSERT INTO "area" VALUES('EPSG','3514','Indonesia - 108°E to 111°E onshore','Indonesia - onshore between 108°E and 111°E.',-8.31,4.25,108.0,111.0,0); INSERT INTO "area" VALUES('EPSG','3515','Indonesia - 111°E to 114°E onshore','Indonesia - onshore between 111°E and 114°E.',-8.67,1.59,111.0,114.0,0); INSERT INTO "area" VALUES('EPSG','3516','Indonesia - 114°E to 117°E onshore','Indonesia - onshore between 114°E and 117°E.',-9.15,4.37,114.0,117.01,0); INSERT INTO "area" VALUES('EPSG','3517','Indonesia - 117°E to 120°E onshore','Indonesia - onshore between 117°E and 120°E.',-10.15,4.36,117.0,120.0,0); INSERT INTO "area" VALUES('EPSG','3518','Indonesia - 120°E to 123°E onshore','Indonesia - onshore between 120°E and 123°E.',-10.98,1.4,120.0,123.0,0); INSERT INTO "area" VALUES('EPSG','3519','Indonesia - 123°E to 126°E onshore','Indonesia - onshore between 123°E and 126°E.',-10.92,3.84,123.0,126.0,0); INSERT INTO "area" VALUES('EPSG','3520','Indonesia - 126°E to 129°E onshore','Indonesia - onshore between 126°E and 129°E.',-8.32,4.59,126.0,129.0,0); INSERT INTO "area" VALUES('EPSG','3521','Indonesia - 129°E to 132°E onshore','Indonesia - onshore between 129°E and 132°E.',-8.41,0.1,129.0,132.0,0); INSERT INTO "area" VALUES('EPSG','3522','Indonesia - 132°E to 135°E onshore','Indonesia - onshore between 132°E and 135°E.',-7.3,-0.29,132.0,135.0,0); INSERT INTO "area" VALUES('EPSG','3523','Indonesia - 135°E to 138°E onshore','Indonesia - onshore between 135°E and 138°E.',-8.49,-0.58,135.0,138.0,0); INSERT INTO "area" VALUES('EPSG','3524','Canada - 72°W to 66°W','Canada between 72°W and 66°W onshore and offshore - New Brunswick, Labrador, Nova Scotia, Nunavut, Quebec.',40.8,84.0,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','3525','Canada - 66°W to 60°W','Canada between 66°W and 60°W onshore and offshore - New Brunswick, Labrador, Nova Scotia, Nunavut, Prince Edward Island, Quebec.',40.04,84.0,-66.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','3526','Canada - 108°W to 102°W','Canada between 108°W and 102°W onshore and offshore - Northwest Territories, Nunavut, Saskatchewan.',48.99,84.0,-108.0,-102.0,0); INSERT INTO "area" VALUES('EPSG','3527','Canada - 114°W to 108°W','Canada between 114°W and 108°W onshore and offshore - Alberta, Northwest Territories, Nunavut, Saskatchewan.',48.99,84.0,-114.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','3528','Canada - 120°W to 114°W','Canada between 120°W and 114°W onshore and offshore - Alberta, British Columbia, Northwest Territories, Nunavut.',48.99,83.5,-120.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','3529','South Georgia - onshore','South Georgia and the South Sandwich Islands - South Georgia onshore.',-54.95,-53.93,-38.08,-35.74,0); INSERT INTO "area" VALUES('EPSG','3530','UAE - Dubai - offshore','United Arab Emirates (UAE) - Dubai offshore - Falah, Fateh and Rashid oilfields.',24.94,25.8,54.06,55.3,0); INSERT INTO "area" VALUES('EPSG','3531','UAE - Dubai municipality','United Arab Emirates (UAE) - Dubai municipality.',24.85,25.34,54.84,55.55,0); INSERT INTO "area" VALUES('EPSG','3532','Channel Islands - Jersey','Channel Islands - Jersey.',48.93,49.34,-2.3,-1.98,1); INSERT INTO "area" VALUES('EPSG','3533','Channel Islands - Guernsey','Channel Islands - Guernsey.',49.4,49.75,-2.75,-2.13,1); INSERT INTO "area" VALUES('EPSG','3534','Serbia and Kosovo','Serbia including Vojvodina and Kosovo.',41.85,46.19,18.81,23.01,0); INSERT INTO "area" VALUES('EPSG','3535','Montenegro','Montenegro - onshore and offshore.',41.27,43.56,18.02,20.38,0); INSERT INTO "area" VALUES('EPSG','3536','Montenegro - onshore','Montenegro - onshore.',41.79,43.56,18.45,20.38,0); INSERT INTO "area" VALUES('EPSG','3537','Portugal - mainland - offshore','Portugal - mainland - offshore.',34.91,41.88,-13.87,-7.24,0); INSERT INTO "area" VALUES('EPSG','3538','Croatia - east of 18°E','Croatia - east of 18°E, onshore and offshore.',41.62,45.92,18.0,19.43,0); INSERT INTO "area" VALUES('EPSG','3539','Croatia - west of 18°E','Croatia - west of 18°E, onshore and offshore.',41.63,46.54,13.0,18.0,0); INSERT INTO "area" VALUES('EPSG','3540','Canada - Alberta - west of 118.5°W','Canada - Alberta - west of 118°30'' W.',52.88,60.0,-120.0,-118.5,0); INSERT INTO "area" VALUES('EPSG','3541','Canada - Alberta - 118.5°W to 115.5°W','Canada - Alberta - between 118°30''W and 115°30'' W.',50.77,60.0,-118.5,-115.5,0); INSERT INTO "area" VALUES('EPSG','3542','Canada - Alberta - 115.5°W to 112.5°W','Canada - Alberta - between 115°30''W and 112°30''W.',48.99,60.0,-115.5,-112.5,0); INSERT INTO "area" VALUES('EPSG','3543','Canada - Alberta - east of 112.5°W','Canada - Alberta - east of 112°30''W.',48.99,60.0,-112.5,-109.98,0); INSERT INTO "area" VALUES('EPSG','3544','World - 85°S to 85°N','World between 85.06°S and 85.06°N.',-85.06,85.06,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','3545','France - mainland south of 43°N and Corsica','France onshore - mainland south of 43°N and Corsica.',41.31,43.07,-1.06,9.63,0); INSERT INTO "area" VALUES('EPSG','3546','France - mainland south of 44°N','France - mainland onshore south of 44°N.',42.33,44.0,-1.79,7.65,0); INSERT INTO "area" VALUES('EPSG','3547','France - mainland - 43°N to 45°N','France - mainland onshore between 43°N and 45°N.',43.0,45.0,-1.79,7.71,0); INSERT INTO "area" VALUES('EPSG','3548','France - mainland - 44°N to 46°N','France - mainland onshore between 44°N and 46°N.',44.0,46.0,-1.46,7.71,0); INSERT INTO "area" VALUES('EPSG','3549','France - mainland - 45°N to 47°N','France - mainland onshore between 45°N and 47°N.',45.0,47.0,-2.21,7.16,0); INSERT INTO "area" VALUES('EPSG','3550','France - mainland - 46°N to 48°N','France - mainland onshore between 46°N and 48°N.',46.0,48.0,-4.77,7.63,0); INSERT INTO "area" VALUES('EPSG','3551','France - mainland - 47°N to 49°N','France - mainland onshore between 47°N and 49°N.',47.0,49.0,-4.87,8.23,0); INSERT INTO "area" VALUES('EPSG','3552','France - mainland - 48°N to 50°N','France - mainland onshore between 48°N and 50°N.',48.0,50.0,-4.87,8.23,0); INSERT INTO "area" VALUES('EPSG','3553','France - mainland north of 49°N','France - mainland onshore north of 49°N.',49.0,51.14,-2.03,8.08,0); INSERT INTO "area" VALUES('EPSG','3554','New Zealand - Snares and Auckland Islands','New Zealand - Snares Island, Auckland Island - onshore.',-51.13,-47.8,165.55,166.93,0); INSERT INTO "area" VALUES('EPSG','3555','New Zealand - Campbell Island','New Zealand - Campbell Island.',-52.83,-52.26,168.65,169.6,0); INSERT INTO "area" VALUES('EPSG','3556','New Zealand - Antipodes and Bounty Islands','New Zealand - Antipodes Island, Bounty Islands.',-49.92,-47.54,178.4,179.37,0); INSERT INTO "area" VALUES('EPSG','3557','New Zealand - Raoul and Kermadec Islands','New Zealand - Raoul Island, Kermadec Islands.',-31.56,-29.03,-179.07,-177.62,0); INSERT INTO "area" VALUES('EPSG','3558','Antarctica - Ross Sea Region','Antarctica - Ross Sea Region - nominally between 160°E and 150°W but includes buffer on eastern hemisphere margin to include Transantarctic Mountains',-90.0,-59.99,144.99,-144.99,0); INSERT INTO "area" VALUES('EPSG','3559','Australia - offshore','Australia - offshore including EEZ.',-47.2,-8.88,109.23,163.2,0); INSERT INTO "area" VALUES('EPSG','3560','Slovenia - Dolenjska - central','Slovenia - central Dolenjska (Lower Carniola).',45.81,46.01,14.97,15.43,0); INSERT INTO "area" VALUES('EPSG','3561','China - offshore - Bei Bu','China - offshore - Bei Bu Wan (Gulf of Tonkin).',17.81,21.69,107.15,110.17,0); INSERT INTO "area" VALUES('EPSG','3562','Taiwan - 120°E to 122°E','Taiwan, Republic of China - between 120°E and 122°E, onshore and offshore - Taiwan Island.',20.41,26.72,119.99,122.06,0); INSERT INTO "area" VALUES('EPSG','3563','Taiwan - 118°E to 120°E','Taiwan, Republic of China - between 118°E and 120°E, onshore and offshore - Penghu (Pescadores) Islands.',18.63,24.65,118.0,120.0,0); INSERT INTO "area" VALUES('EPSG','3564','Slovenia - west of 14°30''E onshore','Slovenia - onshore west of 14°30''E.',45.44,46.53,13.38,14.58,0); INSERT INTO "area" VALUES('EPSG','3565','Slovenia - NE','Slovenia - east of 14°30''E and north of 46°03''N.',46.14,46.88,14.54,16.61,0); INSERT INTO "area" VALUES('EPSG','3566','Slovenia - SE','Slovenia - east of 14°30''E and south of 46°09''N.',45.42,46.22,14.55,15.73,0); INSERT INTO "area" VALUES('EPSG','3567','Slovenia - southeastern','Slovenia - southeastern.',45.42,45.77,14.53,15.36,0); INSERT INTO "area" VALUES('EPSG','3568','Slovenia - Dolenjska','Slovenia - Dolenjska (Lower Carniola).',45.7,46.12,14.47,15.73,0); INSERT INTO "area" VALUES('EPSG','3569','Slovenia - Stajerska','Slovenia - Stajerska (Slovene Styria).',46.1,46.76,14.74,16.27,0); INSERT INTO "area" VALUES('EPSG','3570','Slovenia - Pomurje','Slovenia - Pomurje (the Mura Region).',46.47,46.88,15.96,16.61,0); INSERT INTO "area" VALUES('EPSG','3571','Slovenia - Gorenjska and N Primorsko','Slovenia - Gorenjska (Upper Carniola) and northern Primorska.',46.05,46.53,13.38,14.82,0); INSERT INTO "area" VALUES('EPSG','3572','Slovenia - Primorska and Notranjska onshore','Slovenia - onshore Primorska and Notranjska (Inner Carniola).',45.44,46.08,13.47,14.58,0); INSERT INTO "area" VALUES('EPSG','3573','Slovenia - central','Slovenia - central.',45.91,46.31,14.21,15.28,0); INSERT INTO "area" VALUES('EPSG','3574','Europe - onshore - eastern - S-42(58)','Onshore: Bulgaria, Czechia, Germany (former DDR), Hungary, Poland and Slovakia. Onshore and offshore: Albania and Romania.',39.63,54.89,9.92,31.41,0); INSERT INTO "area" VALUES('EPSG','3575','Germany - East Germany - west of 12°E','Germany - states of former East Germany - west of 12°E.',50.2,54.23,9.92,12.0,0); INSERT INTO "area" VALUES('EPSG','3576','Europe - 12°E to 18°E onshore and S-42(83) by country','Germany (former DDR) - onshore east of 12°E. Czechia, Hungary and Slovakia - west of 18°E.',45.78,54.74,12.0,18.01,0); INSERT INTO "area" VALUES('EPSG','3577','Europe - 18°E to 24°E onshore and S-42(58) by country','Albania - onshore east of 18°E. Czechia, Hungary and Slovakia - east of 18°E. Poland - onshore between 18°E and 24°E. Bulgaria and Romania - onshore west of 24°E.',39.64,54.89,18.0,24.0,0); INSERT INTO "area" VALUES('EPSG','3578','Europe - 18°E to 24°E onshore and S-42(83) by country','Czechia, Hungary and Slovakia - east of 18°E.',45.74,50.06,18.0,22.9,0); INSERT INTO "area" VALUES('EPSG','3579','Europe - 24°E to 30°E onshore and S-42(58) by country','Bulgaria, Poland and Romania - onshore east of 24°E.',41.24,50.93,24.0,29.74,0); INSERT INTO "area" VALUES('EPSG','3580','Europe - 13.5°E to 16.5°E onshore and S-42(58) by country','Czechia - between 13°30''E and 16°30''E. Germany - states of former East Germany onshore - east of 13°30''E - Brandenburg; Mecklenburg-Vorpommern; Sachsen. Hungary and Poland - onshore west of 16°30''E.',46.54,54.72,13.5,16.5,0); INSERT INTO "area" VALUES('EPSG','3581','Europe - 16.5°E to 19.5°E onshore and S-42(58) by country','Albania - onshore west of 19°30''E. Czechia - east of 16°30''E. Hungary and Poland - onshore between 16°30''E and 19°30''E. Slovakia - west of 19°30''E.',40.14,54.89,16.5,19.5,0); INSERT INTO "area" VALUES('EPSG','3582','Europe - 16.5°E to 19.5°E onshore and S-42(83) by country','Czechia - east of 16°30''E. Hungary - between 16°30''E and 19°30''E. Slovakia - west of 19°30''E.',45.74,50.45,16.5,19.5,0); INSERT INTO "area" VALUES('EPSG','3583','Europe - 19.5°E to 22.5°E onshore and S-42(58) by country','Albania - east of 19°30''E. Bulgaria and Romania - west of 22°30''E. Hungary, Poland and Slovakia - between 19°30''E and 22°30''E.',39.64,54.51,19.5,22.5,0); INSERT INTO "area" VALUES('EPSG','3584','Europe - 19.5°E to 22.5°E onshore and S-42(83) by country','Hungary and Slovakia - between 19°30''E and 22°30''E.',46.1,49.59,19.5,22.5,0); INSERT INTO "area" VALUES('EPSG','3585','Europe - 22.5°E to 25.5°E onshore and S-42(58) by country','Bulgaria and Romania - between 22°30''E and 25°30''E. Hungary, Poland and Slovakia - east of 22°30''E.',41.24,54.41,22.5,25.5,0); INSERT INTO "area" VALUES('EPSG','3586','Europe - 22.5°E to 25.5°E onshore and S-42(83) by country','Hungary and Slovakia - east of 22°30''E.',47.76,49.1,22.5,22.9,0); INSERT INTO "area" VALUES('EPSG','3587','Europe - 25.5°E to 28.5°E onshore and S-42(58) by country','Bulgaria and Romania - onshore between 25°30''E and 28°30''E.',41.28,48.27,25.5,28.5,0); INSERT INTO "area" VALUES('EPSG','3588','Europe - 28.5°E to 31.5°E onshore and S-42(58) by country','Bulgaria and Romania - onshore east of 28°30''E.',43.34,45.44,28.5,29.74,0); INSERT INTO "area" VALUES('EPSG','3589','Pakistan - Gambat','Pakistan - Gambat.',25.88,27.67,68.24,69.3,0); INSERT INTO "area" VALUES('EPSG','3590','Nigeria - 4°N to 5°N, 6°E to 8°E','Nigeria - 4°N to 5°N and 6°E to 8°E.',3.99,5.01,5.99,8.01,0); INSERT INTO "area" VALUES('EPSG','3591','Taiwan - onshore - Penghu','Taiwan, Republic of China - onshore - Penghu (Pescadores) Islands.',23.12,23.82,119.25,119.78,0); INSERT INTO "area" VALUES('EPSG','3592','Antarctica - Darwin Glacier region','Antarctica - Darwin Glacier region.',-81.0,-76.0,145.0,169.0,0); INSERT INTO "area" VALUES('EPSG','3593','New Zealand - offshore','New Zealand - offshore.',-55.95,-25.88,160.6,-171.2,0); INSERT INTO "area" VALUES('EPSG','3594','Europe - EVRF2007','Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican City State.',35.95,71.21,-9.56,31.59,0); INSERT INTO "area" VALUES('EPSG','3595','Finland - west of 19.5°E onshore nominal','Finland - nominally onshore west of 19°30''E but may be used in adjacent areas to east if a municipality chooses to use one zone over its whole extent.',60.08,60.34,19.24,19.5,0); INSERT INTO "area" VALUES('EPSG','3596','Finland - 19.5°E to 20.5°E onshore nominal','Finland - nominally onshore between 19°30''E and 20°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.92,60.48,19.5,20.5,0); INSERT INTO "area" VALUES('EPSG','3597','Finland - 20.5°E to 21.5°E onshore nominal','Finland - nominally onshore between 20°30''E and 21°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.84,69.33,20.5,21.5,0); INSERT INTO "area" VALUES('EPSG','3598','Finland - 21.5°E to 22.5°E onshore nominal','Finland - nominally onshore between 21°30''E and 22°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.76,69.31,21.5,22.5,0); INSERT INTO "area" VALUES('EPSG','3599','Finland - 22.5°E to 23.5°E onshore nominal','Finland - nominally onshore between 22°30''E and 23°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.75,68.74,22.5,23.5,0); INSERT INTO "area" VALUES('EPSG','3600','Finland - 23.5°E to 24.5°E onshore nominal','Finland - nominally onshore between 23°30''E and 24°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.86,68.84,23.5,24.5,0); INSERT INTO "area" VALUES('EPSG','3601','Finland - 24.5°E to 25.5°E onshore nominal','Finland - nominally onshore between 24°30''E and 25°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.94,68.9,24.5,25.5,0); INSERT INTO "area" VALUES('EPSG','3602','Finland - 25.5°E to 26.5°E onshore nominal','Finland - nominally onshore between 25°30''E and 26°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',60.18,69.94,25.5,26.5,0); INSERT INTO "area" VALUES('EPSG','3603','Finland - 26.5°E to 27.5°E onshore nominal','Finland - nominally onshore between 26°30''E and 27°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',60.36,70.05,26.5,27.5,0); INSERT INTO "area" VALUES('EPSG','3604','Finland - 27.5°E to 28.5°E onshore nominal','Finland - nominally onshore between 27°30''E and 28°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',60.42,70.09,27.5,28.5,0); INSERT INTO "area" VALUES('EPSG','3605','Finland - 28.5°E to 29.5°E nominal','Finland - nominally between 28°30''E and 29°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',60.94,69.81,28.5,29.5,0); INSERT INTO "area" VALUES('EPSG','3606','Finland - 29.5°E to 30.5°E nominal','Finland - nominally between 29°30''E and 30°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',61.43,67.98,29.5,30.5,0); INSERT INTO "area" VALUES('EPSG','3607','Finland - east of 30.5°E nominal','Finland - nominally east of 30°30''E but may be used in adjacent areas to west if a municipality chooses to use one zone over its whole extent.',62.08,64.27,30.5,31.59,0); INSERT INTO "area" VALUES('EPSG','3608','Sweden - Stockholm county','Sweden - Stockholm county. Municipalities of Botkyrka, Danderyd, Ekerö, Haninge, Huddinge, Järfälla, Lidingö, Nacka, Nynäshamn, Salem, Sigtuna, Sollentuna, Solna, Stockholm and Sundbyberg.',58.69,60.27,17.25,19.61,0); INSERT INTO "area" VALUES('EPSG','3609','Congo DR (Zaire) - Katanga west of 25.5°E','The Democratic Republic of the Congo (Zaire) - Katanga west of 25°30''E.',-11.72,-6.32,21.74,25.5,0); INSERT INTO "area" VALUES('EPSG','3610','Congo DR (Zaire) - Katanga 24.5°E to 27.5°E','The Democratic Republic of the Congo (Zaire) - Katanga between 24°30''E and 27°30''E.',-12.08,-4.99,24.5,27.5,0); INSERT INTO "area" VALUES('EPSG','3611','Congo DR (Zaire) - Katanga 26.5°E to 29.5°E','The Democratic Republic of the Congo (Zaire) - Katanga between 26°30''E and 29°30''E.',-13.44,-4.99,26.5,29.5,0); INSERT INTO "area" VALUES('EPSG','3612','Congo DR (Zaire) - Katanga east of 28.5°E','The Democratic Republic of the Congo (Zaire) - Katanga east of 28°30''E.',-13.46,-4.99,28.5,30.78,0); INSERT INTO "area" VALUES('EPSG','3613','Congo DR (Zaire) - south','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto - onshore and offshore.',-13.46,-3.41,11.79,29.81,0); INSERT INTO "area" VALUES('EPSG','3614','Congo DR (Zaire) - Katanga - Lubumbashi area','The Democratic Republic of the Congo (Zaire) - Katanga - Likasi-Lubumbashi area.',-12.01,-11.13,26.38,27.75,0); INSERT INTO "area" VALUES('EPSG','3615','Moldova - west of 30°E','Moldova - west of 30°E.',45.44,48.47,26.63,30.0,0); INSERT INTO "area" VALUES('EPSG','3616','Moldova - east of 30°E','Moldova - east of 30°E.',46.37,46.47,30.0,30.13,0); INSERT INTO "area" VALUES('EPSG','3617','Congo DR (Zaire) - south and 15°E to 17°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 15°E and 17°E.',-7.31,-3.41,15.0,17.0,0); INSERT INTO "area" VALUES('EPSG','3618','Congo DR (Zaire) - south and 17°E and 19°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 17°E and 19°E.',-8.11,-3.43,17.0,19.0,0); INSERT INTO "area" VALUES('EPSG','3619','Brazil - Distrito Federal','Brazil - Distrito Federal.',-15.94,-15.37,-48.1,-47.1,0); INSERT INTO "area" VALUES('EPSG','3620','Congo DR (Zaire) - south and 19°E to 21°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 19°E and 21°E.',-8.0,-3.77,19.0,21.0,0); INSERT INTO "area" VALUES('EPSG','3621','Congo DR (Zaire) - south and 21°E to 23°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 21°E and 23°E.',-11.24,-4.18,21.0,23.01,0); INSERT INTO "area" VALUES('EPSG','3622','Congo DR (Zaire) - south and 23°E to 25°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 23°E and 25°E.',-11.47,-4.58,23.0,25.0,0); INSERT INTO "area" VALUES('EPSG','3623','Congo DR (Zaire) - south and 25°E to 27°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 25°E and 27°E.',-11.99,-4.99,25.0,27.0,0); INSERT INTO "area" VALUES('EPSG','3624','Congo DR (Zaire) - south and 27°E to 29°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 27°E and 29°E.',-13.39,-6.43,27.0,29.0,0); INSERT INTO "area" VALUES('EPSG','3625','Iraq - onshore','Iraq - onshore.',29.06,37.39,38.79,48.61,0); INSERT INTO "area" VALUES('EPSG','3626','Congo DR (Zaire) - south and 12°E to 18°E','The Democratic Republic of the Congo (Zaire) - onshore and offshore south of a line through Bandundu, Seke and Pweto and between 12°E and 18°E.',-8.11,-3.41,12.0,18.01,0); INSERT INTO "area" VALUES('EPSG','3627','Congo DR (Zaire) - south and 18°E to 24°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 18°E and 24°E.',-11.24,-3.57,18.0,24.0,0); INSERT INTO "area" VALUES('EPSG','3628','Congo DR (Zaire) - south and 24°E to 30°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and east of 24°E.',-13.46,-4.79,24.0,29.81,0); INSERT INTO "area" VALUES('EPSG','3629','Spain - Canary Islands - west of 18°W','Spain - Canary Islands - west of 18°W, onshore and offshore.',24.6,31.19,-21.93,-18.0,0); INSERT INTO "area" VALUES('EPSG','3630','Spain - Canary Islands - east of 18°W','Spain - Canary Islands - east of 18°W, onshore and offshore.',25.25,32.76,-18.0,-11.75,0); INSERT INTO "area" VALUES('EPSG','3631','Denmark - onshore Jutland west of 10°E','Denmark - Jutland onshore west of 10°E.',54.8,57.64,8.0,10.0,0); INSERT INTO "area" VALUES('EPSG','3632','Denmark - onshore Jutland east of 9°E and Funen','Denmark - onshore - Jutland east of 9°E and Funen.',54.67,57.8,9.0,11.29,0); INSERT INTO "area" VALUES('EPSG','3633','Mexico - 96°W to 90°W','Mexico between 96°W and 90°W, onshore and offshore.',12.1,26.0,-96.0,-90.0,0); INSERT INTO "area" VALUES('EPSG','3634','Caribbean - Puerto Rico and US Virgin Islands - onshore','Puerto Rico and US Virgin Islands - onshore.',17.62,18.57,-67.97,-64.51,0); INSERT INTO "area" VALUES('EPSG','3635','Mexico - east of 90°W','Mexico east of 90°W, onshore and offshore.',17.81,25.77,-90.0,-84.64,0); INSERT INTO "area" VALUES('EPSG','3636','Norway - onshore - west of 6ºE','Norway - onshore - west of 6ºE.',58.32,62.49,4.68,6.0,0); INSERT INTO "area" VALUES('EPSG','3637','USA - 102°W to 96°W and GoM OCS','United States (USA) - between 102°W and 96°W. Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas; Gulf of Mexico outer continental shelf (GoM OCS) west of approximately 96°W - protraction areas Corpus Christi; Port Isabel.',25.83,49.01,-102.0,-95.87,0); INSERT INTO "area" VALUES('EPSG','3638','South America - 84°W to 78°W, S hemisphere and SIRGAS95 by country','Ecuador (mainland whole country including areas in northern hemisphere and east of 78°W), onshore and offshore. In remainder of South America, between 84°W and 78°W, southern hemisphere, onshore and offshore.',-56.45,1.45,-84.0,-75.21,0); INSERT INTO "area" VALUES('EPSG','3639','Norway - onshore - 6ºE to 7ºE','Norway - onshore - between 6ºE and 7ºE.',57.93,63.02,6.0,7.0,0); INSERT INTO "area" VALUES('EPSG','3640','USA - 96°W to 90°W and GoM OCS','United States (USA) - between 96°W and 90°W - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin; Gulf of Mexico outer continental shelf (GoM OCS) between approximately 96°W and 90°W - protraction areas East Breaks; Alaminos Canyon; Garden Banks; Keathley Canyon; Sigsbee Escarpment; Ewing Bank; Green Canyon; Walker Ridge; Amery Terrace.',25.61,49.38,-96.01,-89.86,0); INSERT INTO "area" VALUES('EPSG','3641','USA - 90°W to 84°W and GoM OCS','United States (USA) - between 90°W and 84°W onshore and offshore - Alabama; Arkansas; Florida; Georgia; Indiana; Illinois; Kentucky; Louisiana; Michigan; Minnesota; Mississippi; Missouri; North Carolina; Ohio; Tennessee; Wisconsin; Gulf of Mexico outer continental shelf (GoM OCS) between approximately 90°W and 84°W - protraction areas Mobile; Viosca Knoll; Mississippi Canyon; Atwater Valley; Lund; Lund South; Pensacola; Destin Dome; De Soto Canyon; Lloyd Ridge; Henderson; Florida Plain; Campeche Escarpment; Apalachicola; Florida Middle Ground; The Elbow; Vernon Basin; Howell Hook; Rankin.',23.95,48.32,-90.01,-83.91,0); INSERT INTO "area" VALUES('EPSG','3642','USA - 84°W to 78°W and GoM OCS','United States (USA) - between 84°W and 78°W onshore and offshore - Florida; Georgia; Maryland; Michigan; New York; North Carolina; Ohio; Pennsylvania; South Carolina; Tennessee; Virginia; West Virginia; Gulf of Mexico outer continental shelf (GoM OCS) east of approximately 84°W - protraction areas Gainesville; Tarpon Springs; St Petersburg; Charlotte Harbor; Pulley Ridge; Dry Tortugas; Tortugas Valley; Miami; Key West.',23.81,46.13,-84.09,-77.99,0); INSERT INTO "area" VALUES('EPSG','3643','Germany - Schleswig-Holstein','Germany - Schleswig-Holstein',53.35,55.06,7.8,11.35,1); INSERT INTO "area" VALUES('EPSG','3644','Germany - Schleswig-Holstein - east of 10.5°E','Germany - Schleswig-Holstein - east of 10°30''E.',53.36,54.59,10.49,11.4,0); INSERT INTO "area" VALUES('EPSG','3645','Sao Tome and Principe - onshore - Sao Tome','Sao Tome and Principe - onshore - Sao Tome.',-0.04,0.46,6.41,6.82,0); INSERT INTO "area" VALUES('EPSG','3646','Sao Tome and Principe - onshore - Principe','Sao Tome and Principe - onshore - Principe.',1.48,1.76,7.27,7.52,0); INSERT INTO "area" VALUES('EPSG','3647','Norway - onshore - 7ºE to 8ºE','Norway - onshore - between 7ºE and 8ºE.',57.93,63.52,7.0,8.0,0); INSERT INTO "area" VALUES('EPSG','3648','Norway - onshore - 8ºE to 9ºE','Norway - onshore - between 8ºE and 9ºE.',58.03,63.87,8.0,9.0,0); INSERT INTO "area" VALUES('EPSG','3649','Norway - onshore - 9ºE to 10ºE','Norway - onshore - between 9ºE and 10ºE.',58.52,64.16,9.0,10.0,0); INSERT INTO "area" VALUES('EPSG','3650','Norway - onshore - 10ºE to 11ºE','Norway - onshore - between 10ºE and 11ºE.',58.9,65.04,10.0,11.0,0); INSERT INTO "area" VALUES('EPSG','3651','Norway - onshore - 11ºE to 12ºE','Norway - onshore - between 11ºE and 12ºE.',58.88,65.76,11.0,12.0,0); INSERT INTO "area" VALUES('EPSG','3652','USA - Michigan - SPCS - W','United States (USA) - Michigan - counties of Baraga; Dickinson; Gogebic; Houghton; Iron; Keweenaw; Marquette; Menominee; Ontonagon.',45.09,48.32,-90.42,-83.44,0); INSERT INTO "area" VALUES('EPSG','3653','Norway - onshore - 12ºE to 13ºE','Norway - onshore - between 12ºE and 13ºE.',59.88,68.15,12.0,13.0,0); INSERT INTO "area" VALUES('EPSG','3654','Norway - onshore - 13ºE to 14ºE','Norway - onshore - between 13ºE and 14ºE.',64.01,68.37,13.0,14.0,0); INSERT INTO "area" VALUES('EPSG','3655','Norway - onshore - 14ºE to 15ºE','Norway - onshore - between 14ºE and 15ºE.',64.03,69.05,14.0,15.0,0); INSERT INTO "area" VALUES('EPSG','3656','Norway - onshore - 15ºE to 16ºE','Norway - onshore - between 15ºE and 16ºE.',66.14,69.35,15.0,16.0,0); INSERT INTO "area" VALUES('EPSG','3657','Norway - onshore - 16ºE to 17ºE','Norway - onshore - between 16ºE and 17ºE.',66.88,69.45,16.0,17.0,0); INSERT INTO "area" VALUES('EPSG','3658','Norway - onshore - 17ºE to 18ºE','Norway - onshore - between 17ºE and 18ºE.',67.94,69.68,17.0,18.0,0); INSERT INTO "area" VALUES('EPSG','3659','Germany - Schleswig-Holstein - west of 10.5°E','Germany - Schleswig-Holstein - west of 10°30''E including Heligoland.',53.37,55.09,7.8,10.5,0); INSERT INTO "area" VALUES('EPSG','3660','Norway - onshore - 18ºE to 19ºE','Norway - onshore - between 18ºE and 19ºE.',68.04,70.27,18.0,19.0,0); INSERT INTO "area" VALUES('EPSG','3661','Norway - onshore - 19ºE to 20ºE','Norway - onshore - between 19ºE and 20ºE.',68.33,70.34,19.0,20.0,0); INSERT INTO "area" VALUES('EPSG','3662','Norway - onshore - 20ºE to 21ºE','Norway - onshore - between 20ºE and 21ºE.',68.37,70.29,20.0,21.0,0); INSERT INTO "area" VALUES('EPSG','3663','Norway - onshore - 21ºE to 22ºE','Norway - onshore - between 21ºE and 22ºE.',69.03,70.71,21.0,22.0,0); INSERT INTO "area" VALUES('EPSG','3664','USA - CONUS and Alaska - onshore','United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska mainland; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',24.41,71.4,-168.26,-66.91,0); INSERT INTO "area" VALUES('EPSG','3665','Norway - onshore - 22ºE to 23ºE','Norway - onshore - between 22ºE and 23ºE.',68.69,70.81,22.0,23.0,0); INSERT INTO "area" VALUES('EPSG','3666','Indonesia - Java, Java Sea and western Sumatra','Indonesia - Bali, Java and western Sumatra onshore, offshore southern Java Sea, Madura Strait and western Bali Sea.',-8.91,5.97,95.16,117.01,0); INSERT INTO "area" VALUES('EPSG','3667','Norway - onshore - 23ºE to 24ºE','Norway - onshore - between 23ºE and 24ºE.',68.62,71.08,23.0,24.0,0); INSERT INTO "area" VALUES('EPSG','3668','Norway - onshore - 24ºE to 25ºE','Norway - onshore - between 24ºE and 25ºE.',68.58,71.16,24.0,25.0,0); INSERT INTO "area" VALUES('EPSG','3669','Norway - onshore - 25ºE to 26ºE','Norway - onshore - between 25ºE and 26ºE.',68.59,71.21,25.0,26.0,0); INSERT INTO "area" VALUES('EPSG','3670','Portugal - Azores and Madeira','Portugal - Azores and Madeira island groups and surrounding EEZ - Flores, Corvo; Graciosa, Terceira, Sao Jorge, Pico, Faial; Sao Miguel, Santa Maria; Madeira, Porto Santo, Desertas; Selvagens.',29.24,43.07,-35.58,-12.48,0); INSERT INTO "area" VALUES('EPSG','3671','Norway - onshore - 26ºE to 27ºE','Norway - onshore - between 26ºE and 27ºE.',69.71,71.17,26.0,27.0,0); INSERT INTO "area" VALUES('EPSG','3672','Norway - onshore - 27ºE to 28ºE','Norway - onshore - between 27ºE and 28ºE.',69.9,71.17,27.0,28.0,0); INSERT INTO "area" VALUES('EPSG','3673','Norway - onshore - 28ºE to 29ºE','Norway - onshore - between 28ºE and 29ºE.',69.03,71.13,28.0,29.0,0); INSERT INTO "area" VALUES('EPSG','3674','Norway - onshore - 29ºE to 30ºE','Norway - onshore - between 29ºE and 30ºE.',69.02,70.93,29.0,30.0,0); INSERT INTO "area" VALUES('EPSG','3675','Paraguay - north of 22°S','Paraguay - north of 22°S.',-22.0,-19.29,-62.57,-57.81,0); INSERT INTO "area" VALUES('EPSG','3676','Norway - onshore - east of 30ºE','Norway - onshore - east of 30ºE.',69.46,70.77,30.0,31.22,0); INSERT INTO "area" VALUES('EPSG','3677','Portugal - Azores 30°W to 24°W','Portugal - between 30°W and 24°W - central and eastern Azores - Graciosa, Terceira, Sao Jorge, Pico, Faial; Sao Miguel and Santa Maria islands and surrounding EEZ.',33.52,42.96,-30.0,-24.0,0); INSERT INTO "area" VALUES('EPSG','3678','Portugal - Madeira and EEZ E of 18°W','Portugal - Madeira, Porto Santo, Desertas and Selvagens islands and surrounding EEZ east of 18°W.',29.24,36.46,-18.0,-12.48,0); INSERT INTO "area" VALUES('EPSG','3679','Portugal - Madeira island onshore','Portugal - Madeira island onshore.',32.58,32.93,-17.31,-16.66,0); INSERT INTO "area" VALUES('EPSG','3680','Portugal - Porto Santo island onshore','Portugal - Porto Santo island (Madeira archipelago) onshore.',32.96,33.15,-16.44,-16.23,0); INSERT INTO "area" VALUES('EPSG','3681','Portugal - Azores C - Graciosa onshore','Portugal - central Azores - Graciosa island onshore.',38.97,39.14,-28.13,-27.88,0); INSERT INTO "area" VALUES('EPSG','3682','Portugal - Azores - west of 30°W','Portugal - west of 30°W - western Azores - Flores and Corvo islands and surrounding EEZ.',35.25,43.07,-35.58,-30.0,0); INSERT INTO "area" VALUES('EPSG','3683','Portugal - Azores E - Santa Maria onshore','Portugal - eastern Azores - Santa Maria island onshore.',36.87,37.08,-25.26,-24.96,0); INSERT INTO "area" VALUES('EPSG','3684','Portugal - Azores W - Flores onshore','Portugal - western Azores - Flores island onshore.',39.3,39.58,-31.34,-31.07,0); INSERT INTO "area" VALUES('EPSG','3685','Portugal - Azores W - Corvo onshore','Portugal - western Azores - Corvo island onshore.',39.63,39.77,-31.18,-31.02,0); INSERT INTO "area" VALUES('EPSG','3686','Colombia - mainland and offshore Caribbean','Colombia - mainland and offshore Caribbean.',-4.23,13.68,-79.1,-66.87,0); INSERT INTO "area" VALUES('EPSG','3687','Australia - SA and WA 126°E to 132°E','Australia - South Australia west of 132°E, Western Australia east of 126°E, offshore federal waters between 126°E and 129°E.',-37.05,-9.37,125.99,132.01,0); INSERT INTO "area" VALUES('EPSG','3688','Australia - SA 132°E to 138°E','Australia - South Australia between 132°E and 138°E.',-36.14,-25.99,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','3689','Australia - SA and Qld 138°E to 144°E','Australia - South Australia east of 138°E, Queensland west of 144°E.',-38.13,-9.86,138.0,144.01,0); INSERT INTO "area" VALUES('EPSG','3690','Australia - Qld 144°E to 150°E','Australia - Queensland between 144°E and 150°E.',-29.01,-14.01,144.0,150.0,0); INSERT INTO "area" VALUES('EPSG','3691','Australia - Qld east of 150°E','Australia - Queensland east of 150°E.',-29.19,-22.0,150.0,153.61,0); INSERT INTO "area" VALUES('EPSG','3692','Brazil - Reconcavo and Jacuipe','Brazil - offshore - Reconcavo and Jacuipe basins.',-13.57,-11.18,-39.09,-35.31,0); INSERT INTO "area" VALUES('EPSG','3693','Brazil - Tucano and Jatoba','Brazil - Tucano North, Tucano Central, Tucano South and Jatoba basins.',-12.27,-8.39,-39.14,-37.09,0); INSERT INTO "area" VALUES('EPSG','3694','France - onshore - mainland and Corsica','France - onshore - mainland and Corsica.',41.31,51.14,-4.87,9.63,0); INSERT INTO "area" VALUES('EPSG','3695','Iraq - 31.4°N to 33°N, 43.9°E to 46.1°E (map 16)','Iraq - between UTM 3470000mN and 3650000mN (approximately 31°21''N and 32°58''N) and between UTM 400000mE and 600000mE (approximately 43°56''E and 46°04''E).',31.36,32.99,43.92,46.08,0); INSERT INTO "area" VALUES('EPSG','3696','Brazil - Sergipe and Alagoas','Brazil - offshore - Sergipe and Alagoas basins.',-13.58,-8.73,-37.34,-32.01,0); INSERT INTO "area" VALUES('EPSG','3697','Brazil - Paraiba-Pernambuco','Brazil - offshore - Paraiba-Pernambuco basin.',-10.17,-4.6,-35.1,-29.13,0); INSERT INTO "area" VALUES('EPSG','3698','Brazil - Potiguar, Ceara and Barreirinhas','Brazil - offshore - Potiguar, Ceara and Barreirinhas basins.',-6.5,4.26,-44.79,-26.0,0); INSERT INTO "area" VALUES('EPSG','3699','Brazil - Cumuruxatiba, Jequitinhonha and Camamu-Almada','Brazil - offshore - Cumuruxatiba, Jequitinhonha and Camamu-Almada basins.',-17.7,-13.01,-39.22,-34.6,0); INSERT INTO "area" VALUES('EPSG','3700','Brazil - Santos and Pelotas','Brazil - offshore - Santos and Pelotas basins.',-35.71,-22.66,-53.38,-40.2,0); INSERT INTO "area" VALUES('EPSG','3701','Iraq - 34.6°N to 36.2°N, west of 42.8°E (map 5)','Iraq - between UTM 3830000mN and 4010000mN (approximately 34°35''N and 36°13''N) and west of UTM 300000mE (approximately 42°48''E).',34.55,36.22,41.09,42.82,0); INSERT INTO "area" VALUES('EPSG','3702','Iraq - SE','Iraq - onshore southeast.',29.06,32.51,43.98,48.61,0); INSERT INTO "area" VALUES('EPSG','3703','Germany - Lower Saxony west of 7.5°E','Germany - Niedersachsen onshore west of 7°30''E.',52.23,53.81,6.58,7.5,0); INSERT INTO "area" VALUES('EPSG','3704','Iraq - 31.4°N to 33°N, east of 46.1°E (map 17)','Iraq - between UTM 3470000mN and 3650000mN (approximately 31°21''N and 32°58''N) and east of UTM 600000mE (approximately 46°04''E).',31.33,32.99,46.05,47.87,0); INSERT INTO "area" VALUES('EPSG','3705','Germany - Lower Saxony east of 10.5°E','Germany - Niedersachsen east of 10°30''E.',51.55,53.38,10.5,11.59,0); INSERT INTO "area" VALUES('EPSG','3706','Iraq - 29.7 to 31.4°N, 42°E to 43.9°E (map 19)','Iraq - between UTM 3290000mN and 3470000mN (approximately 29°47''N and 31°21''N) and between 42°E and UTM 400000mE (approximately 43°56''E).',29.75,31.37,42.0,43.97,0); INSERT INTO "area" VALUES('EPSG','3707','Germany - Lower Saxony 7.5°E to 10.5°E','Germany - Niedersachsen between 7°30''E and 10°30''E.',51.28,53.95,7.5,10.51,0); INSERT INTO "area" VALUES('EPSG','3708','Iraq - 29.7°N to 31.4°N, 43.9°E to 46.1°E (map 20)','Iraq - between UTM 3290000mN and 3470000mN (approximately 29°47''N and 31°21''N) and between UTM 400000mE and 600000mE (approximately 43°56''E and 46°04''E).',29.73,31.37,43.94,46.06,0); INSERT INTO "area" VALUES('EPSG','3709','Iraq - 31.4°N to 33°N, 42°E to 43.9°E (map 15)','Iraq - between UTM 3470000mN and 3650000mN (approximately 31°21''N and 32°58''N) and between 42°E and UTM 400000mE (approximately 43°56''E).',31.32,32.99,42.0,43.95,0); INSERT INTO "area" VALUES('EPSG','3710','Iraq - 29.7°N to 31.4°N, 46.1°E to 48°E (map 21)','Iraq - between UTM 3290000mN and 3470000mN (approximately 29°47''N and 31°21''N) and between UTM 600000mE (approximately 46°04''E) and 48°E.',29.72,31.37,46.03,48.0,0); INSERT INTO "area" VALUES('EPSG','3711','Iraq - south of 29.7°N, west of 46.1°E (map 24)','Iraq - south of UTM 3290000mN (approximately 29°47''N) and west of UTM 600000mE (approximately 46°04''E).',29.09,29.75,43.99,46.04,0); INSERT INTO "area" VALUES('EPSG','3712','Iraq - south of 29.7°N, east of 46.1°E (map 25)','Iraq - south of UTM 3290000mN (approximately 29°47''N) and east of UTM 600000mE (approximately 46°04''E).',29.06,29.74,46.02,47.02,0); INSERT INTO "area" VALUES('EPSG','3713','Asia - Korea N and S - west of 126°E','Democratic People''s Republic of Korea (North Korea) and Republic of Korea (South Korea) - onshore west of 126°E.',33.99,40.9,124.27,126.0,0); INSERT INTO "area" VALUES('EPSG','3714','Iraq - north of 36.2°N, west of 42°E (map 1)','Iraq - north of UTM 4010000mN (approximately 36°13''N and west of 42°E.',36.19,36.75,41.27,42.0,0); INSERT INTO "area" VALUES('EPSG','3715','Iraq - 34.6°N to 36.2°N, 42.8°E to 45°E (map 6)','Iraq - between UTM 3830000mN and 4010000mN (approximately 34°35''N and 36°13''N) and between UTM 300000mE (approximately 42°48''E) and 45°E.',34.59,36.24,42.77,45.0,0); INSERT INTO "area" VALUES('EPSG','3716','Asia - Korea N and S - 126°E to 128°E','Democratic People''s Republic of Korea (North Korea) and Republic of Korea (South Korea) - onshore between 126°E and 128°E.',33.14,41.8,126.0,128.0,0); INSERT INTO "area" VALUES('EPSG','3717','Iraq - north of 36.2°N, 42°E to 43.9°E (map 2)','Iraq - north of UTM 4010000mN (approximately 36°13''N) and between 42°E and UTM 400000mE (approximately 43°56''E).',36.19,37.39,42.0,43.89,0); INSERT INTO "area" VALUES('EPSG','3718','Iraq - 34.6°N to 36.2°N, east of 45°E (map 7)','Iraq - between UTM 3830000mN and 4010000mN (approximately 34°35''N and 36°13''N) and east of 45°E.',34.6,36.24,45.0,46.35,0); INSERT INTO "area" VALUES('EPSG','3719','Iraq - north of 36.2°N, east of 43.9°E (map 3)','Iraq - north of UTM 4010000mN (approximately 36°13''N) and east of UTM 400000mE (approximatrely 43°56''E).',36.22,37.33,43.87,45.33,0); INSERT INTO "area" VALUES('EPSG','3720','Korea, Republic of (South Korea) - 130°E to 132°E onshore','Republic of Korea (South Korea) - onshore between 130°E and 132°E.',37.39,37.62,130.71,131.01,0); INSERT INTO "area" VALUES('EPSG','3721','Korea, Republic of (South Korea) - 126°E to 128°E Jeju','Republic of Korea (South Korea) - between 126°E and 128°E - Jeju island onshore.',33.14,33.61,126.09,127.01,0); INSERT INTO "area" VALUES('EPSG','3722','Iraq - 33°N to 34.6°N, west of 40.1°E (map 8)','Iraq - north of UTM 3650000mN (approximately 32°58''N) and west of UTM zone 37 600000mE (approximately 40°04''E).',32.98,33.99,38.79,40.09,0); INSERT INTO "area" VALUES('EPSG','3723','Iraq - 33°N to 34.6°N, 40.1°E to 42°E (map 9)','Iraq - between UTM 3650000mN and 3830000mN (approximately 32°58''N and 34°35''N) and between UTM zone 37 600000mE (approximately 40°04''E) and 42°E.',32.95,34.6,40.07,42.0,0); INSERT INTO "area" VALUES('EPSG','3724','Iraq - 33°N to 34.6°N, 42°E to 43.9°E (map 10)','Iraq - between UTM 3650000mN and 3830000mN (approximately 32°58''N and 34°35''N) and between 42°E and UTM 400000mE (approximately 43°56''E).',32.95,34.61,42.0,43.93,0); INSERT INTO "area" VALUES('EPSG','3725','Iraq - 33°N to 34.6°N, 43.9°E to 46.1°E (map 11)','Iraq - between UTM 3650000mN and 3830000mN (approximately 32°58''N and 34°35''N) and between UTM 400000mE and 600000mE (approximately 43°56''E and 46°04''E).',32.98,34.62,43.9,46.2,0); INSERT INTO "area" VALUES('EPSG','3726','Asia - Korea N and S - 128°E to 130°E','Democratic People''s Republic of Korea (North Korea) and Republic of Korea (South Korea) - onshore between 128°E and 130°E.',34.49,43.01,128.0,130.0,0); INSERT INTO "area" VALUES('EPSG','3727','Asia - Korea N and S - east of 130°E','Democratic People''s Republic of Korea (North Korea) and Republic of Korea (South Korea) - onshore east of 130°E.',37.39,42.98,130.0,131.01,0); INSERT INTO "area" VALUES('EPSG','3728','Iraq - 31.4°N to 33°N, 40.1°E to 42°E (map 14)','Iraq - between UTM 3470000mN and 3650000mN (approximately 31°21''N and 32°58''N) and between UTM zone 37 600000mE (approximately 40°04''E) and 42°E.',31.32,32.99,40.05,42.0,0); INSERT INTO "area" VALUES('EPSG','3729','Iraq - 31.4°N to 33°N, west of 40.1°E (map 13)','Iraq - sorth of UTM 3650000mN (approximately 32°58''N) and west of UTM zone 37 600000mE (approximately 40°04''E).',32.0,32.99,38.92,40.08,0); INSERT INTO "area" VALUES('EPSG','3730','Korea, Republic of (South Korea) - 126°E to 128°E mainland','Republic of Korea (South Korea) - between 126°E and 128°E - mainland and nearshore.',33.96,38.33,126.0,128.0,0); INSERT INTO "area" VALUES('EPSG','3731','Georgia - offshore','Georgia - offshore.',41.54,43.33,38.97,41.71,0); INSERT INTO "area" VALUES('EPSG','3732','Spain - Catalonia onshore','Spain - Catalonia onshore.',40.49,42.86,0.16,3.39,0); INSERT INTO "area" VALUES('EPSG','3733','Bolivia - east of 60°W','Bolivia - east of 60°W.',-20.17,-16.27,-60.0,-57.52,0); INSERT INTO "area" VALUES('EPSG','3734','Bhutan - Bumthang district','Bhutan - Bumthang district.',27.33,28.09,90.46,91.02,0); INSERT INTO "area" VALUES('EPSG','3735','Thailand - onshore east of 102°E','Thailand - onshore east of 102°E.',6.02,18.44,102.0,105.64,0); INSERT INTO "area" VALUES('EPSG','3736','Italy - mainland and Sicily','Italy - mainland (including San Marino and Vatican City State) and Sicily.',36.59,47.1,6.62,18.58,0); INSERT INTO "area" VALUES('EPSG','3737','Bhutan - Chhukha district','Bhutan - Chhukha district.',26.71,27.32,89.26,89.83,0); INSERT INTO "area" VALUES('EPSG','3738','Bhutan - Dagana district','Bhutan - Dagana district.',26.7,27.29,89.63,90.08,0); INSERT INTO "area" VALUES('EPSG','3739','Korea, Republic of (South Korea) - mainland','Republic of Korea (South Korea) - mainland onshore.',33.96,38.64,125.75,129.65,0); INSERT INTO "area" VALUES('EPSG','3740','Bhutan - Gasa district','Bhutan - Gasa district.',27.72,28.33,89.44,90.47,0); INSERT INTO "area" VALUES('EPSG','3741','Thailand - onshore and Gulf of Thailand','Thailand - onshore plus offshore Gulf of Thailand.',5.63,20.46,97.34,105.64,0); INSERT INTO "area" VALUES('EPSG','3742','Bhutan - Ha district','Bhutan - Ha district.',27.02,27.62,88.9,89.39,0); INSERT INTO "area" VALUES('EPSG','3743','Bhutan - Lhuentse district','Bhutan - Lhuentse district.',27.39,28.09,90.77,91.49,0); INSERT INTO "area" VALUES('EPSG','3744','Europe - Ireland (Republic and Ulster) - on- and offshore','Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore and offshore.',51.33,55.4,-10.6,-5.33,1); INSERT INTO "area" VALUES('EPSG','3745','Bhutan - Mongar district','Bhutan - Mongar district.',26.93,27.61,90.95,91.5,0); INSERT INTO "area" VALUES('EPSG','3746','Bhutan - Paro district','Bhutan - Paro district.',27.18,27.79,89.12,89.56,0); INSERT INTO "area" VALUES('EPSG','3747','Bhutan - Pemagatshel district','Bhutan - Pemagatshel district.',26.78,27.18,91.0,91.56,0); INSERT INTO "area" VALUES('EPSG','3748','Latin America - 120°W to 114°W','Latin America between 120°W and 114°W, northern hemisphere, onshore and offshore.',15.01,32.72,-120.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','3749','Bhutan - Punakha district','Bhutan - Punakha district.',27.46,27.87,89.63,90.08,0); INSERT INTO "area" VALUES('EPSG','3750','Bhutan - Samdrup Jongkhar district','Bhutan - Samdrup Jongkhar district.',26.79,27.25,91.39,92.13,0); INSERT INTO "area" VALUES('EPSG','3751','Bhutan - Samtse district','Bhutan - Samtse district.',26.8,27.28,88.74,89.38,0); INSERT INTO "area" VALUES('EPSG','3752','Bhutan - Sarpang district','Bhutan - Sarpang district.',26.73,27.23,90.01,90.78,0); INSERT INTO "area" VALUES('EPSG','3753','Bhutan - Thimphu district','Bhutan - Thimphu district.',27.14,28.01,89.22,89.77,0); INSERT INTO "area" VALUES('EPSG','3754','Bhutan - Trashigang district','Bhutan - Trashigang district.',27.01,27.49,91.37,92.13,0); INSERT INTO "area" VALUES('EPSG','3755','Bhutan - Trongsa district','Bhutan - Trongsa district.',27.13,27.79,90.26,90.76,0); INSERT INTO "area" VALUES('EPSG','3756','Latin America - 114°W to 108°W','Latin America between 114°W and 108°W, northern hemisphere, onshore and offshore.',15.09,32.27,-114.0,-108.0,0); INSERT INTO "area" VALUES('EPSG','3757','Bhutan - Tsirang district','Bhutan - Tsirang district.',26.81,27.2,90.0,90.35,0); INSERT INTO "area" VALUES('EPSG','3758','Bhutan - Wangdue Phodrang district','Bhutan - Wangdue Phodrang district.',27.11,28.08,89.71,90.54,0); INSERT INTO "area" VALUES('EPSG','3759','Latin America - 108°W to 102°W','Latin America between 108°W and 102°W, northern hemisphere, onshore and offshore.',14.05,31.79,-108.0,-102.0,0); INSERT INTO "area" VALUES('EPSG','3760','Bhutan - Yangtse district','Bhutan - Yangtse district.',27.37,28.0,91.34,91.77,0); INSERT INTO "area" VALUES('EPSG','3761','Bhutan - Zhemgang district','Bhutan - Zhemgang district.',26.77,27.39,90.53,91.19,0); INSERT INTO "area" VALUES('EPSG','3762','New Zealand - North Island - One Tree vcrs','New Zealand - North Island - One Tree Point vertical CRS area.',-36.41,-34.36,172.61,174.83,0); INSERT INTO "area" VALUES('EPSG','3763','Latin America - 102°W to 96°W','Latin America between 102°W and 96°W, northern hemisphere, onshore and offshore.',12.3,29.81,-102.01,-96.0,0); INSERT INTO "area" VALUES('EPSG','3764','New Zealand - North Island - Auckland vcrs','New Zealand - North Island - Auckland vertical CRS area.',-37.67,-36.12,174.0,176.17,0); INSERT INTO "area" VALUES('EPSG','3765','French Guiana - coastal area west of 54°W','French Guiana - coastal area west of 54°W.',4.84,5.69,-54.45,-54.0,0); INSERT INTO "area" VALUES('EPSG','3766','French Guiana - coastal area east of 54°W','French Guiana - coastal area east of 54°W.',3.43,5.81,-54.0,-51.61,0); INSERT INTO "area" VALUES('EPSG','3767','Ireland - onshore','Ireland - onshore.',51.39,55.43,-10.56,-5.93,0); INSERT INTO "area" VALUES('EPSG','3768','New Zealand - North Island - Moturiki vcrs','New Zealand - North Island - Moturiki vertical CRS area.',-40.59,-37.52,174.57,177.26,0); INSERT INTO "area" VALUES('EPSG','3769','New Zealand - North Island - Taranaki vcrs','New Zealand - North Island - Taranaki vertical CRS area.',-39.92,-38.41,173.68,174.95,0); INSERT INTO "area" VALUES('EPSG','3770','Vietnam - DBSCL 02 and 03','Vietnam - Mekong delta blocks DBSCL 02 and 03.',9.35,11.04,104.24,107.11,0); INSERT INTO "area" VALUES('EPSG','3771','New Zealand - North Island - Gisborne vcrs','New Zealand - North Island - Gisborne vertical CRS area.',-39.04,-37.49,176.41,178.63,0); INSERT INTO "area" VALUES('EPSG','3772','New Zealand - North Island - Hawkes Bay mc Napier vcrs','New Zealand - North Island - Hawkes Bay meridional circuit and Napier vertical crs area.',-40.57,-38.87,175.8,178.07,0); INSERT INTO "area" VALUES('EPSG','3773','New Zealand - North Island - Wellington vcrs','New Zealand - North Island - Wellington vertical CRS area.',-41.67,-40.12,174.52,176.56,0); INSERT INTO "area" VALUES('EPSG','3774','New Zealand - North Island - Wellington mc','New Zealand - North Island - Wellington meridional circuit area.',-41.5,-40.91,174.52,175.36,0); INSERT INTO "area" VALUES('EPSG','3775','New Zealand - North Island - Wairarapa mc','New Zealand - North Island - Wairarapa meridional circuit area.',-41.67,-40.29,175.01,176.55,0); INSERT INTO "area" VALUES('EPSG','3776','New Zealand - North Island - Wanganui mc','New Zealand - North Island - Wanganui meridional circuit area.',-40.97,-39.46,174.4,176.27,0); INSERT INTO "area" VALUES('EPSG','3777','New Zealand - North Island - Taranaki mc','New Zealand - North Island - Taranaki meridional circuit area.',-39.78,-38.4,173.68,175.44,0); INSERT INTO "area" VALUES('EPSG','3778','New Zealand - North Island - Tuhirangi mc','New Zealand - North Island - Tuhirangi meridional circuit area.',-39.55,-38.87,174.88,176.33,0); INSERT INTO "area" VALUES('EPSG','3779','New Zealand - North Island - Bay of Plenty mc','New Zealand - North Island - Bay of Plenty meridional circuit area.',-39.13,-37.22,175.75,177.23,0); INSERT INTO "area" VALUES('EPSG','3780','New Zealand - North Island - Poverty Bay mc','New Zealand - North Island - Poverty Bay meridional circuit area.',-39.04,-37.49,176.73,178.63,0); INSERT INTO "area" VALUES('EPSG','3781','New Zealand - North Island - Mount Eden mc','New Zealand - North Island - Mount Eden meridional circuit area.',-39.01,-34.1,171.99,176.12,0); INSERT INTO "area" VALUES('EPSG','3782','New Zealand - South Island - Collingwood mc','New Zealand - South Island - Collingwood meridional circuit area.',-41.22,-40.44,172.16,173.13,0); INSERT INTO "area" VALUES('EPSG','3783','New Zealand - South Island - Karamea mc','New Zealand - South Island - Karamea meridional circuit area.',-41.49,-40.75,171.96,172.7,0); INSERT INTO "area" VALUES('EPSG','3784','New Zealand - South Island - Nelson mc','New Zealand - South Island - Nelson meridional circuit area.',-42.18,-40.66,172.4,174.08,0); INSERT INTO "area" VALUES('EPSG','3785','New Zealand - South Island - Marlborough mc','New Zealand - South Island - Marlborough meridional circuit area.',-42.65,-40.85,172.95,174.46,0); INSERT INTO "area" VALUES('EPSG','3786','New Zealand - South Island - Buller mc','New Zealand - South Island - Buller meridional circuit area.',-42.19,-41.42,171.27,172.41,0); INSERT INTO "area" VALUES('EPSG','3787','New Zealand - South Island - Grey mc','New Zealand - South Island - Grey meridional circuit area.',-42.74,-41.5,171.15,172.75,0); INSERT INTO "area" VALUES('EPSG','3788','New Zealand - South Island - Amuri mc','New Zealand - South Island - Amuri meridional circuit area.',-42.95,-42.09,171.88,173.55,0); INSERT INTO "area" VALUES('EPSG','3789','New Zealand - South Island - Hokitika mc','New Zealand - South Island - Hokitika meridional circuit area.',-43.23,-42.41,170.39,171.89,0); INSERT INTO "area" VALUES('EPSG','3790','New Zealand - South Island - Mount Pleasant mc','New Zealand - South Island - Mount Pleasant meridional circuit area.',-43.96,-42.69,171.11,173.38,0); INSERT INTO "area" VALUES('EPSG','3791','New Zealand - South Island - Okarito mc','New Zealand - South Island - Okarito meridional circuit area.',-43.85,-43.0,169.21,170.89,0); INSERT INTO "area" VALUES('EPSG','3792','New Zealand - South Island - Gawler mc','New Zealand - South Island - Gawler meridional circuit area.',-44.25,-43.13,170.68,172.26,0); INSERT INTO "area" VALUES('EPSG','3793','New Zealand - South Island - Timaru mc','New Zealand - South Island - Timaru meridional circuit area.',-44.98,-43.35,169.82,171.55,0); INSERT INTO "area" VALUES('EPSG','3794','New Zealand - South Island - Jacksons Bay mc','New Zealand - South Island - Jacksons Bay meridional circuit area.',-44.4,-43.67,168.02,170.01,0); INSERT INTO "area" VALUES('EPSG','3795','New Zealand - South Island - Lindis Peak mc','New Zealand - South Island - Lindis Peak meridional circuit area.',-45.4,-43.71,168.62,170.24,0); INSERT INTO "area" VALUES('EPSG','3796','New Zealand - South Island - Observation Point mc','New Zealand - South Island - Observation Point meridional circuit area.',-45.82,-44.61,169.77,171.24,0); INSERT INTO "area" VALUES('EPSG','3797','New Zealand - South Island - Mount Nicholas mc','New Zealand - South Island - Mount Nicholas meridional circuit area.',-45.58,-44.29,167.72,169.11,0); INSERT INTO "area" VALUES('EPSG','3798','New Zealand - South Island - North Taieri mc','New Zealand - South Island - North Taieri meridional circuit area.',-46.73,-45.23,168.64,170.87,0); INSERT INTO "area" VALUES('EPSG','3799','New Zealand - South Island - Mount York mc','New Zealand - South Island - Mount York meridional circuit area.',-46.33,-44.53,166.37,168.21,0); INSERT INTO "area" VALUES('EPSG','3800','New Zealand - South and Stewart Islands - Bluff mc','New Zealand - Stewart Island; South Island - Bluff meridional circuit area.',-47.33,-45.33,167.29,168.97,0); INSERT INTO "area" VALUES('EPSG','3801','New Zealand - South Island - Bluff vcrs','New Zealand - South Island - Bluff vertical CRS area.',-46.71,-46.26,168.01,168.86,0); INSERT INTO "area" VALUES('EPSG','3802','New Zealand - South Island - Nelson vcrs','New Zealand - South Island - north of approximately 42°20''S - Nelson vertical CRS area.',-42.44,-40.44,171.82,174.46,0); INSERT INTO "area" VALUES('EPSG','3803','New Zealand - South Island - Dunedin vcrs','New Zealand - South Island - between approximately 44°S and 46°S - Dunedin vertical CRS area.',-46.4,-43.82,167.73,171.28,0); INSERT INTO "area" VALUES('EPSG','3804','New Zealand - South Island - Lyttleton vcrs','New Zealand - South Island - between approximately 41°20''S and 45°S - Lyttleton vertical CRS area.',-44.92,-41.6,168.95,173.77,0); INSERT INTO "area" VALUES('EPSG','3805','Bonaire, St Eustatius and Saba','Bonaire, St Eustatius and Saba - onshore and offshore.',11.66,17.96,-69.09,-62.76,0); INSERT INTO "area" VALUES('EPSG','3806','New Zealand - South Island - Dunedin-Bluff vcrs','New Zealand - South Island - Dunedin-Bluff vertical CRS area.',-46.73,-44.52,166.37,169.95,0); INSERT INTO "area" VALUES('EPSG','3807','Curacao','Curaçao - onshore and offshore.',11.66,15.35,-69.55,-68.54,0); INSERT INTO "area" VALUES('EPSG','3808','Brazil - 36°W to 30°W offshore','Brazil - offshore between 36°W and 30°W, southern hemisphere.',-20.11,0.0,-36.0,-30.0,0); INSERT INTO "area" VALUES('EPSG','3809','St Maarten','Sint Maarten - onshore and offshore.',17.81,18.07,-63.3,-62.92,0); INSERT INTO "area" VALUES('EPSG','3810','Caribbean - St Maarten, St Eustatius and Saba - onshore','Caribbean - St Maarten, St Eustatius and Saba - onshore.',17.41,18.07,-63.31,-62.88,0); INSERT INTO "area" VALUES('EPSG','3811','Chile - 72°W to 66°W','Chile - 72°W to 66°W, onshore and offshore.',-59.87,-17.5,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','3812','Nigeria - offshore deep water - east of 6°E','Nigeria - offshore deep water - east of 6°E.',2.61,3.68,6.0,7.82,0); INSERT INTO "area" VALUES('EPSG','3813','Nigeria - offshore blocks OPL 209, 219 and 220','Nigeria - offshore blocks OPL 209, 219 and 220.',3.25,5.54,4.01,6.96,0); INSERT INTO "area" VALUES('EPSG','3814','Nigeria - offshore blocks OML 99-102 and OPL 222 and 223','Nigeria - offshore blocks OML 99-102 and OPL 222 and 223.',3.25,4.51,7.16,8.25,0); INSERT INTO "area" VALUES('EPSG','3815','Nigeria - offshore blocks OPL 209-213 and 316','Nigeria - offshore blocks OPL 209-213 and 316.',4.22,6.31,3.83,5.17,0); INSERT INTO "area" VALUES('EPSG','3816','Nigeria - offshore blocks OPL 217-223','Nigeria - offshore blocks OPL 217-223.',3.24,3.86,5.58,8.0,0); INSERT INTO "area" VALUES('EPSG','3817','Nigeria - offshore blocks OPL 210, 213, 217 and 218','Nigeria - offshore blocks OPL 210, 213, 217 and 218.',3.24,5.54,4.41,6.29,0); INSERT INTO "area" VALUES('EPSG','3818','New Zealand - North Island - Tararu vcrs','New Zealand - North Island - Tararu vertical CRS area.',-37.21,-36.78,175.44,175.99,0); INSERT INTO "area" VALUES('EPSG','3819','Nigeria - offshore blocks OPL 215 and 221','Nigeria - offshore blocks OPL 215 and 221.',3.25,4.23,5.02,7.31,0); INSERT INTO "area" VALUES('EPSG','3820','Bonaire - St Eustatius and Saba','Bonaire, St Eustatius and Saba - St Eustatius and Saba - onshore and offshore.',16.68,17.96,-64.02,-62.76,0); INSERT INTO "area" VALUES('EPSG','3821','Bonaire','Bonaire, St Eustatius and Saba - Bonaire - onshore and offshore.',11.66,15.3,-69.09,-67.98,0); INSERT INTO "area" VALUES('EPSG','3822','Bonaire - onshore','Bonaire, St Eustatius and Saba - Bonaire - onshore.',11.97,12.36,-68.47,-68.14,0); INSERT INTO "area" VALUES('EPSG','3823','Curacao - onshore','Curaçao - onshore.',11.99,12.44,-69.22,-68.69,0); INSERT INTO "area" VALUES('EPSG','3824','Nigeria - Gongola Basin','Nigeria - onshore - Gongola Basin',8.78,11.63,9.41,12.13,0); INSERT INTO "area" VALUES('EPSG','3825','Caribbean - French Antilles west of 60°W','French Antilles onshore and offshore west of 60°W - Guadeloupe (including Grande Terre, Basse Terre, Marie Galante, Les Saintes, Iles de la Petite Terre, La Desirade, St Barthélemy, and northern St Martin) and Martinique.',14.08,18.32,-63.66,-60.0,0); INSERT INTO "area" VALUES('EPSG','3826','Uruguay - west of 54°W','Uruguay - west of 54°W, onshore and offshore.',-36.63,-30.09,-58.49,-54.0,0); INSERT INTO "area" VALUES('EPSG','3827','Bolivia - west of 66°W','Bolivia - west of 66°W.',-22.91,-9.77,-69.66,-66.0,0); INSERT INTO "area" VALUES('EPSG','3828','Uruguay - east of 54°W','Uruguay - east of 54°W, onshore and offshore.',-37.77,-31.9,-54.0,-50.01,0); INSERT INTO "area" VALUES('EPSG','3829','Chile - 78°W to 72°W','Chile - 78°W to 72°W, onshore and offshore.',-59.36,-18.35,-78.0,-71.99,0); INSERT INTO "area" VALUES('EPSG','3830','South America - 84°W to 78°W, N hemisphere and SAD69 by country','South America between 84°W and 78°W, northern hemisphere, onshore.',0.0,2.7,-80.18,-78.0,0); INSERT INTO "area" VALUES('EPSG','3831','South America - 84°W to 78°W, S hemisphere and SAD69 by country','South America between 84°W and 78°W, southern hemisphere, onshore.',-10.53,0.0,-81.41,-78.0,0); INSERT INTO "area" VALUES('EPSG','3832','South America - 78°W to 72°W, N hemisphere and SAD69 by country','South America between 78°W and 72°W, northern hemisphere, onshore.',0.0,12.31,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','3833','South America - 78°W to 72°W, S hemisphere and SAD69 by country','Brazil - west of 72°W. In rest of South America between 78°W and 72°W, southern hemisphere onshore north of 45°S.',-45.0,0.0,-78.0,-71.99,0); INSERT INTO "area" VALUES('EPSG','3834','South America - 72°W to 66°W, N hemisphere onshore','South America between 72°W and 66°W, northern hemisphere, onshore, but excluding the area between approximately 0°N, 70°W to 2°N, 70°W to 2°N, 66°W.',0.0,12.52,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','3835','South America - 72°W to 66°W, S hemisphere onshore','Brazil - between 72°W and 66°W, northern and southern hemispheres. In rest of South America between 72°W and 66°W, southern hemisphere onshore north of 45°S.',-45.0,2.15,-72.0,-65.99,0); INSERT INTO "area" VALUES('EPSG','3836','Peru - east of 72°W','Peru - east of 72°W, onshore and offshore.',-20.44,-2.14,-72.0,-68.67,0); INSERT INTO "area" VALUES('EPSG','3837','Peru - 84°W to 78°W','Peru - between 84°W and 78°W, onshore and offshore.',-17.33,-3.11,-84.0,-78.0,0); INSERT INTO "area" VALUES('EPSG','3838','Peru - 78°W to 72°W','Peru - between 78°W and 72°W, onshore and offshore.',-21.05,-0.03,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','3839','South America - 66°W to 60°W, N hemisphere and SAD69 by country','South America between 66°W and 60°W, northern hemisphere, onshore, but excluding most of the area south of 4°N.',0.64,11.23,-66.0,-59.99,0); INSERT INTO "area" VALUES('EPSG','3840','South America - 66°W to 60°W, S hemisphere and SAD69 by country','Brazil - between 66°W and 60°W, northern and southern hemispheres. In rest of South America between 66°W and 60°W, southern hemisphere onshore.',-45.0,5.28,-66.0,-59.99,0); INSERT INTO "area" VALUES('EPSG','3841','South America - 60°W to 54°W, N hemisphere and SAD69 by country','South America between 60°W and 54°W, northern hemisphere onshore, but excluding most of the area south of approximately 2°N.',1.18,8.6,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','3842','Brazil - east of 30°W','Brazil - east of 30°W, northern and southern hemispheres, onshore and offshore.',-23.86,4.26,-30.0,-25.28,0); INSERT INTO "area" VALUES('EPSG','3843','Argentina - mainland onshore and offshore TdF','Argentina - mainland onshore and Atlantic offshore Tierra del Fuego.',-54.93,-21.78,-73.59,-53.65,0); INSERT INTO "area" VALUES('EPSG','3844','Nicaragua - onshore north of 12°48''N','Nicaragua - onshore north of 12°48''N.',12.8,15.03,-87.74,-83.08,0); INSERT INTO "area" VALUES('EPSG','3845','Brazil - SAD69','Brazil - onshore southeast of a line beginning at the intersection of the 54°W meridian with the northern national boundary then running southwards to 5°S, 54°W, southwestwards to 10°S, 60°W, and southwards to the national boundary. Offshore within 370km of the mainland.',-35.71,7.04,-60.57,-29.03,1); INSERT INTO "area" VALUES('EPSG','3846','Greenland - southwest coast south of 63°N','Greenland - onshore southwest coastal area south of 63°N.',59.74,63.0,-50.72,-42.52,0); INSERT INTO "area" VALUES('EPSG','3847','Nicaragua - onshore south of 12°48''N','Nicaragua - onshore south of 12°48''N.',10.7,12.8,-87.63,-83.42,0); INSERT INTO "area" VALUES('EPSG','3848','Honduras - onshore north of 14°38''30"N','Honduras - onshore north of 14°38''30"N.',14.64,16.49,-89.23,-83.08,0); INSERT INTO "area" VALUES('EPSG','3849','Costa Rica - onshore and offshore east of 86°30''W','Costa Rica - onshore and offshore east of 86°30''W.',2.21,11.77,-86.5,-81.43,0); INSERT INTO "area" VALUES('EPSG','3850','Honduras - onshore south of 14°38''30"N','Honduras - onshore south of 14°38''30"N.',12.98,14.65,-89.36,-84.4,0); INSERT INTO "area" VALUES('EPSG','3851','Brazil - 36°W to 30°W SAD69','Brazil - between 36°W and 30°W, northern and southern hemispheres, onshore and offshore within 370km of the mainland.',-20.1,-0.49,-36.0,-30.0,1); INSERT INTO "area" VALUES('EPSG','3852','USA - 120°W to 114°W onshore','United States (USA) - between 120°W and 114°W - onshore - Arizona; California; Idaho; Montana; Nevada; Oregon; Utah; Washington.',32.26,49.01,-120.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','3853','Antarctica - McMurdo Sound region','Antarctica - McMurdo Sound region.',-81.0,-76.0,153.0,173.0,0); INSERT INTO "area" VALUES('EPSG','3854','Antarctica - Borchgrevink Coast region','Antarctica - Borchgrevink Coast region.',-76.0,-73.0,157.0,173.0,0); INSERT INTO "area" VALUES('EPSG','3855','Antarctica - Pennell Coast region','Antarctica - Pennell Coast region.',-73.0,-69.5,160.0,172.0,0); INSERT INTO "area" VALUES('EPSG','3856','Antarctica - Ross Ice Shelf Region','Antarctica - Ross Ice Shelf Region.',-90.0,-76.0,150.0,-150.0,0); INSERT INTO "area" VALUES('EPSG','3857','USA - 126°W to 120°W onshore','United States (USA) - between 126°W and 120°W - onshore - California; Oregon; Washington.',33.85,49.05,-124.79,-119.99,0); INSERT INTO "area" VALUES('EPSG','3858','Venezuela - east of 66°W','Venezuela - east of 66°W, onshore and offshore.',0.64,16.75,-66.0,-58.95,0); INSERT INTO "area" VALUES('EPSG','3859','Venezuela - 72°W and 66°W','Venezuela - between 72°W and 66°W, onshore and offshore.',0.73,15.64,-72.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','3860','USA - 102°W to 96°W onshore','United States (USA) - between 102°W and 96°W - onshore - Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas.',25.83,49.01,-102.0,-95.99,0); INSERT INTO "area" VALUES('EPSG','3861','USA - 96°W to 90°W onshore','United States (USA) - between 96°W and 90°W - onshore - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin.',28.42,49.38,-96.0,-89.99,0); INSERT INTO "area" VALUES('EPSG','3862','USA - 90°W to 84°W onshore','United States (USA) - between 90°W and 84°W - onshore - Alabama; Arkansas; Florida; Georgia; Indiana; Illinois; Kentucky; Louisiana; Michigan; Minnesota; Mississippi; Missouri; North Carolina; Ohio; Tennessee; Wisconsin.',28.85,48.32,-90.0,-83.99,0); INSERT INTO "area" VALUES('EPSG','3863','USA - 84°W to 78°W onshore','United States (USA) - between 84°W and 78°W - onshore - Florida; Georgia; Maryland; Michigan; New York; North Carolina; Ohio; Pennsylvania; South Carolina; Tennessee; Virginia; West Virginia.',24.41,46.13,-84.01,-78.0,0); INSERT INTO "area" VALUES('EPSG','3864','North America - 126°W to 120°W and NAD83 by country','North America - between 126°W and 120°W - onshore and offshore. Canada - British Columbia; Northwest Territories; Yukon. United States (USA) - California; Oregon; Washington.',30.54,81.8,-126.0,-119.99,0); INSERT INTO "area" VALUES('EPSG','3865','Canada - Labrador - 66°W to 63°W','Canada - Labrador - 66°W to 63°W.',51.58,60.52,-66.0,-63.0,0); INSERT INTO "area" VALUES('EPSG','3866','North America - 132°W to 126°W and NAD83 by country','North America - between 132°W and 126°W - onshore and offshore. Canada - British Columbia; Northwest Territories; Yukon. United States (USA) - Alaska.',35.38,80.93,-132.0,-126.0,0); INSERT INTO "area" VALUES('EPSG','3867','North America - 138°W to 132°W and NAD83 by country','North America - between 138°W and 132°W - onshore and offshore. Canada - British Columbia; Northwest Territiories; Yukon. United States (USA) - Alaska.',48.06,79.42,-138.0,-132.0,0); INSERT INTO "area" VALUES('EPSG','3868','USA - 78°W to 72°W onshore','United States (USA) - between 78°W and 72°W - onshore - Connecticut; Delaware; Maryland; Massachusetts; New Hampshire; New Jersey; New York; North Carolina; Pennsylvania; Virginia; Vermont.',33.84,45.03,-78.0,-72.0,0); INSERT INTO "area" VALUES('EPSG','3869','Costa Rica - onshore north of 9°32''N','Costa Rica - onshore north of 9°32''N.',9.53,11.22,-85.97,-82.53,0); INSERT INTO "area" VALUES('EPSG','3870','Costa Rica - onshore south of 9°56''N','Costa Rica - onshore south of 9°56''N',7.98,9.94,-85.74,-82.53,0); INSERT INTO "area" VALUES('EPSG','3871','USA - 72°W to 66°W onshore','United States (USA) - between 72°W and 66°W - onshore - Connecticut; Maine; Massachusetts; New Hampshire; New York (Long Island); Rhode Island; Vermont.',40.96,47.47,-72.0,-66.91,0); INSERT INTO "area" VALUES('EPSG','3872','North America - 144°W to 138°W and NAD83 by country','North America - between 144°W and 138°W - onshore and offshore. Canada - British Columbia; Yukon. United States (USA) - Alaska.',52.05,73.59,-144.0,-137.99,0); INSERT INTO "area" VALUES('EPSG','3873','Spain - Canary Islands onshore','Spain - Canary Islands onshore.',27.58,29.3,-18.22,-13.37,0); INSERT INTO "area" VALUES('EPSG','3874','Brazil - Corrego Alegre 1961','Brazil - onshore - between 18°S and 27°30''S, also east of 54°W between 15°S and 18°S.',-27.5,-14.99,-58.16,-38.82,0); INSERT INTO "area" VALUES('EPSG','3875','Canada - Labrador - 63°W to 60°W','Canada - Labrador between 63°W and 60°W.',52.0,58.92,-63.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','3876','Central America - Guatemala to Costa Rica','Costa Rica; El Salvador; Guatemala; Honduras; Nicaragua.',7.98,17.83,-92.29,-82.53,0); INSERT INTO "area" VALUES('EPSG','3877','Brazil - 42°W to 36°W and south of 15°S onshore','Brazil - between 42°W and 36°W and south of 15°S, onshore.',-22.96,-14.99,-42.0,-38.82,0); INSERT INTO "area" VALUES('EPSG','3878','Brazil - 54°W to 48°W and SAD69','Brazil - onshore and offshore northern and southern hemispheres between 54°W and 48°W.',-35.71,7.04,-54.01,-47.99,0); INSERT INTO "area" VALUES('EPSG','3879','Germany - onshore east of 12°E','Germany - onshore east of 12°E.',47.46,54.74,12.0,15.04,0); INSERT INTO "area" VALUES('EPSG','3880','Canada - Labrador - west of 66°W','Canada - Labrador - west of 66°W.',52.05,55.34,-67.81,-66.0,0); INSERT INTO "area" VALUES('EPSG','3881','Brazil - 60°W to 54°W','Brazil - between 60°W and 54°W, northern and southern hemispheres.',-31.91,4.51,-60.0,-53.99,0); INSERT INTO "area" VALUES('EPSG','3882','Papua New Guinea - west of 144°E','Papua New Guinea - west of 144°E, onshore and offshore.',-11.15,2.31,139.2,144.0,0); INSERT INTO "area" VALUES('EPSG','3883','USA - Hawaii - main islands','United States (USA) - Hawaii - main islands onshore and offshore.',15.56,25.58,-163.74,-151.27,0); INSERT INTO "area" VALUES('EPSG','3884','Brazil - SAD69 onshore south of 4°30''S','Brazil - onshore southeast of a line beginning at the intersection of the coast with the 4°30''S parallel, then westwards to 4°30''S, 54°W, then southwards to 5°S, 54°W, southwestwards to 10°S, 60°W, and southwards to the national boundary.',-33.78,-4.5,-60.57,-34.74,1); INSERT INTO "area" VALUES('EPSG','3885','Papua New Guinea - 144°E to 150°E','Papua New Guinea - between 144°E and 150°E, onshore and offshore.',-13.88,2.58,144.0,150.01,0); INSERT INTO "area" VALUES('EPSG','3886','Finland - onshore west of 19.5°E','Finland - onshore west of 19°30''E.',60.0,60.42,19.3,19.5,1); INSERT INTO "area" VALUES('EPSG','3887','Brazil - onshore south of 14°S and east of 53°W','Brazil - onshore southeast of a line beginning at the intersection of the 53°W meridian with the northern national boundary then running southwards to 14°S, then westwards to the national boundary.',-33.78,4.43,-60.58,-34.74,0); INSERT INTO "area" VALUES('EPSG','3888','Papua New Guinea - 150°E to 156°E','Papua New Guinea - between 150°E and 156°E, onshore and offshore.',-14.75,1.98,150.0,156.0,0); INSERT INTO "area" VALUES('EPSG','3889','Europe - Fehmarnbelt outer','Fehmarnbelt area of Denmark and Germany.',54.33,54.83,10.66,12.01,0); INSERT INTO "area" VALUES('EPSG','3890','Europe - Fehmarnbelt inner','Fehmarnbelt area of Denmark and Germany.',54.42,54.76,11.17,11.51,0); INSERT INTO "area" VALUES('EPSG','3891','Canada - 60°W to 54°W and NAD27','Canada between 60°W and 54°W, onshore and offshore - Newfoundland and Labrador; Quebec.',40.57,68.93,-60.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','3892','Germany - offshore North Sea west of 4.5°E','Germany - offshore North Sea west of 4°30''E.',55.24,55.92,3.34,4.5,0); INSERT INTO "area" VALUES('EPSG','3893','UK - Wytch Farm','United Kingdom (UK) - Wytch Farm area - onshore and offshore.',50.53,50.8,-2.2,-1.68,0); INSERT INTO "area" VALUES('EPSG','3894','New Zealand - Chatham Island onshore','New Zealand - Chatham Island - onshore.',-44.18,-43.67,-176.92,-176.2,0); INSERT INTO "area" VALUES('EPSG','3895','Ukraine - west of 24°E','Ukraine - west of 24°E.',47.95,51.66,22.15,24.0,0); INSERT INTO "area" VALUES('EPSG','3896','Brazil - equatorial margin','Brazil - offshore - equatorial margin.',-5.74,7.04,-51.64,-32.43,0); INSERT INTO "area" VALUES('EPSG','3897','France - offshore Mediterranean','France - offshore Mediterranean.',41.15,43.74,3.04,10.38,0); INSERT INTO "area" VALUES('EPSG','3898','Ukraine - 24°E to 30°E','Ukraine - between 24°E and 30°E, onshore and offshore.',45.1,51.96,24.0,30.0,0); INSERT INTO "area" VALUES('EPSG','3899','Europe - South Permian basin','Europe - South Permian basin.',50.5,56.0,-1.67,22.0,0); INSERT INTO "area" VALUES('EPSG','3900','Europe - onshore - eastern - S-42(83)','Onshore Bulgaria, Czechia, Germany (former DDR), Hungary and Slovakia.',41.24,54.74,9.92,28.68,0); INSERT INTO "area" VALUES('EPSG','3901','Germany - onshore west of 6°E','Germany - onshore west of 6°E.',50.97,51.83,5.87,6.0,0); INSERT INTO "area" VALUES('EPSG','3902','Reunion','Reunion - onshore and offshore.',-24.72,-18.28,51.83,58.24,0); INSERT INTO "area" VALUES('EPSG','3903','Ukraine - 30°E to 36°E','Ukraine - between 30°E and 36°E, onshore and offshore.',43.18,52.38,30.0,36.0,0); INSERT INTO "area" VALUES('EPSG','3904','Germany - onshore between 6°E and 12°E','Germany - onshore between 6°E and 12°E.',47.27,55.09,6.0,12.0,0); INSERT INTO "area" VALUES('EPSG','3905','Ukraine - east of 36°E','Ukraine - east of 36°E, onshore and offshore.',43.43,50.44,36.0,40.18,0); INSERT INTO "area" VALUES('EPSG','3906','Ukraine - west of 22.5°E','Ukraine - west of 22°30''E.',48.24,48.98,22.15,22.5,0); INSERT INTO "area" VALUES('EPSG','3907','Ukraine - 22.5°E to 25.5°E','Ukraine - between 22°30''E and 25°30''E.',47.71,51.96,22.5,25.5,0); INSERT INTO "area" VALUES('EPSG','3908','Ukraine - 25.5°E to 28.5°E','Ukraine - between 25°30''E and 28°30''E.',45.26,51.94,25.5,28.5,0); INSERT INTO "area" VALUES('EPSG','3909','Ukraine - 28.5°E to 31.5°E','Ukraine - between 28°30''E and 31°30''E, onshore and offshore.',43.42,52.12,28.5,31.5,0); INSERT INTO "area" VALUES('EPSG','3910','Ukraine - 31.5°E to 34.5°E','Ukraine - between 31°30''E and 34°30''E, onshore and offshore.',43.18,52.38,31.5,34.5,0); INSERT INTO "area" VALUES('EPSG','3911','Reunion - east of 54ºE','Reunion - onshore and offshore - east of 54ºE.',-24.72,-18.28,54.0,58.24,0); INSERT INTO "area" VALUES('EPSG','3912','Ukraine - 34.5°E to 37.5°E','Ukraine - between 34°30''E and 37°30''E, onshore and offshore.',43.24,51.25,34.5,37.5,0); INSERT INTO "area" VALUES('EPSG','3913','Ukraine - east of 37.5°E','Ukraine - east of 37°30''E.',46.77,50.39,37.5,40.18,0); INSERT INTO "area" VALUES('EPSG','3914','World - N hemisphere - 3°E to 9°E - by country','France - offshore Mediterranean including area east of 9°E. Nigeria - offshore including area west of 3°E.',1.92,43.74,2.66,10.38,0); INSERT INTO "area" VALUES('EPSG','3915','Reunion - west of 54ºE','Reunion - offshore - west of 54ºE.',-24.37,-18.52,51.83,54.0,0); INSERT INTO "area" VALUES('EPSG','3916','French Southern Territories - Amsterdam onshore','French Southern Territories - Amsterdam Island onshore.',-37.93,-37.74,77.45,77.67,0); INSERT INTO "area" VALUES('EPSG','3917','Algeria - Ahnet licence area','Algeria - Ahnet licence area.',26.06,27.51,1.26,2.92,0); INSERT INTO "area" VALUES('EPSG','3918','French Southern Territories - Kerguelen','French Southern Territories - Kerguelen onshore and offshore.',-53.24,-45.11,62.96,75.66,0); INSERT INTO "area" VALUES('EPSG','3919','French Southern Territories - Crozet','French Southern Territories - Crozet onshore and offshore.',-49.82,-42.61,45.37,57.16,0); INSERT INTO "area" VALUES('EPSG','3920','French Southern Territories - Crozet onshore','French Southern Territories - Crozet onshore.',-46.53,-45.87,50.09,52.36,0); INSERT INTO "area" VALUES('EPSG','3921','French Southern Territories - Amsterdam & St Paul','French Southern Territories - Amsterdam & St Paul islands onshore and offshore.',-42.08,-34.47,73.24,81.83,0); INSERT INTO "area" VALUES('EPSG','3922','French Southern Territories - St Paul onshore','French Southern Territories - St Paul Island onshore.',-38.79,-38.63,77.44,77.63,0); INSERT INTO "area" VALUES('EPSG','3923','French Southern Territories - Tromelin','French Southern Territories - Tromelin onshore and offshore.',-18.69,-12.59,52.45,57.18,0); INSERT INTO "area" VALUES('EPSG','3924','French Southern Territories - Tromelin onshore','French Southern Territories - Tromelin onshore.',-15.96,-15.82,54.46,54.6,0); INSERT INTO "area" VALUES('EPSG','3925','French Southern Territories - Glorieuses','French Southern Territories - Glorieuses onshore and offshore.',-12.8,-10.65,45.76,48.49,0); INSERT INTO "area" VALUES('EPSG','3926','French Southern Territories - Glorieuses onshore','French Southern Territories - Glorieuses onshore.',-11.63,-11.5,47.22,47.36,0); INSERT INTO "area" VALUES('EPSG','3927','French Southern Territories - Juan de Nova','French Southern Territories - Juan de Nova onshore and offshore.',-19.21,-15.35,40.94,43.46,0); INSERT INTO "area" VALUES('EPSG','3928','Sudan - onshore','Sudan - onshore.',8.64,22.24,21.82,38.66,0); INSERT INTO "area" VALUES('EPSG','3929','Mozambique - west of 36°E','Mozambique - west of 36°E, onshore and offshore.',-27.58,-11.41,30.21,36.0,0); INSERT INTO "area" VALUES('EPSG','3930','French Southern Territories - Juan de Nova onshore','French Southern Territories - Juan de Nova onshore.',-17.13,-17.0,42.67,42.82,0); INSERT INTO "area" VALUES('EPSG','3931','Mozambique - 36°E to 42°E','Mozambique - between 36°E and 42°E, onshore and offshore.',-27.71,-10.09,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','3932','French Southern Territories - Bassas da India','French Southern Territories - Bassas da India onshore and offshore.',-23.21,-19.07,37.55,41.59,0); INSERT INTO "area" VALUES('EPSG','3933','French Southern Territories - Bassas da India onshore','French Southern Territories - Bassas da India onshore.',-21.58,-21.37,39.57,39.82,0); INSERT INTO "area" VALUES('EPSG','3934','French Southern Territories - Europa','French Southern Territories - Europa onshore and offshore.',-25.7,-20.91,37.98,41.82,0); INSERT INTO "area" VALUES('EPSG','3935','Mozambique - east of 42°E','Mozambique - offshore east of 42°E.',-15.83,-10.09,42.0,43.03,0); INSERT INTO "area" VALUES('EPSG','3936','French Southern Territories - Europa onshore','French Southern Territories - Europa onshore.',-22.46,-22.27,40.26,40.46,0); INSERT INTO "area" VALUES('EPSG','3937','Congo DR (Zaire) - 11°E to 13°E','The Democratic Republic of the Congo (Zaire) - west of 13°E onshore and offshore.',-6.04,-4.67,11.79,13.0,0); INSERT INTO "area" VALUES('EPSG','3938','Mauritania - 18°W to 12°W','Mauritania - 18°W to 12°W, onshore and offshore.',14.72,23.46,-18.0,-12.0,0); INSERT INTO "area" VALUES('EPSG','3939','Mauritania - 12°W to 6°W','Mauritania - between 12°W and 6°W, onshore and offshore.',14.73,27.31,-12.0,-6.0,1); INSERT INTO "area" VALUES('EPSG','3940','Mauritania - east of 6°W','Mauritania - east of 6°W, onshore and offshore.',14.73,27.31,-6.0,0.0,1); INSERT INTO "area" VALUES('EPSG','3941','Libya - east of 24°E','Libya - east of 24°E, onshore and offshore.',19.99,33.6,24.0,26.21,0); INSERT INTO "area" VALUES('EPSG','3942','South Sudan','South Sudan.',3.49,12.22,24.14,35.94,0); INSERT INTO "area" VALUES('EPSG','3943','Bahrain - onshore','Bahrain - onshore.',25.53,26.34,50.39,50.85,0); INSERT INTO "area" VALUES('EPSG','3944','China - 102°E to 108°E','China - onshore and offshore between 102°E and 108°E.',17.75,42.47,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','3945','China - 108°E to 114°E','China - onshore and offshore between 108°E and 114°E.',16.7,45.11,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','3946','China - 114°E to 120°E','China - onshore and offshore between 114°E and 120°E.',19.02,51.52,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','3947','China - 120°E to 126°E','China - onshore and offshore between 120°E and 126°E.',24.64,53.56,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','3948','China - 126°E to 132°E','China - onshore and offshore between 126°E and 132°E.',29.7,52.79,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','3949','Libya - west of 12°E','Libya - west of 12°E, onshore and offshore.',23.51,33.92,9.31,12.0,0); INSERT INTO "area" VALUES('EPSG','3950','Libya - 12°E to 18°E','Libya - between 12°E and 18°E, onshore and offshore.',22.51,35.23,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','3951','Libya - 18°E to 24°E','Libya - between 18°E and 24°E, onshore and offshore.',19.5,35.03,17.99,24.01,0); INSERT INTO "area" VALUES('EPSG','3952','Algeria - 6°W to 0°W','Algeria - between 6°W and 0°W (of Greenwich), onshore and offshore.',21.82,37.01,-6.0,0.0,0); INSERT INTO "area" VALUES('EPSG','3953','Algeria - 0°E to 6°E','Algeria - between 0°E and 6°E (of Greenwich), onshore and offshore.',18.97,38.77,0.0,6.01,0); INSERT INTO "area" VALUES('EPSG','3954','Algeria - east of 6°E','Algeria - east of 6°E (of Greenwich), onshore and offshore.',19.6,38.8,6.0,11.99,0); INSERT INTO "area" VALUES('EPSG','3955','Malaysia - West Malaysia','Malaysia - West Malaysia onshore and offshore.',1.13,7.81,98.02,105.82,0); INSERT INTO "area" VALUES('EPSG','3956','Iraq - east of 48°E','Iraq - east of 48°E, onshore and offshore.',29.6,31.0,48.0,48.75,0); INSERT INTO "area" VALUES('EPSG','3957','Japan - onshore','Japan including outlying islands - onshore.',20.37,45.54,122.83,154.05,0); INSERT INTO "area" VALUES('EPSG','3958','Philippines - zone I onshore','Philippines - onshore west of 118°E.',7.75,9.32,116.89,118.0,0); INSERT INTO "area" VALUES('EPSG','3959','Japan - 120°E to 126°E','Japan - west of 126°E, onshore and offshore.',21.1,29.71,122.38,126.0,0); INSERT INTO "area" VALUES('EPSG','3960','Japan - 126°E to 132°E','Japan - between 126°E and 132°E, onshore and offshore.',21.12,38.63,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','3961','Japan - 132°E to 138°E','Japan - between 132°E and 138°E, onshore and offshore.',17.09,43.55,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','3962','Japan - 138°E to 144°E','Japan - between 138°E and 144°E, onshore and offshore.',17.63,46.05,138.0,144.0,0); INSERT INTO "area" VALUES('EPSG','3963','Japan - 144°E to 150°E','Japan - east of 144°E, onshore and offshore.',23.03,45.65,144.0,147.86,0); INSERT INTO "area" VALUES('EPSG','3964','Philippines - zone II onshore','Philippines - onshore approximately between 118°E and 120°E - Palawan; Calamian Islands.',8.82,11.58,118.0,120.07,0); INSERT INTO "area" VALUES('EPSG','3965','Philippines - zone III onshore','Philippines - onshore approximately between 120°E and 122°E. Luzon (west of 122°E); Mindoro.',4.99,19.45,119.7,122.21,0); INSERT INTO "area" VALUES('EPSG','3966','Philippines - zone IV onshore','Philippines - onshore approximately between 122°E and 124°E - southeast Luzon (east of 122°E); Tablas; Masbate; Panay; Cebu; Negros; northwest Mindanao (west of 124°E).',6.35,18.58,121.74,124.29,0); INSERT INTO "area" VALUES('EPSG','3967','Philippines - zone V onshore','Philippines - onshore approximately between 124°E and 126°E - east Mindanao (east of 124°E); Bohol; Samar.',5.5,14.15,123.73,126.65,0); INSERT INTO "area" VALUES('EPSG','3968','Saudi Arabia - onshore Gulf coast','Saudi Arabia - onshore Arabian Gulf coastal area.',24.63,28.57,47.95,50.81,0); INSERT INTO "area" VALUES('EPSG','3969','Philippines - onshore','Philippines - onshore.',4.99,19.45,116.89,126.65,0); INSERT INTO "area" VALUES('EPSG','3970','New Zealand - nearshore west of 168°E','New Zealand - nearshore west of 168°E.',-47.65,-42.59,165.87,168.0,0); INSERT INTO "area" VALUES('EPSG','3971','New Zealand - nearshore 168°E to 174°E','New Zealand - nearshore between 168°E and 174°E.',-47.64,-33.89,168.0,174.0,0); INSERT INTO "area" VALUES('EPSG','3972','New Zealand - nearshore east of 174°E','New Zealand - nearshore east of 174°E.',-44.13,-34.24,174.0,179.27,0); INSERT INTO "area" VALUES('EPSG','3973','New Zealand - onshore','New Zealand - North Island, South Island, Stewart Island - onshore.',-47.33,-34.1,166.37,178.63,0); INSERT INTO "area" VALUES('EPSG','3974','Cocos (Keeling) Islands','Cocos (Keeling) Islands - onshore and offshore.',-15.56,-8.47,93.41,100.34,0); INSERT INTO "area" VALUES('EPSG','3975','Indonesia - east of 138°E onshore','Indonesia - onshore east of 138°E.',-9.19,-1.49,138.0,141.01,0); INSERT INTO "area" VALUES('EPSG','3976','Indonesia - west of 96°E onshore','Indonesia - onshore west of 96°E.',2.55,5.97,95.16,96.0,0); INSERT INTO "area" VALUES('EPSG','3977','Malaysia - East Malaysia','Malaysia - East Malaysia (Sabah; Sarawak), onshore and offshore.',0.85,7.67,109.31,119.61,0); INSERT INTO "area" VALUES('EPSG','3978','Indonesia - 96°E to 102°E, N hemisphere onshore','Indonesia - onshore north of equator and between 96°E and 102°E.',0.0,5.42,96.0,102.0,0); INSERT INTO "area" VALUES('EPSG','3979','Indonesia - 102°E to 108°E, N hemisphere onshore','Indonesia - onshore north of equator and between 102°E and 108°E.',0.0,4.11,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','3980','Indonesia - 108°E to 114°E, N hemisphere onshore','Indonesia - onshore north of equator and between 108°E and 114°E.',0.0,4.25,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','3981','Indonesia - 114°E to 120°E, N hemisphere onshore','Indonesia - onshore north of equator and between 114°E and 120°E.',0.0,4.37,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','3982','Taiwan - onshore - mainland','Taiwan, Republic of China - onshore - Taiwan Island.',21.87,25.34,119.99,122.06,0); INSERT INTO "area" VALUES('EPSG','3983','Indonesia - 120°E to 126°E, N hemisphere onshore','Indonesia - onshore north of equator and between 120°E and 126°E.',0.0,3.84,120.0,125.71,0); INSERT INTO "area" VALUES('EPSG','3984','Indonesia - 126°E to 132°E, N hemisphere onshore','Indonesia - onshore north of equator and between 126°E and 132°E.',0.0,4.59,126.55,131.0,0); INSERT INTO "area" VALUES('EPSG','3985','Indonesia - 96°E to 102°E, S hemisphere onshore','Indonesia - onshore south of equator and between 96°E and 102°E.',-3.57,0.0,98.24,102.0,0); INSERT INTO "area" VALUES('EPSG','3986','Indonesia - 102°E to 108°E, S hemisphere onshore','Indonesia - onshore south of equator and between 102°E and 108°E.',-7.79,0.0,102.0,108.0,0); INSERT INTO "area" VALUES('EPSG','3987','Indonesia - 108°E to 114°E, S hemisphere onshore','Indonesia - onshore south of equator and between 108°E and 114°E.',-8.67,0.0,108.0,114.0,0); INSERT INTO "area" VALUES('EPSG','3988','Indonesia - 114°E to 120°E, S hemisphere onshore','Indonesia - onshore south of equator and between 114°E and 120°E.',-10.15,0.0,114.0,120.0,0); INSERT INTO "area" VALUES('EPSG','3989','Indonesia - 120°E to 126°E, S hemisphere onshore','Indonesia - onshore south of equator and between 120°E and 126°E.',-10.98,0.0,120.0,126.0,0); INSERT INTO "area" VALUES('EPSG','3990','Indonesia - 126°E to 132°E, S hemisphere onshore','Indonesia - onshore south of equator and between 126°E and 132°E.',-8.41,0.0,126.0,132.0,0); INSERT INTO "area" VALUES('EPSG','3991','Indonesia - 132°E to 138°E, S hemisphere onshore','Indonesia - onshore south of equator and between 132°E and 138°E.',-8.49,-0.29,132.0,138.0,0); INSERT INTO "area" VALUES('EPSG','3992','New Zealand - offshore 180°W to 174°W','New Zealand - offshore between 180°W and 174°W.',-52.97,-25.88,-180.0,-174.0,0); INSERT INTO "area" VALUES('EPSG','3993','Germany - onshore 7.5°E to 10.5°E','Germany - onshore between 7°30''E and 10°30''E.',47.27,55.09,7.5,10.51,0); INSERT INTO "area" VALUES('EPSG','3994','Madagascar','Madagascar - onshore and offshore.',-28.92,-10.28,40.31,53.39,0); INSERT INTO "area" VALUES('EPSG','3995','Japan - onshore mainland and adjacent islands','Japan - onshore mainland and adjacent islands.',30.18,45.54,128.31,145.87,0); INSERT INTO "area" VALUES('EPSG','3996','Germany - onshore 10.5°E to 13.5°E','Germany - onshore between 10°30''E and 13°30''E.',47.39,54.74,10.5,13.51,0); INSERT INTO "area" VALUES('EPSG','3997','Germany - East Germany - 10.5°E to 13.5°E onshore','Germany - states of former East Germany - onshore between 10°30''E and 13°30''E.',50.2,54.74,10.5,13.51,0); INSERT INTO "area" VALUES('EPSG','3998','Germany - onshore east of 13.5°E','Germany - onshore east of 13°30''E.',48.51,54.72,13.5,15.04,0); INSERT INTO "area" VALUES('EPSG','3999','Fiji','Fiji - onshore and offshore.',-25.09,-9.78,172.76,-176.27,0); INSERT INTO "area" VALUES('EPSG','4000','Germany - onshore 10.5°E to 12°E','Germany - onshore between 10°30''E and 12°E.',47.39,54.59,10.5,12.0,0); INSERT INTO "area" VALUES('EPSG','4001','Germany - onshore 12°E to 13.5°E','Germany - onshore between 12°E and 13°30''E.',47.46,54.74,12.0,13.51,0); INSERT INTO "area" VALUES('EPSG','4002','Yemen - east of 54°E','Yemen - east of 54°E, onshore and offshore.',8.95,14.95,54.0,57.96,0); INSERT INTO "area" VALUES('EPSG','4003','Germany - East Germany - east of 13.5°E onshore','Germany - states of former East Germany - onshore east of 13°30''E.',50.62,54.72,13.5,15.04,0); INSERT INTO "area" VALUES('EPSG','4004','Australia - Northern Territory mainland','Australia - Northern Territory mainland onshore.',-26.01,-10.92,128.99,138.0,0); INSERT INTO "area" VALUES('EPSG','4005','Indonesia - Kalimantan W - coastal','Indonesia - west Kalimantan - onshore coastal area.',0.06,2.13,108.79,109.78,0); INSERT INTO "area" VALUES('EPSG','4006','Yemen - west of 42°E','Yemen - west of 42°E, onshore and offshore.',14.73,16.36,41.08,42.0,0); INSERT INTO "area" VALUES('EPSG','4007','Asia - Cambodia and Vietnam - onshore & Cuu Long basin','Cambodia - onshore; Vietnam - onshore and offshore Cuu Long basin.',7.99,23.4,102.14,110.0,0); INSERT INTO "area" VALUES('EPSG','4008','Oman - mainland east of 54°E','Oman - mainland onshore east of 54°E.',16.89,26.42,54.0,59.91,0); INSERT INTO "area" VALUES('EPSG','4009','Oman - mainland','Oman - mainland onshore.',16.59,26.42,51.99,59.91,0); INSERT INTO "area" VALUES('EPSG','4010','Solomon Islands','Solomon Islands - onshore and offshore.',-16.13,-4.14,154.58,173.58,0); INSERT INTO "area" VALUES('EPSG','4011','Tuvalu - onshore','Tuvalu - onshore.',-8.62,-6.03,176.24,179.29,0); INSERT INTO "area" VALUES('EPSG','4012','Congo DR (Zaire) - Bas Congo east of 15°E','The Democratic Republic of the Congo (Zaire) - Bas Congo east of 15°E.',-5.87,-4.42,14.99,16.28,0); INSERT INTO "area" VALUES('EPSG','4013','Papua New Guinea - PFTB','Papua New Guinea - Papuan fold and thrust belt.',-8.28,-5.59,142.24,144.75,0); INSERT INTO "area" VALUES('EPSG','4014','Australia - Western Australia mainland','Australia - Western Australia mainland.',-35.19,-13.67,112.85,129.01,0); INSERT INTO "area" VALUES('EPSG','4015','Vietnam - mainland','Vietnam - mainland onshore.',8.33,23.4,102.14,109.53,0); INSERT INTO "area" VALUES('EPSG','4016','South America - onshore north of 45°S','South America - onshore north of 45°S excluding Amazonia.',-45.0,12.52,-81.41,-34.74,0); INSERT INTO "area" VALUES('EPSG','4017','Australia - SE Australia (ACT NSW)','Australia - Australian Capital Territory and New South Wales onshore.',-37.53,-28.15,140.99,153.69,0); INSERT INTO "area" VALUES('EPSG','4018','Congo DR (Zaire) - south and 29°E to 31°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and east of 29°E.',-13.46,-12.15,29.0,29.81,0); INSERT INTO "area" VALUES('EPSG','4019','Arctic - 87°N to 75°N, 156°W to 66°W','Arctic - 87°N to 75°N, approximately 156°W to approximately 66°W. May be extended westwards or eastwards within the latitude limits.',75.0,87.01,-156.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','4020','Indonesia - onshore','Indonesia - onshore.',-10.98,5.97,95.16,141.01,0); INSERT INTO "area" VALUES('EPSG','4021','Australia - Queensland mainland','Australia - Queensland mainland onshore.',-29.19,-10.65,137.99,153.61,0); INSERT INTO "area" VALUES('EPSG','4022','UAE - Abu Dhabi and Dubai - onshore east of 54°E','United Arab Emirates (UAE) - Abu Dhabi onshore east of 54°E; Dubai onshore.',22.63,25.34,53.99,56.03,0); INSERT INTO "area" VALUES('EPSG','4023','Brazil - west of 72°W','Brazil - west of 72°W.',-10.01,-4.59,-74.01,-71.99,0); INSERT INTO "area" VALUES('EPSG','4024','Brazil - 72°W to 66°W','Brazil - between 72°W and 66°W, northern and southern hemispheres.',-11.14,2.15,-72.0,-65.99,0); INSERT INTO "area" VALUES('EPSG','4025','Angola - offshore north of 8°S','Angola - offshore north of 8°S - including blocks 0, 1, 2, 14, 15, 17, 18 north of 8°S and 32; onshore Soyo area.',-8.01,-5.05,10.41,12.84,0); INSERT INTO "area" VALUES('EPSG','4026','Brazil - 66°W to 60°W','Brazil - between 66°W and 60°W, northern and southern hemispheres.',-16.28,5.28,-66.0,-59.99,0); INSERT INTO "area" VALUES('EPSG','4027','Arctic - 87°N to 75°N, 84°W to 6°E','Arctic - 87°N to 75°N, approximately 84°W to approximately 6°E. May be extended westwards or eastwards within the latitude limits.',75.0,87.01,-84.0,6.01,0); INSERT INTO "area" VALUES('EPSG','4028','Arctic - 87°N to 75°N, 12°W to 78°E','Arctic - 87°N to 75°N, approximately 12°W to approximately 78°E. May be extended westwards or eastwards within the latitude limits.',75.0,87.01,-12.0,78.01,0); INSERT INTO "area" VALUES('EPSG','4029','Arctic - 87°N to 75°N, 60°E to 150°E','Arctic - 87°N to 75°N, approximately 60°E to approximately 150°E. May be extended westwards or eastwards within the latitude limits.',75.0,87.01,60.0,150.01,0); INSERT INTO "area" VALUES('EPSG','4030','Arctic - 84°30''N to 79°30''N, 135°W to 95°W','Arctic - between 84°30''N and 79°30''N, approximately 135°W to approximately 95°W. May be extended eastwards within the latitude limits.',79.5,84.51,-135.0,-95.0,0); INSERT INTO "area" VALUES('EPSG','4031','Arctic - 87°N to 75°N, 132°E to 138°W','Arctic - 87°N to 75°N, approximately 132°E to approximately 138°W. May be extended westwards or eastwards within the latitude limits.',75.0,87.01,132.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','4032','Arctic - 79°N to 67°N, 156°W to 66°W','Arctic - 79°N to 67°N, approximately 156°W to approximately 66°W. May be extended westwards or eastwards within the latitude limits.',67.0,79.01,-156.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','4033','Arctic - 79°N to 67°N, 84°W to 6°E','Arctic - 79°N to 67°N, approximately 84°W to approximately 6°E. May be extended westwards or eastwards within the latitude limits.',67.0,79.01,-84.0,6.01,0); INSERT INTO "area" VALUES('EPSG','4034','Arctic - 79°N to 67°N, 12°W to 78°E','Arctic - 79°N to 67°N, approximately 12°W to approximately 78°E. May be extended westwards or eastwards within the latitude limits.',67.0,79.01,-12.0,78.01,0); INSERT INTO "area" VALUES('EPSG','4035','Italy - Emilia-Romagna','Italy - Emilia-Romagna region.',43.73,45.14,9.19,12.76,0); INSERT INTO "area" VALUES('EPSG','4036','Arctic - 84°30''N to 79°30''N, 95°W to 55°W','Arctic - between 84°30''N and 79°30''N, approximately 95°W to approximately 55°W. May be extended westwards within the latitude limits.',79.5,84.51,-95.0,-55.0,0); INSERT INTO "area" VALUES('EPSG','4037','Arctic - 79°N to 67°N, 60°E to 150°E','Arctic - 79°N to 67°N, approximately 60°E to approximately 150°E. May be extended westwards or eastwards within the latitude limits.',67.0,79.01,60.0,150.01,0); INSERT INTO "area" VALUES('EPSG','4038','Arctic - 79°N to 67°N, 132°E to 138°W','Arctic - 79°N to 67°N, approximately 132°E to approximately 138°W. May be extended westwards or eastwards within the latitude limits.',67.0,79.01,132.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','4039','Arctic - 84°30''N to 79°30''N, 72°W to 32°W','Arctic - between 84°30''N and 79°30''N, approximately 72°W to approximately 32°W. May be extended eastwards within the latitude limits.',79.5,84.51,-72.0,-32.0,0); INSERT INTO "area" VALUES('EPSG','4040','Arctic - 71°N to 59°N, 156°W to 66°W','Arctic - 71°N to 59°N, approximately 156°W to approximately 66°W. May be extended westwards or eastwards within the latitude limits.',59.0,71.0,-156.0,-66.0,0); INSERT INTO "area" VALUES('EPSG','4041','Arctic - 71°N to 59°N, 84°W to 6°E','Arctic - 71°N to 59°N, approximately 84°W to approximately 6°E. May be extended westwards or eastwards within the latitude limits.',59.0,71.0,-84.0,6.0,0); INSERT INTO "area" VALUES('EPSG','4042','Arctic - 71°N to 59°N, 12°W to 78°E','Arctic - 71°N to 59°N, approximately 12°W to approximately 78°E. May be extended westwards or eastwards within the latitude limits.',59.0,71.0,-12.0,78.01,0); INSERT INTO "area" VALUES('EPSG','4043','Arctic - 71°N to 59°N, 60°E to 150°E','Arctic - 71°N to 59°N, approximately 60°E to approximately 150°E. May be extended westwards or eastwards within the latitude limits.',59.0,71.0,60.0,150.01,0); INSERT INTO "area" VALUES('EPSG','4044','Arctic - 87°50''N to 82°50''N, 180°W to 120°W','Arctic - between 87°50''N and 82°50''N, approximately 180°W to approximately 120°W. May be extended westwards or eastwards within the latitude limits.',82.83,87.84,-180.0,-120.0,0); INSERT INTO "area" VALUES('EPSG','4045','Arctic - 71°N to 59°N, 132°E to 138°W','Arctic - 71°N to 59°N, approximately 132°E to approximately 138°W. May be extended westwards or eastwards within the latitude limits.',59.0,71.0,132.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','4046','Arctic - 84°30''N to 79°30''N, 32°W to 8°E','Arctic - between 84°30''N and 79°30''N, approximately 32°W to approximately 8°E. May be extended westwards within the latitude limits.',79.5,84.51,-32.0,8.01,0); INSERT INTO "area" VALUES('EPSG','4047','Arctic - 87°50''N to 82°50''N, 120°W to 60°W','Arctic - between 87°50''N and 82°50''N, approximately 120°W to approximately 60°W. May be extended westwards or eastwards within the latitude limits.',82.83,87.84,-120.0,-60.0,0); INSERT INTO "area" VALUES('EPSG','4048','Arctic - 87°50''N to 82°50''N, 60°W to 0°E','Arctic - between 87°50''N and 82°50''N, approximately 60°W to approximately 0°E. May be extended westwards or eastwards within the latitude limits.',82.83,87.84,-60.0,0.0,0); INSERT INTO "area" VALUES('EPSG','4049','Arctic - 87°50''N to 82°50''N, 0°E to 60°E','Arctic - between 87°50''N and 82°50''N, approximately 0°E to approximately 60°E. May be extended westwards or eastwards within the latitude limits.',82.83,87.84,0.0,60.01,0); INSERT INTO "area" VALUES('EPSG','4050','Arctic - 87°50''N to 82°50''N, 60°E to 120°E','Arctic - between 87°50''N and 82°50''N, approximately 60°E to approximately 120°E. May be extended westwards or eastwards within the latitude limits.',82.83,87.84,60.0,120.01,0); INSERT INTO "area" VALUES('EPSG','4051','Arctic - 87°50''N to 82°50''N, 120°E to 180°E','Arctic - between 87°50''N and 82°50''N, approximately 120°E to approximately 180°E. May be extended westwards or eastwards within the latitude limits.',82.83,87.83,120.0,180.0,0); INSERT INTO "area" VALUES('EPSG','4052','Arctic - 84°30''N to 79°30''N, 174°W to 135°W','Arctic - between 84°30''N and 79°30''N, approximately 174°W to approximately 135°W. May be extended westwards or eastwards within the latitude limits.',79.5,84.51,-174.0,-134.99,0); INSERT INTO "area" VALUES('EPSG','4053','Arctic - 84°30''N to 79°30''N, 4°W to 36°E','Arctic - between 84°30''N and 79°30''N, approximately 4°W to approximately 36°E.',79.5,84.51,-4.0,36.01,0); INSERT INTO "area" VALUES('EPSG','4054','Arctic - 84°30''N to 79°30''N, 33°E to 73°E','Arctic - between 84°30''N and 79°30''N, approximately 33°E to approximately 73°E. May be extended westwards or eastwards within the latitude limits.',79.5,84.51,33.0,73.01,0); INSERT INTO "area" VALUES('EPSG','4055','Arctic - 84°30''N to 79°30''N, 73°E to 113°E','Arctic - between 84°30''N and 79°30''N, approximately 73°E to approximately 113°E. May be extended westwards or eastwards within the latitude limits.',79.5,84.51,73.0,113.01,0); INSERT INTO "area" VALUES('EPSG','4056','Arctic - 84°30''N to 79°30''N, 113°E to 153°E','Arctic - between 84°30''N and 79°30''N, approximately 113°E to approximately 153°E. May be extended westwards or eastwards within the latitude limits.',79.5,84.51,113.0,153.01,0); INSERT INTO "area" VALUES('EPSG','4057','Arctic - 84°30''N to 79°30''N, 146°E to 174°W','Arctic - between 84°30''N and 79°30''N, approximately 146°E to approximately 174°W. May be extended westwards or eastwards within the latitude limits.',79.5,84.51,146.0,-173.99,0); INSERT INTO "area" VALUES('EPSG','4058','Arctic - 81°10''N to 76°10''N, 4°W to 38°E','Arctic (Norway (Svalbard) onshore and offshore) - between 81°10''N and 76°10''N.',76.16,81.17,-3.7,38.45,0); INSERT INTO "area" VALUES('EPSG','4059','Arctic - 81°10''N to 76°10''N, 35°E to 67°E','Arctic (Russia onshore and offshore) - between 81°10''N and 76°10''N, approximately 35°E to approximately 67°E. May be extended eastwards within the latitude limits.',76.16,81.17,34.71,67.01,0); INSERT INTO "area" VALUES('EPSG','4060','Arctic - 81°10''N to 76°10''N, 67°E to 98°E','Arctic (Russia onshore and offshore) - between 81°10''N and 76°10''N, approximately 67°E to approximately 98°E. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,67.0,98.01,0); INSERT INTO "area" VALUES('EPSG','4061','Arctic - 81°10''N to 76°10''N, 98°E to 129°E','Arctic (Russia onshore and offshore) - between 81°10''N and 76°10''N, approximately 98°E to approximately 129°E. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,98.0,129.01,0); INSERT INTO "area" VALUES('EPSG','4062','Arctic - 81°10''N to 76°10''N, 129°E to 160°E','Arctic (Russia onshore and offshore) - between 81°10''N and 76°10''N, approximately 129°E to approximately 160°E. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,129.0,160.01,0); INSERT INTO "area" VALUES('EPSG','4063','Arctic - 81°10''N to 76°10''N, 160°E to 169°W','Arctic - between 81°10''N and 76°10''N, approximately 160°E to approximately 169°W. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,160.0,-168.99,0); INSERT INTO "area" VALUES('EPSG','4064','Arctic - 81°10''N to 76°10''N, 169°W to 138°W','Arctic - between 81°10''N and 76°10''N, approximately 169°W to approximately 138°W. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,-169.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','4065','Arctic - 81°10''N to 76°10''N, 144°W to 114°W','Arctic - between 81°10''N and 76°10''N, approximately 144°W to approximately 114°W. May be extended eastwards within the latitude limits.',76.16,81.17,-144.0,-114.0,0); INSERT INTO "area" VALUES('EPSG','4066','Norway - onshore - 6°E to 12°E','Norway - onshore - between 6°E and 12°E.',57.93,65.76,6.0,12.0,0); INSERT INTO "area" VALUES('EPSG','4067','Norway - onshore - 12°E to 18°E','Norway - onshore - between 12°E and 18°E.',59.88,69.68,12.0,18.01,0); INSERT INTO "area" VALUES('EPSG','4068','Norway - onshore - 18°E to 24°E','Norway - onshore - between 18°E and 24°E.',68.04,71.08,18.0,24.01,0); INSERT INTO "area" VALUES('EPSG','4069','Norway - onshore - 24°E to 30°E','Norway - onshore - between 24°E and 30°E.',68.58,71.21,24.0,30.0,0); INSERT INTO "area" VALUES('EPSG','4070','Arctic - 81°10''N to 76°10''N, 114°W to 84°W','Arctic - between 81°10''N and 76°10''N, approximately 114°W to approximately 84°W. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,-114.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','4071','Arctic - 81°10''N to 76°10''N, 84°W to 54°W','Arctic - between 81°10''N and 76°10''N, approximately 84°W to approximately 54°W. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,-84.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','4072','Arctic - 81°10''N to 76°10''N, Canada east of 84°W','Arctic - between 81°10''N and 76°10''N, Canada east of approximately 84°W. May be extended westwards within the latitude limits.',76.16,81.17,-84.0,-64.78,0); INSERT INTO "area" VALUES('EPSG','4073','Arctic - 81°10''N to 76°10''N, Greenland west of 54°W','Arctic - between 81°10''N and 76°10''N, Greenland west of approximately 54°W. May be extended eastwards within the latitude limits.',76.16,81.17,-75.0,-54.0,0); INSERT INTO "area" VALUES('EPSG','4074','Arctic - 81°10''N to 76°10''N, 54°W to 24°W','Arctic - between 81°10''N and 76°10''N, approximately 54°W to approximately 24°W. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,-54.0,-24.0,0); INSERT INTO "area" VALUES('EPSG','4075','Arctic - 81°10''N to 76°10''N, 24°W to 3°E','Arctic - between 81°10''N and 76°10''N, approximately 24°W to approximately 2°E. May be extended westwards within the latitude limits.',76.16,81.17,-24.0,1.9,0); INSERT INTO "area" VALUES('EPSG','4076','Arctic - 77°50''N to 72°50''N, 169°W to 141°W','Arctic - between 77°50''N and 72°50''N, approximately 169°W to approximately 141°W. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,-169.0,-141.0,0); INSERT INTO "area" VALUES('EPSG','4077','Arctic - 77°50''N to 72°50''N, 141°W to 116°W','Arctic - between 77°50''N and 72°50''N, approximately 141°W to approximately 116°W. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,-141.0,-116.0,0); INSERT INTO "area" VALUES('EPSG','4078','Arctic - 77°50''N to 72°50''N, 116°W to 91°W','Arctic - between 77°50''N and 72°50''N, approximately 116°W to approximately 91°W. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,-116.0,-91.0,0); INSERT INTO "area" VALUES('EPSG','4079','Arctic - 77°50''N to 72°50''N, 91°W to 67°W','Arctic - between 77°50''N and 72°50''N, approximately 91°W to approximately 67°W. May be extended westwards within the latitude limits.',72.83,77.84,-91.0,-67.0,0); INSERT INTO "area" VALUES('EPSG','4080','Arctic - 77°50''N to 72°50''N, 76°W to 51°W','Arctic - between 77°50''N and 72°50''N, approximately 76°W to approximately 51°W. May be extended eastwards within the latitude limits.',72.83,77.84,-76.0,-51.0,0); INSERT INTO "area" VALUES('EPSG','4081','Arctic - 77°50''N to 72°50''N, 51°W to 26°W','Arctic - between 77°50''N and 72°50''N, approximately 51°W to approximately 26°W. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,-51.0,-26.0,0); INSERT INTO "area" VALUES('EPSG','4082','Arctic - 77°50''N to 72°50''N, 26°W to 2°W','Arctic - between 77°50''N and 72°50''N, approximately 26°W to approximately 2°W. May be extended westwards within the latitude limits.',72.83,77.84,-26.0,-2.0,0); INSERT INTO "area" VALUES('EPSG','4083','Arctic - 77°50''N to 72°50''N, 2°W to 22°E','Arctic - between 77°50''N and 72°50''N, approximately 2°W to approximately 22°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,-2.0,22.01,0); INSERT INTO "area" VALUES('EPSG','4084','Arctic - 77°50''N to 72°50''N, 22°E to 46°E','Arctic - between 77°50''N and 72°50''N, approximately 22°E to approximately 46°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,22.0,46.01,0); INSERT INTO "area" VALUES('EPSG','4085','Arctic - 77°50''N to 72°50''N, 46°E to 70°E','Arctic - between 77°50''N and 72°50''N, approximately 46°E to approximately 70°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,46.0,70.01,0); INSERT INTO "area" VALUES('EPSG','4086','Arctic - 77°50''N to 72°50''N, 70°E to 94°E','Arctic - between 77°50''N and 72°50''N, approximately 70°E to approximately 94°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,70.0,94.01,0); INSERT INTO "area" VALUES('EPSG','4087','Arctic - 77°50''N to 72°50''N, 94°E to 118°E','Arctic - between 77°50''N and 72°50''N, approximately 94°E to approximately 118°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,94.0,118.01,0); INSERT INTO "area" VALUES('EPSG','4088','Arctic - 77°50''N to 72°50''N, 118°E to 142°E','Arctic - between 77°50''N and 72°50''N, approximately 118°E to approximately 142°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,118.0,142.01,0); INSERT INTO "area" VALUES('EPSG','4089','Arctic - 77°50''N to 72°50''N, 142°E to 166°E','Arctic - between 77°50''N and 72°50''N, approximately 142°E to approximately 166°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,142.0,166.01,0); INSERT INTO "area" VALUES('EPSG','4090','Arctic - 77°50''N to 72°50''N, 166°E to 169°W','Arctic - between 77°50''N and 72°50''N, approximately 166°E to approximately 169°W. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,166.0,-168.99,0); INSERT INTO "area" VALUES('EPSG','4091','Arctic - 74°30''N to 69°30''N, 4°E to 24°E','Arctic - between 74°30''N and 69°30''N, approximately 4°E to approximately 24°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,4.0,24.01,0); INSERT INTO "area" VALUES('EPSG','4092','Arctic - 74°30''N to 69°30''N, 24°E to 44°E','Arctic - between 74°30''N and 69°30''N, approximately 24°E to approximately 44°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,24.0,44.01,0); INSERT INTO "area" VALUES('EPSG','4093','Arctic - 74°30''N to 69°30''N, 44°E to 64°E','Arctic - between 74°30''N and 69°30''N, approximately 44°E to approximately 64°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,44.0,64.01,0); INSERT INTO "area" VALUES('EPSG','4094','Arctic - 74°30''N to 69°30''N, 64°E to 85°E','Arctic - between 74°30''N and 69°30''N, approximately 64°E to approximately 85°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,64.0,85.01,0); INSERT INTO "area" VALUES('EPSG','4095','Arctic - 74°30''N to 69°30''N, 85°E to 106°E','Arctic - between 74°30''N and 69°30''N, approximately 85°E to approximately 106°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,85.0,106.01,0); INSERT INTO "area" VALUES('EPSG','4096','Arctic - 74°30''N to 69°30''N, 106°E to 127°E','Arctic - between 74°30''N and 69°30''N, approximately 106°E to approximately 127°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,106.0,127.01,0); INSERT INTO "area" VALUES('EPSG','4097','Arctic - 74°30''N to 69°30''N, 127°E to 148°E','Arctic - between 74°30''N and 69°30''N, approximately 127°E to approximately 148°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,127.0,148.0,0); INSERT INTO "area" VALUES('EPSG','4098','Arctic - 74°30''N to 69°30''N, 148°E to 169°E','Arctic - between 74°30''N and 69°30''N, approximately 148°E to approximately 169°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,148.0,169.01,0); INSERT INTO "area" VALUES('EPSG','4099','Arctic - 74°30''N to 69°30''N, 169°E to 169°W','Arctic - between 74°30''N and 69°30''N, approximately 169°E to approximately 169°W. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,169.0,-169.0,0); INSERT INTO "area" VALUES('EPSG','4100','Arctic - 74°30''N to 69°30''N, 173°W to 153°W','Arctic - between 74°30''N and 69°30''N, approximately 173°W to approximately 153°W. May be extended eastwards within the latitude limits.',69.5,74.51,-173.0,-153.0,0); INSERT INTO "area" VALUES('EPSG','4101','Arctic - 74°30''N to 69°30''N, 157°W to 137°W','Arctic - between 74°30''N and 69°30''N, approximately 157°W to approximately 137°W. May be extended westwards within the latitude limits.',69.5,74.51,-157.0,-137.0,0); INSERT INTO "area" VALUES('EPSG','4102','Arctic - 74°30''N to 69°30''N, 141°W to 121°W','Arctic - between 74°30''N and 69°30''N, approximately 141°W to approximately 121°W. May be extended eastwards within the latitude limits.',69.5,74.51,-141.0,-121.0,0); INSERT INTO "area" VALUES('EPSG','4103','Arctic - 74°30''N to 69°30''N, 121°W to 101°W','Arctic - between 74°30''N and 69°30''N, approximately 121°W to approximately 101°W. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,-121.0,-101.0,0); INSERT INTO "area" VALUES('EPSG','4104','Arctic - 74°30''N to 69°30''N, 101°W to 81°W','Arctic - between 74°30''N and 69°30''N, approximately 101°W to approximately 81°W. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,-101.0,-81.0,0); INSERT INTO "area" VALUES('EPSG','4105','Arctic - 74°30''N to 69°30''N, 81°W to 61°W','Arctic - between 74°30''N and 69°30''N, approximately 81°W to approximately 61°W. May be extended westwards within the latitude limits.',69.5,74.51,-81.0,-61.0,0); INSERT INTO "area" VALUES('EPSG','4106','Arctic - 74°30''N to 69°30''N, 72°W to 52°W','Arctic - between 74°30''N and 69°30''N, approximately 72°W to approximately 52°W. May be extended eastwards within the latitude limits.',69.48,74.51,-71.89,-51.99,0); INSERT INTO "area" VALUES('EPSG','4107','Arctic - 74°30''N to 69°30''N, 52°W to 32°W','Arctic - between 74°30''N and 69°30''N, approximately 52°W to approximately 32°W. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,-52.0,-32.0,0); INSERT INTO "area" VALUES('EPSG','4108','Arctic - 74°30''N to 69°30''N, 32°W to 12°W','Arctic - between 74°30''N and 69°30''N, approximately 32°W to approximately 12°W. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,-32.0,-12.0,0); INSERT INTO "area" VALUES('EPSG','4109','Arctic - 74°30''N to 69°30''N, 15°W to 5°E','Arctic - between 74°30''N and 69°30''N, approximately 15°W to approximately 5°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,-15.0,5.01,0); INSERT INTO "area" VALUES('EPSG','4110','Arctic - 71°10''N to 66°10''N, 174°W to 156°W','Arctic - between 71°10''N and 66°10''N, approximately 174°W to approximately 156°W. May be extended eastwards within the latitude limits.',66.16,71.17,-174.0,-156.0,0); INSERT INTO "area" VALUES('EPSG','4111','Arctic - 71°10''N to 66°10''N, 156°W to 138°W','Arctic - between 71°10''N and 66°10''N, approximately 156°W to approximately 138°W. May be extended westwards within the latitude limits.',66.16,71.17,-156.0,-138.0,0); INSERT INTO "area" VALUES('EPSG','4112','Arctic - 71°10''N to 66°10''N, 141°W to 122°W','Arctic - between 71°10''N and 66°10''N, approximately 141°W to approximately 122°W. May be extended eastwards within the latitude limits.',66.16,71.17,-141.0,-122.0,0); INSERT INTO "area" VALUES('EPSG','4113','Arctic - 71°10''N to 66°10''N, 122°W to 103°W','Arctic - between 71°10''N and 66°10''N, approximately 122°W to approximately 103°W. May be extended westwards or eastwards within the latitude limits.',66.16,71.17,-122.0,-103.0,0); INSERT INTO "area" VALUES('EPSG','4114','Arctic - 71°10''N to 66°10''N, 103°W to 84°W','Arctic - between 71°10''N and 66°10''N, approximately 103°W to approximately 84°W. May be extended westwards or eastwards within the latitude limits.',66.16,71.17,-103.0,-84.0,0); INSERT INTO "area" VALUES('EPSG','4115','Arctic - 71°10''N to 66°10''N, 84°W to 65°W','Arctic - between 71°10''N and 66°10''N, approximately 84°W to approximately 65°W. May be extended westwards or eastwards within the latitude limits.',66.16,71.17,-84.0,-65.0,0); INSERT INTO "area" VALUES('EPSG','4116','Arctic - 71°10''N to 66°10''N, 65°W to 47°W','Arctic - between 71°10''N and 66°10''N, approximately 65°W to approximately 47°W. May be extended westwards or eastwards within the latitude limits.',66.16,71.17,-65.0,-47.0,0); INSERT INTO "area" VALUES('EPSG','4117','Arctic - 71°10''N to 66°10''N, 47°W to 29°W','Arctic - between 71°10''N and 66°10''N, approximately 47°W to approximately 29°W. May be extended westwards or eastwards within the latitude limits.',66.16,71.17,-47.0,-29.0,0); INSERT INTO "area" VALUES('EPSG','4118','Arctic - 71°10''N to 66°10''N, 29°W to 11°W','Arctic - between 71°10''N and 66°10''N, approximately 29°W to approximately 11°W. May be extended westwards within the latitude limits.',66.16,71.17,-29.0,-11.0,0); INSERT INTO "area" VALUES('EPSG','4119','Arctic - 67°50''N to 62°50''N, 59°W to 42°W','Arctic - between 67°50''N and 62°50''N, approximately 59°W to approximately 42°W. May be extended eastwards within the latitude limits.',62.83,67.84,-59.0,-42.0,0); INSERT INTO "area" VALUES('EPSG','4120','Arctic - 67°50''N to 62°50''N, 42°W to 25°W','Arctic - between 67°50''N and 62°50''N, approximately 42°W to approximately 25°W. May be extended westwards within the latitude limits.',62.83,67.84,-42.0,-25.0,0); INSERT INTO "area" VALUES('EPSG','4121','Cayman Islands - Little Cayman','Cayman Islands - Little Cayman.',19.63,19.74,-80.14,-79.93,0); INSERT INTO "area" VALUES('EPSG','4122','Colombia - Arauca city','Colombia - Arauca city.',7.05,7.1,-70.78,-70.71,0); INSERT INTO "area" VALUES('EPSG','4123','Arctic - 64°30''N to 59°30''N, 59°W to 44°W','Arctic - between 64°30''N and 59°30''N, approximately 59°W to approximately 44°W. May be extended eastwards within the latitude limits.',59.5,64.51,-59.0,-44.0,0); INSERT INTO "area" VALUES('EPSG','4124','Arctic - 64°30''N to 59°30''N, 44°W to 29°W','Arctic - between 64°30''N and 59°30''N, approximately 44°W to approximately 29°W. May be extended westwards within the latitude limits.',59.5,64.51,-44.0,-29.0,0); INSERT INTO "area" VALUES('EPSG','4125','Portugal - Madeira and Desertas islands onshore','Portugal - Madeira and Desertas islands - onshore.',32.35,32.93,-17.31,-16.4,0); INSERT INTO "area" VALUES('EPSG','4126','Portugal - Azores E onshore - Santa Maria and Formigas','Portugal - eastern Azores onshore - Santa Maria, Formigas.',36.87,37.34,-25.26,-24.72,0); INSERT INTO "area" VALUES('EPSG','4127','Nigeria - OML 124','Nigeria - onshore - block OML 124 (formerly OPL 118).',5.56,5.74,6.72,6.97,0); INSERT INTO "area" VALUES('EPSG','4128','Colombia - Santa Marta city','Colombia - Santa Marta city.',11.16,11.3,-74.24,-74.13,0); INSERT INTO "area" VALUES('EPSG','4129','Brazil - 48°W to 42°W and north of 0°N','Brazil - offshore between 48°W and 42°W, northern hemisphere.',0.0,5.13,-48.0,-41.99,0); INSERT INTO "area" VALUES('EPSG','4130','Colombia - Sucre city','Colombia - Sucre city.',8.79,8.83,-74.74,-74.69,0); INSERT INTO "area" VALUES('EPSG','4131','Colombia - Tunja city','Colombia - Tunja city.',5.5,5.61,-73.39,-73.3,0); INSERT INTO "area" VALUES('EPSG','4132','Colombia - Armenia city','Colombia - Armenia city.',4.5,4.55,-75.73,-75.65,0); INSERT INTO "area" VALUES('EPSG','4133','Brazil - 42°W to 36°W and north of 0°N','Brazil - offshore between 42°W and 36°W, northern hemisphere.',0.0,0.74,-42.0,-38.22,0); INSERT INTO "area" VALUES('EPSG','4134','Colombia - Barranquilla city','Colombia - Barranquilla city.',10.85,11.06,-74.87,-74.75,0); INSERT INTO "area" VALUES('EPSG','4135','Colombia - Bogota city','Colombia - Bogota DC city.',4.45,4.85,-74.27,-73.98,0); INSERT INTO "area" VALUES('EPSG','4136','Colombia - Bucaramanga city','Colombia - Bucaramanga city.',7.03,7.17,-73.19,-73.06,0); INSERT INTO "area" VALUES('EPSG','4137','Colombia - Cali city','Colombia - Cali city.',3.32,3.56,-76.61,-76.42,0); INSERT INTO "area" VALUES('EPSG','4138','Colombia - Cartagena city','Colombia - Cartagena city.',10.27,10.47,-75.57,-75.42,0); INSERT INTO "area" VALUES('EPSG','4139','Colombia - Cucuta city','Colombia - Cucuta city.',7.81,7.97,-72.56,-72.46,0); INSERT INTO "area" VALUES('EPSG','4140','Colombia - Florencia city','Colombia - Florencia city.',1.57,1.65,-75.63,-75.59,0); INSERT INTO "area" VALUES('EPSG','4141','Colombia - Ibague city','Colombia - Ibague city.',4.39,4.47,-75.27,-75.11,0); INSERT INTO "area" VALUES('EPSG','4142','Colombia - Inirida city','Colombia - Inirida city.',3.8,3.9,-67.94,-67.88,0); INSERT INTO "area" VALUES('EPSG','4143','Colombia - Leticia city','Colombia - Leticia city.',-4.23,-4.17,-69.98,-69.92,0); INSERT INTO "area" VALUES('EPSG','4144','Colombia - Manizales city','Colombia - Manizales city.',5.02,5.11,-75.54,-75.44,0); INSERT INTO "area" VALUES('EPSG','4145','Colombia - Medellin city','Colombia - Medellin city.',6.12,6.37,-75.66,-75.5,0); INSERT INTO "area" VALUES('EPSG','4146','Colombia - Mitu city','Colombia - Mitu city.',1.23,1.29,-70.25,-70.21,0); INSERT INTO "area" VALUES('EPSG','4147','Colombia - Mocoa city','Colombia - Mocoa city.',1.12,1.18,-76.66,-76.63,0); INSERT INTO "area" VALUES('EPSG','4148','Colombia - Monteria city','Colombia - Monteria city.',8.7,8.81,-75.94,-75.82,0); INSERT INTO "area" VALUES('EPSG','4149','Colombia - Neiva city','Colombia - Neiva city.',2.87,2.99,-75.32,-75.23,0); INSERT INTO "area" VALUES('EPSG','4150','Colombia - Pasto city','Colombia - Pasto city.',1.16,1.26,-77.32,-77.23,0); INSERT INTO "area" VALUES('EPSG','4151','Colombia - Pereira city','Colombia - Pereira city.',4.78,4.87,-75.77,-75.64,0); INSERT INTO "area" VALUES('EPSG','4152','Colombia - Popayan city','Colombia - Popayan city.',2.41,2.49,-76.65,-76.55,0); INSERT INTO "area" VALUES('EPSG','4153','Colombia - Puerto Carreno city','Colombia - Puerto Carreno city.',5.98,6.3,-67.7,-67.41,0); INSERT INTO "area" VALUES('EPSG','4154','Colombia - Quibdo city','Colombia - Quibdo city.',5.66,5.72,-76.67,-76.63,0); INSERT INTO "area" VALUES('EPSG','4155','Colombia - Riohacha city','Colombia - Riohacha city.',11.42,11.58,-72.96,-72.84,0); INSERT INTO "area" VALUES('EPSG','4156','Colombia - San Andres city','Colombia - San Andres city.',12.43,12.65,-81.82,-81.6,0); INSERT INTO "area" VALUES('EPSG','4157','Colombia - San Jose del Guaviare city','Colombia - San Jose del Guaviare city.',2.54,2.61,-72.66,-72.6,0); INSERT INTO "area" VALUES('EPSG','4158','Colombia - Valledupar city','Colombia - Valledupar city.',10.39,10.51,-73.3,-73.19,0); INSERT INTO "area" VALUES('EPSG','4159','Colombia - Villavicencio city','Colombia - Villavicencio city.',4.07,4.21,-73.69,-73.56,0); INSERT INTO "area" VALUES('EPSG','4160','Colombia - Yopal city','Colombia - Yopal city.',5.3,5.37,-72.43,-72.35,0); INSERT INTO "area" VALUES('EPSG','4161','North America - Mexico and USA - onshore','Mexico - onshore. United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',14.51,71.4,172.42,-66.91,0); INSERT INTO "area" VALUES('EPSG','4162','Pacific - US interests Pacific plate','American Samoa, Marshall Islands, United States (USA) - Hawaii, United States minor outlying islands; onshore and offshore.',-17.56,31.8,157.47,-151.27,0); INSERT INTO "area" VALUES('EPSG','4163','Japan excluding northern main province','Japan - onshore and offshore, excluding northern prefectures of ''main province'' (see remarks).',17.09,46.05,122.38,157.65,0); INSERT INTO "area" VALUES('EPSG','4164','USA - Iowa - Spencer','United States (USA) - Iowa - counties of Clay; Dickinson; Emmet; Kossuth; Lyon; O''Brien; Osceola; Palo Alto; Sioux.',42.9,43.51,-96.6,-93.97,0); INSERT INTO "area" VALUES('EPSG','4165','Japan - onshore mainland excluding eastern main province','Japan - onshore mainland - Hokkaido, Honshu (western part only, see remarks), Shikoku, Kyushu.',30.94,45.54,129.3,145.87,0); INSERT INTO "area" VALUES('EPSG','4166','Japan - onshore - Honshu, Shikoku, Kyushu','Japan - onshore mainland - Honshu, Shikoku, Kyushu.',30.94,41.58,129.3,142.14,0); INSERT INTO "area" VALUES('EPSG','4167','Pacific - US interests Mariana plate','Guam, Northern Mariana Islands and Palau; onshore and offshore.',1.64,23.9,129.48,149.55,0); INSERT INTO "area" VALUES('EPSG','4168','Japan - onshore - Hokkaido','Japan - onshore mainland - Hokkaido.',41.34,45.54,139.7,145.87,0); INSERT INTO "area" VALUES('EPSG','4169','Christmas Island - onshore','Christmas Island - onshore.',-10.63,-10.36,105.48,105.77,0); INSERT INTO "area" VALUES('EPSG','4170','Japan - northern Honshu','Japan - northern Honshu prefectures affected by 2011 Tohoku earthquake: Aomori, Iwate, Miyagi, Akita, Yamaguta, Fukushima, Ibaraki, Tochigi, Gumma, Saitama, Chiba, Tokyo, Kanagawa, Niigata, Toyama, Ishikawa, Fukui, Yamanashi, Nagano, Gifu.',34.84,41.58,135.42,142.14,0); INSERT INTO "area" VALUES('EPSG','4171','Northern Mariana Islands - Rota, Saipan and Tinian','Northern Mariana Islands - onshore - Rota, Saipan and Tinian.',14.06,15.35,145.06,145.89,0); INSERT INTO "area" VALUES('EPSG','4172','Falkland Islands - offshore 63°W to 57°W','Falkland Islands (Malvinas) - offshore - between 63°W and 57°W.',-56.25,-47.68,-63.01,-56.99,0); INSERT INTO "area" VALUES('EPSG','4173','Heard Island and McDonald Islands - west of 66°E','Heard Island and McDonald Islands - offshore west of 66°E.',-57.5,-53.43,62.92,66.0,0); INSERT INTO "area" VALUES('EPSG','4174','Australia','Australia - onshore and offshore. Includes Lord Howe Island, Macquarie Islands, Ashmore and Cartier Islands.',-60.56,-8.88,105.8,164.7,0); INSERT INTO "area" VALUES('EPSG','4175','Australasia - Australia and Norfolk Island - 162°E to 168°E','Australia - offshore east of 162°E. Norfolk Island - onshore and offshore west of 168°E.',-59.39,-25.94,162.0,168.0,0); INSERT INTO "area" VALUES('EPSG','4176','Australasia - Australia and Christmas Island - 108°E to 114°E','Australia - onshore and offshore west of 114°E. Christmas Island - offshore east of 108°E.',-37.84,-10.72,108.0,114.01,0); INSERT INTO "area" VALUES('EPSG','4177','Australia - GDA','Australia including Lord Howe Island, Macquarie Islands, Ashmore and Cartier Islands, Christmas Island, Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.',-60.56,-8.47,93.41,173.35,0); INSERT INTO "area" VALUES('EPSG','4178','Australia - 114°E to 120°E','Australia - onshore and offshore between 114°E and 120°E.',-38.53,-12.06,114.0,120.01,0); INSERT INTO "area" VALUES('EPSG','4179','Norfolk Island - east of 168°E','Norfolk Island - offshore east of 168°E.',-32.48,-25.61,168.0,173.35,0); INSERT INTO "area" VALUES('EPSG','4180','USA - Oregon - Baker City','United States (USA) - Oregon - Baker City area.',44.6,45.19,-118.15,-117.37,0); INSERT INTO "area" VALUES('EPSG','4181','Heard Island and McDonald Islands - 66°E to 72°E','Heard Island and McDonald Islands - offshore 66°E to 72°E.',-58.96,-51.18,66.0,72.01,0); INSERT INTO "area" VALUES('EPSG','4182','USA - Oregon - Bend-Burns','United States (USA) - Oregon - Bend-Burns area.',43.34,44.28,-120.95,-118.8,0); INSERT INTO "area" VALUES('EPSG','4183','Seychelles - Seychelles Bank','Seychelles - Mahe, Silhouette, North, Aride Island, Praslin, La Digue and Frigate islands including adjacent smaller granitic islands on the Seychelles Bank, Bird Island and Denis Island.',-4.86,-3.66,55.15,56.01,0); INSERT INTO "area" VALUES('EPSG','4184','Heard Island and McDonald Islands - 72°E to 78°E','Heard Island and McDonald Islands - onshore and offshore 72°E to 78°E.',-59.02,-49.5,72.0,78.01,0); INSERT INTO "area" VALUES('EPSG','4185','Heard Island and McDonald Islands - east of 78°E','Heard Island and McDonald Islands - offshore east of 78°E.',-58.47,-50.65,78.0,83.57,0); INSERT INTO "area" VALUES('EPSG','4186','Italy - 12°E to 18°E','Italy - onshore and offshore - between 12°E and 18°E including San Marino and Vatican City State.',34.79,47.1,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','4187','Italy - east of 18°E','Italy - onshore and offshore - east of 18°E.',34.76,41.64,17.99,18.99,0); INSERT INTO "area" VALUES('EPSG','4188','Spain and Gibraltar - onshore','Gibraltar - onshore; Spain - mainland onshore.',35.95,43.82,-9.37,3.39,0); INSERT INTO "area" VALUES('EPSG','4189','Cocos (Keeling) Islands - west of 96°E','Cocos (Keeling) Islands - offshore west of 96°E.',-15.46,-8.57,93.41,96.01,0); INSERT INTO "area" VALUES('EPSG','4190','Cocos (Keeling) Islands - east of 96°E','Cocos (Keeling) Islands - onshore and offshore east of 96°E.',-15.56,-8.47,96.0,100.34,0); INSERT INTO "area" VALUES('EPSG','4191','Australasia - Australia and Christmas Island - west of 108°E','Australia - offshore west of 108°E. Christmas Island - onshore and offshore west of 108°E.',-34.68,-8.87,102.14,108.01,0); INSERT INTO "area" VALUES('EPSG','4192','USA - Oregon - Bend-Klamath Falls','United States (USA) - Oregon - Bend-Klamath Falls area.',41.88,43.89,-122.45,-120.77,0); INSERT INTO "area" VALUES('EPSG','4193','Vietnam - west of 103°30''E onshore','Vietnam - onshore west of 103°30''E.',9.2,22.82,102.14,103.51,0); INSERT INTO "area" VALUES('EPSG','4194','Japan onshore excluding northern main province','Japan - onshore, excluding northern prefectures of ''main province'' (see remarks).',20.37,45.54,122.83,154.05,0); INSERT INTO "area" VALUES('EPSG','4195','USA - Oregon - Bend-Redmond-Prineville','United States (USA) - Oregon - Bend-Redmond-Prineville area.',43.76,44.98,-121.88,-119.79,0); INSERT INTO "area" VALUES('EPSG','4196','Australia and Macquarie - 156°E to 162°E','Australia including Lord Howe Island and Macquarie Islands - onshore and offshore between 156°E and 162°E.',-60.56,-14.08,156.0,162.01,0); INSERT INTO "area" VALUES('EPSG','4197','USA - Oregon - Eugene','United States (USA) - Oregon - Eugene area.',43.74,44.71,-123.8,-122.18,0); INSERT INTO "area" VALUES('EPSG','4198','USA - Oregon - Grants Pass-Ashland','United States (USA) - Oregon - Grants Pass-Ashland area.',41.88,42.85,-123.95,-122.37,0); INSERT INTO "area" VALUES('EPSG','4199','USA - Oregon - Canyonville-Grants Pass','United States (USA) - Oregon - Canyonville-Grants Pass area.',42.49,43.24,-123.83,-122.43,0); INSERT INTO "area" VALUES('EPSG','4200','USA - Oregon - Columbia River East','United States (USA) - Oregon - Columbia River area between approximately 122°03''W and 118°53''W.',45.49,46.08,-122.05,-118.89,0); INSERT INTO "area" VALUES('EPSG','4201','USA - Oregon - Gresham-Warm Springs','United States (USA) - Oregon - Gresham-Warm Springs area.',45.02,45.55,-122.43,-121.68,0); INSERT INTO "area" VALUES('EPSG','4202','USA - Oregon - Columbia River West','United States (USA) - Oregon - Columbia River area west of approximately 121°30''W.',45.17,46.56,-124.33,-121.47,0); INSERT INTO "area" VALUES('EPSG','4203','USA - Oregon - Cottage Grove-Canyonville','United States (USA) - Oregon - Cottage Grove-Canyonville area.',42.82,43.88,-123.96,-122.4,0); INSERT INTO "area" VALUES('EPSG','4204','USA - Oregon - Dufur-Madras','United States (USA) - Oregon - Dufur-Madras area.',44.63,45.55,-121.95,-120.46,0); INSERT INTO "area" VALUES('EPSG','4205','enter here applicable extent','enter here applicable extent',89.99,90.0,179.99,180.0,0); INSERT INTO "area" VALUES('EPSG','4206','USA - Oregon - La Grande','United States (USA) - Oregon - La Grande area.',45.13,45.8,-118.17,-117.14,0); INSERT INTO "area" VALUES('EPSG','4207','USA - Oregon - Ontario','United States (USA) - Oregon - Ontario area.',43.41,44.65,-117.9,-116.7,0); INSERT INTO "area" VALUES('EPSG','4208','USA - Oregon - Oregon Coast','United States (USA) - Oregon - coastal area.',41.89,46.4,-124.84,-123.35,0); INSERT INTO "area" VALUES('EPSG','4209','USA - Oregon - Pendleton','United States (USA) - Oregon - Pendleton area.',45.46,46.02,-119.36,-118.17,0); INSERT INTO "area" VALUES('EPSG','4210','USA - Oregon - Pendleton-La Grande','United States (USA) - Oregon - Pendleton-La Grande area.',45.13,45.64,-118.64,-118.09,0); INSERT INTO "area" VALUES('EPSG','4211','USA - Oregon - Portland','United States (USA) - Oregon - Portland area.',45.23,46.01,-123.53,-122.11,0); INSERT INTO "area" VALUES('EPSG','4212','USA - Oregon - Salem','United States (USA) - Oregon - Salem area.',44.32,45.3,-123.73,-121.89,0); INSERT INTO "area" VALUES('EPSG','4213','USA - Oregon - Sweet Home-Sisters','United States (USA) - Oregon - Sweet Home-Santiam Pass-Sisters area.',44.1,44.66,-122.51,-121.69,0); INSERT INTO "area" VALUES('EPSG','4214','Papua New Guinea - mainland onshore','Papua New Guinea - mainland onshore.',-10.76,-2.53,140.85,150.96,0); INSERT INTO "area" VALUES('EPSG','4215','Vietnam - 103.5°E to 106.5°E onshore','Vietnam - between 103°30''E and 106°30''E, onshore.',8.33,23.4,103.5,106.51,0); INSERT INTO "area" VALUES('EPSG','4216','Papua New Guinea - North Fly','Papua New Guinea - North Fly area (between 5°04''S and 6°36''S and west of 141°32''E).',-6.6,-5.05,140.89,141.54,0); INSERT INTO "area" VALUES('EPSG','4217','Vietnam - east of 106.5°E onshore','Vietnam - onshore east of 106°30''E.',8.57,22.95,106.5,109.53,0); INSERT INTO "area" VALUES('EPSG','4218','Vietnam - Quang Ninh; Da Nang, Quang Nam; Ba Ria-Vung Tau, Dong Nai, Lam Dong','Vietnam - Quang Ninh province; Da Nang municipality and Quang Nam province; Ba Ria-Vung Tau, Dong Nai and Lam Dong provinces.',8.57,21.67,106.43,108.76,0); INSERT INTO "area" VALUES('EPSG','4219','USA - Iowa - Mason City','United States (USA) - Iowa - counties of Cerro Gordo; Chickasaw; Floyd; Hancock; Howard; Mitchell; Winnebago; Winneshiek; Worth.',42.9,43.51,-93.98,-91.6,0); INSERT INTO "area" VALUES('EPSG','4220','Equatorial Guinea - Bioko','Equatorial Guinea - Bioko onshore.',3.14,3.82,8.37,9.02,0); INSERT INTO "area" VALUES('EPSG','4221','Chile - onshore 36°S to 43.5°S','Chile - onshore between 36°S and 43°30''S.',-43.5,-35.99,-74.48,-70.39,0); INSERT INTO "area" VALUES('EPSG','4222','Chile - onshore 26°S to 36°S','Chile - onshore between 26°S and 36°S.',-36.0,-26.0,-72.87,-68.28,0); INSERT INTO "area" VALUES('EPSG','4223','Asia - Malaysia (west including SCS) and Singapore','Malaysia - West Malaysia onshore and offshore east coast; Singapore - onshore and offshore.',1.13,7.81,99.59,105.82,0); INSERT INTO "area" VALUES('EPSG','4224','Chile - onshore 32°S to 36°S','Chile - onshore between 32°S and 36°S.',-36.0,-31.99,-72.87,-69.77,0); INSERT INTO "area" VALUES('EPSG','4225','UAE - Abu Dhabi - onshore','United Arab Emirates (UAE) - Abu Dhabi onshore.',22.63,24.95,51.56,56.03,0); INSERT INTO "area" VALUES('EPSG','4226','UAE - Abu Dhabi','United Arab Emirates (UAE) - Abu Dhabi onshore and offshore.',22.63,25.64,51.5,56.03,0); INSERT INTO "area" VALUES('EPSG','4227','UAE - Abu Dhabi - onshore east of 54°E','United Arab Emirates (UAE) - Abu Dhabi onshore east of 54°E.',22.63,24.95,53.99,56.03,0); INSERT INTO "area" VALUES('EPSG','4228','USA - California - San Francisco Bay Area','United States (USA) - California - San Francisco bay area – counties of Alameda, Contra Costa, Marin, Napa, San Francisco, San Mateo, Santa Clara, Santa Cruz, Solano and Sonoma.',36.85,38.87,-123.56,-121.2,0); INSERT INTO "area" VALUES('EPSG','4229','UAE - Abu Dhabi island','United Arab Emirates (UAE) - Abu Dhabi island.',24.24,24.64,54.2,54.71,0); INSERT INTO "area" VALUES('EPSG','4230','USA - Iowa - Elkader','United States (USA) - Iowa - counties of Allamakee; Clayton; Delaware.',42.29,43.51,-91.62,-90.89,0); INSERT INTO "area" VALUES('EPSG','4231','Chile - onshore north of 26°S','Chile - onshore north of 26°S.',-26.0,-17.5,-70.79,-67.0,0); INSERT INTO "area" VALUES('EPSG','4232','Chile - onshore north of 32°S','Chile - onshore north of 32°S.',-32.0,-17.5,-71.77,-67.0,0); INSERT INTO "area" VALUES('EPSG','4233','USA - Iowa - Sioux City-Iowa Falls','United States (USA) - Iowa - counties of Buena Vista; Calhoun; Cherokee; Franklin; Hamilton; Hardin; Humboldt; Ida; Plymouth; Pocahontas; Sac; Webster; Woodbury; Wright.',42.2,42.92,-96.65,-93.0,0); INSERT INTO "area" VALUES('EPSG','4234','USA - Iowa - Waterloo','United States (USA) - Iowa - counties of Black Hawk; Bremer; Buchanan; Butler; Fayette; Grundy.',42.2,43.09,-93.03,-91.59,0); INSERT INTO "area" VALUES('EPSG','4235','USA - Iowa - Council Bluffs','United States (USA) - Iowa - counties of Crawford; Fremont; Harrison; Mills; Monona; Pottawattamie; Shelby.',40.58,42.22,-96.37,-95.04,0); INSERT INTO "area" VALUES('EPSG','4236','USA - Iowa - Carroll-Atlantic','United States (USA) - Iowa - counties of Adair; Audubon; Carroll; Cass; Greene; Guthrie.',41.15,42.22,-95.16,-94.16,0); INSERT INTO "area" VALUES('EPSG','4237','USA - Iowa - Ames-Des Moines','United States (USA) - Iowa - counties of Boone; Dallas; Madison; Polk; Story; Warren.',41.15,42.22,-94.29,-93.23,0); INSERT INTO "area" VALUES('EPSG','4238','Asia - Middle East - Iraq and SW Iran','Iraq - onshore; Iran - onshore northern Gulf coast and west bordering southeast Iraq.',29.06,37.39,38.79,51.06,0); INSERT INTO "area" VALUES('EPSG','4239','USA - Iowa - Newton','United States (USA) - Iowa - counties of Jasper; Mahaska; Marion; Marshall; Poweshiek; Tama.',41.16,42.3,-93.35,-92.29,0); INSERT INTO "area" VALUES('EPSG','4240','USA - Iowa - Cedar Rapids','United States (USA) - Iowa - counties of Benton; Cedar; Iowa; Johnson; Jones; Linn.',41.42,42.3,-92.31,-90.89,0); INSERT INTO "area" VALUES('EPSG','4241','USA - Iowa - Dubuque-Davenport','United States (USA) - Iowa - counties of Clinton; Dubuque; Jackson; Scott.',41.44,42.68,-91.14,-90.14,0); INSERT INTO "area" VALUES('EPSG','4242','USA - Iowa - Red Oak-Ottumwa','United States (USA) - Iowa - counties of Adams; Appanoose; Clarke; Davis; Decatur; Lucas; Monroe; Montgomery; Page; Ringgold; Taylor; Union; Wapello; Wayne.',40.57,41.17,-95.39,-92.17,0); INSERT INTO "area" VALUES('EPSG','4243','USA - Iowa - Fairfield','United States (USA) - Iowa - counties of Jefferson; Keokuk; Van Buren; Washington.',40.59,41.52,-92.42,-91.48,0); INSERT INTO "area" VALUES('EPSG','4244','USA - Iowa - Burlington','United States (USA) - Iowa - counties of Des Moines; Henry; Lee; Louisa; Muscatine.',40.37,41.6,-91.72,-90.78,0); INSERT INTO "area" VALUES('EPSG','4245','French Southern Territories - Crozet west of 48°E','French Southern Territories - Crozet offshore west of 48°E.',-49.38,-43.12,45.37,48.01,0); INSERT INTO "area" VALUES('EPSG','4246','French Southern and Antarctic Territories','French Southern Territories - onshore and offshore: Amsterdam and St Paul, Crozet, Europa and Kerguelen. Antarctica - Adelie Land coastal area.',-67.13,-20.91,37.98,142.0,0); INSERT INTO "area" VALUES('EPSG','4247','French Southern Territories - Crozet 48°E to 54°E','French Southern Territories - Crozet onshore and offshore between 48°E to 54°E.',-49.82,-42.61,48.0,54.01,0); INSERT INTO "area" VALUES('EPSG','4248','French Southern Territories - Crozet east of 54°E','French Southern Territories - Crozet offshore east of 54°E.',-49.61,-43.3,54.0,57.16,0); INSERT INTO "area" VALUES('EPSG','4249','French Southern Territories - 60°E to 66°E','French Southern Territories - Kerguelen offshore west of 66°E.',-53.03,-45.73,62.96,66.0,0); INSERT INTO "area" VALUES('EPSG','4250','French Southern Territories - 66°E to 72°E','French Southern Territories - Kerguelen onshore and offshore between 66°E and 72°E.',-53.24,-45.11,66.0,72.01,0); INSERT INTO "area" VALUES('EPSG','4251','French Southern Territories - 72°E to 78°E','French Southern Territories - Kerguelen offshore east of 72°E and Amsterdam & St Paul onshore and offshore west of 78°E.',-51.19,-34.47,72.0,78.01,0); INSERT INTO "area" VALUES('EPSG','4252','French Southern Territories - east of 78°E','French Southern Territories - Amsterdam & St Paul offshore east of 78°E.',-42.04,-34.5,78.0,81.83,0); INSERT INTO "area" VALUES('EPSG','4253','USA - Indiana - Lake and Newton','United States (USA) - Indiana - counties of Lake and Newton.',40.73,41.77,-87.53,-87.21,0); INSERT INTO "area" VALUES('EPSG','4254','USA - Indiana - Jasper and Porter','United States (USA) - Indiana - counties of Jasper and Porter.',40.73,41.77,-87.28,-86.92,0); INSERT INTO "area" VALUES('EPSG','4255','USA - Indiana - LaPorte, Pulaski, Starke','United States (USA) - Indiana - counties of LaPorte, Pulaski and Starke.',40.9,41.77,-86.94,-86.46,0); INSERT INTO "area" VALUES('EPSG','4256','USA - Indiana - Benton','United States (USA) - Indiana - Benton county.',40.47,40.74,-87.53,-87.09,0); INSERT INTO "area" VALUES('EPSG','4257','USA - Indiana - Tippecanoe and White','United States (USA) - Indiana - counties of Tippecanoe and White.',40.21,40.92,-87.1,-86.58,0); INSERT INTO "area" VALUES('EPSG','4258','USA - Indiana - Carroll','United States (USA) - Indiana - Carroll county.',40.43,40.74,-86.78,-86.37,0); INSERT INTO "area" VALUES('EPSG','4259','USA - Indiana - Fountain and Warren','United States (USA) - Indiana - counties of Fountain and Warren.',39.95,40.48,-87.54,-87.09,0); INSERT INTO "area" VALUES('EPSG','4260','USA - Indiana - Clinton','United States (USA) - Indiana - Clinton county.',40.17,40.44,-86.7,-86.24,0); INSERT INTO "area" VALUES('EPSG','4261','USA - Indiana - Parke and Vermillion','United States (USA) - Indiana - counties of Parke and Vermillion.',39.6,40.15,-87.54,-87.0,0); INSERT INTO "area" VALUES('EPSG','4262','USA - Indiana - Montgomery and Putnam','United States (USA) - Indiana - counties of Montgomery and Putnam.',39.47,40.22,-87.1,-86.64,0); INSERT INTO "area" VALUES('EPSG','4263','USA - Indiana - Boone and Hendricks','United States (USA) - Indiana - counties of Boone and Hendricks.',39.6,40.19,-86.7,-86.24,0); INSERT INTO "area" VALUES('EPSG','4264','USA - Indiana - Vigo','United States (USA) - Indiana - Vigo county.',39.25,39.61,-87.62,-87.19,0); INSERT INTO "area" VALUES('EPSG','4265','USA - Indiana - Clay','United States (USA) - Indiana - Clay county.',39.16,39.61,-87.25,-86.93,0); INSERT INTO "area" VALUES('EPSG','4266','USA - Indiana - Owen','United States (USA) - Indiana - Owen county.',39.16,39.48,-87.06,-86.63,0); INSERT INTO "area" VALUES('EPSG','4267','USA - Indiana - Monroe and Morgan','United States (USA) - Indiana - counties of Monroe and Morgan.',38.99,39.64,-86.69,-86.24,0); INSERT INTO "area" VALUES('EPSG','4268','USA - Indiana - Sullivan','United States (USA) - Indiana - Sullivan county.',38.9,39.26,-87.65,-87.24,0); INSERT INTO "area" VALUES('EPSG','4269','USA - Indiana - Daviess and Greene','United States (USA) - Indiana - counties of Daviess and Greene.',38.49,39.18,-87.28,-86.68,0); INSERT INTO "area" VALUES('EPSG','4270','USA - Indiana - Knox','United States (USA) - Indiana - Knox county.',38.41,38.91,-87.75,-87.09,0); INSERT INTO "area" VALUES('EPSG','4271','USA - Indiana - Dubois and Martin','United States (USA) - Indiana - counties of Dubois and Martin.',38.2,38.91,-87.08,-86.67,0); INSERT INTO "area" VALUES('EPSG','4272','USA - Indiana - Crawford, Lawrence, Orange','United States (USA) - Indiana - counties of Crawford, Lawrence and Orange.',38.1,39.0,-86.69,-86.24,0); INSERT INTO "area" VALUES('EPSG','4273','USA - Indiana - Gibson','United States (USA) - Indiana - Gibson county.',38.16,38.54,-87.98,-87.31,0); INSERT INTO "area" VALUES('EPSG','4274','USA - Indiana - Pike and Warrick','United States (USA) - Indiana - counties of Pike and Warrick.',37.87,38.56,-87.48,-87.01,0); INSERT INTO "area" VALUES('EPSG','4275','USA - Indiana - Posey','United States (USA) - Indiana - Posey county.',37.77,38.24,-88.06,-87.68,0); INSERT INTO "area" VALUES('EPSG','4276','USA - Indiana - Vanderburgh','United States (USA) - Indiana - Vanderburgh county.',37.82,38.17,-87.71,-87.44,0); INSERT INTO "area" VALUES('EPSG','4277','USA - Indiana - Spencer','United States (USA) - Indiana - Spencer county.',37.78,38.21,-87.27,-86.76,0); INSERT INTO "area" VALUES('EPSG','4278','USA - Indiana - Perry','United States (USA) - Indiana - Perry county.',37.84,38.27,-86.82,-86.43,0); INSERT INTO "area" VALUES('EPSG','4279','USA - Indiana - Fulton, Marshall, St Joseph','United States (USA) - Indiana - counties of Fulton, Marshall and St Joseph.',40.9,41.77,-86.53,-85.94,0); INSERT INTO "area" VALUES('EPSG','4280','USA - Indiana - Elkhart, Kosciusko, Wabash','United States (USA) - Indiana - counties of Elkhart, Kosciusko and Wabash.',40.65,41.77,-86.08,-85.63,0); INSERT INTO "area" VALUES('EPSG','4281','USA - Indiana - LaGrange and Noble','United States (USA) - Indiana - counties of LaGrange and Noble.',41.26,41.77,-85.66,-85.19,0); INSERT INTO "area" VALUES('EPSG','4282','USA - Indiana - Steuben','United States (USA) - Indiana - Steuben county.',41.52,41.77,-85.2,-84.8,0); INSERT INTO "area" VALUES('EPSG','4283','USA - Indiana - DeKalb','United States (USA) - Indiana - DeKalb county.',41.26,41.54,-85.2,-84.8,0); INSERT INTO "area" VALUES('EPSG','4284','USA - Indiana - Huntington and Whitley','United States (USA) - Indiana - counties of Huntington and Whitley.',40.65,41.3,-85.69,-85.3,0); INSERT INTO "area" VALUES('EPSG','4285','USA - Indiana - Allen','United States (USA) - Indiana - Allen county.',40.91,41.28,-85.34,-84.8,0); INSERT INTO "area" VALUES('EPSG','4286','USA - Indiana - Cass','United States (USA) - Indiana - Cass county.',40.56,40.92,-86.59,-86.16,0); INSERT INTO "area" VALUES('EPSG','4287','USA - Indiana - Howard and Miami','United States (USA) - Indiana - counties of Howard and Miami.',40.37,41.0,-86.38,-85.86,0); INSERT INTO "area" VALUES('EPSG','4288','USA - Indiana - Wells','United States (USA) - Indiana - Wells county.',40.56,40.92,-85.45,-85.06,0); INSERT INTO "area" VALUES('EPSG','4289','USA - Indiana - Adams','United States (USA) - Indiana - Adams county.',40.56,40.93,-85.08,-84.8,0); INSERT INTO "area" VALUES('EPSG','4290','USA - Indiana - Grant','United States (USA) - Indiana - Grant county.',40.37,40.66,-85.87,-85.44,0); INSERT INTO "area" VALUES('EPSG','4291','USA - Indiana - Blackford and Delaware','United States (USA) - Indiana - counties of Blackford and Delaware.',40.07,40.57,-85.58,-85.2,0); INSERT INTO "area" VALUES('EPSG','4292','USA - Indiana - Jay','United States (USA) - Indiana - Jay county.',40.3,40.58,-85.22,-84.8,0); INSERT INTO "area" VALUES('EPSG','4293','USA - Indiana - Hamilton and Tipton','United States (USA) - Indiana - counties of Hamilton and Tipton.',39.92,40.41,-86.25,-85.86,0); INSERT INTO "area" VALUES('EPSG','4294','USA - Indiana - Hancock and Madison','United States (USA) - Indiana - counties of Hancock and Madison.',39.69,40.38,-85.96,-85.57,0); INSERT INTO "area" VALUES('EPSG','4295','USA - Indiana - Randolph and Wayne','United States (USA) - Indiana - counties of Randolph and Wayne.',39.71,40.32,-85.23,-84.8,0); INSERT INTO "area" VALUES('EPSG','4296','USA - Indiana - Henry','United States (USA) - Indiana - Henry county.',39.78,40.08,-85.6,-85.2,0); INSERT INTO "area" VALUES('EPSG','4297','USA - Indiana - Johnson and Marion','United States (USA) - Indiana - counties of Johnson and Marion.',39.34,39.93,-86.33,-85.93,0); INSERT INTO "area" VALUES('EPSG','4298','USA - Indiana - Shelby','United States (USA) - Indiana - Shelby county.',39.34,39.7,-85.96,-85.62,0); INSERT INTO "area" VALUES('EPSG','4299','USA - Indiana - Decatur and Rush','United States (USA) - Indiana - counties of Decatur and Rush.',39.13,39.79,-85.69,-85.29,0); INSERT INTO "area" VALUES('EPSG','4300','USA - Indiana - Fayette, Franklin, Union','United States (USA) - Indiana - counties of Fayette, Franklin and Union.',39.26,39.79,-85.31,-84.81,0); INSERT INTO "area" VALUES('EPSG','4301','USA - Indiana - Brown','United States (USA) - Indiana - Brown county.',39.04,39.35,-86.39,-86.07,0); INSERT INTO "area" VALUES('EPSG','4302','USA - Indiana - Bartholomew','United States (USA) - Indiana - Bartholomew county.',39.03,39.36,-86.09,-85.68,0); INSERT INTO "area" VALUES('EPSG','4303','USA - Indiana - Jackson','United States (USA) - Indiana - Jackson county.',38.72,39.08,-86.32,-85.79,0); INSERT INTO "area" VALUES('EPSG','4304','USA - Indiana - Jennings','United States (USA) - Indiana - Jennings county.',38.8,39.2,-85.8,-85.43,0); INSERT INTO "area" VALUES('EPSG','4305','USA - Indiana - Ripley','United States (USA) - Indiana - Ripley county.',38.91,39.32,-85.45,-85.06,0); INSERT INTO "area" VALUES('EPSG','4306','USA - Indiana - Dearborn, Ohio, Switzerland','United States (USA) - Indiana - counties of Dearborn, Ohio and Switzerland.',38.68,39.31,-85.21,-84.78,0); INSERT INTO "area" VALUES('EPSG','4307','USA - Indiana - Harrison and Washington','United States (USA) - Indiana - counties of Harrison and Washington.',37.95,38.79,-86.33,-85.84,0); INSERT INTO "area" VALUES('EPSG','4308','USA - Indiana - Clark, Floyd, Scott','United States (USA) - Indiana - counties of Clark, Floyd and Scott.',38.17,38.84,-86.04,-85.41,0); INSERT INTO "area" VALUES('EPSG','4309','USA - Indiana - Jefferson','United States (USA) - Indiana - Jefferson county.',38.58,38.92,-85.69,-85.2,0); INSERT INTO "area" VALUES('EPSG','4310','USA - Montana - St Mary valley','United States (USA) - Montana - St Mary''s Valley area.',48.55,49.01,-113.97,-113.0,0); INSERT INTO "area" VALUES('EPSG','4311','USA - Montana - Blackfeet reservation','United States (USA) - Montana - Blackfeet Indian Reservation.',48.0,49.01,-113.84,-112.0,0); INSERT INTO "area" VALUES('EPSG','4312','USA - Montana - Milk River','United States (USA) - Montana - Milk River area.',47.78,49.01,-112.5,-108.74,0); INSERT INTO "area" VALUES('EPSG','4313','USA - Montana - Fort Belknap','United States (USA) - Montana - Fort Belknap Indian Reservation area.',47.78,49.01,-110.84,-106.99,0); INSERT INTO "area" VALUES('EPSG','4314','USA - Montana - Fort Peck higher areas','United States (USA) - Montana - Fort Peck Indian Reservation - higher areas, notably in west and north.',48.01,48.88,-107.57,-104.78,0); INSERT INTO "area" VALUES('EPSG','4315','USA - Montana - Fort Peck lower areas','United States (USA) - Montana - Fort Peck Indian Reservation - lower areas, notably in south and east.',47.75,49.01,-107.76,-104.04,0); INSERT INTO "area" VALUES('EPSG','4316','USA - Montana - Crow reservation','United States (USA) - Montana - Crow Indian Reservation.',44.99,46.09,-108.84,-106.66,0); INSERT INTO "area" VALUES('EPSG','4317','USA - Montana - Three Forks','United States (USA) - Montana - Three Forks area.',45.36,46.59,-112.34,-110.75,0); INSERT INTO "area" VALUES('EPSG','4318','USA - Montana - Billings','United States (USA) - Montana - Billings area.',44.99,47.41,-109.42,-107.99,0); INSERT INTO "area" VALUES('EPSG','4319','USA - Wyoming - Wind River reservation','United States (USA) - Wyoming - Wind River Indian Reservation.',42.69,43.86,-109.5,-107.94,0); INSERT INTO "area" VALUES('EPSG','4320','USA - Wisconsin - Ashland','United States (USA) - Wisconsin - Ashland county.',45.98,47.09,-90.93,-90.3,0); INSERT INTO "area" VALUES('EPSG','4321','USA - Wisconsin - Bayfield','United States (USA) - Wisconsin - Bayfield county.',46.15,47.01,-91.56,-90.75,0); INSERT INTO "area" VALUES('EPSG','4322','Oman - west of 54°E','Oman - onshore and offshore west of 54°E.',14.94,19.67,51.99,54.01,0); INSERT INTO "area" VALUES('EPSG','4323','Oman - 54°E to 60°E','Oman - onshore and offshore between 54°E and 60°E.',14.33,26.74,54.0,60.01,0); INSERT INTO "area" VALUES('EPSG','4324','Oman - east of 60°E','Oman - offshore east of 60°E.',16.37,24.09,60.0,63.38,0); INSERT INTO "area" VALUES('EPSG','4325','USA - Wisconsin - Burnett','United States (USA) - Wisconsin - Burnett county.',45.63,46.16,-92.89,-92.03,0); INSERT INTO "area" VALUES('EPSG','4326','USA - Wisconsin - Douglas','United States (USA) - Wisconsin - Douglas county.',46.15,46.76,-92.3,-91.55,0); INSERT INTO "area" VALUES('EPSG','4327','USA - Wisconsin - Florence','United States (USA) - Wisconsin - Florence county.',45.71,46.03,-88.69,-88.05,0); INSERT INTO "area" VALUES('EPSG','4328','USA - Wisconsin - Forest','United States (USA) - Wisconsin - Forest county.',45.37,46.08,-89.05,-88.42,0); INSERT INTO "area" VALUES('EPSG','4329','USA - Wisconsin - Iron','United States (USA) - Wisconsin - Iron county.',45.98,46.6,-90.56,-89.92,0); INSERT INTO "area" VALUES('EPSG','4330','USA - Wisconsin - Oneida','United States (USA) - Wisconsin - Oneida county.',45.46,45.91,-90.05,-89.04,0); INSERT INTO "area" VALUES('EPSG','4331','USA - Wisconsin - Barron','United States (USA) - Wisconsin - Barron county.',45.2,45.65,-92.16,-91.53,0); INSERT INTO "area" VALUES('EPSG','4332','USA - Wisconsin - Price','United States (USA) - Wisconsin - Price county.',45.37,45.99,-90.68,-90.04,0); INSERT INTO "area" VALUES('EPSG','4333','USA - Wisconsin - Sawyer','United States (USA) - Wisconsin - Sawyer county.',45.63,46.16,-91.56,-90.67,0); INSERT INTO "area" VALUES('EPSG','4334','USA - Wisconsin - Vilas','United States (USA) - Wisconsin - Vilas county.',45.85,46.3,-90.05,-88.93,0); INSERT INTO "area" VALUES('EPSG','4335','USA - Wisconsin - Washburn','United States (USA) - Wisconsin - Washburn county.',45.63,46.16,-92.06,-91.54,0); INSERT INTO "area" VALUES('EPSG','4336','USA - Wisconsin - Brown','United States (USA) - Wisconsin - Brown county.',44.24,44.68,-88.26,-87.76,0); INSERT INTO "area" VALUES('EPSG','4337','USA - Wisconsin - Buffalo','United States (USA) - Wisconsin - Buffalo county.',44.02,44.6,-92.09,-91.52,0); INSERT INTO "area" VALUES('EPSG','4338','USA - Wisconsin - Chippewa','United States (USA) - Wisconsin - Chippewa county.',44.85,45.3,-91.67,-90.92,0); INSERT INTO "area" VALUES('EPSG','4339','USA - Wisconsin - Clark','United States (USA) - Wisconsin - Clark county.',44.42,45.04,-90.93,-90.31,0); INSERT INTO "area" VALUES('EPSG','4340','USA - Wisconsin - Door','United States (USA) - Wisconsin - Door county.',44.67,45.43,-87.74,-86.8,0); INSERT INTO "area" VALUES('EPSG','4341','USA - Wisconsin - Dunn','United States (USA) - Wisconsin - Dunn county.',44.68,45.21,-92.16,-91.64,0); INSERT INTO "area" VALUES('EPSG','4342','USA - Wisconsin - Eau Claire','United States (USA) - Wisconsin - Eau Claire county.',44.59,44.86,-91.66,-90.92,0); INSERT INTO "area" VALUES('EPSG','4343','USA - Wisconsin - Jackson','United States (USA) - Wisconsin - Jackson county.',44.07,44.6,-91.17,-90.31,0); INSERT INTO "area" VALUES('EPSG','4344','USA - Wisconsin - Langlade','United States (USA) - Wisconsin - Langlade county.',45.02,45.48,-89.43,-88.63,0); INSERT INTO "area" VALUES('EPSG','4345','USA - Wisconsin - Lincoln','United States (USA) - Wisconsin - Lincoln county.',45.11,45.56,-90.05,-89.42,0); INSERT INTO "area" VALUES('EPSG','4346','USA - Wisconsin - Marathon','United States (USA) - Wisconsin - Marathon county.',44.68,45.13,-90.32,-89.22,0); INSERT INTO "area" VALUES('EPSG','4347','USA - Wisconsin - Marinette','United States (USA) - Wisconsin - Marinette county.',44.96,45.8,-88.43,-87.48,0); INSERT INTO "area" VALUES('EPSG','4348','USA - Wisconsin - Menominee','United States (USA) - Wisconsin - Menominee county.',44.85,45.12,-88.99,-88.48,0); INSERT INTO "area" VALUES('EPSG','4349','USA - Wisconsin - Oconto','United States (USA) - Wisconsin - Oconto county.',44.67,45.38,-88.69,-87.76,0); INSERT INTO "area" VALUES('EPSG','4350','USA - Wisconsin - Pepin and Pierce','United States (USA) - Wisconsin - counties of Pepin and Pierce.',44.4,44.87,-92.81,-91.65,0); INSERT INTO "area" VALUES('EPSG','4351','USA - Wisconsin - Polk','United States (USA) - Wisconsin - Polk county.',45.2,45.73,-92.89,-92.15,0); INSERT INTO "area" VALUES('EPSG','4352','USA - Wisconsin - Portage','United States (USA) - Wisconsin - Portage county.',44.24,44.69,-89.85,-89.22,0); INSERT INTO "area" VALUES('EPSG','4353','USA - Wisconsin - Rusk','United States (USA) - Wisconsin - Rusk county.',45.29,45.64,-91.55,-90.67,0); INSERT INTO "area" VALUES('EPSG','4354','USA - Wisconsin - Shawano','United States (USA) - Wisconsin - Shawano county.',44.58,45.03,-89.23,-88.24,0); INSERT INTO "area" VALUES('EPSG','4355','USA - Wisconsin - St. Croix','United States (USA) - Wisconsin - St. Croix county.',44.85,45.22,-92.81,-92.13,0); INSERT INTO "area" VALUES('EPSG','4356','USA - Wisconsin - Taylor','United States (USA) - Wisconsin - Taylor county.',45.03,45.39,-90.93,-90.04,0); INSERT INTO "area" VALUES('EPSG','4357','USA - Wisconsin - Trempealeau','United States (USA) - Wisconsin - Trempealeau county.',43.98,44.6,-91.62,-91.15,0); INSERT INTO "area" VALUES('EPSG','4358','USA - Wisconsin - Waupaca','United States (USA) - Wisconsin - Waupaca county.',44.24,44.69,-89.23,-88.6,0); INSERT INTO "area" VALUES('EPSG','4359','USA - Wisconsin - Wood','United States (USA) - Wisconsin - Wood county.',44.24,44.69,-90.32,-89.72,0); INSERT INTO "area" VALUES('EPSG','4360','USA - Wisconsin - Adams and Juneau','United States (USA) - Wisconsin - counties of Adams and Juneau.',43.64,44.25,-90.32,-89.59,0); INSERT INTO "area" VALUES('EPSG','4361','USA - Wisconsin - Calumet, Fond du Lac, Outagamie and Winnebago','United States (USA) - Wisconsin - counties of Calumet, Fond du Lac, Outagamie and Winnebago.',43.54,44.6,-88.89,-88.04,0); INSERT INTO "area" VALUES('EPSG','4362','USA - Wisconsin - Columbia','United States (USA) - Wisconsin - Columbia county.',43.28,43.65,-89.79,-89.0,0); INSERT INTO "area" VALUES('EPSG','4363','USA - Wisconsin - Crawford','United States (USA) - Wisconsin - Crawford county.',42.98,43.43,-91.22,-90.66,0); INSERT INTO "area" VALUES('EPSG','4364','USA - Wisconsin - Dane','United States (USA) - Wisconsin - Dane county.',42.84,43.3,-89.84,-89.0,0); INSERT INTO "area" VALUES('EPSG','4365','USA - Wisconsin - Dodge and Jefferson','United States (USA) - Wisconsin - counties of Dodge and Jefferson.',42.84,43.64,-89.02,-88.4,0); INSERT INTO "area" VALUES('EPSG','4366','USA - Wisconsin - Grant','United States (USA) - Wisconsin - Grant county.',42.5,43.22,-91.16,-90.42,0); INSERT INTO "area" VALUES('EPSG','4367','USA - Wisconsin - Green and Lafayette','United States (USA) - Wisconsin - counties of Green and Lafayette.',42.5,42.86,-90.43,-89.36,0); INSERT INTO "area" VALUES('EPSG','4368','USA - Wisconsin - Green Lake and Marquette','United States (USA) - Wisconsin - counties of Green Lake and Marquette.',43.63,43.99,-89.6,-88.88,0); INSERT INTO "area" VALUES('EPSG','4369','USA - Wisconsin - Iowa','United States (USA) - Wisconsin - Iowa county.',42.81,43.21,-90.43,-89.83,0); INSERT INTO "area" VALUES('EPSG','4370','USA - Wisconsin - Kenosha, Milwaukee, Ozaukee and Racine','United States (USA) - Wisconsin - counties of Kenosha, Milwaukee, Ozaukee and Racine.',42.49,43.55,-88.31,-87.75,0); INSERT INTO "area" VALUES('EPSG','4371','USA - Wisconsin - Kewaunee, Manitowoc and Sheboygan','United States (USA) - Wisconsin - counties of Kewaunee, Manitowoc and Sheboygan.',43.54,44.68,-88.17,-87.37,0); INSERT INTO "area" VALUES('EPSG','4372','USA - Wisconsin - La Crosse','United States (USA) - Wisconsin - La Crosse county.',43.72,44.1,-91.43,-90.91,0); INSERT INTO "area" VALUES('EPSG','4373','USA - Wisconsin - Monroe','United States (USA) - Wisconsin - Monroe county.',43.72,44.17,-90.98,-90.31,0); INSERT INTO "area" VALUES('EPSG','4374','USA - Wisconsin - Richland','United States (USA) - Wisconsin - Richland county.',43.16,43.56,-90.68,-90.19,0); INSERT INTO "area" VALUES('EPSG','4375','USA - Wisconsin - Rock','United States (USA) - Wisconsin - Rock county.',42.49,42.85,-89.37,-88.77,0); INSERT INTO "area" VALUES('EPSG','4376','USA - Wisconsin - Sauk','United States (USA) - Wisconsin - Sauk county.',43.14,43.65,-90.32,-89.59,0); INSERT INTO "area" VALUES('EPSG','4377','USA - Wisconsin - Vernon','United States (USA) - Wisconsin - Vernon county.',43.42,43.74,-91.28,-90.31,0); INSERT INTO "area" VALUES('EPSG','4378','USA - Wisconsin - Walworth','United States (USA) - Wisconsin - Walworth county.',42.49,42.85,-88.78,-88.3,0); INSERT INTO "area" VALUES('EPSG','4379','USA - Wisconsin - Washington','United States (USA) - Wisconsin - Washington county.',43.19,43.55,-88.42,-88.03,0); INSERT INTO "area" VALUES('EPSG','4380','USA - Wisconsin - Waukesha','United States (USA) - Wisconsin - Waukesha county.',42.84,43.2,-88.55,-88.06,0); INSERT INTO "area" VALUES('EPSG','4381','USA - Wisconsin - Waushara','United States (USA) - Wisconsin - Waushara county.',43.98,44.25,-89.6,-88.88,0); INSERT INTO "area" VALUES('EPSG','4382','Algeria - Ain Tsila','Algeria - Ain Tsila field.',27.4,28.1,7.66,8.27,0); INSERT INTO "area" VALUES('EPSG','4383','Papua New Guinea - onshore south of 5°S and west of 144°E','Papua New Guinea - onshore south of 5°S and west of 144°E.',-9.35,-5.0,140.85,144.01,0); INSERT INTO "area" VALUES('EPSG','4384','Papua New Guinea - 0°N to 12°S and 140°E to 158°E','Papua New Guinea - between 0°N and 12°S and 140°E and 158°E - onshore and offshore.',-12.0,0.01,140.0,158.01,0); INSERT INTO "area" VALUES('EPSG','4385','Kyrgyzstan - west of 70°01''E','Kyrgyzstan - west of 70°01''E.',39.51,40.22,69.24,70.02,0); INSERT INTO "area" VALUES('EPSG','4386','Kyrgyzstan - 70°01''E to 73°01''E','Kyrgyzstan - between 70°01''E and 73°01''E.',39.19,42.83,70.01,73.02,0); INSERT INTO "area" VALUES('EPSG','4387','Kyrgyzstan - 73°01''E to 76°01''E','Kyrgyzstan - between 73°01''E and 76°01''E.',39.35,43.22,73.01,76.02,0); INSERT INTO "area" VALUES('EPSG','4388','Kyrgyzstan - 76°01''E to 79°01''E','Kyrgyzstan - between 76°01''E and 79°01''E.',40.35,43.0,76.01,79.02,0); INSERT INTO "area" VALUES('EPSG','4389','Kyrgyzstan - east of 79°01''E','Kyrgyzstan - east of 79°01''E.',41.66,42.8,79.01,80.29,0); INSERT INTO "area" VALUES('EPSG','4390','UK - Britain and UKCS 49°46''N to 61°01''N, 7°33''W to 3°33''E','United Kingdom (UK) - offshore to boundary of UKCS within 49°46''N to 61°01''N and 7°33''W to 3°33''E; onshore Great Britain (England, Wales and Scotland). Isle of Man onshore.',49.75,61.14,-9.2,2.88,0); INSERT INTO "area" VALUES('EPSG','4391','UK - offshore 49°46''N to 61°01''N, 7°33''W to 3°33''E','United Kingdom (UK) – offshore between 2km from shore and boundary of UKCS within 49°46''N to 61°01''N and 7°33''W to 3°33''E.',49.75,61.14,-9.2,2.88,0); INSERT INTO "area" VALUES('EPSG','4392','India - northeast','India - Arunachal Pradesh, Assam, Manipur, Meghalaya, Mizoram, Nagaland and Tripura.',21.94,29.47,89.69,97.42,0); INSERT INTO "area" VALUES('EPSG','4393','To be specified','Description of the extent of the CRS.',-90.0,90.0,-180.0,180.0,0); INSERT INTO "area" VALUES('EPSG','4394','India - Andhra Pradesh and Telangana','India - Andhra Pradesh; Telangana; Yanam area of Pudacherry territory.',12.61,19.92,76.75,84.81,0); INSERT INTO "area" VALUES('EPSG','4395','India - Arunachal Pradesh','India - Arunachal Pradesh.',26.65,29.47,91.55,97.42,0); INSERT INTO "area" VALUES('EPSG','4396','India - Assam','India - Assam.',24.13,27.98,89.69,96.03,0); INSERT INTO "area" VALUES('EPSG','4397','India - Bihar','India - Bihar.',24.28,27.86,83.31,88.3,0); INSERT INTO "area" VALUES('EPSG','4398','India - Chhattisgarh','India - Chhattisgarh.',17.78,24.11,80.23,84.39,0); INSERT INTO "area" VALUES('EPSG','4399','India - Goa','India - Goa.',14.86,15.8,73.61,74.35,0); INSERT INTO "area" VALUES('EPSG','4400','India - Gujarat','India - Gujarat and union territories of Daman, Diu, Dadra and Nagar Haveli.',20.05,24.71,68.13,74.48,0); INSERT INTO "area" VALUES('EPSG','4401','India - Haryana','India - Haryana including Chandigarh.',27.65,30.94,74.46,77.6,0); INSERT INTO "area" VALUES('EPSG','4402','India - Himachal Pradesh','India - Himachal Pradesh.',30.38,33.26,75.57,79.0,0); INSERT INTO "area" VALUES('EPSG','4403','India - Jammu and Kashmir','India - Jammu and Kashmir.',32.27,35.51,73.76,79.57,0); INSERT INTO "area" VALUES('EPSG','4404','India - Jharkhand','India - Jharkhand.',21.96,25.35,83.32,87.98,0); INSERT INTO "area" VALUES('EPSG','4405','India - Karnataka','India - Karnataka.',11.57,18.46,74.0,78.58,0); INSERT INTO "area" VALUES('EPSG','4406','India - Kerala','India - Kerala; Mayyazhi (Mahe) area of Pudacherry territory.',8.25,12.8,74.81,77.4,0); INSERT INTO "area" VALUES('EPSG','4407','India - Madhya Pradesh','India - Madhya Pradesh.',21.07,26.88,74.03,82.81,0); INSERT INTO "area" VALUES('EPSG','4408','India - Maharashtra','India - Maharashtra.',15.6,22.04,72.6,80.9,0); INSERT INTO "area" VALUES('EPSG','4409','India - Manipur','India - Manipur.',23.84,25.7,92.97,94.76,0); INSERT INTO "area" VALUES('EPSG','4410','India - Meghalaya','India - Meghalaya.',25.03,26.12,89.82,92.81,0); INSERT INTO "area" VALUES('EPSG','4411','India - Mizoram','India - Mizoram.',21.94,24.53,92.25,93.45,0); INSERT INTO "area" VALUES('EPSG','4412','India - Nagaland','India - Nagaland.',25.2,27.05,93.33,95.25,0); INSERT INTO "area" VALUES('EPSG','4413','India - Odisha','India - Odisha (Orissa).',17.8,22.57,81.38,87.5,0); INSERT INTO "area" VALUES('EPSG','4414','India - Punjab','India - Punjab including Chandigarh.',29.54,32.58,73.87,76.94,0); INSERT INTO "area" VALUES('EPSG','4415','India - Rajasthan','India - Rajasthan.',23.06,30.2,69.48,78.27,0); INSERT INTO "area" VALUES('EPSG','4416','India - Sikkim','India - Sikkim.',27.08,28.14,88.01,88.92,0); INSERT INTO "area" VALUES('EPSG','4417','India - Tamil Nadu','India - Tamil Nadu; Pudacherry and Karaikal areas of Pudacherry territory.',8.02,13.59,76.22,80.4,0); INSERT INTO "area" VALUES('EPSG','4418','India - Tripura','India - Tripura.',22.94,24.54,91.15,92.34,0); INSERT INTO "area" VALUES('EPSG','4419','India - Uttar Pradesh','India - Uttar Pradesh.',23.87,30.42,77.08,84.64,0); INSERT INTO "area" VALUES('EPSG','4420','India - Uttarakhand','India - Uttarakhand (Uttaranchal).',28.71,31.48,77.56,81.02,0); INSERT INTO "area" VALUES('EPSG','4421','India - West Bengal','India - West Bengal.',21.49,27.23,85.82,89.88,0); INSERT INTO "area" VALUES('EPSG','4422','India - Delhi','India - Delhi national capital territory.',28.4,28.89,76.83,77.34,0); INSERT INTO "area" VALUES('EPSG','4423','India - Andaman and Nicobar Islands','India - Andaman and Nicobar Islands.',6.7,13.73,92.15,94.33,0); INSERT INTO "area" VALUES('EPSG','4424','India - Lakshadweep','India - Lakshadweep (Laccadive, Minicoy, and Aminidivi Islands).',8.21,11.76,72.04,73.76,0); INSERT INTO "area" VALUES('EPSG','4425','Papua New Guinea - onshore - Central province and Gulf province east of 144°E','Papua New Guinea - onshore - Gulf province east of 144°24''E, Central province and National Capital District.',-10.42,-6.67,144.4,149.67,0); INSERT INTO "area" VALUES('EPSG','4426','Bulgaria - east of 30°E','Bulgaria - offshore east of 30°E.',42.56,43.67,30.0,31.35,0); INSERT INTO "area" VALUES('EPSG','4427','Bulgaria - 24°E to 30°E','Bulgaria - onshore east of 24°E, offshore west of 30°E.',41.24,44.15,24.0,30.01,0); INSERT INTO "area" VALUES('EPSG','4428','Bulgaria - west of 24°E','Bulgaria - west of 24°E.',41.32,44.23,22.36,24.0,0); INSERT INTO "area" VALUES('EPSG','4429','Ukraine - 25°E to 28°E','Ukraine - between 25°E and 28°E.',47.72,51.96,25.0,28.01,0); INSERT INTO "area" VALUES('EPSG','4430','Ukraine - 28°E to 31°E onshore','Ukraine - between 28°E and 31°E, onshore.',45.18,52.09,28.0,31.01,0); INSERT INTO "area" VALUES('EPSG','4431','Ukraine - 31°E to 34°E onshore','Ukraine - between 31°E and 34°E, onshore.',44.32,52.38,31.0,34.01,0); INSERT INTO "area" VALUES('EPSG','4432','Ukraine - 34°E to 37°E onshore','Ukraine - between 34°E and 37°E, onshore.',44.33,52.25,34.0,37.01,0); INSERT INTO "area" VALUES('EPSG','4433','Ukraine - 37°E to 40°E onshore','Ukraine - between 37°E and 40°E, onshore.',46.8,50.44,37.0,40.01,0); INSERT INTO "area" VALUES('EPSG','4434','Ukraine - east of 40°E','Ukraine - east of 40°E.',48.8,49.62,40.0,40.18,0); INSERT INTO "area" VALUES('EPSG','4435','Ukraine - west of 25°E','Ukraine - west of 25°E.',47.71,51.92,22.15,25.01,0); INSERT INTO "area" VALUES('EPSG','4436','Australia - Western Australia - Kalgoorlie','Australia - Western Australia - Kalgoorlie area.',-32.25,-28.75,121.0,121.84,0); INSERT INTO "area" VALUES('EPSG','4437','Australia - Western Australia - Busselton','Australia - Western Australia - Busselton area onshore below 250m AHD.',-33.75,-33.4,115.18,115.87,0); INSERT INTO "area" VALUES('EPSG','4438','Australia - Western Australia - Barrow','Australia - Western Australia - Barrow Island and Onslow area onshore.',-22.2,-20.21,114.9,115.59,0); INSERT INTO "area" VALUES('EPSG','4439','Australia - Western Australia - Albany','Australia - Western Australia - Albany area onshore below 190m AHD.',-35.21,-34.75,117.55,118.22,0); INSERT INTO "area" VALUES('EPSG','4440','Australia - Western Australia - Jurien Bay','Australia - Western Australia - Jurien Bay area onshore below 200m AHD.',-30.74,-29.08,114.83,115.34,0); INSERT INTO "area" VALUES('EPSG','4441','Australia - Western Australia - Broome','Australia - Western Australia - Broome area onshore below 130m AHD.',-18.09,-16.75,122.08,122.62,0); INSERT INTO "area" VALUES('EPSG','4442','Australia - Western Australia - Carnarvon','Australia - Western Australia - Carnarvon area onshore.',-25.5,-23.0,113.33,114.0,0); INSERT INTO "area" VALUES('EPSG','4443','Australia - Western Australia - Collie','Australia - Western Australia - Collie area between 50m and 310m AHD.',-34.67,-33.25,115.73,116.4,0); INSERT INTO "area" VALUES('EPSG','4444','Australia - Western Australia - Kalbarri','Australia - Western Australia - Kalbarri area onshore.',-28.5,-27.16,113.9,114.75,0); INSERT INTO "area" VALUES('EPSG','4445','Australia - Western Australia - Esperance','Australia - Western Australia - Esperance area onshore.',-34.5,-33.33,121.56,122.2,0); INSERT INTO "area" VALUES('EPSG','4446','Albania - north of 41°18''N and east of 19°09''E','Albania - north of 41°18''N and east of 19°09''E, onshore and offshore.',41.3,42.67,19.14,20.63,0); INSERT INTO "area" VALUES('EPSG','4447','DR Congo (Zaire) - offshore','The Democratic Republic of the Congo (Zaire) - offshore.',-6.04,-5.79,11.79,12.37,0); INSERT INTO "area" VALUES('EPSG','4448','Australia - Western Australia - Exmouth','Australia - Western Australia - Exmouth area onshore below 160m AHD.',-22.42,-21.75,113.75,114.25,0); INSERT INTO "area" VALUES('EPSG','4449','Australia - Western Australia - Geraldton','Australia - Western Australia - Geraldton area onshore below 195m AHD.',-29.1,-28.48,114.51,115.0,0); INSERT INTO "area" VALUES('EPSG','4450','USA - Arizona - Pima county west','United States (USA) - Arizona - Pima county - west of the township line between ranges R2W and R3W, Gila and Salt River Meridian (west of approximately 112°31''W).',31.8,32.51,-113.33,-112.51,0); INSERT INTO "area" VALUES('EPSG','4451','Australia - Western Australia - Karratha','Australia - Western Australia - Karratha area onshore.',-20.92,-20.25,116.58,117.25,0); INSERT INTO "area" VALUES('EPSG','4452','Australia - Western Australia - Kununurra','Australia - Western Australia - Kununurra area onshore below 200m AHD.',-16.75,-14.75,128.5,129.0,0); INSERT INTO "area" VALUES('EPSG','4453','Australia - Western Australia - Lancelin','Australia - Western Australia - Lancelin area onshore below 200m AHD.',-31.49,-30.71,115.15,115.62,0); INSERT INTO "area" VALUES('EPSG','4454','Greenland - 58°N to 85°N','Greenland - onshore and offshore between 58°N and 85°N and west of 7°W.',58.0,85.01,-75.0,-6.99,0); INSERT INTO "area" VALUES('EPSG','4455','Europe - Upper Austria, Salzburg and Bohemia','Austria - Upper Austria and Salzburg provinces. Czechia - Bohemia.',46.93,51.06,12.07,16.83,0); INSERT INTO "area" VALUES('EPSG','4456','Europe - Lower Austria and Moravia','Austria - Lower Austria. Czechia - Moravia and Czech Silesia.',47.42,50.45,14.41,18.86,0); INSERT INTO "area" VALUES('EPSG','4457','Australia - Western Australia - Margaret River','Australia - Western Australia - Margaret River area onshore below 200m AHD.',-34.42,-33.51,114.96,115.24,0); INSERT INTO "area" VALUES('EPSG','4458','USA - Oregon - Riley-Lakeview','United States (USA) - Oregon - Riley-Lakeview area.',41.88,43.45,-120.97,-119.15,0); INSERT INTO "area" VALUES('EPSG','4459','USA - Oregon - Burns-Harper','United States (USA) - Oregon - Burns-Harper area.',43.49,44.19,-118.61,-117.49,0); INSERT INTO "area" VALUES('EPSG','4460','USA - Arizona - Pima county central','United States (USA) - Arizona - Pima county - between the township line between ranges R2W and R3W and the township line between ranges R7E and R8E, Gila and Salt River Meridian (between approximately 112°31''W and 111°34''W).',31.5,32.51,-112.52,-111.56,0); INSERT INTO "area" VALUES('EPSG','4461','Greenland - 59°N to 84°N','Greenland - onshore and offshore between 59°N and 84°N and west of 10°W.',59.0,84.01,-75.0,-10.0,0); INSERT INTO "area" VALUES('EPSG','4462','Australia - Western Australia - Perth','Australia - Western Australia - Perth area onshore below 165m AHD.',-33.42,-31.33,115.44,116.09,0); INSERT INTO "area" VALUES('EPSG','4463','USA - Oregon - Siskiyou Pass','United States (USA) - Oregon - Siskiyou Pass area.',41.95,42.46,-122.71,-121.96,0); INSERT INTO "area" VALUES('EPSG','4464','USA - onshore - AZ MI MT ND OR SC','United States (USA) - onshore - Arizona; Michigan; Montana; North Dakota; Oregon; South Carolina.',31.33,49.01,-124.6,-78.52,0); INSERT INTO "area" VALUES('EPSG','4465','USA - Oregon - Canyon City-Burns','United States (USA) - Oregon - Canyon City-Burns area.',43.52,44.36,-119.22,-118.52,0); INSERT INTO "area" VALUES('EPSG','4466','Australia - Western Australia - Port Hedland','Australia - Western Australia - Port Hedland area onshore.',-20.79,-20.1,118.25,118.97,0); INSERT INTO "area" VALUES('EPSG','4467','Trinidad and Tobago - offshore west of 60°W','Trinidad and Tobago - offshore west of 60°W.',9.83,12.34,-62.09,-59.99,0); INSERT INTO "area" VALUES('EPSG','4468','Trinidad and Tobago - offshore east of 60°W','Trinidad and Tobago - offshore east of 60°W.',9.95,12.19,-60.0,-57.28,0); INSERT INTO "area" VALUES('EPSG','4469','Angola - onshore','Angola - onshore including Cabinda.',-18.02,-4.38,11.67,24.09,0); INSERT INTO "area" VALUES('EPSG','4470','USA - Oregon - Ukiah-Fox','United States (USA) - Oregon - Ukiah-Fox area.',44.52,45.21,-119.35,-118.64,0); INSERT INTO "area" VALUES('EPSG','4471','USA - Oregon - Coast Range North','United States (USA) - Oregon - Coast Range North area.',45.4,45.98,-123.81,-123.01,0); INSERT INTO "area" VALUES('EPSG','4472','USA - Arizona - Pima county east','United States (USA) - Arizona - Pima county - east of the township line between ranges R7E and R8E, Gila and Salt River Meridian (east of approximately 111°34''W).',31.43,32.52,-111.57,-110.44,0); INSERT INTO "area" VALUES('EPSG','4473','USA - Arizona - Pima county Mt. Lemmon','United States (USA) - Arizona - Pima county - Catalina Highway corridor between Mt. Lemmon and Willow Canyon.',32.33,32.49,-110.87,-110.61,0); INSERT INTO "area" VALUES('EPSG','4474','USA - Oregon - Dayville-Prairie City','United States (USA) - Oregon - Dayville-Prairie City area.',44.24,44.94,-119.89,-118.61,0); INSERT INTO "area" VALUES('EPSG','4475','USA - Oregon - Denio-Burns','United States (USA) - Oregon - Denio-Burns area.',41.88,43.54,-119.41,-117.67,0); INSERT INTO "area" VALUES('EPSG','4476','USA - Oregon - Halfway','United States (USA) - Oregon - Halfway area.',44.61,45.28,-117.61,-116.63,0); INSERT INTO "area" VALUES('EPSG','4477','USA - Oregon - Medford-Diamond Lake','United States (USA) - Oregon - Medford-Diamond Lake area.',42.53,43.34,-122.73,-121.71,0); INSERT INTO "area" VALUES('EPSG','4478','USA - Oregon - Mitchell','United States (USA) - Oregon - Mitchell area.',44.38,44.78,-120.56,-119.82,0); INSERT INTO "area" VALUES('EPSG','4479','USA - Oregon - North Central','United States (USA) - Oregon - North Central area.',44.89,45.95,-121.79,-119.03,0); INSERT INTO "area" VALUES('EPSG','4480','USA - Oregon - Wallowa','United States (USA) - Oregon - Wallowa area.',45.27,46.05,-118.16,-116.42,0); INSERT INTO "area" VALUES('EPSG','4481','USA - Oregon - Ochoco Summit','United States (USA) - Oregon - Ochoco Summit area.',44.21,44.61,-121.01,-120.31,0); INSERT INTO "area" VALUES('EPSG','4482','USA - Oregon - Owyhee','United States (USA) - Oregon - Owyhee area.',41.88,43.54,-118.14,-116.85,0); INSERT INTO "area" VALUES('EPSG','4483','USA - Oregon - Pilot Rock-Ukiah','United States (USA) - Oregon - Pilot Rock-Ukiah area.',44.99,46.04,-119.65,-118.11,0); INSERT INTO "area" VALUES('EPSG','4484','USA - Oregon - Prairie City-Brogan','United States (USA) - Oregon - Prairie City-Brogan area.',44.16,45.02,-118.77,-117.48,0); INSERT INTO "area" VALUES('EPSG','4485','USA - Nevada - Las Vegas','United States (USA) - Nevada - Las Vegas area below approximately 3000 feet.',35.88,36.43,-115.5,-114.71,0); INSERT INTO "area" VALUES('EPSG','4486','USA - Oregon - Warner Highway','United States (USA) - Oregon - Warner Highway area.',41.95,42.43,-120.42,-119.3,0); INSERT INTO "area" VALUES('EPSG','4487','USA - Nevada - Las Vegas high elevation','United States (USA) - Nevada - Las Vegas area above approximately 2850 feet.',35.88,36.43,-115.5,-114.71,0); INSERT INTO "area" VALUES('EPSG','4488','USA - Oregon - Willamette Pass','United States (USA) - Oregon - Willamette Pass area.',42.99,44.18,-122.26,-121.48,0); INSERT INTO "area" VALUES('EPSG','4489','Antarctica - Adelie Land coastal area west of 138°E','Antarctica - Adelie Land - coastal area between 136°E and 138°E.',-66.73,-65.61,136.0,138.01,0); INSERT INTO "area" VALUES('EPSG','4490','Germany - Hamburg','Germany - Hamburg, including Neuwerk, Nigehörn, Scharhörn and surrounding maritime area.',53.36,53.99,8.33,10.41,0); INSERT INTO "area" VALUES('EPSG','4491','Australia - Queensland - Weipa','Australia - Queensland - Weipa area between 141°30''E and 142°30''E.',-13.5,-11.49,141.5,142.51,0); INSERT INTO "area" VALUES('EPSG','4492','Antarctica - Adelie Land coastal area east of 138°E','Antarctica - Adelie Land - coastal area between 138°E and 142°E.',-67.13,-66.1,138.0,142.0,0); INSERT INTO "area" VALUES('EPSG','4493','Australia Christmas and Cocos - onshore','Australia - Australian Capital Territory, New South Wales, Northern Territory, Queensland, South Australia, Tasmania, Western Australia and Victoria - onshore. Christmas Island - onshore. Cocos and Keeling Islands - onshore.',-43.7,-9.86,96.76,153.69,0); INSERT INTO "area" VALUES('EPSG','4494','USA - Kansas - Hays','United States (USA) - Kansas - counties of Ellis; Graham; Norton; Phillips; Rooks; Trego.',38.69,40.01,-100.19,-99.03,0); INSERT INTO "area" VALUES('EPSG','4495','USA - Kansas - Goodland','United States (USA) - Kansas - counties of Cheyenne; Sherman; Wallace.',38.69,40.01,-102.06,-101.38,0); INSERT INTO "area" VALUES('EPSG','4496','USA - Kansas - Colby','United States (USA) - Kansas - counties of Logan; Rawlins; Thomas.',38.69,40.01,-101.49,-100.71,0); INSERT INTO "area" VALUES('EPSG','4497','USA - Kansas - Oberlin','United States (USA) - Kansas - counties of Decatur; Gove; Sheridan.',38.69,40.01,-100.82,-100.14,0); INSERT INTO "area" VALUES('EPSG','4498','USA - Kansas - Great Bend','United States (USA) - Kansas - counties of Barton; Osborne; Russell; Smith.',38.26,40.01,-99.07,-98.47,0); INSERT INTO "area" VALUES('EPSG','4499','USA - Kansas - Beloit','United States (USA) - Kansas - counties of Ellsworth; Jewell; Lincoln; Mitchell; Rice.',38.15,40.01,-98.51,-97.92,0); INSERT INTO "area" VALUES('EPSG','4500','USA - Kansas - Salina','United States (USA) - Kansas - counties of Clay; Cloud; Dickinson; Marion; McPherson; Ottawa; Republic; Saline; Washington.',38.08,40.01,-97.94,-96.8,0); INSERT INTO "area" VALUES('EPSG','4501','USA - Kansas - Manhattan','United States (USA) - Kansas - counties of Geary; Pottawatomie; Riley; Wabaunsee.',38.73,39.57,-96.97,-95.94,0); INSERT INTO "area" VALUES('EPSG','4502','USA - Kansas - Emporia','United States (USA) - Kansas - counties of Chase; Lyon; Morris.',38.08,38.88,-96.94,-95.94,0); INSERT INTO "area" VALUES('EPSG','4503','USA - Kansas - Atchison','United States (USA) - Kansas - counties of Atchison; Brown; Doniphan; Jackson; Marshall; Nemaha.',39.21,40.01,-96.81,-94.85,0); INSERT INTO "area" VALUES('EPSG','4504','USA - Kansas - Kansas City','United States (USA) - Kansas - counties of Douglas; Jefferson; Johnson; Leavenworth; Shawnee; Wyandotte.',38.73,39.43,-96.04,-94.58,0); INSERT INTO "area" VALUES('EPSG','4505','USA - Kansas - Ulysses','United States (USA) - Kansas - counties of Grant; Greeley; Hamilton; Kearny; Morton; Stanton; Stevens; Wichita.',36.99,38.71,-102.05,-101.06,0); INSERT INTO "area" VALUES('EPSG','4506','USA - Kansas - Garden City','United States (USA) - Kansas - counties of Finney; Gray; Haskell; Lane; Meade; Scott; Seward.',36.99,38.71,-101.13,-100.08,0); INSERT INTO "area" VALUES('EPSG','4507','USA - Kansas - Dodge City','United States (USA) - Kansas - counties of Clark; Ford; Hodgeman; Ness.',36.99,38.7,-100.25,-99.54,0); INSERT INTO "area" VALUES('EPSG','4508','USA - Kansas - Larned','United States (USA) - Kansas - counties of Comanche; Edwards; Kiowa; Pawnee; Rush.',36.99,38.7,-99.59,-98.91,0); INSERT INTO "area" VALUES('EPSG','4509','USA - Kansas - Pratt','United States (USA) - Kansas - counties of Barber; Pratt; Stafford.',36.99,38.27,-99.03,-98.34,0); INSERT INTO "area" VALUES('EPSG','4510','USA - Kansas - Wichita','United States (USA) - Kansas - counties of Butler; Harvey; Kingman; Reno; Sedgwick.',37.38,38.18,-98.48,-96.52,0); INSERT INTO "area" VALUES('EPSG','4511','USA - Kansas - Arkansas City','United States (USA) - Kansas - counties of Cowley; Harper; Sumner.',36.99,37.48,-98.35,-96.52,0); INSERT INTO "area" VALUES('EPSG','4512','USA - Kansas - Coffeyville','United States (USA) - Kansas - counties of Chautauqua; Coffey; Elk; Greenwood; Montgomery; Osage; Wilson; Woodson.',36.99,38.88,-96.53,-95.5,0); INSERT INTO "area" VALUES('EPSG','4513','USA - Kansas - Pittsburg','United States (USA) - Kansas - counties of Allen; Anderson; Bourbon; Cherokee; Crawford; Franklin; Labette; Linn; Miami; Neosho.',36.99,38.74,-95.53,-94.6,0); INSERT INTO "area" VALUES('EPSG','4514','Pacific - Guam and NMI west of 144°E','Guam and Northern Mariana Islands; offshore west of 144°E.',10.95,23.9,141.19,144.01,0); INSERT INTO "area" VALUES('EPSG','4515','USA - FBN','American Samoa - Tutuila, Aunu''u, Ofu, Olesega, Ta''u and Rose islands - onshore. Guam - onshore. Northern Mariana Islands - onshore. Puerto Rico - onshore. United States (USA) – CONUS - Alabama; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming - onshore plus Gulf of Mexico offshore continental shelf (GoM OCS). US Virgin Islands - onshore.',-14.59,49.38,144.58,-64.51,0); INSERT INTO "area" VALUES('EPSG','4516','USA - CONUS and GoM','United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Gulf of Mexico offshore continental shelf (GoM OCS).',23.82,49.38,-124.79,-66.91,0); INSERT INTO "area" VALUES('EPSG','4517','Canada - NAD27','Canada - onshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon; offshore east coast.',40.04,83.17,-141.01,-47.74,0); INSERT INTO "area" VALUES('EPSG','4518','Pacific - Guam and NMI east of 144°E','Guam and Northern Mariana Islands; onshore and offshore east of 144°E.',11.05,23.9,144.0,149.55,0); INSERT INTO "area" VALUES('EPSG','4519','Algeria - 32°N to 34°39''N','Algeria - 35.6 grads to 38.5 grads North (32°N to 34°39''N).',31.99,34.66,-2.95,9.09,0); INSERT INTO "area" VALUES('EPSG','4520','World centred on 90°W','World centred on the Americas.',-90.0,90.0,90.01,89.99,0); INSERT INTO "area" VALUES('EPSG','4521','Northern Mariana Islands - onshore','Northern Mariana Islands - onshore.',14.06,20.61,144.83,146.12,0); INSERT INTO "area" VALUES('EPSG','4522','Finland - mainland south of 66°N','Finland - onshore mainland south of approximately 66°N.',59.75,66.73,20.95,31.59,0); INSERT INTO "area" VALUES('EPSG','4523','World centred on 150°E','World centred on Asia-Pacific.',-90.0,90.0,-29.99,-30.01,0); INSERT INTO "area" VALUES('EPSG','4524','Saudi Arabia - west of 36°E','Saudi Arabia - onshore and offshore - west of 36°E.',24.92,29.38,34.44,36.01,0); INSERT INTO "area" VALUES('EPSG','4525','Pacific - Guam and NMI - onshore','Guam - onshore. Northern Mariana Islands - onshore.',13.18,20.61,144.58,146.12,0); INSERT INTO "area" VALUES('EPSG','4526','Saudi Arabia - 36°E to 42°E','Saudi Arabia - onshore and offshore - between 36°E and 42°E.',16.29,32.16,36.0,42.0,0); INSERT INTO "area" VALUES('EPSG','4527','Saudi Arabia - 42°E to 48°E','Saudi Arabia - onshore and offshore - between of 42°E and 48°E.',15.61,31.15,41.99,48.0,0); INSERT INTO "area" VALUES('EPSG','4528','Saudi Arabia - 48°E to 54°E','Saudi Arabia - onshore and offshore - between 48°E and 54°E.',17.43,28.94,48.0,54.01,0); INSERT INTO "area" VALUES('EPSG','4530','Latin America - Central America and South America','Latin America - Central America and South America, onshore and offshore.',-59.87,32.72,-122.19,-25.28,0); INSERT INTO "area" VALUES('EPSG','4531','Costa Rica - offshore Caribbean','Costa Rica - offshore - Caribbean sea.',9.6,11.77,-83.6,-81.43,0); INSERT INTO "area" VALUES('EPSG','4532','Costa Rica - offshore Pacific','Costa Rica - offshore Pacific ocean and onshore Coco Island.',2.15,11.11,-90.45,-82.92,0); INSERT INTO "area" VALUES('EPSG','4533','Canada - British Columbia - CRD','Canada - British Columbia - Vancouver Island - Capital Regional District.',48.25,49.06,-124.52,-123.0,0); INSERT INTO "area" VALUES('EPSG','4534','Canada - British Columbia - north Vancouver Is','Canada - British Columbia - north Vancouver Island.',48.48,50.93,-128.5,-123.49,0); INSERT INTO "area" VALUES('EPSG','4535','Canada - British Columbia - mainland','Canada - British Columbia - mainland and Graham Island.',48.99,60.01,-139.04,-114.08,0); INSERT INTO "area" VALUES('EPSG','4536','Canada - Ontario - Toronto','Canada - Ontario - Toronto.',43.58,43.86,-79.64,-79.11,0); INSERT INTO "area" VALUES('EPSG','4537','Canada - Ontario ex. Toronto','Canada - Ontario excluding Toronto.',41.67,56.9,-95.16,-74.35,0); INSERT INTO "area" VALUES('EPSG','4538','Vietnam - Son La','Vietnam - Son La province.',20.57,22.04,103.21,105.03,0); INSERT INTO "area" VALUES('EPSG','4539','Angola - east of 18°E','Angola - east of 18°E.',-18.02,-6.91,17.99,24.09,0); INSERT INTO "area" VALUES('EPSG','4540','Africa - South Africa, Lesotho and Eswatini.','Eswatini (Swaziland); Lesotho; South Africa - onshore and offshore.',-50.32,-22.13,13.33,42.85,0); INSERT INTO "area" VALUES('EPSG','4541','Vietnam - Dien Bien and Lai Chau','Vietnam - Dien Bien and Lai Chau provinces.',20.89,22.82,102.14,103.99,0); INSERT INTO "area" VALUES('EPSG','4542','Kosovo','Kosovo.',41.85,43.25,19.97,21.8,0); INSERT INTO "area" VALUES('EPSG','4543','Serbia','Serbia including Vojvodinja.',42.23,46.19,18.81,23.01,0); INSERT INTO "area" VALUES('EPSG','4544','North America - Canada, US (Conus+AK), PRVI','North America - onshore and offshore: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon. Puerto Rico. United States (USA) - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands.',14.92,86.46,167.65,-47.74,0); INSERT INTO "area" VALUES('EPSG','4545','Vietnam - Ca Mau and Kien Giang','Vietnam - Ca Mau and Kien Giang provinces.',8.33,10.55,103.4,105.54,0); INSERT INTO "area" VALUES('EPSG','4546','Vietnam - An Giang, Lao Cai, Nghe An, Phu Tho, Yen Bai','Vietnam - An Giang, Lao Cai, Nghe An, Phu Tho and Yen Bai provinces.',10.18,22.85,103.53,105.86,0); INSERT INTO "area" VALUES('EPSG','4547','Vietnam - 104°20''E to 106°10''E by province - Hanoi','Vietnam - Ha Noi city, Ha Nam, Ha Tay, Ninh Binh, Thanh Hoa and Vinh Phuc provinces; Can Tho city, Bac Lieu, Dong Thap and Hau Giang provinces.',8.97,21.58,104.37,106.19,0); INSERT INTO "area" VALUES('EPSG','4548','Vietnam - 104°20''E to 106°40''E by province','Vietnam - Bac Ninh, Ha Giang, Ha Tinh, Hai Duong, Hung Yen, Nam Dinh, Soc Trang, Tay Ninh, Thai Binh, Tra Vinh and Vinh Long provinces.',9.19,23.4,104.33,106.69,0); INSERT INTO "area" VALUES('EPSG','4549','Vietnam - 105°15''E to 107°50''E by province - HCMC','Vietnam - Hai Phong and Ho Chi Minh cities; Ben Tre, Binh Duong, Cao Bang, Long An and Tien Giang provinces.',9.75,23.12,105.26,107.8,0); INSERT INTO "area" VALUES('EPSG','4550','Vietnam - Hoa Binh, Quang Binh and Tuyen Quang','Vietnam - Hoa Binh, Quang Binh and Tuyen Quang provinces.',16.92,22.7,104.83,107.03,0); INSERT INTO "area" VALUES('EPSG','4551','Angola - west of 12°E','Angola - west of 12°E, onshore and offshore.',-17.28,-5.03,8.2,12.01,0); INSERT INTO "area" VALUES('EPSG','4552','Vietnam - Binh Phuoc and Quang Tri','Vietnam - Binh Phuoc and Quang Tri provinces.',11.3,17.22,106.41,107.43,0); INSERT INTO "area" VALUES('EPSG','4553','Vietnam - Bac Kan and Thai Nguyen','Vietnam - Bac Kan and Thai Nguyen provinces.',21.32,22.75,105.43,106.25,0); INSERT INTO "area" VALUES('EPSG','4554','Vietnam - Bac Giang and Thua Thien-Hue','Vietnam - Bac Giang and Thua Thien-Hue provinces.',15.99,21.63,105.88,108.24,0); INSERT INTO "area" VALUES('EPSG','4555','Angola - 12°E to 18°E','Angola - between 12°E and 18°E, onshore and offshore.',-17.44,-4.38,12.0,18.0,0); INSERT INTO "area" VALUES('EPSG','4556','Vietnam - Lang Son','Vietnam - Lang Son province.',21.32,22.47,106.09,107.37,0); INSERT INTO "area" VALUES('EPSG','4557','Vietnam - Kon Tum','Vietnam - Kon Tum province.',13.92,15.42,107.33,108.55,0); INSERT INTO "area" VALUES('EPSG','4558','Vietnam - Quang Ngai','Vietnam - Quang Ngai province.',14.53,15.49,108.23,109.2,0); INSERT INTO "area" VALUES('EPSG','4559','Vietnam - Binh Dinh, Khanh Hoa, Ninh Thuan','Vietnam - Binh Dinh, Khanh Hoa and Ninh Thuan provinces.',11.25,14.71,108.55,109.53,0); INSERT INTO "area" VALUES('EPSG','4560','Vietnam - Binh Thuan, Dak Lak, Dak Nong, Gia Lai, Phu Yen','Vietnam - Binh Thuan, Dak Lak, Dak Nong, Gia Lai and Phu Yen provinces.',10.43,14.61,107.2,109.52,0); INSERT INTO "area" VALUES('EPSG','4561','Argentina - Mendoza - Cuyo basin','Argentina - Mendoza province - Cuyo basin.',-36.37,-31.96,-69.4,-66.42,0); INSERT INTO "area" VALUES('EPSG','4562','Argentina - Mendoza and Neuquen','Argentina - Mendoza province, Neuquen province, western La Pampa province and western Rio Negro province.',-43.41,-31.91,-72.14,-65.86,0); INSERT INTO "area" VALUES('EPSG','4563','Argentina - 42.5°S to 50.3°S','Argentina - Chibut province south of approximately 42°30''S and Santa Cruz province north of approximately 50°20''S.',-50.34,-42.49,-73.59,-65.47,0); INSERT INTO "area" VALUES('EPSG','4564','Argentina - 42.5°S to 50.3°S and west of 70.5°W','Argentina - Chibut province west of 70°30''W and south of approximately 44°55''S and Santa Cruz province west of 70°30''W and north of approximately 50°20''S.',-50.34,-44.94,-73.59,-70.5,0); INSERT INTO "area" VALUES('EPSG','4565','Argentina - 42.5°S to 50.3°S and east of 67.5°W','Argentina - Chibut province east of 67°30''W and south of approximately 43°35''S and Santa Cruz province east of 67°30''W and north of approximately 49°23''S.',-49.05,-43.58,-67.5,-65.47,0); INSERT INTO "area" VALUES('EPSG','4566','Europe - offshore North Sea - Germany and Netherlands east of 5°E','Germany - offshore North Sea. Netherlands - offshore east of 5E.',53.49,55.92,3.34,8.88,0); INSERT INTO "area" VALUES('EPSG','4567','South Africa - mainland - onshore and offshore','South Africa - mainland - onshore and offshore.',-38.17,-22.13,13.33,36.54,0); INSERT INTO "area" VALUES('EPSG','4568','South Africa - Prince Edward islands - onshore and offshore','South Africa - Marion Island and Prince Edward Island - onshore and offshore.',-50.32,-43.26,32.71,42.85,0); INSERT INTO "area" VALUES('EPSG','4569','Argentina - south Santa Cruz','Argentina - Santa Cruz province south of approximately 50°20''S.',-52.43,-50.33,-73.28,-68.3,0); INSERT INTO "area" VALUES('EPSG','4570','Argentina - south Santa Cruz west of 70.5°W','Argentina - Santa Cruz province south of approximately 50°20''S and west of 70°30''W.',-52.0,-50.33,-73.28,-70.5,0); INSERT INTO "area" VALUES('EPSG','4571','Argentina - south Santa Cruz east of 70.5°W','Argentina - Santa Cruz province south of approximately 50°20''S and east of 70°30''W.',-52.43,-50.33,-70.5,-68.3,0); INSERT INTO "area" VALUES('EPSG','4572','Argentina - 44°S to 47.5°S','Argentina - Chubut province south of approximately 44°S and Santa Cruz province north of approximately 47°30''S - Golfo San Jorge basin onshore and offshore.',-47.5,-43.99,-72.36,-63.24,0); INSERT INTO "area" VALUES('EPSG','4573','Argentina - onshore','Argentina - onshore.',-55.11,-21.78,-73.59,-53.65,0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "coordinate_system" VALUES('EPSG','1024','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1025','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1026','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1027','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1028','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1029','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1030','vertical',1); INSERT INTO "coordinate_system" VALUES('EPSG','1031','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1032','Cartesian',3); INSERT INTO "coordinate_system" VALUES('EPSG','1033','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1034','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1035','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1036','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1037','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1038','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1039','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1040','Cartesian',3); INSERT INTO "coordinate_system" VALUES('EPSG','1041','Cartesian',3); INSERT INTO "coordinate_system" VALUES('EPSG','1042','Cartesian',3); INSERT INTO "coordinate_system" VALUES('EPSG','1043','vertical',1); INSERT INTO "coordinate_system" VALUES('EPSG','1044','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1045','Cartesian',3); INSERT INTO "coordinate_system" VALUES('EPSG','1047','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1048','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','1049','vertical',1); INSERT INTO "coordinate_system" VALUES('EPSG','1050','vertical',1); INSERT INTO "coordinate_system" VALUES('EPSG','4400','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4401','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4402','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4403','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4404','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4405','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4406','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4407','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4408','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4409','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4410','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4460','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4461','Cartesian',3); INSERT INTO "coordinate_system" VALUES('EPSG','4462','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4463','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4464','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4465','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4466','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4467','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4468','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4469','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4470','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4471','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4472','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4473','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4474','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4475','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4476','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4477','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4478','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4479','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4480','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4481','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4482','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4483','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4484','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4485','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4486','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4487','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4488','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4489','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4490','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4491','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4492','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4493','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4494','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4495','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4496','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4497','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4498','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4499','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4500','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4501','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4502','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4530','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4531','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4532','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4533','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','4534','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6401','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6402','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6403','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6404','spherical',3); INSERT INTO "coordinate_system" VALUES('EPSG','6405','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6406','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6407','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6408','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6409','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6410','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6411','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6412','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6413','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6414','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6415','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6416','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6417','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6418','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6419','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6420','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6421','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6422','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6423','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6424','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6425','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6426','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6427','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6428','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6429','ellipsoidal',2); INSERT INTO "coordinate_system" VALUES('EPSG','6430','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6431','ellipsoidal',3); INSERT INTO "coordinate_system" VALUES('EPSG','6495','vertical',1); INSERT INTO "coordinate_system" VALUES('EPSG','6496','vertical',1); INSERT INTO "coordinate_system" VALUES('EPSG','6497','vertical',1); INSERT INTO "coordinate_system" VALUES('EPSG','6498','vertical',1); INSERT INTO "coordinate_system" VALUES('EPSG','6499','vertical',1); INSERT INTO "coordinate_system" VALUES('EPSG','6500','Cartesian',3); INSERT INTO "coordinate_system" VALUES('EPSG','6501','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6502','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6503','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6504','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6505','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6506','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6507','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6508','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6509','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6510','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6511','Cartesian',2); INSERT INTO "coordinate_system" VALUES('EPSG','6512','Cartesian',3); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "axis" VALUES('EPSG','1039','Easting','M','east','EPSG','1024',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1040','Northing','P','north','EPSG','1024',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1062','Easting','X','North along 130°W','EPSG','1025',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1063','Northing','Y','North along 140°E','EPSG','1025',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1065','Easting','E','South along 90°E','EPSG','1026',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1066','Northing','N','South along 180°E','EPSG','1026',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1056','Easting','E','North along 90°E','EPSG','1027',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1058','Northing','N','North along 0°E','EPSG','1027',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1073','Easting','E','east','EPSG','1028',1,'EPSG','9037'); INSERT INTO "axis" VALUES('EPSG','1074','Northing','N','north','EPSG','1028',2,'EPSG','9037'); INSERT INTO "axis" VALUES('EPSG','1078','Northing','N','north','EPSG','1029',1,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','1079','Easting','E','east','EPSG','1029',2,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','1082','Gravity-related height','H','up','EPSG','1030',1,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','1101','Northing','Y','north','EPSG','1031',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1102','Westing','X','west','EPSG','1031',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1110','Plant East','x','east','EPSG','1032',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1111','Plant North','y','north','EPSG','1032',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1112','Gravity-related height','z','up','EPSG','1032',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1428','Bin grid I','I','J-axis plus 90 degrees','EPSG','1033',1,'EPSG','1024'); INSERT INTO "axis" VALUES('EPSG','1429','Bin grid J','J','See associated operation','EPSG','1033',2,'EPSG','1024'); INSERT INTO "axis" VALUES('EPSG','1431','Bin grid I','I','J-axis minus 90 degrees','EPSG','1034',1,'EPSG','1024'); INSERT INTO "axis" VALUES('EPSG','1432','Bin grid J','J','See associated operation','EPSG','1034',2,'EPSG','1024'); INSERT INTO "axis" VALUES('EPSG','1466','Easting','X','South along 180°E','EPSG','1035',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1467','Northing','Y','South along 90°W','EPSG','1035',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1471','Easting','X','South along 57°E','EPSG','1036',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1472','Northing','Y','South along 147°E','EPSG','1036',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1476','Easting','X','South along 108°E','EPSG','1037',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1477','Northing','Y','South along 162°W','EPSG','1037',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1481','Easting','X','South along 165°W','EPSG','1038',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1482','Northing','Y','South along 75°W','EPSG','1038',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1486','Easting','E','east','EPSG','1039',1,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','1487','Northing','N','north','EPSG','1039',2,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','1024','Forward','x','Ahead','EPSG','1040',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1025','Starboard','y','Starboard','EPSG','1040',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1026','Platform Up','z','Upward','EPSG','1040',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1030','Forward','x','Ahead','EPSG','1041',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1031','Starboard','y','Starboard','EPSG','1041',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1032','Platform Down','z','Downward','EPSG','1041',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1036','Starboard','x','Starboard','EPSG','1042',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1037','Forward','y','Ahead','EPSG','1042',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1038','Platform Up','z','Upward','EPSG','1042',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1516','Depth','D','down','EPSG','1043',1,'EPSG','9003'); INSERT INTO "axis" VALUES('EPSG','1525','Northing','N','North along 180°E','EPSG','1044',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1526','Easting','E','North along 90°W','EPSG','1044',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1044','Starboard','x','Starboard','EPSG','1045',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1045','Forward','y','Ahead','EPSG','1045',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1046','Platform Down','z','Downward','EPSG','1045',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1042','Local northing','n','north','EPSG','1047',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1043','Local easting','e','east','EPSG','1047',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1049','Local northing','n','north','EPSG','1048',1,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','1050','Local easting','e','east','EPSG','1048',2,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','1051','Local depth','d','down','EPSG','1049',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','1053','Local depth','d','down','EPSG','1050',1,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','1','Easting','E','east','EPSG','4400',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','2','Northing','N','north','EPSG','4400',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','3','Easting','E','east','EPSG','4401',1,'EPSG','9062'); INSERT INTO "axis" VALUES('EPSG','4','Northing','N','north','EPSG','4401',2,'EPSG','9062'); INSERT INTO "axis" VALUES('EPSG','5','Easting','E','east','EPSG','4402',1,'EPSG','9042'); INSERT INTO "axis" VALUES('EPSG','6','Northing','N','north','EPSG','4402',2,'EPSG','9042'); INSERT INTO "axis" VALUES('EPSG','7','Easting','E','east','EPSG','4403',1,'EPSG','9005'); INSERT INTO "axis" VALUES('EPSG','8','Northing','N','north','EPSG','4403',2,'EPSG','9005'); INSERT INTO "axis" VALUES('EPSG','9','Easting','E','east','EPSG','4404',1,'EPSG','9094'); INSERT INTO "axis" VALUES('EPSG','10','Northing','N','north','EPSG','4404',2,'EPSG','9094'); INSERT INTO "axis" VALUES('EPSG','11','Easting','E','east','EPSG','4405',1,'EPSG','9041'); INSERT INTO "axis" VALUES('EPSG','12','Northing','N','north','EPSG','4405',2,'EPSG','9041'); INSERT INTO "axis" VALUES('EPSG','13','Easting','X','east','EPSG','4406',1,'EPSG','9036'); INSERT INTO "axis" VALUES('EPSG','14','Northing','Y','north','EPSG','4406',2,'EPSG','9036'); INSERT INTO "axis" VALUES('EPSG','15','Easting','E','east','EPSG','4407',1,'EPSG','9039'); INSERT INTO "axis" VALUES('EPSG','16','Northing','N','north','EPSG','4407',2,'EPSG','9039'); INSERT INTO "axis" VALUES('EPSG','17','Easting','E','east','EPSG','4408',1,'EPSG','9084'); INSERT INTO "axis" VALUES('EPSG','18','Northing','N','north','EPSG','4408',2,'EPSG','9084'); INSERT INTO "axis" VALUES('EPSG','19','Easting','E','east','EPSG','4409',1,'EPSG','9040'); INSERT INTO "axis" VALUES('EPSG','20','Northing','N','north','EPSG','4409',2,'EPSG','9040'); INSERT INTO "axis" VALUES('EPSG','181','Easting','E','east','EPSG','4410',1,'EPSG','9301'); INSERT INTO "axis" VALUES('EPSG','182','Northing','N','north','EPSG','4410',2,'EPSG','9301'); INSERT INTO "axis" VALUES('EPSG','236','Easting','E','South along 90°E.','EPSG','4460',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','237','Northing','N','South along 180°E','EPSG','4460',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','205','Topocentric East','U','east','EPSG','4461',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','206','Topocentric North','V','north','EPSG','4461',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','207','Topocentric height','W','up','EPSG','4461',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','193','Easting','X','South along 180°W','EPSG','4462',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','194','Northing','Y','South along 90°W','EPSG','4462',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','195','Easting','X','South along 100°E','EPSG','4463',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','196','Northing','Y','South along 170°W','EPSG','4463',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','197','Easting','X','South along 90°W','EPSG','4464',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','198','Northing','Y','South along 0°E','EPSG','4464',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','199','Easting','X','South along 50°E','EPSG','4465',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','200','Northing','Y','South along 140°E','EPSG','4465',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','201','Easting','X','South along 10°W','EPSG','4466',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','202','Northing','Y','South along 80°E','EPSG','4466',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','203','Easting','X','South along 60°W','EPSG','4467',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','204','Northing','Y','South along 30°E','EPSG','4467',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','191','Easting','X','South along 45°E','EPSG','4468',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','192','Northing','Y','South along 135°E','EPSG','4468',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','187','Easting','X','South along 90°E','EPSG','4469',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','188','Northing','Y','South along 180°E','EPSG','4469',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','185','Easting','X','North along 90°E','EPSG','4470',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','186','Northing','Y','North along 0°E','EPSG','4470',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','137','Easting','E','North along 75°W','EPSG','4471',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','138','Northing','N','North along 165°W','EPSG','4471',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','156','Easting','E','North along 60°W','EPSG','4472',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','139','Northing','N','North along 150°W','EPSG','4472',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','157','Easting','E','North along 45°W','EPSG','4473',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','140','Northing','N','North along 135°W','EPSG','4473',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','158','Easting','E','North along 15°W','EPSG','4474',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','141','Northing','N','North along 105°W','EPSG','4474',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','159','Easting','E','North along 0°E','EPSG','4475',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','142','Northing','N','North along 90°W','EPSG','4475',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','160','Easting','E','North along 15°E','EPSG','4476',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','143','Northing','N','North along 75°W','EPSG','4476',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','161','Easting','E','North along 45°E','EPSG','4477',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','144','Northing','N','North along 45°W','EPSG','4477',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','162','Easting','E','North along 60°E','EPSG','4478',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','145','Northing','N','North along 30°W','EPSG','4478',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','163','Easting','E','North along 75°E','EPSG','4479',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','146','Northing','N','North along 15°W','EPSG','4479',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','164','Easting','E','North along 105°E','EPSG','4480',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','147','Northing','N','North along 15°E','EPSG','4480',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','165','Easting','E','North along 120°E','EPSG','4481',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','148','Northing','N','North along 30°E','EPSG','4481',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','166','Easting','E','North along 135°E','EPSG','4482',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','149','Northing','N','North along 45°E','EPSG','4482',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','167','Easting','E','North along 165°E','EPSG','4483',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','150','Northing','N','North along 75°E','EPSG','4483',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','168','Easting','E','North along 180°E','EPSG','4484',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','151','Northing','N','North along 90°E','EPSG','4484',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','169','Easting','E','North along 165°W','EPSG','4485',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','152','Northing','N','North along 105°E','EPSG','4485',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','170','Easting','E','North along 135°W','EPSG','4486',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','153','Northing','N','North along 135°E','EPSG','4486',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','171','Easting','E','North along 120°W','EPSG','4487',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','154','Northing','N','North along 150°E','EPSG','4487',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','172','Easting','E','North along 105°W','EPSG','4488',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','155','Northing','N','North along 165°E','EPSG','4488',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','21','Easting','E','North along 160°E','EPSG','4489',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','22','Northing','N','North along 70°E','EPSG','4489',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','23','Easting','E','North along 90°E','EPSG','4490',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','24','Northing','N','North along 0°E','EPSG','4490',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','26','Westing','W','west','EPSG','4491',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','25','Northing','N','north','EPSG','4491',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','27','First local axis','X','North along 130°W','EPSG','4492',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','28','Second local axis','Y','North along 140°E','EPSG','4492',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','30','Northing','N','South along 180°E','EPSG','4493',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','29','Easting','E','South along 90°E','EPSG','4493',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','32','Northing','N','North along 0°E','EPSG','4494',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','31','Easting','E','North along 90°E','EPSG','4494',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','33','Easting','X','east','EPSG','4495',1,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','34','Northing','Y','north','EPSG','4495',2,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','35','Easting','E(X)','east','EPSG','4496',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','36','Northing','N(Y)','north','EPSG','4496',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','37','Easting','X','east','EPSG','4497',1,'EPSG','9003'); INSERT INTO "axis" VALUES('EPSG','38','Northing','Y','north','EPSG','4497',2,'EPSG','9003'); INSERT INTO "axis" VALUES('EPSG','39','Easting','Y','east','EPSG','4498',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','40','Northing','X','north','EPSG','4498',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','41','Easting','X','east','EPSG','4499',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','42','Northing','Y','north','EPSG','4499',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','44','Northing','N','north','EPSG','4500',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','43','Easting','E','east','EPSG','4500',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','45','Northing','N','north','EPSG','4501',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','46','Westing','E','west','EPSG','4501',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','189','Northing','N','north','EPSG','4502',1,'EPSG','9005'); INSERT INTO "axis" VALUES('EPSG','190','Easting','E','east','EPSG','4502',2,'EPSG','9005'); INSERT INTO "axis" VALUES('EPSG','48','Northing','X','north','EPSG','4530',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','47','Easting','Y','east','EPSG','4530',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','50','Northing','x','north','EPSG','4531',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','49','Easting','y','east','EPSG','4531',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','52','Northing','Y','north','EPSG','4532',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','51','Easting','X','east','EPSG','4532',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','180','Northing','X','north','EPSG','4533',1,'EPSG','9098'); INSERT INTO "axis" VALUES('EPSG','179','Easting','Y','east','EPSG','4533',2,'EPSG','9098'); INSERT INTO "axis" VALUES('EPSG','183','Northing','none','north','EPSG','4534',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','184','Easting','none','east','EPSG','4534',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','53','Geodetic latitude','Lat','north','EPSG','6401',1,'EPSG','9108'); INSERT INTO "axis" VALUES('EPSG','54','Geodetic longitude','Long','east','EPSG','6401',2,'EPSG','9108'); INSERT INTO "axis" VALUES('EPSG','55','Ellipsoidal height','h','up','EPSG','6401',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','56','Geodetic latitude','Lat','north','EPSG','6402',1,'EPSG','9108'); INSERT INTO "axis" VALUES('EPSG','57','Geodetic longitude','Long','east','EPSG','6402',2,'EPSG','9108'); INSERT INTO "axis" VALUES('EPSG','58','Geodetic latitude','Lat','north','EPSG','6403',1,'EPSG','9105'); INSERT INTO "axis" VALUES('EPSG','59','Geodetic longitude','Lon','east','EPSG','6403',2,'EPSG','9105'); INSERT INTO "axis" VALUES('EPSG','60','Spherical latitude','Lat','north','EPSG','6404',1,'EPSG','9122'); INSERT INTO "axis" VALUES('EPSG','61','Spherical longitude','Long','east','EPSG','6404',2,'EPSG','9122'); INSERT INTO "axis" VALUES('EPSG','62','Geocentric radius','R','up','EPSG','6404',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','63','Geodetic latitude','Lat','north','EPSG','6405',1,'EPSG','9102'); INSERT INTO "axis" VALUES('EPSG','64','Geodetic longitude','Long','east','EPSG','6405',2,'EPSG','9102'); INSERT INTO "axis" VALUES('EPSG','65','Geodetic latitude','Lat','north','EPSG','6406',1,'EPSG','9116'); INSERT INTO "axis" VALUES('EPSG','66','Geodetic longitude','Long','east','EPSG','6406',2,'EPSG','9116'); INSERT INTO "axis" VALUES('EPSG','67','Geodetic latitude','Lat','north','EPSG','6407',1,'EPSG','9117'); INSERT INTO "axis" VALUES('EPSG','68','Geodetic longitude','Long','east','EPSG','6407',2,'EPSG','9117'); INSERT INTO "axis" VALUES('EPSG','69','Geodetic latitude','Lat','north','EPSG','6408',1,'EPSG','9115'); INSERT INTO "axis" VALUES('EPSG','70','Geodetic longitude','Long','east','EPSG','6408',2,'EPSG','9115'); INSERT INTO "axis" VALUES('EPSG','71','Geodetic latitude','Lat','north','EPSG','6409',1,'EPSG','9118'); INSERT INTO "axis" VALUES('EPSG','72','Geodetic longitude','Long','east','EPSG','6409',2,'EPSG','9118'); INSERT INTO "axis" VALUES('EPSG','73','Geodetic latitude','Lat','north','EPSG','6410',1,'EPSG','9119'); INSERT INTO "axis" VALUES('EPSG','74','Geodetic longitude','Long','east','EPSG','6410',2,'EPSG','9119'); INSERT INTO "axis" VALUES('EPSG','75','Geodetic latitude','Lat','north','EPSG','6411',1,'EPSG','9107'); INSERT INTO "axis" VALUES('EPSG','76','Geodetic longitude','Long','east','EPSG','6411',2,'EPSG','9107'); INSERT INTO "axis" VALUES('EPSG','77','Geodetic latitude','Lat','north','EPSG','6412',1,'EPSG','9120'); INSERT INTO "axis" VALUES('EPSG','78','Geodetic longitude','Long','east','EPSG','6412',2,'EPSG','9120'); INSERT INTO "axis" VALUES('EPSG','79','Geodetic latitude','Lat','north','EPSG','6413',1,'EPSG','9102'); INSERT INTO "axis" VALUES('EPSG','80','Geodetic longitude','Long','east','EPSG','6413',2,'EPSG','9102'); INSERT INTO "axis" VALUES('EPSG','81','Ellipsoidal height','h','up','EPSG','6413',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','82','Geodetic latitude','Lat','north','EPSG','6414',1,'EPSG','9116'); INSERT INTO "axis" VALUES('EPSG','83','Geodetic longitude','Long','east','EPSG','6414',2,'EPSG','9116'); INSERT INTO "axis" VALUES('EPSG','84','Ellipsoidal height','h','up','EPSG','6414',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','85','Geodetic latitude','Lat','north','EPSG','6415',1,'EPSG','9117'); INSERT INTO "axis" VALUES('EPSG','86','Geodetic longitude','Long','east','EPSG','6415',2,'EPSG','9117'); INSERT INTO "axis" VALUES('EPSG','87','Ellipsoidal height','h','up','EPSG','6415',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','88','Geodetic latitude','Lat','north','EPSG','6416',1,'EPSG','9115'); INSERT INTO "axis" VALUES('EPSG','89','Geodetic longitude','Long','east','EPSG','6416',2,'EPSG','9115'); INSERT INTO "axis" VALUES('EPSG','90','Ellipsoidal height','h','up','EPSG','6416',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','91','Geodetic latitude','Lat','north','EPSG','6417',1,'EPSG','9118'); INSERT INTO "axis" VALUES('EPSG','92','Geodetic longitude','Long','east','EPSG','6417',2,'EPSG','9118'); INSERT INTO "axis" VALUES('EPSG','93','Ellipsoidal height','h','up','EPSG','6417',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','94','Geodetic latitude','Lat','north','EPSG','6418',1,'EPSG','9119'); INSERT INTO "axis" VALUES('EPSG','95','Geodetic longitude','Long','east','EPSG','6418',2,'EPSG','9119'); INSERT INTO "axis" VALUES('EPSG','96','Ellipsoidal height','h','up','EPSG','6418',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','97','Geodetic latitude','Lat','north','EPSG','6419',1,'EPSG','9107'); INSERT INTO "axis" VALUES('EPSG','98','Geodetic longitude','Long','east','EPSG','6419',2,'EPSG','9107'); INSERT INTO "axis" VALUES('EPSG','99','Ellipsoidal height','h','up','EPSG','6419',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','100','Geodetic latitude','Lat','north','EPSG','6420',1,'EPSG','9120'); INSERT INTO "axis" VALUES('EPSG','101','Geodetic longitude','Long','east','EPSG','6420',2,'EPSG','9120'); INSERT INTO "axis" VALUES('EPSG','102','Ellipsoidal height','h','up','EPSG','6420',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','103','Geodetic latitude','Lat','north','EPSG','6421',1,'EPSG','9105'); INSERT INTO "axis" VALUES('EPSG','104','Geodetic longitude','Lon','east','EPSG','6421',2,'EPSG','9105'); INSERT INTO "axis" VALUES('EPSG','105','Ellipsoidal height','h','up','EPSG','6421',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','106','Geodetic latitude','Lat','north','EPSG','6422',1,'EPSG','9122'); INSERT INTO "axis" VALUES('EPSG','107','Geodetic longitude','Lon','east','EPSG','6422',2,'EPSG','9122'); INSERT INTO "axis" VALUES('EPSG','108','Geodetic latitude','Lat','north','EPSG','6423',1,'EPSG','9122'); INSERT INTO "axis" VALUES('EPSG','109','Geodetic longitude','Lon','east','EPSG','6423',2,'EPSG','9122'); INSERT INTO "axis" VALUES('EPSG','110','Ellipsoidal height','h','up','EPSG','6423',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','220','Geodetic longitude','Lon','east','EPSG','6424',1,'EPSG','9122'); INSERT INTO "axis" VALUES('EPSG','221','Geodetic latitude','Lat','north','EPSG','6424',2,'EPSG','9122'); INSERT INTO "axis" VALUES('EPSG','215','Geodetic longitude','Lon','east','EPSG','6425',1,'EPSG','9105'); INSERT INTO "axis" VALUES('EPSG','216','Geodetic latitude','Lat','north','EPSG','6425',2,'EPSG','9105'); INSERT INTO "axis" VALUES('EPSG','222','Geodetic longitude','Lon','east','EPSG','6426',1,'EPSG','9122'); INSERT INTO "axis" VALUES('EPSG','223','Geodetic latitude','Lat','north','EPSG','6426',2,'EPSG','9122'); INSERT INTO "axis" VALUES('EPSG','224','Ellipsoidal height','h','up','EPSG','6426',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','217','Geodetic longitude','Lon','east','EPSG','6427',1,'EPSG','9105'); INSERT INTO "axis" VALUES('EPSG','218','Geodetic latitude','Lat','north','EPSG','6427',2,'EPSG','9105'); INSERT INTO "axis" VALUES('EPSG','219','Ellipsoidal height','h','up','EPSG','6427',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','225','Geodetic latitude','Lat','north','EPSG','6428',1,'EPSG','9101'); INSERT INTO "axis" VALUES('EPSG','226','Geodetic longitude','Lon','east','EPSG','6428',2,'EPSG','9101'); INSERT INTO "axis" VALUES('EPSG','227','Geodetic longitude','Lon','east','EPSG','6429',1,'EPSG','9101'); INSERT INTO "axis" VALUES('EPSG','228','Geodetic latitude','Lat','north','EPSG','6429',2,'EPSG','9101'); INSERT INTO "axis" VALUES('EPSG','230','Geodetic latitude','Lat','north','EPSG','6430',1,'EPSG','9101'); INSERT INTO "axis" VALUES('EPSG','231','Geodetic longitude','Lon','east','EPSG','6430',2,'EPSG','9101'); INSERT INTO "axis" VALUES('EPSG','232','Ellipsoidal height','h','up','EPSG','6430',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','233','Geodetic longitude','Lon','east','EPSG','6431',1,'EPSG','9101'); INSERT INTO "axis" VALUES('EPSG','234','Geodetic latitude','Lat','north','EPSG','6431',2,'EPSG','9101'); INSERT INTO "axis" VALUES('EPSG','235','Ellipsoidal height','h','up','EPSG','6431',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','214','Depth','D','down','EPSG','6495',1,'EPSG','9002'); INSERT INTO "axis" VALUES('EPSG','111','Gravity-related height','H','up','EPSG','6496',1,'EPSG','9095'); INSERT INTO "axis" VALUES('EPSG','112','Gravity-related height','H','up','EPSG','6497',1,'EPSG','9003'); INSERT INTO "axis" VALUES('EPSG','113','Depth','D','down','EPSG','6498',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','114','Gravity-related height','H','up','EPSG','6499',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','115','Geocentric X','X','geocentricX','EPSG','6500',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','116','Geocentric Y','Y','geocentricY','EPSG','6500',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','117','Geocentric Z','Z','geocentricZ','EPSG','6500',3,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','119','Southing','X','south','EPSG','6501',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','118','Westing','Y','west','EPSG','6501',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','120','Westing','Y','west','EPSG','6502',1,'EPSG','9031'); INSERT INTO "axis" VALUES('EPSG','121','Southing','X','south','EPSG','6502',2,'EPSG','9031'); INSERT INTO "axis" VALUES('EPSG','122','Westing','Y','west','EPSG','6503',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','123','Southing','X','south','EPSG','6503',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','125','Plant North','n','northwest','EPSG','6504',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','124','Plant East','e','northeast','EPSG','6504',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','126','First local axis','n','northwest','EPSG','6505',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','127','Second local axis','e','northeast','EPSG','6505',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','128','First local axis','I','east-south-east','EPSG','6506',1,'EPSG','9205'); INSERT INTO "axis" VALUES('EPSG','129','Second local axis','J','north-north-east','EPSG','6506',2,'EPSG','9204'); INSERT INTO "axis" VALUES('EPSG','130','First local axis','X','north','EPSG','6507',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','131','Second local axis','Y','west','EPSG','6507',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','133','Bin grid J','J','north north east','EPSG','6508',1,'EPSG','9209'); INSERT INTO "axis" VALUES('EPSG','132','Bin grid I','I','east south east','EPSG','6508',2,'EPSG','9208'); INSERT INTO "axis" VALUES('EPSG','135','Southing','P','south','EPSG','6509',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','134','Westing','M','west','EPSG','6509',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','173','Plant East','x','northeast','EPSG','6510',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','174','Plant North','y','northwest','EPSG','6510',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','177','Inline','I','Along receiver lines','EPSG','6511',1,'EPSG','9208'); INSERT INTO "axis" VALUES('EPSG','178','Crossline','J','Across receiver lines','EPSG','6511',2,'EPSG','9209'); INSERT INTO "axis" VALUES('EPSG','211','Plant East','x','east','EPSG','6512',1,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','212','Plant North','y','north','EPSG','6512',2,'EPSG','9001'); INSERT INTO "axis" VALUES('EPSG','213','Local height','z','up','EPSG','6512',3,'EPSG','9001'); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "ellipsoid" VALUES('EPSG','1024','CGCS2000',NULL,'PROJ','EARTH',6378137.0,'EPSG','9001',298.257222101,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','1025','GSK-2011',NULL,'PROJ','EARTH',6378136.5,'EPSG','9001',298.2564151,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','1026','Zach 1812',NULL,'PROJ','EARTH',6376045.0,'EPSG','9001',310.0,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7001','Airy 1830',NULL,'PROJ','EARTH',6377563.396,'EPSG','9001',299.3249646,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7002','Airy Modified 1849',NULL,'PROJ','EARTH',6377340.189,'EPSG','9001',299.3249646,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7003','Australian National Spheroid',NULL,'PROJ','EARTH',6378160.0,'EPSG','9001',298.25,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7004','Bessel 1841',NULL,'PROJ','EARTH',6377397.155,'EPSG','9001',299.1528128,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7005','Bessel Modified',NULL,'PROJ','EARTH',6377492.018,'EPSG','9001',299.1528128,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7006','Bessel Namibia',NULL,'PROJ','EARTH',6377483.865,'EPSG','9001',299.1528128,NULL,1); INSERT INTO "ellipsoid" VALUES('EPSG','7007','Clarke 1858',NULL,'PROJ','EARTH',20926348.0,'EPSG','9005',NULL,20855233.0,0); INSERT INTO "ellipsoid" VALUES('EPSG','7008','Clarke 1866',NULL,'PROJ','EARTH',6378206.4,'EPSG','9001',NULL,6356583.8,0); INSERT INTO "ellipsoid" VALUES('EPSG','7009','Clarke 1866 Michigan',NULL,'PROJ','EARTH',20926631.531,'EPSG','9003',NULL,20855688.674,1); INSERT INTO "ellipsoid" VALUES('EPSG','7010','Clarke 1880 (Benoit)',NULL,'PROJ','EARTH',6378300.789,'EPSG','9001',NULL,6356566.435,0); INSERT INTO "ellipsoid" VALUES('EPSG','7011','Clarke 1880 (IGN)',NULL,'PROJ','EARTH',6378249.2,'EPSG','9001',NULL,6356515.0,0); INSERT INTO "ellipsoid" VALUES('EPSG','7012','Clarke 1880 (RGS)',NULL,'PROJ','EARTH',6378249.145,'EPSG','9001',293.465,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7013','Clarke 1880 (Arc)',NULL,'PROJ','EARTH',6378249.145,'EPSG','9001',293.4663077,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7014','Clarke 1880 (SGA 1922)',NULL,'PROJ','EARTH',6378249.2,'EPSG','9001',293.46598,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7015','Everest 1830 (1937 Adjustment)',NULL,'PROJ','EARTH',6377276.345,'EPSG','9001',300.8017,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7016','Everest 1830 (1967 Definition)',NULL,'PROJ','EARTH',6377298.556,'EPSG','9001',300.8017,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7018','Everest 1830 Modified',NULL,'PROJ','EARTH',6377304.063,'EPSG','9001',300.8017,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7019','GRS 1980',NULL,'PROJ','EARTH',6378137.0,'EPSG','9001',298.257222101,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7020','Helmert 1906',NULL,'PROJ','EARTH',6378200.0,'EPSG','9001',298.3,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7021','Indonesian National Spheroid',NULL,'PROJ','EARTH',6378160.0,'EPSG','9001',298.247,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7022','International 1924',NULL,'PROJ','EARTH',6378388.0,'EPSG','9001',297.0,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7024','Krassowsky 1940',NULL,'PROJ','EARTH',6378245.0,'EPSG','9001',298.3,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7025','NWL 9D',NULL,'PROJ','EARTH',6378145.0,'EPSG','9001',298.25,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7027','Plessis 1817',NULL,'PROJ','EARTH',6376523.0,'EPSG','9001',308.64,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7028','Struve 1860',NULL,'PROJ','EARTH',6378298.3,'EPSG','9001',294.73,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7029','War Office',NULL,'PROJ','EARTH',6378300.0,'EPSG','9001',296.0,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7030','WGS 84',NULL,'PROJ','EARTH',6378137.0,'EPSG','9001',298.257223563,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7031','GEM 10C',NULL,'PROJ','EARTH',6378137.0,'EPSG','9001',298.257223563,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7032','OSU86F',NULL,'PROJ','EARTH',6378136.2,'EPSG','9001',298.257223563,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7033','OSU91A',NULL,'PROJ','EARTH',6378136.3,'EPSG','9001',298.257223563,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7034','Clarke 1880',NULL,'PROJ','EARTH',20926202.0,'EPSG','9005',NULL,20854895.0,0); INSERT INTO "ellipsoid" VALUES('EPSG','7035','Sphere',NULL,'PROJ','EARTH',6371000.0,'EPSG','9001',NULL,6371000.0,1); INSERT INTO "ellipsoid" VALUES('EPSG','7036','GRS 1967',NULL,'PROJ','EARTH',6378160.0,'EPSG','9001',298.247167427,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7041','Average Terrestrial System 1977',NULL,'PROJ','EARTH',6378135.0,'EPSG','9001',298.257,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7042','Everest (1830 Definition)',NULL,'PROJ','EARTH',20922931.8,'EPSG','9080',NULL,20853374.58,0); INSERT INTO "ellipsoid" VALUES('EPSG','7043','WGS 72',NULL,'PROJ','EARTH',6378135.0,'EPSG','9001',298.26,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7044','Everest 1830 (1962 Definition)',NULL,'PROJ','EARTH',6377301.243,'EPSG','9001',300.8017255,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7045','Everest 1830 (1975 Definition)',NULL,'PROJ','EARTH',6377299.151,'EPSG','9001',300.8017255,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7046','Bessel Namibia (GLM)',NULL,'PROJ','EARTH',6377397.155,'EPSG','9031',299.1528128,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7047','GRS 1980 Authalic Sphere',NULL,'PROJ','EARTH',6370997.0,'EPSG','9001',NULL,6370997.0,1); INSERT INTO "ellipsoid" VALUES('EPSG','7048','GRS 1980 Authalic Sphere',NULL,'PROJ','EARTH',6371007.0,'EPSG','9001',NULL,6371007.0,0); INSERT INTO "ellipsoid" VALUES('EPSG','7049','IAG 1975',NULL,'PROJ','EARTH',6378140.0,'EPSG','9001',298.257,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7050','GRS 1967 Modified',NULL,'PROJ','EARTH',6378160.0,'EPSG','9001',298.25,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7051','Danish 1876',NULL,'PROJ','EARTH',6377019.27,'EPSG','9001',300.0,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7052','Clarke 1866 Authalic Sphere',NULL,'PROJ','EARTH',6370997.0,'EPSG','9001',NULL,6370997.0,0); INSERT INTO "ellipsoid" VALUES('EPSG','7053','Hough 1960',NULL,'PROJ','EARTH',6378270.0,'EPSG','9001',297.0,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7054','PZ-90',NULL,'PROJ','EARTH',6378136.0,'EPSG','9001',298.257839303,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7055','Clarke 1880 (international foot)',NULL,'PROJ','EARTH',20926202.0,'EPSG','9002',NULL,20854895.0,0); INSERT INTO "ellipsoid" VALUES('EPSG','7056','Everest 1830 (RSO 1969)',NULL,'PROJ','EARTH',6377295.664,'EPSG','9001',300.8017,NULL,0); INSERT INTO "ellipsoid" VALUES('EPSG','7057','International 1924 Authalic Sphere',NULL,'PROJ','EARTH',6371228.0,'EPSG','9001',NULL,6371228.0,0); INSERT INTO "ellipsoid" VALUES('EPSG','7058','Hughes 1980',NULL,'PROJ','EARTH',6378273.0,'EPSG','9001',NULL,6356889.449,0); INSERT INTO "ellipsoid" VALUES('EPSG','7059','Popular Visualisation Sphere',NULL,'PROJ','EARTH',6378137.0,'EPSG','9001',NULL,6378137.0,1); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "prime_meridian" VALUES('EPSG','8901','Greenwich',0.0,'EPSG','9102',0); INSERT INTO "prime_meridian" VALUES('EPSG','8902','Lisbon',-9.0754862,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8903','Paris',2.5969213,'EPSG','9105',0); INSERT INTO "prime_meridian" VALUES('EPSG','8904','Bogota',-74.04513,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8905','Madrid',-3.411658,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8906','Rome',12.27084,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8907','Bern',7.26225,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8908','Jakarta',106.482779,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8909','Ferro',-17.4,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8910','Brussels',4.220471,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8911','Stockholm',18.03298,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8912','Athens',23.4258815,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8913','Oslo',10.43225,'EPSG','9110',0); INSERT INTO "prime_meridian" VALUES('EPSG','8914','Paris RGS',2.201395,'EPSG','9110',0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "geodetic_datum" VALUES('EPSG','1024','Hungarian Datum 1909',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1119','1909-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1025','Taiwan Datum 1967',NULL,NULL,'EPSG','7050','EPSG','8901','EPSG','3315','1967-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1026','Taiwan Datum 1997',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1228','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1029','Iraqi Geospatial Reference System',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1124','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1031','MGI 1901',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','2370','1901-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1032','MOLDREF99',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1162','1999-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1033','Reseau Geodesique de la RDC 2005',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3613','2005-05-26',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1034','Serbian Reference Network 1998',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4543','1998-09-13',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1035','Red Geodesica de Canarias 1995',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3199','1994-11-24',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1036','Reseau Geodesique de Mayotte 2004',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1159','2004-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1037','Cadastre 1997',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3340','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1038','Reseau Geodesique de Saint Pierre et Miquelon 2006',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1220','2006-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1041','Autonomous Regions of Portugal 2008',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3670','1994-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1042','Mexico ITRF92',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1160','1988-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1043','China 2000',NULL,NULL,'EPSG','1024','EPSG','8901','EPSG','1067','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1044','Sao Tome',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3645',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1045','New Beijing',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','3228','1982-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1046','Principe',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3646',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1047','Reseau de Reference des Antilles Francaises 1991',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','2824','1991-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1048','Tokyo 1892',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1364','1892-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1052','System of the Unified Trigonometrical Cadastral Network/05',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1079','2009-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1053','Sri Lanka Datum 1999',NULL,NULL,'EPSG','7015','EPSG','8901','EPSG','3310','1999-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1055','System of the Unified Trigonometrical Cadastral Network/05 (Ferro)',NULL,NULL,'EPSG','7004','EPSG','8909','EPSG','1079','2009-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1056','Geocentric Datum Brunei Darussalam 2009',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1055','2009-06-13',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1057','Turkish National Reference Frame',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1237','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1058','Bhutan National Geodetic Datum',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1048','2003-11-14',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1060','Islands Net 2004',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1120','2004-08-07',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1061','International Terrestrial Reference Frame 2008',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1062','Posiciones Geodesicas Argentinas 2007',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1033','2006-08-19',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1063','Marco Geodesico Nacional de Bolivia',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1049','2010-03-14',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1064','SIRGAS-Chile realization 1 epoch 2002',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1066','2002-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1065','Costa Rica 2005',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1074','2005-10-30',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1066','Sistema Geodesico Nacional de Panama MACARIO SOLIS',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1186','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1067','Peru96',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1189','1996-05-26',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1068','SIRGAS-ROU98',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1247','1995-05-26',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1069','SIRGAS_ES2007.8',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1087','2007-11-07',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1070','Ocotepeque 1935',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3876','1935-07-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1071','Sibun Gorge 1922',NULL,NULL,'EPSG','7007','EPSG','8901','EPSG','3219','1922-07-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1072','Panama-Colon 1911',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3290','1911-07-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1073','Reseau Geodesique des Antilles Francaises 2009',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','2824','2009-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1074','Corrego Alegre 1961',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3874','1961-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1075','South American Datum 1969(96)',NULL,NULL,'EPSG','7050','EPSG','8901','EPSG','1053','1996-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1076','Papua New Guinea Geodetic Datum 1994',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1187','1994-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1077','Ukraine 2000',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','1242','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1078','Fehmarnbelt Datum 2010',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3889','2010-02-21',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1081','Deutsche Bahn Reference System',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','3339',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1095','Tonga Geodetic Datum 2005',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1234','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1100','Cayman Islands Geodetic Datum 2011',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1063','2011-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1111','Nepal 1981',NULL,NULL,'EPSG','7015','EPSG','8901','EPSG','1171','1981-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1112','Cyprus Geodetic Reference System 1993',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','3236','1993-02-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1113','Reseau Geodesique des Terres Australes et Antarctiques Francaises 2007',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4246','2007-04-10',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1114','Israeli Geodetic Datum 2005',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1126','2004-10-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1115','Israeli Geodetic Datum 2005(2012)',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1126','2004-10-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1116','NAD83 (National Spatial Reference System 2011)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1511','2012-06-12',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1117','NAD83 (National Spatial Reference System PA11)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4162','2012-06-12',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1118','NAD83 (National Spatial Reference System MA11)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4167','2012-06-12',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1120','Mexico ITRF2008',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1160','2010-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1128','Japanese Geodetic Datum 2011',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1129','2011-05-24',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1132','Rete Dinamica Nazionale 2008',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3343','2008-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1133','NAD83 (Continuously Operating Reference Station 1996)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1511','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1135','Aden 1925',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1340',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1136','Bioko',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','4220',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1137','Bekaa Valley 1920',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3269',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1138','South East Island 1943',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','4183','1975-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1139','Gambia',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3250',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1141','IGS08',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1142','IG05 Intermediate Datum',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','2603','2004-10-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1143','Israeli Geodetic Datum 2005',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1126','2004-10-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','1144','IG05/12 Intermediate Datum',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','2603','2012-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1145','Israeli Geodetic Datum 2005(2012)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1126','2012-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','1147','Oman National Geodetic Datum 2014',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1183','2013-02-25',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1152','World Geodetic System 1984 (G730)',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1262','1994-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1153','World Geodetic System 1984 (G873)',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1262','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1154','World Geodetic System 1984 (G1150)',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1262','2001-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1155','World Geodetic System 1984 (G1674)',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1262','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1156','World Geodetic System 1984 (G1762)',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1262','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1157','Parametry Zemli 1990.02',NULL,NULL,'EPSG','7054','EPSG','8901','EPSG','1262','2002-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1158','Parametry Zemli 1990.11',NULL,NULL,'EPSG','7054','EPSG','8901','EPSG','1262','2010-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1159','Geodezicheskaya Sistema Koordinat 2011',NULL,NULL,'EPSG','1025','EPSG','8901','EPSG','1198','2011-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1160','Kyrgyzstan Geodetic Datum 2006',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1137','2006-09-13',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1165','International Terrestrial Reference Frame 2014',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','2010-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1166','World Geodetic System 1984 (Transit)',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1262','1984-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1167','Bulgaria Geodetic System 2005',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1056','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1168','Geocentric Datum of Australia 2020',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4177','2020-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1173','St. Helena Tritan',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','3183','2011-10-09',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1174','St. Helena Geodetic Datum 2015',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3183','2015-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1178','European Terrestrial Reference Frame 1989',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1179','European Terrestrial Reference Frame 1990',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1180','European Terrestrial Reference Frame 1991',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1181','European Terrestrial Reference Frame 1992',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1182','European Terrestrial Reference Frame 1993',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1183','European Terrestrial Reference Frame 1994',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1184','European Terrestrial Reference Frame 1996',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1185','European Terrestrial Reference Frame 1997',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1186','European Terrestrial Reference Frame 2000',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1187','Islands Net 2016',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1120','2016-07-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1188','Gusterberg (Ferro)',NULL,NULL,'EPSG','1026','EPSG','8909','EPSG','4455','1817-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1189','St. Stephen (Ferro)',NULL,NULL,'EPSG','1026','EPSG','8909','EPSG','4456','1817-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1191','IGS14',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','2010-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1192','North American Datum of 1983 (CSRS96)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1061','1988-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1193','North American Datum of 1983 (CSRS) version 2',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1061','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1194','North American Datum of 1983 (CSRS) version 3',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1061','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1195','North American Datum of 1983 (CSRS) version 4',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1061','2002-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1196','North American Datum of 1983 (CSRS) version 5',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1061','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1197','North American Datum of 1983 (CSRS) version 6',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1061','2010-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1198','North American Datum of 1983 (CSRS) version 7',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1061','2010-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1201','System of the Unified Trigonometrical Cadastral Network [JTSK03]',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1211','2003-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1204','European Terrestrial Reference Frame 2005',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1206','European Terrestrial Reference Frame 2014',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','2010-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1207','Macao 1920',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1147','1920-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1208','Macao Geodetic Datum 2008',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1147','2008-05-17',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1209','Hong Kong Geodetic',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1118','1998-04-30',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1211','NAD83 (Federal Base Network)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4515',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1212','NAD83 (High Accuracy Reference Network - Corrected)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3634',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1214','Serbian Spatial Reference System 2000',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4543','2010-08-19',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1217','Camacupa 2015',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1029',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1218','MOMRA Terrestrial Reference Frame 2000',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1206','2004-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1220','Reference System de Angola 2013',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1029','2015-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1221','North American Datum of 1983 (MARP00)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4167','1993-08-15',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1223','Reseau Geodesique de Wallis et Futuna 1996',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1255','1993-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1225','CR-SIRGAS',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1074','2014-08-04',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1227','SIRGAS Continuously Operating Network DGF00P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2000-05-26',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1228','SIRGAS Continuously Operating Network DGF01P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1229','SIRGAS Continuously Operating Network DGF01P02',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','1998-05-26',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1230','SIRGAS Continuously Operating Network DGF02P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1231','SIRGAS Continuously Operating Network DGF04P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2003-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1232','SIRGAS Continuously Operating Network DGF05P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2004-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1233','SIRGAS Continuously Operating Network DGF06P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2004-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1234','SIRGAS Continuously Operating Network DGF07P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2004-07-02',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1235','SIRGAS Continuously Operating Network DGF08P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2004-07-02',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1236','SIRGAS Continuously Operating Network SIR09P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1237','SIRGAS Continuously Operating Network SIR10P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1238','SIRGAS Continuously Operating Network SIR11P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1239','SIRGAS Continuously Operating Network SIR13P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2012-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1240','SIRGAS Continuously Operating Network SIR14P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2013-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1241','SIRGAS Continuously Operating Network SIR15P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2013-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1242','SIRGAS Continuously Operating Network SIR17P01',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4530','2015-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1243','SIRGAS-Chile realization 2 epoch 2010.00',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1066','2010-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1244','IGS97',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1245','IGS00',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1998-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1246','IGb00',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1998-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1247','IGS05',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1248','IGb08',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1249','North American Datum of 1983 (PACP00)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4162','1993-08-15',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1251','Kosovo Reference System 2001',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4542','2001-04-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1252','SIRGAS-Chile realization 3 epoch 2013.00',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1066','2013-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1253','SIRGAS-Chile realization 4 epoch 2016.00',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1066','2016-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1254','SIRGAS-Chile',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1066',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1257','Tapi Aike',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','4569','1945-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','1258','Ministerio de Marina Norte',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2357',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1259','Ministerio de Marina Sur',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2357',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','1268','Kingdom of Saudi Arabia Geodetic Reference Frame 2017',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1206','2017-12-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6001','Not specified (based on Airy 1830 ellipsoid)',NULL,NULL,'EPSG','7001','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6002','Not specified (based on Airy Modified 1849 ellipsoid)',NULL,NULL,'EPSG','7002','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6003','Not specified (based on Australian National Spheroid)',NULL,NULL,'EPSG','7003','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6004','Not specified (based on Bessel 1841 ellipsoid)',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6005','Not specified (based on Bessel Modified ellipsoid)',NULL,NULL,'EPSG','7005','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6006','Not specified (based on Bessel Namibia ellipsoid)',NULL,NULL,'EPSG','7046','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6007','Not specified (based on Clarke 1858 ellipsoid)',NULL,NULL,'EPSG','7007','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6008','Not specified (based on Clarke 1866 ellipsoid)',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6009','Not specified (based on Clarke 1866 Michigan ellipsoid)',NULL,NULL,'EPSG','7009','EPSG','8901','EPSG','1263',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6010','Not specified (based on Clarke 1880 (Benoit) ellipsoid)',NULL,NULL,'EPSG','7010','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6011','Not specified (based on Clarke 1880 (IGN) ellipsoid)',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6012','Not specified (based on Clarke 1880 (RGS) ellipsoid)',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6013','Not specified (based on Clarke 1880 (Arc) ellipsoid)',NULL,NULL,'EPSG','7013','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6014','Not specified (based on Clarke 1880 (SGA 1922) ellipsoid)',NULL,NULL,'EPSG','7014','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6015','Not specified (based on Everest 1830 (1937 Adjustment) ellipsoid)',NULL,NULL,'EPSG','7015','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6016','Not specified (based on Everest 1830 (1967 Definition) ellipsoid)',NULL,NULL,'EPSG','7016','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6018','Not specified (based on Everest 1830 Modified ellipsoid)',NULL,NULL,'EPSG','7018','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6019','Not specified (based on GRS 1980 ellipsoid)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6020','Not specified (based on Helmert 1906 ellipsoid)',NULL,NULL,'EPSG','7020','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6021','Not specified (based on Indonesian National Spheroid)',NULL,NULL,'EPSG','7021','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6022','Not specified (based on International 1924 ellipsoid)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6024','Not specified (based on Krassowsky 1940 ellipsoid)',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6025','Not specified (based on NWL 9D ellipsoid)',NULL,NULL,'EPSG','7025','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6027','Not specified (based on Plessis 1817 ellipsoid)',NULL,NULL,'EPSG','7027','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6028','Not specified (based on Struve 1860 ellipsoid)',NULL,NULL,'EPSG','7028','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6029','Not specified (based on War Office ellipsoid)',NULL,NULL,'EPSG','7029','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6030','Not specified (based on WGS 84 ellipsoid)',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6031','Not specified (based on GEM 10C ellipsoid)',NULL,NULL,'EPSG','7031','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6032','Not specified (based on OSU86F ellipsoid)',NULL,NULL,'EPSG','7032','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6033','Not specified (based on OSU91A ellipsoid)',NULL,NULL,'EPSG','7033','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6034','Not specified (based on Clarke 1880 ellipsoid)',NULL,NULL,'EPSG','7034','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6035','Not specified (based on Authalic Sphere)',NULL,NULL,'EPSG','7035','EPSG','8901','EPSG','1263',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6036','Not specified (based on GRS 1967 ellipsoid)',NULL,NULL,'EPSG','7036','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6041','Not specified (based on Average Terrestrial System 1977 ellipsoid)',NULL,NULL,'EPSG','7041','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6042','Not specified (based on Everest (1830 Definition) ellipsoid)',NULL,NULL,'EPSG','7042','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6043','Not specified (based on WGS 72 ellipsoid)',NULL,NULL,'EPSG','7043','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6044','Not specified (based on Everest 1830 (1962 Definition) ellipsoid)',NULL,NULL,'EPSG','7044','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6045','Not specified (based on Everest 1830 (1975 Definition) ellipsoid)',NULL,NULL,'EPSG','7045','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6047','Not specified (based on GRS 1980 Authalic Sphere)',NULL,NULL,'EPSG','7048','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6052','Not specified (based on Clarke 1866 Authalic Sphere)',NULL,NULL,'EPSG','7052','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6053','Not specified (based on International 1924 Authalic Sphere)',NULL,NULL,'EPSG','7057','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6054','Not specified (based on Hughes 1980 ellipsoid)',NULL,NULL,'EPSG','7058','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6055','Popular Visualisation Datum',NULL,NULL,'EPSG','7059','EPSG','8901','EPSG','1262',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6120','Greek',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','3254',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6121','Greek Geodetic Reference System 1987',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3254','1987-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6122','Average Terrestrial System 1977',NULL,NULL,'EPSG','7041','EPSG','8901','EPSG','1283','1977-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6123','Kartastokoordinaattijarjestelma (1966)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3333','1966-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6124','Rikets koordinatsystem 1990',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1225','1982-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6125','Samboja',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1328',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6126','Lithuania 1994 (ETRS89)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1145','1992-10-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6127','Tete',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3281','1960-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6128','Madzansua',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1315',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6129','Observatario',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1329','1907-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6130','Moznet (ITRF94)',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1167','1996-11-24',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6131','Indian 1960',NULL,NULL,'EPSG','7015','EPSG','8901','EPSG','4007',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6132','Final Datum 1958',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1300',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6133','Estonia 1992',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3246','1992-10-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6134','PDO Survey Datum 1993',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3288','1993-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6135','Old Hawaiian',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1334',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6136','St. Lawrence Island',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1332',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6137','St. Paul Island',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1333',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6138','St. George Island',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1331',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6139','Puerto Rico',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1335','1901-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6140','NAD83 Canadian Spatial Reference System',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1061',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6141','Israel 1993',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','2603',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6142','Locodjo 1965',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1075','1965-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6143','Abidjan 1987',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1075','1987-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6144','Kalianpur 1937',NULL,NULL,'EPSG','7015','EPSG','8901','EPSG','1308','1937-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6145','Kalianpur 1962',NULL,NULL,'EPSG','7044','EPSG','8901','EPSG','1184','1962-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6146','Kalianpur 1975',NULL,NULL,'EPSG','7045','EPSG','8901','EPSG','3341','1975-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6147','Hanoi 1972',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','3328','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6148','Hartebeesthoek94',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','4540','1994-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6149','CH1903',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1286','1903-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6150','CH1903+',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1286',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6151','Swiss Terrestrial Reference Frame 1995',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1286','1993-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6152','NAD83 (High Accuracy Reference Network)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1337',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6153','Rassadiran',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1338','1998-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6154','European Datum 1950(1977)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1123','1977-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6155','Dabola 1981',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','3257','1981-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6156','System of the Unified Trigonometrical Cadastral Network',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1306',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6157','Mount Dillon',NULL,NULL,'EPSG','7007','EPSG','8901','EPSG','1322',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6158','Naparima 1955',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3143','1955-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6159','European Libyan Datum 1979',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1143','1979-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6160','Chos Malal 1914',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','4562','1914-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6161','Pampa del Castillo',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','4563',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6162','Korean Datum 1985',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','3266','1985-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6163','Yemen National Geodetic Network 1996',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1257','1996-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6164','South Yemen',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','1340',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6165','Bissau',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3258',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6166','Korean Datum 1995',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','3266','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6167','New Zealand Geodetic Datum 2000',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1175','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6168','Accra',NULL,NULL,'EPSG','7029','EPSG','8901','EPSG','1104',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6169','American Samoa 1962',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3109','1962-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6170','Sistema de Referencia Geocentrico para America del Sur 1995',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3448','1995-05-26',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6171','Reseau Geodesique Francais 1993',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1096','1993-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6172','Posiciones Geodesicas Argentinas',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1033','1994-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6173','IRENET95',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1305','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6174','Sierra Leone Colony 1924',NULL,NULL,'EPSG','7029','EPSG','8901','EPSG','1342','1924-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6175','Sierra Leone 1968',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3306','1968-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6176','Australian Antarctic Datum 1998',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1278','1998-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6178','Pulkovo 1942(83)',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','3900','1983-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6179','Pulkovo 1942(58)',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','3574','1956-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6180','Estonia 1997',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1090','1997-07-23',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6181','Luxembourg 1930',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1146','1930-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6182','Azores Occidental Islands 1939',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1344','1939-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6183','Azores Central Islands 1948',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1301','1948-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6184','Azores Oriental Islands 1940',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1345','1940-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6185','Madeira 1936',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1314','1936-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6188','OSNI 1952',NULL,NULL,'EPSG','7001','EPSG','8901','EPSG','2530','1952-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6189','Red Geodesica Venezolana',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1251','1995-05-26',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6190','Posiciones Geodesicas Argentinas 1998',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1033','1995-05-26',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6191','Albanian 1987',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','3212','1987-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6192','Douala 1948',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2555','1948-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6193','Manoca 1962',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','2555','1962-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6194','Qornoq 1927',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3362','1927-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6195','Scoresbysund 1952',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2570','1952-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6196','Ammassalik 1958',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2571','1958-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6197','Garoua',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','2590',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6198','Kousseri',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','2591',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6199','Egypt 1930',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3242','1930-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6200','Pulkovo 1995',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','1198','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6201','Adindan',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1271','1958-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6202','Australian Geodetic Datum 1966',NULL,NULL,'EPSG','7003','EPSG','8901','EPSG','1279','1966-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6203','Australian Geodetic Datum 1984',NULL,NULL,'EPSG','7003','EPSG','8901','EPSG','2576','1984-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6204','Ain el Abd 1970',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1272','1970-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6205','Afgooye',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','3308',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6206','Agadez',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1177',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6207','Lisbon 1937',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1294','1937-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6208','Aratu',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1274',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6209','Arc 1950',NULL,NULL,'EPSG','7013','EPSG','8901','EPSG','1276','1950-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6210','Arc 1960',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1277','1960-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6211','Batavia',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','3666',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6212','Barbados 1938',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3218','1938-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6213','Beduaram',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','2771',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6214','Beijing 1954',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','1067','1954-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6215','Reseau National Belge 1950',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1347','1950-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6216','Bermuda 1957',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3221','1957-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6218','Bogota 1975',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3686','1975-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6219','Bukit Rimpah',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1287',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6220','Camacupa 1948',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1288',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6221','Campo Inchauspe',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3843',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6222','Cape',NULL,NULL,'EPSG','7013','EPSG','8901','EPSG','1290',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6223','Carthage',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1236','1925-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6224','Chua',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3356',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6225','Corrego Alegre 1970-72',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1293','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6226','Cote d''Ivoire',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1075',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6227','Deir ez Zor',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1623',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6228','Douala',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1060',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6229','Egypt 1907',NULL,NULL,'EPSG','7020','EPSG','8901','EPSG','1086','1907-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6230','European Datum 1950',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1296','1950-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6231','European Datum 1987',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1297','1987-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6232','Fahud',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','4009',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6233','Gandajika 1970',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1152','1970-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6234','Garoua',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1060',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6235','Guyane Francaise',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1097',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6236','Hu Tzu Shan 1950',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3315','1950-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6237','Hungarian Datum 1972',NULL,NULL,'EPSG','7036','EPSG','8901','EPSG','1119','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6238','Indonesian Datum 1974',NULL,NULL,'EPSG','7021','EPSG','8901','EPSG','4020','1974-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6239','Indian 1954',NULL,NULL,'EPSG','7015','EPSG','8901','EPSG','1304','1954-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6240','Indian 1975',NULL,NULL,'EPSG','7015','EPSG','8901','EPSG','3741','1975-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6241','Jamaica 1875',NULL,NULL,'EPSG','7034','EPSG','8901','EPSG','3342','1875-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6242','Jamaica 1969',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3342','1969-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6243','Kalianpur 1880',NULL,NULL,'EPSG','7042','EPSG','8901','EPSG','1307','1880-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6244','Kandawala',NULL,NULL,'EPSG','7015','EPSG','8901','EPSG','3310','1930-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6245','Kertau 1968',NULL,NULL,'EPSG','7018','EPSG','8901','EPSG','4223','1968-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6246','Kuwait Oil Company',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3267','1952-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6247','La Canoa',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3327',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6248','Provisional South American Datum 1956',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1348','1956-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6249','Lake',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1312',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6250','Leigon',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1104',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6251','Liberia 1964',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3270','1964-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6252','Lome',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1232',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6253','Luzon 1911',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3969','1911-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6254','Hito XVIII 1963',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1303','1963-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6255','Herat North',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1024',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6256','Mahe 1971',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','2369','1971-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6257','Makassar',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1316',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6258','European Terrestrial Reference System 1989',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1298','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6259','Malongo 1987',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3180','1987-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6260','Manoca',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1060',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6261','Merchich',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','3280','1922-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6262','Massawa',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1089',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6263','Minna',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1178',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6264','Mhast',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1318',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6265','Monte Mario',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3343','1940-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6266','M''poraloko',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1100',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6267','North American Datum 1927',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1349','1927-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6268','NAD27 Michigan',NULL,NULL,'EPSG','7009','EPSG','8901','EPSG','1391',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6269','North American Datum 1983',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1350','1986-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6270','Nahrwan 1967',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1351','1967-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6271','Naparima 1972',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1322','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6272','New Zealand Geodetic Datum 1949',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3285','1949-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6273','NGO 1948',NULL,NULL,'EPSG','7005','EPSG','8901','EPSG','1352','1948-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6274','Datum 73',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1294','1964-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6275','Nouvelle Triangulation Francaise',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','3694','1895-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6276','NSWC 9Z-2',NULL,NULL,'EPSG','7025','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6277','OSGB 1936',NULL,NULL,'EPSG','7001','EPSG','8901','EPSG','4390','1936-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6278','OSGB 1970 (SN)',NULL,NULL,'EPSG','7001','EPSG','8901','EPSG','1264','1970-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6279','OS (SN) 1980',NULL,NULL,'EPSG','7001','EPSG','8901','EPSG','1354','1980-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6280','Padang 1884',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1355','1884-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6281','Palestine 1923',NULL,NULL,'EPSG','7010','EPSG','8901','EPSG','1356','1923-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6282','Congo 1960 Pointe Noire',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1072','1960-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6283','Geocentric Datum of Australia 1994',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','4177','1994-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6284','Pulkovo 1942',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','2423','1942-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6285','Qatar 1974',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1195','1974-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6286','Qatar 1948',NULL,NULL,'EPSG','7020','EPSG','8901','EPSG','1346','1948-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6287','Qornoq',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1107','1927-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6288','Loma Quintana',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1313',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6289','Amersfoort',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1275',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6291','South American Datum 1969',NULL,NULL,'EPSG','7036','EPSG','8901','EPSG','1358','1969-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6292','Sapper Hill 1943',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3247','1943-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6293','Schwarzeck',NULL,NULL,'EPSG','7046','EPSG','8901','EPSG','1169',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6294','Segora',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1359',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6295','Serindung',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','4005',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6296','Sudan',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1361',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6297','Tananarive 1925',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1149','1925-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6298','Timbalai 1948',NULL,NULL,'EPSG','7016','EPSG','8901','EPSG','1362','1948-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6299','TM65',NULL,NULL,'EPSG','7002','EPSG','8901','EPSG','1305','1965-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6300','Geodetic Datum of 1965',NULL,NULL,'EPSG','7002','EPSG','8901','EPSG','1305','1975-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6301','Tokyo',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1364','1918-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6302','Trinidad 1903',NULL,NULL,'EPSG','7007','EPSG','8901','EPSG','1339','1903-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6303','Trucial Coast 1948',NULL,NULL,'EPSG','7020','EPSG','8901','EPSG','1363','1948-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6304','Voirol 1875',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1365','1875-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6306','Bern 1938',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1286','1938-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6307','Nord Sahara 1959',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1026','1959-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6308','Stockholm 1938',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','3313','1938-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6309','Yacare',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3326',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6310','Yoff',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1207',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6311','Zanderij',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1222',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6312','Militar-Geographische Institut',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1037','1901-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6313','Reseau National Belge 1972',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1347','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6314','Deutsches Hauptdreiecksnetz',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','2326',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6315','Conakry 1905',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','3257','1905-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6316','Dealul Piscului 1930',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3295','1930-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6317','Dealul Piscului 1970',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','1197','1970-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6318','National Geodetic Network',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','3267','1993-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6319','Kuwait Utility',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1310',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6322','World Geodetic System 1972',NULL,NULL,'EPSG','7043','EPSG','8901','EPSG','1262','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6324','WGS 72 Transit Broadcast Ephemeris',NULL,NULL,'EPSG','7043','EPSG','8901','EPSG','1262','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6326','World Geodetic System 1984',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6600','Anguilla 1957',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3214','1957-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6601','Antigua 1943',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1273','1943-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6602','Dominica 1945',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3239','1945-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6603','Grenada 1953',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1551','1953-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6604','Montserrat 1958',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3279','1958-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6605','St. Kitts 1955',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3297','1955-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6606','St. Lucia 1955',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3298','1955-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6607','St. Vincent 1945',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3300','1945-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6608','North American Datum 1927 (1976)',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1367','1976-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6609','North American Datum 1927 (CGQ77)',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1368','1977-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6610','Xian 1980',NULL,NULL,'EPSG','7049','EPSG','8901','EPSG','3228','1980-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6611','Hong Kong 1980',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1118','1980-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6612','Japanese Geodetic Datum 2000',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1129','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6613','Gunung Segara',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1360',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6614','Qatar National Datum 1995',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1346','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6615','Porto Santo 1936',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1314','1936-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6616','Selvagem Grande',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2779',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6618','South American Datum 1969',NULL,NULL,'EPSG','7050','EPSG','8901','EPSG','1358','1969-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6619','SWEREF99',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1225','1999-06-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6620','Point 58',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','2790','1969-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6621','Fort Marigot',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2828',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6622','Guadeloupe 1948',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2829','1948-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6623','Centre Spatial Guyanais 1967',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3105','1967-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6624','Reseau Geodesique Francais Guyane 1995',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1097','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6625','Martinique 1938',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3276','1938-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6626','Reunion 1947',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3337','1947-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6627','Reseau Geodesique de la Reunion 1992',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3902','1993-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6628','Tahiti 52',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2811','1952-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6629','Tahaa 54',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2812','1954-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6630','IGN72 Nuku Hiva',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3129','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6631','K0 1949',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2816','1949-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6632','Combani 1950',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3340','1950-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6633','IGN56 Lifou',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2814','1956-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6634','IGN72 Grande Terre',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2822','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6635','ST87 Ouvea',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2813','1987-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6636','Petrels 1972',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2817','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6637','Pointe Geologie Perroud 1950',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2818','1950-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6638','Saint Pierre et Miquelon 1950',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3299','1950-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6639','MOP78',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2815','1978-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6640','Reseau de Reference des Antilles Francaises 1991',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','2824','1991-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6641','IGN53 Mare',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2819','1953-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6642','ST84 Ile des Pins',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2820','1984-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6643','ST71 Belep',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2821','1971-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6644','NEA74 Noumea',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2823','1974-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6645','Reseau Geodesique Nouvelle Caledonie 1991',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1174','1989-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6646','Grand Comoros',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2807',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6647','International Terrestrial Reference Frame 1988',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1988-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6648','International Terrestrial Reference Frame 1989',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1988-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6649','International Terrestrial Reference Frame 1990',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1988-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6650','International Terrestrial Reference Frame 1991',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1988-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6651','International Terrestrial Reference Frame 1992',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1988-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6652','International Terrestrial Reference Frame 1993',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1993-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6653','International Terrestrial Reference Frame 1994',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1993-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6654','International Terrestrial Reference Frame 1996',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6655','International Terrestrial Reference Frame 1997',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6656','International Terrestrial Reference Frame 2000',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6657','Reykjavik 1900',NULL,NULL,'EPSG','7051','EPSG','8901','EPSG','3262','1900-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6658','Hjorsey 1955',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3262','1955-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6659','Islands Net 1993',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1120','1993-08-07',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6660','Helle 1954',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2869','1954-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6661','Latvia 1992',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1139','1992-10-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6663','Porto Santo 1995',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1314','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6664','Azores Oriental Islands 1995',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1345','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6665','Azores Central Islands 1995',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1301','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6666','Lisbon 1890',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','1294','1937-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6667','Iraq-Kuwait Boundary Datum 1992',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','2876','1992-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6668','European Datum 1979',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1297','1979-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6670','Istituto Geografico Militaire 1995',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','3343','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6671','Voirol 1879',NULL,NULL,'EPSG','7011','EPSG','8901','EPSG','1365','1879-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6672','Chatham Islands Datum 1971',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2889','1971-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6673','Chatham Islands Datum 1979',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2889','1979-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6674','Sistema de Referencia Geocentrico para las AmericaS 2000',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3418','2000-05-26',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6675','Guam 1963',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','4525','1963-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6676','Vientiane 1982',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','1138','1982-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6677','Lao 1993',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','1138','1993-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6678','Lao National Datum 1997',NULL,NULL,'EPSG','7024','EPSG','8901','EPSG','1138','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6679','Jouik 1961',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','2967','1961-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6680','Nouakchott 1965',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','2968','1965-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6681','Mauritania 1999',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1157','1999-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6682','Gulshan 303',NULL,NULL,'EPSG','7015','EPSG','8901','EPSG','1041','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6683','Philippine Reference System 1992',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','1190','1992-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6684','Gan 1970',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3274','1970-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6685','Gandajika',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1259','1953-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6686','Marco Geocentrico Nacional de Referencia',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1070','2004-10-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6687','Reseau Geodesique de la Polynesie Francaise',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1098','1993-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6688','Fatu Iva 72',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3133','1972-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6689','IGN63 Hiva Oa',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3130','1963-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6690','Tahiti 79',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3124','1979-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6691','Moorea 87',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3125','1987-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6692','Maupiti 83',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3126','1983-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6693','Nakhl-e Ghanem',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','2362','2005-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6694','Posiciones Geodesicas Argentinas 1994',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1033','1994-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6695','Katanga 1955',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3147','1955-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6696','Kasai 1953',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3148','1955-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6697','IGC 1962 Arc of the 6th Parallel South',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3149','1962-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6698','IGN 1962 Kerguelen',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','2816','1949-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6699','Le Pouce 1934',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3209','1934-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6700','IGN Astro 1960',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3277','1960-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6701','Institut Geographique du Congo Belge 1955',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3171','1955-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6702','Mauritania 1999',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1157','1997-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6703','Missao Hidrografico Angola y Sao Tome 1951',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1318','1951-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6704','Mhast (onshore)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3179',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6705','Mhast (offshore)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3180','1979-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6706','Egypt Gulf of Suez S-650 TL',NULL,NULL,'EPSG','7020','EPSG','8901','EPSG','2341','1980-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6707','Tern Island 1961',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3181','1961-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6708','Cocos Islands 1965',NULL,NULL,'EPSG','7003','EPSG','8901','EPSG','1069','1965-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6709','Iwo Jima 1945',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3200','1945-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6710','Astro DOS 71',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3183','1971-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6711','Marcus Island 1952',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1872','1952-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6712','Ascension Island 1958',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3182','1958-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6713','Ayabelle Lighthouse',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','1081',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6714','Bellevue',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3193','1960-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6715','Camp Area Astro',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3205',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6716','Phoenix Islands 1966',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3196','1966-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6717','Cape Canaveral',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3206','1963-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6718','Solomon 1968',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1213','1968-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6719','Easter Island 1967',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3188','1967-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6720','Fiji Geodetic Datum 1986',NULL,NULL,'EPSG','7043','EPSG','8901','EPSG','1094','1986-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6721','Fiji 1956',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3398','1956-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6722','South Georgia 1968',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3529','1968-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6723','Grand Cayman Geodetic Datum 1959',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3185','1959-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6724','Diego Garcia 1969',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3189','1969-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6725','Johnston Island 1961',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3201','1961-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6726','Sister Islands Geodetic Datum 1961',NULL,NULL,'EPSG','7008','EPSG','8901','EPSG','3186','1961-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6727','Midway 1961',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3202','1961-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6728','Pico de las Nieves 1984',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3873',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6729','Pitcairn 1967',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3208','1967-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6730','Santo 1965',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3194','1965-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6731','Viti Levu 1916',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3195','1916-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6732','Marshall Islands 1960',NULL,NULL,'EPSG','7053','EPSG','8901','EPSG','3191','1960-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6733','Wake Island 1952',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3190','1952-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6734','Tristan 1968',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3184','1968-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6735','Kusaie 1951',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3192','1951-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6736','Deception Island',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3204',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6737','Geocentric datum of Korea',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1135','2002-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6738','Hong Kong 1963',NULL,NULL,'EPSG','7007','EPSG','8901','EPSG','1118','1963-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6739','Hong Kong 1963(67)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1118','1967-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6740','Parametry Zemli 1990',NULL,NULL,'EPSG','7054','EPSG','8901','EPSG','1262','1990-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6741','Faroe Datum 1954',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3248','1954-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6742','Geodetic Datum of Malaysia 2000',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1151','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6743','Karbala 1979',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','3625','1979-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6744','Nahrwan 1934',NULL,NULL,'EPSG','7012','EPSG','8901','EPSG','4238','1934-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6745','Rauenberg Datum/83',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','2545','1990-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6746','Potsdam Datum/83',NULL,NULL,'EPSG','7004','EPSG','8901','EPSG','2544','1990-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6747','Greenland 1996',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1107','1996-08-14',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6748','Vanua Levu 1915',NULL,NULL,'EPSG','7055','EPSG','8901','EPSG','3401','1915-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6749','Reseau Geodesique de Nouvelle Caledonie 91-93',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1174','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6750','ST87 Ouvea',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','2813','1987-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6751','Kertau (RSO)',NULL,NULL,'EPSG','7056','EPSG','8901','EPSG','1309','1969-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6752','Viti Levu 1912',NULL,NULL,'EPSG','7055','EPSG','8901','EPSG','3195','1912-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6753','fk89',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','3248','1989-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6754','Libyan Geodetic Datum 2006',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1143','2006-05-19',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6755','Datum Geodesi Nasional 1995',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1122','1995-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6756','Vietnam 2000',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','3328','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6757','SVY21',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1210','2004-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6758','Jamaica 2001',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1128','2001-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6759','NAD83 (National Spatial Reference System 2007)',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1511','2007-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6760','World Geodetic System 1966',NULL,NULL,'EPSG','7025','EPSG','8901','EPSG','1262','1966-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6761','Croatian Terrestrial Reference System',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1076','1995-07-20',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6762','Bermuda 2000',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1047','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6763','Pitcairn 2006',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','3208','2006-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6764','Ross Sea Region Geodetic Datum 2000',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','3558','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6765','Slovenia Geodetic Datum 1996',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1212','1996-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6801','CH1903 (Bern)',NULL,NULL,'EPSG','7004','EPSG','8907','EPSG','1286','1903-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6802','Bogota 1975 (Bogota)',NULL,NULL,'EPSG','7022','EPSG','8904','EPSG','3229','1975-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6803','Lisbon 1937 (Lisbon)',NULL,NULL,'EPSG','7022','EPSG','8902','EPSG','1294','1937-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6804','Makassar (Jakarta)',NULL,NULL,'EPSG','7004','EPSG','8908','EPSG','1316',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6805','Militar-Geographische Institut (Ferro)',NULL,NULL,'EPSG','7004','EPSG','8909','EPSG','1321','1901-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6806','Monte Mario (Rome)',NULL,NULL,'EPSG','7022','EPSG','8906','EPSG','3343',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6807','Nouvelle Triangulation Francaise (Paris)',NULL,NULL,'EPSG','7011','EPSG','8903','EPSG','3694','1895-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6808','Padang 1884 (Jakarta)',NULL,NULL,'EPSG','7004','EPSG','8908','EPSG','1355','1884-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6809','Reseau National Belge 1950 (Brussels)',NULL,NULL,'EPSG','7022','EPSG','8910','EPSG','1347','1950-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6810','Tananarive 1925 (Paris)',NULL,NULL,'EPSG','7022','EPSG','8903','EPSG','3273','1925-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6811','Voirol 1875 (Paris)',NULL,NULL,'EPSG','7011','EPSG','8903','EPSG','1365','1875-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6813','Batavia (Jakarta)',NULL,NULL,'EPSG','7004','EPSG','8908','EPSG','1285',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6814','Stockholm 1938 (Stockholm)',NULL,NULL,'EPSG','7004','EPSG','8911','EPSG','3313','1938-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6815','Greek (Athens)',NULL,NULL,'EPSG','7004','EPSG','8912','EPSG','3254',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6816','Carthage (Paris)',NULL,NULL,'EPSG','7011','EPSG','8903','EPSG','1618','1925-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6817','NGO 1948 (Oslo)',NULL,NULL,'EPSG','7005','EPSG','8913','EPSG','1352','1948-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6818','System of the Unified Trigonometrical Cadastral Network (Ferro)',NULL,NULL,'EPSG','7004','EPSG','8909','EPSG','1306','1920-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6819','Nord Sahara 1959 (Paris)',NULL,NULL,'EPSG','7012','EPSG','8903','EPSG','1366','1959-01-01',1); INSERT INTO "geodetic_datum" VALUES('EPSG','6820','Gunung Segara (Jakarta)',NULL,NULL,'EPSG','7004','EPSG','8908','EPSG','1360',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6821','Voirol 1879 (Paris)',NULL,NULL,'EPSG','7011','EPSG','8903','EPSG','1365','1879-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6896','International Terrestrial Reference Frame 2005',NULL,NULL,'EPSG','7019','EPSG','8901','EPSG','1262','2000-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6901','Ancienne Triangulation Francaise (Paris)',NULL,NULL,'EPSG','7027','EPSG','8914','EPSG','1326',NULL,0); INSERT INTO "geodetic_datum" VALUES('EPSG','6902','Nord de Guerre (Paris)',NULL,NULL,'EPSG','7027','EPSG','8903','EPSG','1369',NULL,1); INSERT INTO "geodetic_datum" VALUES('EPSG','6903','Madrid 1870 (Madrid)',NULL,NULL,'EPSG','7028','EPSG','8905','EPSG','2366','1870-01-01',0); INSERT INTO "geodetic_datum" VALUES('EPSG','6904','Lisbon 1890 (Lisbon)',NULL,NULL,'EPSG','7004','EPSG','8902','EPSG','1294','1937-01-01',0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "vertical_datum" VALUES('EPSG','1027','EGM2008 geoid',NULL,NULL,'EPSG','1262','2008-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1028','Fao 1979',NULL,NULL,'EPSG','3625','1979-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1030','N2000',NULL,NULL,'EPSG','3333','2000-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1039','New Zealand Vertical Datum 2009',NULL,NULL,'EPSG','1175','2009-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1040','Dunedin-Bluff 1960',NULL,NULL,'EPSG','3806','1960-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1049','Incheon',NULL,NULL,'EPSG','3739','1963-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1050','Trieste',NULL,NULL,'EPSG','2370','1875-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1051','Genoa',NULL,NULL,'EPSG','3736','1942-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1054','Sri Lanka Vertical Datum',NULL,NULL,'EPSG','3310','1932-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1059','Faroe Islands Vertical Reference 2009',NULL,NULL,'EPSG','3248','2009-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1079','Fehmarnbelt Vertical Reference 2010',NULL,NULL,'EPSG','3890','2010-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1080','Lowest Astronomic Tide',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1082','Highest Astronomic Tide',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1083','Lower Low Water Large Tide',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1084','Higher High Water Large Tide',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1085','Indian Spring Low Water',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1086','Mean Lower Low Water Spring Tides',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1087','Mean Low Water Spring Tides',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1088','Mean High Water Spring Tides',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1089','Mean Lower Low Water',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1090','Mean Higher High Water',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1091','Mean Low Water',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1092','Mean High Water',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1093','Low Water',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1094','High Water',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1096','Norway Normal Null 2000',NULL,NULL,'EPSG','1352','2000-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1097','Grand Cayman Vertical Datum 1954',NULL,NULL,'EPSG','3185','1954-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1098','Little Cayman Vertical Datum 1961',NULL,NULL,'EPSG','4121','1961-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1099','Cayman Brac Vertical Datum 1961',NULL,NULL,'EPSG','3207','1961-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1101','Cais da Pontinha - Funchal',NULL,NULL,'EPSG','4125','1913-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1102','Cais da Vila - Porto Santo',NULL,NULL,'EPSG','3680','1936-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1103','Cais das Velas',NULL,NULL,'EPSG','2875','1937-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1104','Horta',NULL,NULL,'EPSG','2873','1935-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1105','Cais da Madalena',NULL,NULL,'EPSG','2874','1937-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1106','Santa Cruz da Graciosa',NULL,NULL,'EPSG','3681','1938-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1107','Cais da Figueirinha - Angra do Heroismo',NULL,NULL,'EPSG','2872','1951-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1108','Santa Cruz das Flores',NULL,NULL,'EPSG','1344','1965-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1109','Cais da Vila do Porto',NULL,NULL,'EPSG','4126','1965-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1110','Ponta Delgada',NULL,NULL,'EPSG','2871','1991-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1119','Northern Marianas Vertical Datum of 2003',NULL,NULL,'EPSG','4171','2003-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1121','Tutuila Vertical Datum of 1962',NULL,NULL,'EPSG','2288','1962-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1122','Guam Vertical Datum of 1963',NULL,NULL,'EPSG','3255','1963-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1123','Puerto Rico Vertical Datum of 2002',NULL,NULL,'EPSG','3294','2002-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1124','Virgin Islands Vertical Datum of 2009',NULL,NULL,'EPSG','3330','2009-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1125','American Samoa Vertical Datum of 2002',NULL,NULL,'EPSG','2288','2002-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1126','Guam Vertical Datum of 2004',NULL,NULL,'EPSG','3255','2004-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1127','Canadian Geodetic Vertical Datum of 2013 (CGG2013)',NULL,NULL,'EPSG','1061','2013-11-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1129','Japanese Standard Levelling Datum 1972',NULL,NULL,'EPSG','4168','1972-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1130','Japanese Geodetic Datum 2000 (vertical)',NULL,NULL,'EPSG','3263','2002-04-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1131','Japanese Geodetic Datum 2011 (vertical)',NULL,NULL,'EPSG','3263','2011-10-31',0); INSERT INTO "vertical_datum" VALUES('EPSG','1140','Singapore Height Datum',NULL,NULL,'EPSG','1210','2009-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1146','Ras Ghumays',NULL,NULL,'EPSG','4225','1979-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1148','Famagusta 1960',NULL,NULL,'EPSG','3236',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1149','PNG08',NULL,NULL,'EPSG','4384','2011-10-14',0); INSERT INTO "vertical_datum" VALUES('EPSG','1150','Kumul 34',NULL,NULL,'EPSG','4013',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1151','Kiunga',NULL,NULL,'EPSG','4383',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1161','Deutsches Haupthoehennetz 1912',NULL,NULL,'EPSG','3339','1912-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1162','Latvian Height System 2000',NULL,NULL,'EPSG','3268','2005-07-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1164','Ordnance Datum Newlyn (Offshore)',NULL,NULL,'EPSG','4391','2016-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1169','New Zealand Vertical Datum 2016',NULL,NULL,'EPSG','1175','2016-06-27',0); INSERT INTO "vertical_datum" VALUES('EPSG','1170','Deutsches Haupthoehennetz 2016',NULL,NULL,'EPSG','3339','1996-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1171','Port Moresby 1996',NULL,NULL,'EPSG','4425',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1172','Port Moresby 2008',NULL,NULL,'EPSG','4425',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1175','Jamestown 1971',NULL,NULL,'EPSG','3183','1971-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1176','St. Helena Tritan Vertical Datum 2011',NULL,NULL,'EPSG','3183','2011-10-09',0); INSERT INTO "vertical_datum" VALUES('EPSG','1177','St. Helena Vertical Datum 2015',NULL,NULL,'EPSG','3183','2015-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1190','Landshaedarkerfi Islands 2004',NULL,NULL,'EPSG','3262','2004-08-07',0); INSERT INTO "vertical_datum" VALUES('EPSG','1199','Greenland Vertical Reference 2000',NULL,NULL,'EPSG','4461',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1200','Greenland Vertical Reference 2016',NULL,NULL,'EPSG','4454',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1202','Baltic 1957',NULL,NULL,'EPSG','1306','1957-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1205','EPSG example wellbore vertical datum',NULL,NULL,'EPSG','4393',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1210','Macao Height Datum',NULL,NULL,'EPSG','1147','1980-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1213','Helsinki 1943',NULL,NULL,'EPSG','4522','1943-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1215','Slovenian Vertical System 2010',NULL,NULL,'EPSG','3307','2010-10-10',0); INSERT INTO "vertical_datum" VALUES('EPSG','1216','Serbian Vertical Reference System 2012',NULL,NULL,'EPSG','4543',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1219','MOMRA Vertical Geodetic Control',NULL,NULL,'EPSG','3303','1969-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1224','Taiwan Vertical Datum 2001',NULL,NULL,'EPSG','3982',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1226','Datum Altimetrico de Costa Rica 1952',NULL,NULL,'EPSG','3232','1952-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1250','IGN 2008 LD',NULL,NULL,'EPSG','2893','2008-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1256','Canadian Geodetic Vertical Datum of 2013 (CGG2013a)',NULL,NULL,'EPSG','1061','2015-12-05',0); INSERT INTO "vertical_datum" VALUES('EPSG','1260','Sistema de Referencia Vertical Nacional 2016',NULL,NULL,'EPSG','4573','2013-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','1261','European Vertical Reference Frame 2000 Austria',NULL,NULL,'EPSG','1037',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','1262','South Africa Land Levelling Datum',NULL,NULL,'EPSG','3309','2010-05-11',0); INSERT INTO "vertical_datum" VALUES('EPSG','1269','Kingdom of Saudi Arabia Vertical Reference Frame Jeddah 2014',NULL,NULL,'EPSG','3303','2014-10-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5100','Mean Sea Level',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5101','Ordnance Datum Newlyn',NULL,NULL,'EPSG','2792',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5102','National Geodetic Vertical Datum 1929',NULL,NULL,'EPSG','1323','1929-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5103','North American Vertical Datum 1988',NULL,NULL,'EPSG','4161','1988-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5104','Yellow Sea 1956',NULL,NULL,'EPSG','3228','1956-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5105','Baltic 1977',NULL,NULL,'EPSG','2423','1977-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5106','Caspian Sea',NULL,NULL,'EPSG','1291',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5107','Nivellement general de la France',NULL,NULL,'EPSG','1326',NULL,1); INSERT INTO "vertical_datum" VALUES('EPSG','5109','Normaal Amsterdams Peil',NULL,NULL,'EPSG','1275',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5110','Ostend',NULL,NULL,'EPSG','1347','1981-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5111','Australian Height Datum',NULL,NULL,'EPSG','4493','1971-05-05',0); INSERT INTO "vertical_datum" VALUES('EPSG','5112','Australian Height Datum (Tasmania)',NULL,NULL,'EPSG','2947','1972-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5113','Instantaneous Water Level',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5114','Canadian Geodetic Vertical Datum of 1928',NULL,NULL,'EPSG','1289','1928-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5115','Piraeus Harbour 1986',NULL,NULL,'EPSG','3254','1986-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5116','Helsinki 1960',NULL,NULL,'EPSG','3333','1960-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5117','Rikets hojdsystem 1970',NULL,NULL,'EPSG','3313','1970-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5118','Nivellement General de la France - Lallemand',NULL,NULL,'EPSG','1326',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5119','Nivellement General de la France - IGN69',NULL,NULL,'EPSG','1326','1969-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5120','Nivellement General de la France - IGN78',NULL,NULL,'EPSG','1327','1978-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5121','Maputo',NULL,NULL,'EPSG','3281',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5122','Japanese Standard Levelling Datum 1969',NULL,NULL,'EPSG','4166','1969-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5123','PDO Height Datum 1993',NULL,NULL,'EPSG','3288','1993-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5124','Fahud Height Datum',NULL,NULL,'EPSG','4009',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5125','Ha Tien 1960',NULL,NULL,'EPSG','1302','1960-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5126','Hon Dau 1992',NULL,NULL,'EPSG','4015','1992-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5127','Landesnivellement 1902',NULL,NULL,'EPSG','1286','1902-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5128','Landeshohennetz 1995',NULL,NULL,'EPSG','1286','1995-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5129','European Vertical Reference Frame 2000',NULL,NULL,'EPSG','1299','2000-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5130','Malin Head',NULL,NULL,'EPSG','1305','1970-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5131','Belfast Lough',NULL,NULL,'EPSG','2530','1957-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5132','Dansk Normal Nul',NULL,NULL,'EPSG','3237',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5133','AIOC 1995',NULL,NULL,'EPSG','2592','1995-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5134','Black Sea',NULL,NULL,'EPSG','3251',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5135','Hong Kong Principal Datum',NULL,NULL,'EPSG','3334','1980-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5136','Hong Kong Chart Datum',NULL,NULL,'EPSG','3335',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5137','Yellow Sea 1985',NULL,NULL,'EPSG','3228','1985-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5138','Ordnance Datum Newlyn (Orkney Isles)',NULL,NULL,'EPSG','2793',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5139','Fair Isle',NULL,NULL,'EPSG','2794',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5140','Lerwick',NULL,NULL,'EPSG','2795',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5141','Foula',NULL,NULL,'EPSG','2796',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5142','Sule Skerry',NULL,NULL,'EPSG','2797',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5143','North Rona',NULL,NULL,'EPSG','2798',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5144','Stornoway',NULL,NULL,'EPSG','2799',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5145','St Kilda',NULL,NULL,'EPSG','2800',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5146','Flannan Isles',NULL,NULL,'EPSG','2801',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5147','St Marys',NULL,NULL,'EPSG','2802',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5148','Douglas',NULL,NULL,'EPSG','2803',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5149','Fao',NULL,NULL,'EPSG','3390',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5150','Bandar Abbas',NULL,NULL,'EPSG','3336','2001-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5151','Nivellement General de Nouvelle Caledonie',NULL,NULL,'EPSG','2822','1969-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5152','Poolbeg',NULL,NULL,'EPSG','1305','1837-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5153','Nivellement General Guyanais 1977',NULL,NULL,'EPSG','3146','1977-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5154','Martinique 1987',NULL,NULL,'EPSG','3276','1987-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5155','Guadeloupe 1988',NULL,NULL,'EPSG','2892','1988-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5156','Reunion 1989',NULL,NULL,'EPSG','3337','1989-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5157','Auckland 1946',NULL,NULL,'EPSG','3764','1946-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5158','Bluff 1955',NULL,NULL,'EPSG','3801','1955-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5159','Dunedin 1958',NULL,NULL,'EPSG','3803','1958-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5160','Gisborne 1926',NULL,NULL,'EPSG','3771','1926-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5161','Lyttelton 1937',NULL,NULL,'EPSG','3804','1937-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5162','Moturiki 1953',NULL,NULL,'EPSG','3768','1953-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5163','Napier 1962',NULL,NULL,'EPSG','3772','1962-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5164','Nelson 1955',NULL,NULL,'EPSG','3802','1955-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5165','One Tree Point 1964',NULL,NULL,'EPSG','3762','1964-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5166','Tararu 1952',NULL,NULL,'EPSG','3818','1952-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5167','Taranaki 1970',NULL,NULL,'EPSG','3769','1970-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5168','Wellington 1953',NULL,NULL,'EPSG','3773','1953-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5169','Waitangi (Chatham Island) 1959',NULL,NULL,'EPSG','3894','1959-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5170','Stewart Island 1977',NULL,NULL,'EPSG','3338','1977-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5171','EGM96 geoid',NULL,NULL,'EPSG','1262','1996-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5172','Nivellement General du Luxembourg',NULL,NULL,'EPSG','1146','1995-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5173','Antalya',NULL,NULL,'EPSG','3322',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5174','Norway Normal Null 1954',NULL,NULL,'EPSG','1352','1974-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5175','Durres',NULL,NULL,'EPSG','3212',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5176','Gebrauchshohen ADRIA',NULL,NULL,'EPSG','1037',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5177','Slovenian Vertical System 2000',NULL,NULL,'EPSG','3307','1999-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5178','Cascais',NULL,NULL,'EPSG','1294','1938-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5179','Constanta',NULL,NULL,'EPSG','3295',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5180','Alicante',NULL,NULL,'EPSG','4188',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5181','Deutsches Haupthoehennetz 1992',NULL,NULL,'EPSG','3339','1992-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5182','Deutsches Haupthoehennetz 1985',NULL,NULL,'EPSG','2326','1985-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5183','Staatlichen Nivellementnetzes 1976',NULL,NULL,'EPSG','1343','1976-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5184','Baltic 1982',NULL,NULL,'EPSG','3224','1982-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5185','Baltic 1980',NULL,NULL,'EPSG','1119',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5186','Kuwait PWD',NULL,NULL,'EPSG','3267',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5187','KOC Well Datum',NULL,NULL,'EPSG','3267','1937-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5188','KOC Construction Datum',NULL,NULL,'EPSG','3267','1952-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5189','Nivellement General de la Corse 1948',NULL,NULL,'EPSG','1327','1948-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5190','Danger 1950',NULL,NULL,'EPSG','3299','1950-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5191','Mayotte 1950',NULL,NULL,'EPSG','3340','1950-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5192','Martinique 1955',NULL,NULL,'EPSG','3276','1955-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5193','Guadeloupe 1951',NULL,NULL,'EPSG','2892','1955-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5194','Lagos 1955',NULL,NULL,'EPSG','3287','1955-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5195','Nivellement General de Polynesie Francaise',NULL,NULL,'EPSG','3134',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5196','IGN 1966',NULL,NULL,'EPSG','3124','1966-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5197','Moorea SAU 1981',NULL,NULL,'EPSG','3125','1981-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5198','Raiatea SAU 2001',NULL,NULL,'EPSG','3136','2001-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5199','Maupiti SAU 2001',NULL,NULL,'EPSG','3126','2001-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5200','Huahine SAU 2001',NULL,NULL,'EPSG','3135','2001-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5201','Tahaa SAU 2001',NULL,NULL,'EPSG','3138','2001-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5202','Bora Bora SAU 2001',NULL,NULL,'EPSG','3137','2001-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5203','EGM84 geoid',NULL,NULL,'EPSG','1262','1987-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5204','International Great Lakes Datum 1955',NULL,NULL,'EPSG','3468','1955-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5205','International Great Lakes Datum 1985',NULL,NULL,'EPSG','3468','1985-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5206','Dansk Vertikal Reference 1990',NULL,NULL,'EPSG','3237',NULL,0); INSERT INTO "vertical_datum" VALUES('EPSG','5207','Croatian Vertical Reference System 1971',NULL,NULL,'EPSG','3234','1971-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5208','Rikets hojdsystem 2000',NULL,NULL,'EPSG','3313','2000-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5209','Rikets hojdsystem 1900',NULL,NULL,'EPSG','3313','1900-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5210','IGN 1988 LS',NULL,NULL,'EPSG','2895','1988-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5211','IGN 1988 MG',NULL,NULL,'EPSG','2894','1988-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5212','IGN 1992 LD',NULL,NULL,'EPSG','2893','1992-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5213','IGN 1988 SB',NULL,NULL,'EPSG','2891','1988-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5214','IGN 1988 SM',NULL,NULL,'EPSG','2890','1988-01-01',0); INSERT INTO "vertical_datum" VALUES('EPSG','5215','European Vertical Reference Frame 2007',NULL,NULL,'EPSG','3594','2007-01-01',0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "conversion" VALUES('EPSG','3811','Belgian Lambert 2008',NULL,NULL,'EPSG','1347','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',50.4752134,'EPSG','9110','EPSG','8822','Longitude of false origin',4.2133177,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',49.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',51.1,'EPSG','9110','EPSG','8826','Easting at false origin',649328.0,'EPSG','9001','EPSG','8827','Northing at false origin',665262.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3813','Mississippi Transverse Mercator',NULL,NULL,'EPSG','1393','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',32.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9998335,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',1300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3818','Taiwan 2-degree TM zone 119',NULL,NULL,'EPSG','3563','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',119.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3820','Taiwan 2-degree TM zone 121',NULL,NULL,'EPSG','3562','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',121.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3831','Pacific Disaster Center Mercator',NULL,NULL,'EPSG','3172','EPSG','9804','Mercator (variant A)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',150.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3853','County ST74',NULL,NULL,'EPSG','3608','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',18.0328332,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999506,'EPSG','9201','EPSG','8806','False easting',100182.7406,'EPSG','9001','EPSG','8807','False northing',-6500620.1207,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3856','Popular Visualisation Pseudo-Mercator',NULL,NULL,'EPSG','1262','EPSG','1024','Popular Visualisation Pseudo Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3860','Finland Gauss-Kruger zone 19',NULL,NULL,'EPSG','3595','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',19500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3861','Finland Gauss-Kruger zone 20',NULL,NULL,'EPSG','3596','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',20.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',20500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3862','Finland Gauss-Kruger zone 21',NULL,NULL,'EPSG','3597','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',21500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3863','Finland Gauss-Kruger zone 22',NULL,NULL,'EPSG','3598','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',22.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',22500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3864','Finland Gauss-Kruger zone 23',NULL,NULL,'EPSG','3599','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',23.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',23500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3865','Finland Gauss-Kruger zone 24',NULL,NULL,'EPSG','3600','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',24500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3866','Finland Gauss-Kruger zone 25',NULL,NULL,'EPSG','3601','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',25.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',25500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3867','Finland Gauss-Kruger zone 26',NULL,NULL,'EPSG','3602','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',26.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',26500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3868','Finland Gauss-Kruger zone 27',NULL,NULL,'EPSG','3603','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',27500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3869','Finland Gauss-Kruger zone 28',NULL,NULL,'EPSG','3604','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',28.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',28500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3870','Finland Gauss-Kruger zone 29',NULL,NULL,'EPSG','3605','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',29.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',29500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3871','Finland Gauss-Kruger zone 30',NULL,NULL,'EPSG','3606','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',30500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3872','Finland Gauss-Kruger zone 31',NULL,NULL,'EPSG','3607','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',31.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',31500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3897','US NSIDC Equal Area north projection',NULL,NULL,'EPSG','3475','EPSG','1027','Lambert Azimuthal Equal Area (Spherical)','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3898','US NSIDC Equal Area south projection',NULL,NULL,'EPSG','3474','EPSG','1027','Lambert Azimuthal Equal Area (Spherical)','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3899','US National Atlas Equal Area',NULL,NULL,'EPSG','1245','EPSG','1027','Lambert Azimuthal Equal Area (Spherical)','EPSG','8801','Latitude of natural origin',45.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-100.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3967','Virginia Lambert Conic Conformal',NULL,NULL,'EPSG','1415','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-79.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.5,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3977','Canada Atlas Lambert',NULL,NULL,'EPSG','1061','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',49.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',49.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3980','Katanga Lambert',NULL,NULL,'EPSG','3147','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',9.0,'EPSG','9102','EPSG','8822','Longitude of false origin',26.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-6.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-11.5,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','3981','Katanga Gauss zone A',NULL,NULL,'EPSG','3612','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-9.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3982','Katanga Gauss zone B',NULL,NULL,'EPSG','3611','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-9.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',28.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3983','Katanga Gauss zone C',NULL,NULL,'EPSG','3610','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-9.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',26.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3984','Katanga Gauss zone D',NULL,NULL,'EPSG','3609','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-9.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','3999','Moldova Transverse Mercator',NULL,NULL,'EPSG','1162','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',28.24,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99994,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4085','World Equidistant Cylindrical',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4086','World Equidistant Cylindrical (Sphere)',NULL,NULL,'EPSG','1262','EPSG','1029','Equidistant Cylindrical (Spherical)','EPSG','8823','Latitude of 1st standard parallel',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4089','DKTM1',NULL,NULL,'EPSG','3631','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4090','DKTM2',NULL,NULL,'EPSG','3632','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',10.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4091','DKTM3',NULL,NULL,'EPSG','2532','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',11.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4092','DKTM4',NULL,NULL,'EPSG','2533','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4101','BLM zone 1N (US survey feet)',NULL,NULL,'EPSG','3374','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4102','BLM zone 2N (US survey feet)',NULL,NULL,'EPSG','3375','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4103','BLM zone 3N (US survey feet)',NULL,NULL,'EPSG','2133','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4104','BLM zone 4N (US survey feet)',NULL,NULL,'EPSG','2134','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4105','BLM zone 5N (US survey feet)',NULL,NULL,'EPSG','2135','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4106','BLM zone 6N (US survey feet)',NULL,NULL,'EPSG','2136','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4107','BLM zone 7N (US survey feet)',NULL,NULL,'EPSG','3494','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4108','BLM zone 8N (US survey feet)',NULL,NULL,'EPSG','3495','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4109','BLM zone 9N (US survey feet)',NULL,NULL,'EPSG','3496','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4110','BLM zone 10N (US survey feet)',NULL,NULL,'EPSG','3497','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4111','BLM zone 11N (US survey feet)',NULL,NULL,'EPSG','3498','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4112','BLM zone 12N (US survey feet)',NULL,NULL,'EPSG','3499','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4113','BLM zone 13N (US survey feet)',NULL,NULL,'EPSG','3500','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4114','Johor Cassini Grid',NULL,NULL,'EPSG','3376','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',2.02333,'EPSG','9110','EPSG','8802','Longitude of natural origin',103.334593,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4115','Sembilan and Melaka Cassini Grid',NULL,NULL,'EPSG','3377','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',2.424422,'EPSG','9110','EPSG','8802','Longitude of natural origin',101.56282,'EPSG','9110','EPSG','8806','False easting',-242.005,'EPSG','9001','EPSG','8807','False northing',-948.547,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4116','Pahang Cassini Grid',NULL,NULL,'EPSG','3378','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',3.42395,'EPSG','9110','EPSG','8802','Longitude of natural origin',102.261024,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4117','Selangor Cassini Grid',NULL,NULL,'EPSG','3379','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',3.404924,'EPSG','9110','EPSG','8802','Longitude of natural origin',101.302968,'EPSG','9110','EPSG','8806','False easting',-21759.438,'EPSG','9001','EPSG','8807','False northing',55960.906,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4118','BLM zone 18N (US survey feet)',NULL,NULL,'EPSG','3505','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4119','BLM zone 19N (US survey feet)',NULL,NULL,'EPSG','3506','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4177','Terengganu Cassini Grid',NULL,NULL,'EPSG','3380','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',4.564611,'EPSG','9110','EPSG','8802','Longitude of natural origin',102.534275,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4186','BLM zone 59N (US survey feet)',NULL,NULL,'EPSG','3372','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4187','BLM zone 60N (US survey feet)',NULL,NULL,'EPSG','3373','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4305','Pinang Cassini Grid',NULL,NULL,'EPSG','3381','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',5.251677,'EPSG','9110','EPSG','8802','Longitude of natural origin',100.204513,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4320','Kedah and Perlis Cassini Grid',NULL,NULL,'EPSG','3382','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',5.575453,'EPSG','9110','EPSG','8802','Longitude of natural origin',100.381534,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4321','Perak Revised Cassini Grid',NULL,NULL,'EPSG','3383','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',4.513377,'EPSG','9110','EPSG','8802','Longitude of natural origin',100.490036,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',133453.669,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4323','Kelantan Cassini Grid',NULL,NULL,'EPSG','3384','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',5.533812,'EPSG','9110','EPSG','8802','Longitude of natural origin',102.103825,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4325','Guam Map Grid',NULL,NULL,'EPSG','3255','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',13.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',144.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4416','Katanga Lambert',NULL,NULL,'EPSG','3147','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-9.0,'EPSG','9102','EPSG','8822','Longitude of false origin',26.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-6.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-11.5,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4436','Pennsylvania CS27 South zone',NULL,NULL,'EPSG','2246','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-77.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.56,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4454','New York CS27 Long Island zone',NULL,NULL,'EPSG','2235','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-74.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.02,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.4,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4460','Australian Centre for Remote Sensing Lambert Conformal Projection',NULL,NULL,'EPSG','2575','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-27.0,'EPSG','9102','EPSG','8822','Longitude of false origin',132.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-18.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-36.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4648','UTM zone 32N with prefix',NULL,NULL,'EPSG','2861','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',32500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4825','Cape Verde National',NULL,NULL,'EPSG','1062','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',15.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-24.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',15.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',16.4,'EPSG','9110','EPSG','8826','Easting at false origin',161587.83,'EPSG','9001','EPSG','8827','Northing at false origin',128511.202,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4838','LCC Germany',NULL,NULL,'EPSG','3339','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',51.0,'EPSG','9102','EPSG','8822','Longitude of false origin',10.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',48.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',53.4,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','4841','Norway TM zone 15',NULL,NULL,'EPSG','3656','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',15.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4842','Norway TM zone 16',NULL,NULL,'EPSG','3657','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',16.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4843','Norway TM zone 17',NULL,NULL,'EPSG','3658','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',17.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4844','Norway TM zone 18',NULL,NULL,'EPSG','3660','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',18.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4845','Norway TM zone 5',NULL,NULL,'EPSG','3636','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',5.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4846','Norway TM zone 6',NULL,NULL,'EPSG','3639','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',6.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4847','Norway TM zone 7',NULL,NULL,'EPSG','3647','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',7.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4848','Norway TM zone 8',NULL,NULL,'EPSG','3648','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',8.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4849','Norway TM zone 9',NULL,NULL,'EPSG','3649','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',9.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4850','Norway TM zone 10',NULL,NULL,'EPSG','3650','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',10.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4851','Norway TM zone 11',NULL,NULL,'EPSG','3651','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',11.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4852','Norway TM zone 12',NULL,NULL,'EPSG','3653','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',12.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4853','Norway TM zone 13',NULL,NULL,'EPSG','3654','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',13.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4854','Norway TM zone 14',NULL,NULL,'EPSG','3655','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',14.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','4881','Norway TM zone 19',NULL,NULL,'EPSG','3661','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',19.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5000','Norway TM zone 20',NULL,NULL,'EPSG','3662','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',20.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5001','Norway TM zone 21',NULL,NULL,'EPSG','3663','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',21.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5002','Norway TM zone 22',NULL,NULL,'EPSG','3665','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',22.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5003','Norway TM zone 23',NULL,NULL,'EPSG','3667','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',23.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5004','Norway TM zone 24',NULL,NULL,'EPSG','3668','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',24.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5005','Norway TM zone 25',NULL,NULL,'EPSG','3669','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',25.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5006','Norway TM zone 26',NULL,NULL,'EPSG','3671','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',26.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5007','Norway TM zone 27',NULL,NULL,'EPSG','3672','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',27.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5008','Norway TM zone 28',NULL,NULL,'EPSG','3673','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',28.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5009','Norway TM zone 29',NULL,NULL,'EPSG','3674','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',29.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5010','Norway TM zone 30',NULL,NULL,'EPSG','3676','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',30.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','5019','Portugal Bonne New',NULL,NULL,'EPSG','1294','EPSG','9828','Bonne (South Orientated)','EPSG','8801','Latitude of natural origin',39.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-8.0754862,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5020','Portuguese Grid New',NULL,NULL,'EPSG','1294','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-8.0754862,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5049','Korea East Sea Belt',NULL,NULL,'EPSG','3727','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',131.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5068','Conus Albers',NULL,NULL,'EPSG','1323','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',23.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',29.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.3,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5100','Korea Unified Belt',NULL,NULL,'EPSG','1135','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5101','Korea West Belt 2010',NULL,NULL,'EPSG','1498','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',125.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5102','Korea Central Belt 2010',NULL,NULL,'EPSG','1497','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5103','Korea East Belt 2010',NULL,NULL,'EPSG','1496','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5104','Korea East Sea Belt 2010',NULL,NULL,'EPSG','3720','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',131.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5131','Korea Central Belt Jeju',NULL,NULL,'EPSG','3721','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',550000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5135','Norway TM zone 5',NULL,NULL,'EPSG','3636','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',5.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5136','Norway TM zone 6',NULL,NULL,'EPSG','3639','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',6.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5137','Norway TM zone 7',NULL,NULL,'EPSG','3647','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',7.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5138','Norway TM zone 8',NULL,NULL,'EPSG','3648','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',8.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5139','Norway TM zone 9',NULL,NULL,'EPSG','3649','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',9.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5140','Norway TM zone 10',NULL,NULL,'EPSG','3650','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',10.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5141','Norway TM zone 11',NULL,NULL,'EPSG','3651','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',11.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5142','Norway TM zone 12',NULL,NULL,'EPSG','3653','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',12.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5143','Norway TM zone 13',NULL,NULL,'EPSG','3654','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',13.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5144','Norway TM zone 14',NULL,NULL,'EPSG','3655','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',14.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5145','Norway TM zone 15',NULL,NULL,'EPSG','3656','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',15.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5146','Norway TM zone 16',NULL,NULL,'EPSG','3657','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',16.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5147','Norway TM zone 17',NULL,NULL,'EPSG','3658','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',17.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5148','Norway TM zone 18',NULL,NULL,'EPSG','3660','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',18.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5149','Norway TM zone 19',NULL,NULL,'EPSG','3661','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',19.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5150','Norway TM zone 20',NULL,NULL,'EPSG','3662','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',20.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5151','Norway TM zone 21',NULL,NULL,'EPSG','3663','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',21.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5152','Norway TM zone 22',NULL,NULL,'EPSG','3665','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',22.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5153','Norway TM zone 23',NULL,NULL,'EPSG','3667','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',23.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5154','Norway TM zone 24',NULL,NULL,'EPSG','3668','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',24.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5155','Norway TM zone 25',NULL,NULL,'EPSG','3669','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',25.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5156','Norway TM zone 26',NULL,NULL,'EPSG','3671','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',26.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5157','Norway TM zone 27',NULL,NULL,'EPSG','3672','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',27.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5158','Norway TM zone 28',NULL,NULL,'EPSG','3673','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',28.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5159','Norway TM zone 29',NULL,NULL,'EPSG','3674','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',29.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5160','Norway TM zone 30',NULL,NULL,'EPSG','3676','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',30.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5161','Korea Modified West Belt',NULL,NULL,'EPSG','1498','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',125.0010405,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5162','Korea Modified Central Belt',NULL,NULL,'EPSG','1497','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.0010405,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5163','Korea Modified Central Belt Jeju',NULL,NULL,'EPSG','3721','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.0010405,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',550000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5164','Korea Modified East Belt',NULL,NULL,'EPSG','1496','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0010405,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5165','Korea Modified East Sea Belt',NULL,NULL,'EPSG','3720','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',131.0010405,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5218','Krovak East North',NULL,NULL,'EPSG','1306','EPSG','1041','Krovak (North Orientated)','EPSG','8811','Latitude of projection centre',49.3,'EPSG','9110','EPSG','8833','Longitude of origin',42.3,'EPSG','9110','EPSG','1036','Co-latitude of cone axis',30.171730311,'EPSG','9110','EPSG','8818','Latitude of pseudo standard parallel',78.3,'EPSG','9110','EPSG','8819','Scale factor on pseudo standard parallel',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','5219','Modified Krovak',NULL,NULL,'EPSG','1079','EPSG','1042','Krovak Modified','EPSG','8811','Latitude of projection centre',49.3,'EPSG','9110','EPSG','8833','Longitude of origin',42.3,'EPSG','9110','EPSG','1036','Co-latitude of cone axis',30.1717303,'EPSG','9110','EPSG','8818','Latitude of pseudo standard parallel',78.3,'EPSG','9110','EPSG','8819','Scale factor on pseudo standard parallel',0.9999,'EPSG','9201','EPSG','8806','False easting',5000000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','5220','Modified Krovak East North',NULL,NULL,'EPSG','1079','EPSG','1043','Krovak Modified (North Orientated)','EPSG','8811','Latitude of projection centre',49.3,'EPSG','9110','EPSG','8833','Longitude of origin',42.3,'EPSG','9110','EPSG','1036','Co-latitude of cone axis',30.1717303,'EPSG','9110','EPSG','8818','Latitude of pseudo standard parallel',78.3,'EPSG','9110','EPSG','8819','Scale factor on pseudo standard parallel',0.9999,'EPSG','9201','EPSG','8806','False easting',5000000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','5222','Gabon Transverse Mercator',NULL,NULL,'EPSG','3249','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',12.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5231','Sri Lanka Grid',NULL,NULL,'EPSG','3310','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',7.0001729,'EPSG','9110','EPSG','8802','Longitude of natural origin',80.461816,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999238418,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5232','Sri Lanka Grid 1999',NULL,NULL,'EPSG','3310','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',7.00016975,'EPSG','9110','EPSG','8802','Longitude of natural origin',80.46181671,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999238418,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5265','Bhutan National Grid',NULL,NULL,'EPSG','1048','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5268','Bumthang TM',NULL,NULL,'EPSG','3734','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',90.44,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5276','Chhukha TM',NULL,NULL,'EPSG','3737','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',89.33,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5277','Dagana TM',NULL,NULL,'EPSG','3738','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',89.51,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5278','Gasa TM',NULL,NULL,'EPSG','3740','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',90.02,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5279','Ha TM',NULL,NULL,'EPSG','3742','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',90.09,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5280','Lhuentse TM',NULL,NULL,'EPSG','3743','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',91.08,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5281','Mongar TM',NULL,NULL,'EPSG','3745','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',91.14,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5282','Paro TM',NULL,NULL,'EPSG','3746','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',89.21,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5283','Pemagatshel TM',NULL,NULL,'EPSG','3747','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',91.21,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5284','Tsirang TM',NULL,NULL,'EPSG','3757','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',90.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5285','Samdrup Jongkhar TM',NULL,NULL,'EPSG','3750','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',91.34,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5286','Samtse TM',NULL,NULL,'EPSG','3751','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',89.04,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5287','Sarpang TM',NULL,NULL,'EPSG','3752','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',90.16,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5288','Wangdue Phodrang TM',NULL,NULL,'EPSG','3758','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',90.07,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5289','Trashigang TM',NULL,NULL,'EPSG','3754','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',91.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5290','Trongsa TM',NULL,NULL,'EPSG','3755','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',90.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5291','Zhemgang TM',NULL,NULL,'EPSG','3761','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',90.52,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5312','Thimphu TM',NULL,NULL,'EPSG','3753','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',89.33,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5313','Punakha TM',NULL,NULL,'EPSG','3749','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',89.51,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5314','Yangtse TM',NULL,NULL,'EPSG','3760','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',91.34,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',-2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5315','Faroe Transverse Mercator',NULL,NULL,'EPSG','1093','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-7.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',-6000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5319','Teranet Ontario Lambert',NULL,NULL,'EPSG','1367','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',54.3,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5326','Iceland Lambert 2004',NULL,NULL,'EPSG','1120','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-19.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',64.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',65.45,'EPSG','9110','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5328','Netherlands East Indies Equatorial Zone (Jkt)',NULL,NULL,'EPSG','4020','EPSG','9804','Mercator (variant A)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.113221,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.997,'EPSG','9201','EPSG','8806','False easting',3900000.0,'EPSG','9001','EPSG','8807','False northing',900000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5366','Costa Rica TM 2005',NULL,NULL,'EPSG','3849','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-84.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5390','Costa Rica Norte',NULL,NULL,'EPSG','3869','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',10.28,'EPSG','9110','EPSG','8802','Longitude of natural origin',-84.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99995696,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',271820.522,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5394','Costa Rica Sur',NULL,NULL,'EPSG','3870','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',9.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-83.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99995696,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',327987.436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5397','Honduras Norte',NULL,NULL,'EPSG','3848','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',15.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99993273,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',296917.439,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5398','Honduras Sur',NULL,NULL,'EPSG','3850','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',13.47,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999514,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',296215.903,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5399','El Salvador Lambert',NULL,NULL,'EPSG','3243','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',13.47,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99996704,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',295809.184,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5439','Nicaragua Norte',NULL,NULL,'EPSG','3844','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',13.52,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99990314,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',359891.816,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5444','Nicaragua Sur',NULL,NULL,'EPSG','3847','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',11.44,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99992228,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',288876.327,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5465','Belize Colony Grid',NULL,NULL,'EPSG','3219','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',17.0340471,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.3754687,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',217259.26,'EPSG','9005','EPSG','8807','False northing',445474.83,'EPSG','9005',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5468','Panama Lambert',NULL,NULL,'EPSG','3290','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',8.25,'EPSG','9110','EPSG','8802','Longitude of natural origin',-80.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99989909,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',294865.303,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5471','Panama Polyconic',NULL,NULL,'EPSG','3290','EPSG','9818','American Polyconic','EPSG','8801','Latitude of natural origin',8.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9110','EPSG','8806','False easting',1000000.0,'EPSG','9037','EPSG','8807','False northing',1092972.1,'EPSG','9037',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5475','McMurdo Sound Lambert Conformal 2000',NULL,NULL,'EPSG','3853','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-78.0,'EPSG','9110','EPSG','8822','Longitude of false origin',163.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',7000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5476','Borchgrevink Coast Lambert Conformal 2000',NULL,NULL,'EPSG','3854','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-74.3,'EPSG','9110','EPSG','8822','Longitude of false origin',165.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',-73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',5000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5477','Pennell Coast Lambert Conformal 2000',NULL,NULL,'EPSG','3855','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-71.3,'EPSG','9110','EPSG','8822','Longitude of false origin',166.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',-70.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-72.2,'EPSG','9110','EPSG','8826','Easting at false origin',3000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5478','Ross Sea Polar Stereographic 2000',NULL,NULL,'EPSG','3856','EPSG','9810','Polar Stereographic (variant A)','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',180.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.994,'EPSG','9201','EPSG','8806','False easting',5000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5509','Krovak (Greenwich)',NULL,NULL,'EPSG','1306','EPSG','9819','Krovak','EPSG','8811','Latitude of projection centre',49.3,'EPSG','9110','EPSG','8833','Longitude of origin',24.5,'EPSG','9110','EPSG','1036','Co-latitude of cone axis',30.171730311,'EPSG','9110','EPSG','8818','Latitude of pseudo standard parallel',78.3,'EPSG','9110','EPSG','8819','Scale factor on pseudo standard parallel',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','5510','Krovak East North (Greenwich)',NULL,NULL,'EPSG','1306','EPSG','1041','Krovak (North Orientated)','EPSG','8811','Latitude of projection centre',49.3,'EPSG','9110','EPSG','8833','Longitude of origin',24.5,'EPSG','9110','EPSG','1036','Co-latitude of cone axis',30.171730311,'EPSG','9110','EPSG','8818','Latitude of pseudo standard parallel',78.3,'EPSG','9110','EPSG','8819','Scale factor on pseudo standard parallel',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','5511','Modified Krovak (Greenwich)',NULL,NULL,'EPSG','1079','EPSG','1042','Krovak Modified','EPSG','8811','Latitude of projection centre',49.3,'EPSG','9110','EPSG','8833','Longitude of origin',24.5,'EPSG','9110','EPSG','1036','Co-latitude of cone axis',30.1717303,'EPSG','9110','EPSG','8818','Latitude of pseudo standard parallel',78.3,'EPSG','9110','EPSG','8819','Scale factor on pseudo standard parallel',0.9999,'EPSG','9201','EPSG','8806','False easting',5000000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','5512','Modified Krovak East North (Greenwich)',NULL,NULL,'EPSG','1079','EPSG','1043','Krovak Modified (North Orientated)','EPSG','8811','Latitude of projection centre',49.3,'EPSG','9110','EPSG','8833','Longitude of origin',24.5,'EPSG','9110','EPSG','1036','Co-latitude of cone axis',30.1717303,'EPSG','9110','EPSG','8818','Latitude of pseudo standard parallel',78.3,'EPSG','9110','EPSG','8819','Scale factor on pseudo standard parallel',0.9999,'EPSG','9201','EPSG','8806','False easting',5000000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','5517','Chatham Islands Map Grid',NULL,NULL,'EPSG','2889','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-44.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-176.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',350000.0,'EPSG','9001','EPSG','8807','False northing',650000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5522','Gabon Transverse Mercator 2011',NULL,NULL,'EPSG','1100','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',11.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5547','Papua New Guinea Map Grid 1994 zone 54',NULL,NULL,'EPSG','3882','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5548','Papua New Guinea Map Grid 1994 zone 55',NULL,NULL,'EPSG','3885','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5549','Papua New Guinea Map Grid 1994 zone 56',NULL,NULL,'EPSG','3885','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5587','New Brunswick Stereographic (NAD27)',NULL,NULL,'EPSG','1447','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',46.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-66.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999912,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9002','EPSG','8807','False northing',1000000.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5595','Fehmarnbelt TM',NULL,NULL,'EPSG','3889','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',11.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5640','Petrobras Mercator',NULL,NULL,'EPSG','3896','EPSG','9805','Mercator (variant B)','EPSG','8823','Latitude of 1st standard parallel',-2.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-43.0,'EPSG','9102','EPSG','8806','False easting',5000000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5642','Southern Permian Basin Atlas Lambert',NULL,NULL,'EPSG','3899','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.0,'EPSG','9102','EPSG','8822','Longitude of false origin',10.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',52.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',54.2,'EPSG','9110','EPSG','8826','Easting at false origin',815000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5645','SPCS83 Vermont zone (US Survey feet)',NULL,NULL,'EPSG','1414','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-72.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999964286,'EPSG','9201','EPSG','8806','False easting',1640416.6667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5647','UTM zone 31N with prefix',NULL,NULL,'EPSG','2860','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',31500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5648','UTM zone 33N with prefix',NULL,NULL,'EPSG','2862','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',33500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5658','TM Emilia-Romagna',NULL,NULL,'EPSG','4035','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500053.0,'EPSG','9001','EPSG','8807','False northing',-3999820.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5824','ACT Standard Grid',NULL,NULL,'EPSG','2283','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-35.19038506,'EPSG','9110','EPSG','8802','Longitude of natural origin',149.003346139,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000086,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5883','Tonga Map Grid',NULL,NULL,'EPSG','1234','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5889','JAXA Snow Depth Polar Stereographic North',NULL,NULL,'EPSG','1996','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',70.0,'EPSG','9102','EPSG','8833','Longitude of origin',90.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5892','Vietnam TM-3 zone 481',NULL,NULL,'EPSG','4193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',102.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5893','Vietnam TM-3 zone 482',NULL,NULL,'EPSG','4215','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5894','Vietnam TM-3 zone 491',NULL,NULL,'EPSG','4217','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',108.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5895','Vietnam TM-3 107-45',NULL,NULL,'EPSG','4218','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',107.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5901','EPSG Alaska Polar Stereographic',NULL,NULL,'EPSG','1996','EPSG','9810','Polar Stereographic (variant A)','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-150.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.994,'EPSG','9201','EPSG','8806','False easting',2000000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5902','EPSG Canada Polar Stereographic',NULL,NULL,'EPSG','1996','EPSG','9810','Polar Stereographic (variant A)','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-100.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.994,'EPSG','9201','EPSG','8806','False easting',2000000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5903','EPSG Greenland Polar Stereographic',NULL,NULL,'EPSG','1996','EPSG','9810','Polar Stereographic (variant A)','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.994,'EPSG','9201','EPSG','8806','False easting',2000000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5904','EPSG Norway Polar Stereographic',NULL,NULL,'EPSG','1996','EPSG','9810','Polar Stereographic (variant A)','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.994,'EPSG','9201','EPSG','8806','False easting',2000000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5905','EPSG Russia Polar Stereographic',NULL,NULL,'EPSG','1996','EPSG','9810','Polar Stereographic (variant A)','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.994,'EPSG','9201','EPSG','8806','False easting',2000000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5906','EPSG Arctic Regional LCC zone A1',NULL,NULL,'EPSG','4019','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',81.19020136,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',85.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5907','EPSG Arctic Regional LCC zone A2',NULL,NULL,'EPSG','4027','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',81.19020136,'EPSG','9110','EPSG','8822','Longitude of false origin',-39.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',85.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5908','EPSG Arctic Regional LCC zone A3',NULL,NULL,'EPSG','4028','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',81.19020136,'EPSG','9110','EPSG','8822','Longitude of false origin',33.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',85.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5909','EPSG Arctic Regional LCC zone A4',NULL,NULL,'EPSG','4029','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',81.19020136,'EPSG','9110','EPSG','8822','Longitude of false origin',105.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',85.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5910','EPSG Arctic Regional LCC zone A5',NULL,NULL,'EPSG','4031','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',81.19020136,'EPSG','9110','EPSG','8822','Longitude of false origin',177.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',85.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5911','EPSG Arctic Regional LCC zone B1',NULL,NULL,'EPSG','4032','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',73.09206671,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',69.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5912','EPSG Arctic Regional LCC zone B2',NULL,NULL,'EPSG','4033','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',73.09206671,'EPSG','9110','EPSG','8822','Longitude of false origin',-39.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',69.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5913','EPSG Arctic Regional LCC zone B3',NULL,NULL,'EPSG','4034','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',73.09206671,'EPSG','9110','EPSG','8822','Longitude of false origin',33.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',69.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5914','EPSG Arctic Regional LCC zone B4',NULL,NULL,'EPSG','4037','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',73.09206671,'EPSG','9110','EPSG','8822','Longitude of false origin',105.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',69.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5915','EPSG Arctic Regional LCC zone B5',NULL,NULL,'EPSG','4038','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',73.09206671,'EPSG','9110','EPSG','8822','Longitude of false origin',177.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',69.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5916','EPSG Arctic Regional LCC zone C1',NULL,NULL,'EPSG','4040','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.06045752,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',69.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',61.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5917','EPSG Arctic Regional LCC zone C2',NULL,NULL,'EPSG','4041','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.06045752,'EPSG','9110','EPSG','8822','Longitude of false origin',-39.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',69.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',61.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5918','EPSG Arctic Regional LCC zone C3',NULL,NULL,'EPSG','4042','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.06045752,'EPSG','9110','EPSG','8822','Longitude of false origin',33.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',69.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',61.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5919','EPSG Arctic Regional LCC zone C4',NULL,NULL,'EPSG','4043','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.06045752,'EPSG','9110','EPSG','8822','Longitude of false origin',105.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',69.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',61.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5920','EPSG Arctic Regional LCC zone C5',NULL,NULL,'EPSG','4045','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.06045752,'EPSG','9110','EPSG','8822','Longitude of false origin',177.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',69.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',61.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5943','EPSG Arctic LCC zone 8-20',NULL,NULL,'EPSG','4123','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',62.00551048,'EPSG','9110','EPSG','8822','Longitude of false origin',-52.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',63.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',60.2,'EPSG','9110','EPSG','8826','Easting at false origin',20500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',8500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5944','EPSG Arctic LCC zone 8-22',NULL,NULL,'EPSG','4124','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',62.00551048,'EPSG','9110','EPSG','8822','Longitude of false origin',-37.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',63.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',60.2,'EPSG','9110','EPSG','8826','Easting at false origin',22500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',8500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5977','EPSG Arctic LCC zone 1-21',NULL,NULL,'EPSG','4044','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',85.2613626,'EPSG','9110','EPSG','8822','Longitude of false origin',-150.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',87.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',83.4,'EPSG','9110','EPSG','8826','Easting at false origin',21500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5978','EPSG Arctic LCC zone 1-23',NULL,NULL,'EPSG','4047','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',85.2613626,'EPSG','9110','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',87.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',83.4,'EPSG','9110','EPSG','8826','Easting at false origin',23500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5979','EPSG Arctic LCC zone 1-25',NULL,NULL,'EPSG','4048','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',85.2613626,'EPSG','9110','EPSG','8822','Longitude of false origin',-30.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',87.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',83.4,'EPSG','9110','EPSG','8826','Easting at false origin',25500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5980','EPSG Arctic LCC zone 1-27',NULL,NULL,'EPSG','4049','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',85.2613626,'EPSG','9110','EPSG','8822','Longitude of false origin',30.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',87.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',83.4,'EPSG','9110','EPSG','8826','Easting at false origin',27500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5981','EPSG Arctic LCC zone 1-29',NULL,NULL,'EPSG','4050','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',85.2613626,'EPSG','9110','EPSG','8822','Longitude of false origin',90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',87.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',83.4,'EPSG','9110','EPSG','8826','Easting at false origin',29500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5982','EPSG Arctic LCC zone 1-31',NULL,NULL,'EPSG','4051','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',85.2613626,'EPSG','9110','EPSG','8822','Longitude of false origin',150.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',87.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',83.4,'EPSG','9110','EPSG','8826','Easting at false origin',31500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5983','EPSG Arctic LCC zone 2-10',NULL,NULL,'EPSG','4057','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',82.03303296,'EPSG','9110','EPSG','8822','Longitude of false origin',166.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',83.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',80.2,'EPSG','9110','EPSG','8826','Easting at false origin',10500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5984','EPSG Arctic LCC zone 2-12',NULL,NULL,'EPSG','4052','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',82.03303296,'EPSG','9110','EPSG','8822','Longitude of false origin',-154.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',83.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',80.2,'EPSG','9110','EPSG','8826','Easting at false origin',12500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5985','EPSG Arctic LCC zone 2-14',NULL,NULL,'EPSG','4030','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',82.03303296,'EPSG','9110','EPSG','8822','Longitude of false origin',-115.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',83.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',80.2,'EPSG','9110','EPSG','8826','Easting at false origin',14500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5986','EPSG Arctic LCC zone 2-16',NULL,NULL,'EPSG','4036','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',82.03303296,'EPSG','9110','EPSG','8822','Longitude of false origin',-75.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',83.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',80.2,'EPSG','9110','EPSG','8826','Easting at false origin',16500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5987','EPSG Arctic LCC zone 2-18',NULL,NULL,'EPSG','4039','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',82.03303296,'EPSG','9110','EPSG','8822','Longitude of false origin',-52.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',83.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',80.2,'EPSG','9110','EPSG','8826','Easting at false origin',18500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5988','EPSG Arctic LCC zone 2-20',NULL,NULL,'EPSG','4046','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',82.03303296,'EPSG','9110','EPSG','8822','Longitude of false origin',-12.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',83.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',80.2,'EPSG','9110','EPSG','8826','Easting at false origin',20500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5989','EPSG Arctic LCC zone 2-22',NULL,NULL,'EPSG','4053','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',82.03303296,'EPSG','9110','EPSG','8822','Longitude of false origin',16.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',83.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',80.2,'EPSG','9110','EPSG','8826','Easting at false origin',22500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5990','EPSG Arctic LCC zone 2-24',NULL,NULL,'EPSG','4054','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',82.03303296,'EPSG','9110','EPSG','8822','Longitude of false origin',53.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',83.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',80.2,'EPSG','9110','EPSG','8826','Easting at false origin',24500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5991','EPSG Arctic LCC zone 2-26',NULL,NULL,'EPSG','4055','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',82.03303296,'EPSG','9110','EPSG','8822','Longitude of false origin',93.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',83.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',80.2,'EPSG','9110','EPSG','8826','Easting at false origin',26500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5992','EPSG Arctic LCC zone 2-28',NULL,NULL,'EPSG','4056','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',82.03303296,'EPSG','9110','EPSG','8822','Longitude of false origin',133.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',83.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',80.2,'EPSG','9110','EPSG','8826','Easting at false origin',28500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5993','EPSG Arctic LCC zone 3-11',NULL,NULL,'EPSG','4058','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',21.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',11500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5994','EPSG Arctic LCC zone 3-13',NULL,NULL,'EPSG','4059','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',52.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',13500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5995','EPSG Arctic LCC zone 3-15',NULL,NULL,'EPSG','4060','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',83.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',15500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5996','EPSG Arctic LCC zone 3-17',NULL,NULL,'EPSG','4061','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',114.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',17500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5997','EPSG Arctic LCC zone 3-19',NULL,NULL,'EPSG','4062','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',145.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',19500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5998','EPSG Arctic LCC zone 3-21',NULL,NULL,'EPSG','4063','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',176.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',21500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','5999','EPSG Arctic LCC zone 3-23',NULL,NULL,'EPSG','4064','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',-153.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',23500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6000','EPSG Arctic LCC zone 3-25',NULL,NULL,'EPSG','4065','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',-129.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',25500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6001','EPSG Arctic LCC zone 3-27',NULL,NULL,'EPSG','4070','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',-99.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',27500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6002','EPSG Arctic LCC zone 3-29',NULL,NULL,'EPSG','4071','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',-69.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',29500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6003','EPSG Arctic LCC zone 3-31',NULL,NULL,'EPSG','4074','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',-39.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',31500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6004','EPSG Arctic LCC zone 3-33',NULL,NULL,'EPSG','4075','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',78.42264151,'EPSG','9110','EPSG','8822','Longitude of false origin',-10.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',80.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9110','EPSG','8826','Easting at false origin',33500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6005','EPSG Arctic LCC zone 4-12',NULL,NULL,'EPSG','4076','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',-155.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',12500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6006','EPSG Arctic LCC zone 4-14',NULL,NULL,'EPSG','4077','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',-129.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',14500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6007','EPSG Arctic LCC zone 4-16',NULL,NULL,'EPSG','4078','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',-104.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',16500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6008','EPSG Arctic LCC zone 4-18',NULL,NULL,'EPSG','4079','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',-79.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',18500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6009','EPSG Arctic LCC zone 4-20',NULL,NULL,'EPSG','4080','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',-64.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',20500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6010','EPSG Arctic LCC zone 4-22',NULL,NULL,'EPSG','4081','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',-39.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',22500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6011','EPSG Arctic LCC zone 4-24',NULL,NULL,'EPSG','4082','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',-14.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',24500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6012','EPSG Arctic LCC zone 4-26',NULL,NULL,'EPSG','4083','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',10.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',26500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6013','EPSG Arctic LCC zone 4-28',NULL,NULL,'EPSG','4084','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',34.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',28500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6014','EPSG Arctic LCC zone 4-30',NULL,NULL,'EPSG','4085','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',58.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',30500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6015','EPSG Arctic LCC zone 4-32',NULL,NULL,'EPSG','4086','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',82.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',32500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6016','EPSG Arctic LCC zone 4-34',NULL,NULL,'EPSG','4087','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',106.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',34500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6017','EPSG Arctic LCC zone 4-36',NULL,NULL,'EPSG','4088','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',130.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',36500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6018','EPSG Arctic LCC zone 4-38',NULL,NULL,'EPSG','4089','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',154.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',38500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6019','EPSG Arctic LCC zone 4-40',NULL,NULL,'EPSG','4090','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',75.21518519,'EPSG','9110','EPSG','8822','Longitude of false origin',179.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',77.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',73.4,'EPSG','9110','EPSG','8826','Easting at false origin',40500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6020','EPSG Arctic LCC zone 5-11',NULL,NULL,'EPSG','4091','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',14.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',11500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6021','EPSG Arctic LCC zone 5-13',NULL,NULL,'EPSG','4092','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',34.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',13500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6022','EPSG Arctic LCC zone 5-15',NULL,NULL,'EPSG','4093','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',54.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',15500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6023','EPSG Arctic LCC zone 5-17',NULL,NULL,'EPSG','4094','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',74.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',17500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6024','EPSG Arctic LCC zone 5-19',NULL,NULL,'EPSG','4095','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',95.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',19500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6025','EPSG Arctic LCC zone 5-21',NULL,NULL,'EPSG','4096','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',116.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',21500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6026','EPSG Arctic LCC zone 5-23',NULL,NULL,'EPSG','4097','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',137.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',23500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6027','EPSG Arctic LCC zone 5-25',NULL,NULL,'EPSG','4098','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',158.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',25500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6028','EPSG Arctic LCC zone 5-27',NULL,NULL,'EPSG','4099','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',179.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',27500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6029','EPSG Arctic LCC zone 5-29',NULL,NULL,'EPSG','4100','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',-163.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',29500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6030','EPSG Arctic LCC zone 5-31',NULL,NULL,'EPSG','4101','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',-147.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',31500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6031','EPSG Arctic LCC zone 5-33',NULL,NULL,'EPSG','4102','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',-131.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',33500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6032','EPSG Arctic LCC zone 5-35',NULL,NULL,'EPSG','4103','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',35500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6033','EPSG Arctic LCC zone 5-37',NULL,NULL,'EPSG','4104','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',-91.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',37500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6034','EPSG Arctic LCC zone 5-39',NULL,NULL,'EPSG','4105','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',-71.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',39500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6035','EPSG Arctic LCC zone 5-41',NULL,NULL,'EPSG','4106','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',-62.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',41500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6036','EPSG Arctic LCC zone 5-43',NULL,NULL,'EPSG','4107','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',-42.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',43500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6037','EPSG Arctic LCC zone 5-45',NULL,NULL,'EPSG','4108','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',-22.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',45500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6038','EPSG Arctic LCC zone 5-47',NULL,NULL,'EPSG','4109','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',72.01300331,'EPSG','9110','EPSG','8822','Longitude of false origin',-5.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',73.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',70.2,'EPSG','9110','EPSG','8826','Easting at false origin',47500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6039','EPSG Arctic LCC zone 6-14',NULL,NULL,'EPSG','4110','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',68.4114912,'EPSG','9110','EPSG','8822','Longitude of false origin',-165.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',70.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',67.0,'EPSG','9110','EPSG','8826','Easting at false origin',14500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6040','EPSG Arctic LCC zone 6-16',NULL,NULL,'EPSG','4111','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',68.4114912,'EPSG','9110','EPSG','8822','Longitude of false origin',-147.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',70.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',67.0,'EPSG','9110','EPSG','8826','Easting at false origin',16500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6041','EPSG Arctic LCC zone 6-18',NULL,NULL,'EPSG','4112','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',68.4114912,'EPSG','9110','EPSG','8822','Longitude of false origin',-132.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',70.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',67.0,'EPSG','9110','EPSG','8826','Easting at false origin',18500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6042','EPSG Arctic LCC zone 6-20',NULL,NULL,'EPSG','4113','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',68.4114912,'EPSG','9110','EPSG','8822','Longitude of false origin',-113.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',70.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',67.0,'EPSG','9110','EPSG','8826','Easting at false origin',20500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6043','EPSG Arctic LCC zone 6-22',NULL,NULL,'EPSG','4114','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',68.4114912,'EPSG','9110','EPSG','8822','Longitude of false origin',-94.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',70.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',67.0,'EPSG','9110','EPSG','8826','Easting at false origin',22500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6044','EPSG Arctic LCC zone 6-24',NULL,NULL,'EPSG','4115','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',68.4114912,'EPSG','9110','EPSG','8822','Longitude of false origin',-75.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',70.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',67.0,'EPSG','9110','EPSG','8826','Easting at false origin',24500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6045','EPSG Arctic LCC zone 6-26',NULL,NULL,'EPSG','4116','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',68.4114912,'EPSG','9110','EPSG','8822','Longitude of false origin',-56.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',70.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',67.0,'EPSG','9110','EPSG','8826','Easting at false origin',26500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6046','EPSG Arctic LCC zone 6-28',NULL,NULL,'EPSG','4117','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',68.4114912,'EPSG','9110','EPSG','8822','Longitude of false origin',-38.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',70.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',67.0,'EPSG','9110','EPSG','8826','Easting at false origin',28500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6047','EPSG Arctic LCC zone 6-30',NULL,NULL,'EPSG','4118','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',68.4114912,'EPSG','9110','EPSG','8822','Longitude of false origin',-20.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',70.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',67.0,'EPSG','9110','EPSG','8826','Easting at false origin',30500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6048','EPSG Arctic LCC zone 7-11',NULL,NULL,'EPSG','4119','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.21037415,'EPSG','9110','EPSG','8822','Longitude of false origin',-51.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',67.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',63.4,'EPSG','9110','EPSG','8826','Easting at false origin',11500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',7500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6049','EPSG Arctic LCC zone 7-13',NULL,NULL,'EPSG','4120','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.21037415,'EPSG','9110','EPSG','8822','Longitude of false origin',-34.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',67.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',63.4,'EPSG','9110','EPSG','8826','Easting at false origin',13500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',7500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6126','Cayman Islands LCC (ft)',NULL,NULL,'EPSG','1063','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',19.2,'EPSG','9110','EPSG','8822','Longitude of false origin',80.34,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',19.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',19.42,'EPSG','9110','EPSG','8826','Easting at false origin',2950000.0,'EPSG','9002','EPSG','8827','Northing at false origin',1900000.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','6127','Cayman Islands TM (ft)',NULL,NULL,'EPSG','1063','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640419.9475,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6197','Michigan CS27 North zone',NULL,NULL,'EPSG','1723','EPSG','1051','Lambert Conic Conformal (2SP Michigan)','EPSG','8821','Latitude of false origin',44.87,'EPSG','9110','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.29,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.05,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003','EPSG','1038','Ellipsoid scaling factor',1.0000382,'EPSG','9201',1); INSERT INTO "conversion" VALUES('EPSG','6198','Michigan CS27 Central zone',NULL,NULL,'EPSG','1724','EPSG','1051','Lambert Conic Conformal (2SP Michigan)','EPSG','8821','Latitude of false origin',43.19,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.11,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.42,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003','EPSG','1038','Ellipsoid scaling factor',1.0000382,'EPSG','9201',0); INSERT INTO "conversion" VALUES('EPSG','6199','Michigan CS27 South zone',NULL,NULL,'EPSG','1725','EPSG','1051','Lambert Conic Conformal (2SP Michigan)','EPSG','8821','Latitude of false origin',41.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',42.06,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',43.4,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003','EPSG','1038','Ellipsoid scaling factor',1.0000382,'EPSG','9201',0); INSERT INTO "conversion" VALUES('EPSG','6203','Macedonia Gauss-Kruger',NULL,NULL,'EPSG','1148','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6212','Arauca urban grid',NULL,NULL,'EPSG','4122','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',7.051538301,'EPSG','9110','EPSG','8802','Longitude of natural origin',-70.452991476,'EPSG','9110','EPSG','8806','False easting',1035263.443,'EPSG','9001','EPSG','8807','False northing',1275526.621,'EPSG','9001','EPSG','1039','Projection plane origin height',100.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6213','Armenia urban grid',NULL,NULL,'EPSG','4132','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',4.315637,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.4024561,'EPSG','9110','EPSG','8806','False easting',1155824.666,'EPSG','9001','EPSG','8807','False northing',993087.465,'EPSG','9001','EPSG','1039','Projection plane origin height',1470.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6214','Barranquilla urban grid',NULL,NULL,'EPSG','4134','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',10.55234591,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.50035928,'EPSG','9110','EPSG','8806','False easting',917264.406,'EPSG','9001','EPSG','8807','False northing',1699839.935,'EPSG','9001','EPSG','1039','Projection plane origin height',100.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6215','Bogota urban grid',NULL,NULL,'EPSG','4135','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',4.404975,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.084773,'EPSG','9110','EPSG','8806','False easting',92334.879,'EPSG','9001','EPSG','8807','False northing',109320.965,'EPSG','9001','EPSG','1039','Projection plane origin height',2550.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6216','Bucaramanga urban grid',NULL,NULL,'EPSG','4136','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',7.044399371,'EPSG','9110','EPSG','8802','Longitude of natural origin',-73.11504356,'EPSG','9110','EPSG','8806','False easting',1097241.305,'EPSG','9001','EPSG','8807','False northing',1274642.278,'EPSG','9001','EPSG','1039','Projection plane origin height',931.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6217','Cali urban grid',NULL,NULL,'EPSG','4137','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',3.263078,'EPSG','9110','EPSG','8802','Longitude of natural origin',-76.3114025,'EPSG','9110','EPSG','8806','False easting',1061900.18,'EPSG','9001','EPSG','8807','False northing',872364.63,'EPSG','9001','EPSG','1039','Projection plane origin height',1000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6218','Cartagena urban grid',NULL,NULL,'EPSG','4138','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',10.2349371,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.3040345,'EPSG','9110','EPSG','8806','False easting',842981.41,'EPSG','9001','EPSG','8807','False northing',1641887.09,'EPSG','9001','EPSG','1039','Projection plane origin height',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6219','Cucuta urban grid',NULL,NULL,'EPSG','4139','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',7.532017225,'EPSG','9110','EPSG','8802','Longitude of natural origin',-72.301033542,'EPSG','9110','EPSG','8806','False easting',842805.406,'EPSG','9001','EPSG','8807','False northing',1364404.57,'EPSG','9001','EPSG','1039','Projection plane origin height',308.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6220','Florencia urban grid',NULL,NULL,'EPSG','4140','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',1.371564426,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.370882337,'EPSG','9110','EPSG','8806','False easting',1162300.348,'EPSG','9001','EPSG','8807','False northing',671068.716,'EPSG','9001','EPSG','1039','Projection plane origin height',300.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6221','Ibague urban grid',NULL,NULL,'EPSG','4141','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',4.250988618,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.104773336,'EPSG','9110','EPSG','8806','False easting',877634.33,'EPSG','9001','EPSG','8807','False northing',980541.348,'EPSG','9001','EPSG','1039','Projection plane origin height',1100.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6222','Inirida urban grid',NULL,NULL,'EPSG','4142','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',3.504357746,'EPSG','9110','EPSG','8802','Longitude of natural origin',-67.541883552,'EPSG','9110','EPSG','8806','False easting',1019177.687,'EPSG','9001','EPSG','8807','False northing',491791.326,'EPSG','9001','EPSG','1039','Projection plane origin height',96.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6223','Leticia urban grid',NULL,NULL,'EPSG','4143','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',-4.115166257,'EPSG','9110','EPSG','8802','Longitude of natural origin',-69.563411981,'EPSG','9110','EPSG','8806','False easting',25978.217,'EPSG','9001','EPSG','8807','False northing',27501.365,'EPSG','9001','EPSG','1039','Projection plane origin height',89.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6224','Manizales urban grid',NULL,NULL,'EPSG','4144','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',5.0405354,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.3039941,'EPSG','9110','EPSG','8806','False easting',1173727.04,'EPSG','9001','EPSG','8807','False northing',1052391.13,'EPSG','9001','EPSG','1039','Projection plane origin height',2100.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6225','Medellin urban grid',NULL,NULL,'EPSG','4145','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',6.1345152,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.3353593,'EPSG','9110','EPSG','8806','False easting',835378.647,'EPSG','9001','EPSG','8807','False northing',1180816.875,'EPSG','9001','EPSG','1039','Projection plane origin height',1510.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6226','Mitu urban grid',NULL,NULL,'EPSG','4146','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',1.145988972,'EPSG','9110','EPSG','8802','Longitude of natural origin',-70.140766196,'EPSG','9110','EPSG','8806','False easting',1093717.398,'EPSG','9001','EPSG','8807','False northing',629997.236,'EPSG','9001','EPSG','1039','Projection plane origin height',170.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6227','Mocoa urban grid',NULL,NULL,'EPSG','4147','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',1.082408409,'EPSG','9110','EPSG','8802','Longitude of natural origin',-76.390367639,'EPSG','9110','EPSG','8806','False easting',1047467.388,'EPSG','9001','EPSG','8807','False northing',617828.474,'EPSG','9001','EPSG','1039','Projection plane origin height',655.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6228','Monteria urban grid',NULL,NULL,'EPSG','4148','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',8.462310872,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.524639199,'EPSG','9110','EPSG','8806','False easting',1131814.934,'EPSG','9001','EPSG','8807','False northing',1462131.119,'EPSG','9001','EPSG','1039','Projection plane origin height',15.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6229','Neiva urban grid',NULL,NULL,'EPSG','4149','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',2.56326942,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.17471722,'EPSG','9110','EPSG','8806','False easting',864476.923,'EPSG','9001','EPSG','8807','False northing',817199.827,'EPSG','9001','EPSG','1039','Projection plane origin height',430.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6230','Pasto urban grid',NULL,NULL,'EPSG','4150','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',1.120356225,'EPSG','9110','EPSG','8802','Longitude of natural origin',-77.151125228,'EPSG','9110','EPSG','8806','False easting',980469.695,'EPSG','9001','EPSG','8807','False northing',624555.332,'EPSG','9001','EPSG','1039','Projection plane origin height',2530.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6231','Pereira urban grid',NULL,NULL,'EPSG','4151','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',4.4848937,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.4138225,'EPSG','9110','EPSG','8806','False easting',1153492.012,'EPSG','9001','EPSG','8807','False northing',1024195.255,'EPSG','9001','EPSG','1039','Projection plane origin height',1500.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6232','Popayan urban grid',NULL,NULL,'EPSG','4152','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',2.272217558,'EPSG','9110','EPSG','8802','Longitude of natural origin',-76.362192989,'EPSG','9110','EPSG','8806','False easting',1052430.525,'EPSG','9001','EPSG','8807','False northing',763366.548,'EPSG','9001','EPSG','1039','Projection plane origin height',1740.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6233','Puerto Carreno urban grid',NULL,NULL,'EPSG','4153','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',6.105059709,'EPSG','9110','EPSG','8802','Longitude of natural origin',-67.300270089,'EPSG','9110','EPSG','8806','False easting',1063834.703,'EPSG','9001','EPSG','8807','False northing',1175257.481,'EPSG','9001','EPSG','1039','Projection plane origin height',51.58,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6234','Quibdo urban grid',NULL,NULL,'EPSG','4154','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',5.413929158,'EPSG','9110','EPSG','8802','Longitude of natural origin',-76.390271389,'EPSG','9110','EPSG','8806','False easting',1047273.617,'EPSG','9001','EPSG','8807','False northing',1121443.09,'EPSG','9001','EPSG','1039','Projection plane origin height',44.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6235','Riohacha urban grid',NULL,NULL,'EPSG','4155','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',11.321288798,'EPSG','9110','EPSG','8802','Longitude of natural origin',-72.540996793,'EPSG','9110','EPSG','8806','False easting',1128154.73,'EPSG','9001','EPSG','8807','False northing',1767887.914,'EPSG','9001','EPSG','1039','Projection plane origin height',6.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6236','San Andres urban grid',NULL,NULL,'EPSG','4156','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',12.312565957,'EPSG','9110','EPSG','8802','Longitude of natural origin',-81.434575342,'EPSG','9110','EPSG','8806','False easting',820439.298,'EPSG','9001','EPSG','8807','False northing',1877357.828,'EPSG','9001','EPSG','1039','Projection plane origin height',6.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6237','San Jose del Guaviare urban grid',NULL,NULL,'EPSG','4157','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',2.335068419,'EPSG','9110','EPSG','8802','Longitude of natural origin',-72.382411997,'EPSG','9110','EPSG','8806','False easting',1159876.62,'EPSG','9001','EPSG','8807','False northing',775380.342,'EPSG','9001','EPSG','1039','Projection plane origin height',185.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6238','Santa Marta urban grid',NULL,NULL,'EPSG','4128','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',11.1310715,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.1330019,'EPSG','9110','EPSG','8806','False easting',983892.409,'EPSG','9001','EPSG','8807','False northing',1732533.518,'EPSG','9001','EPSG','1039','Projection plane origin height',29.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6239','Sucre urban grid',NULL,NULL,'EPSG','4130','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',8.483798132,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.432088057,'EPSG','9110','EPSG','8806','False easting',929043.607,'EPSG','9001','EPSG','8807','False northing',1466125.658,'EPSG','9001','EPSG','1039','Projection plane origin height',20.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6240','Tunja urban grid',NULL,NULL,'EPSG','4131','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',5.320310106,'EPSG','9110','EPSG','8802','Longitude of natural origin',-73.210698004,'EPSG','9110','EPSG','8806','False easting',1080514.91,'EPSG','9001','EPSG','8807','False northing',1103772.028,'EPSG','9001','EPSG','1039','Projection plane origin height',2800.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6241','Valledupar urban grid',NULL,NULL,'EPSG','4158','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',10.265014,'EPSG','9110','EPSG','8802','Longitude of natural origin',-73.1447657,'EPSG','9110','EPSG','8806','False easting',1090979.66,'EPSG','9001','EPSG','8807','False northing',1647208.93,'EPSG','9001','EPSG','1039','Projection plane origin height',200.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6242','Villavicencio urban grid',NULL,NULL,'EPSG','4159','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',4.091935036,'EPSG','9110','EPSG','8802','Longitude of natural origin',-73.372814955,'EPSG','9110','EPSG','8806','False easting',1050678.757,'EPSG','9001','EPSG','8807','False northing',950952.124,'EPSG','9001','EPSG','1039','Projection plane origin height',427.19,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6243','Yopal urban grid',NULL,NULL,'EPSG','4160','EPSG','1052','Colombia Urban','EPSG','8801','Latitude of natural origin',5.2114138,'EPSG','9110','EPSG','8802','Longitude of natural origin',-72.2512145,'EPSG','9110','EPSG','8806','False easting',851184.177,'EPSG','9001','EPSG','8807','False northing',1083954.137,'EPSG','9001','EPSG','1039','Projection plane origin height',300.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6308','Cyprus Transverse Mercator',NULL,NULL,'EPSG','3236','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',-3500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6361','Mexico LCC',NULL,NULL,'EPSG','1160','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',12.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-102.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',17.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',29.5,'EPSG','9102','EPSG','8826','Easting at false origin',2500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6374','Ukraine TM zone 7',NULL,NULL,'EPSG','3906','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6375','Ukraine TM zone 8',NULL,NULL,'EPSG','3907','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6376','Ukraine TM zone 9',NULL,NULL,'EPSG','3908','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6377','Ukraine TM zone 10',NULL,NULL,'EPSG','3909','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6378','Ukraine TM zone 11',NULL,NULL,'EPSG','3910','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6379','Ukraine TM zone 12',NULL,NULL,'EPSG','3912','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',36.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6380','Ukraine TM zone 13',NULL,NULL,'EPSG','3913','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6390','Cayman Islands LCC (ft)',NULL,NULL,'EPSG','1063','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',19.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-80.34,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',19.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',19.42,'EPSG','9110','EPSG','8826','Easting at false origin',2950000.0,'EPSG','9002','EPSG','8827','Northing at false origin',1900000.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6645','Quebec Albers Projection',NULL,NULL,'EPSG','1368','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',44.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-68.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',60.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',46.0,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6702','TM 60 SW',NULL,NULL,'EPSG','4172','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-60.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6716','Christmas Island Grid 1992',NULL,NULL,'EPSG','4169','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',105.373,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000024,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',1300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6717','Christmas Island Grid 1994',NULL,NULL,'EPSG','4169','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',105.373,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002514,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',1300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6718','Cocos Island Grid 1992',NULL,NULL,'EPSG','1069','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',96.523,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',1400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6719','Cocos Island Grid 1994',NULL,NULL,'EPSG','1069','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',96.523,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999387,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6725','Map Grid of Australia zone 41',NULL,NULL,'EPSG','4173','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','6726','Map Grid of Australia zone 42',NULL,NULL,'EPSG','4181','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','6727','Map Grid of Australia zone 43',NULL,NULL,'EPSG','4184','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','6728','Map Grid of Australia zone 44',NULL,NULL,'EPSG','4185','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','6729','Map Grid of Australia zone 46',NULL,NULL,'EPSG','4189','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6730','Map Grid of Australia zone 47',NULL,NULL,'EPSG','4190','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6731','Map Grid of Australia zone 59',NULL,NULL,'EPSG','4179','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6741','Oregon Baker zone (meters)',NULL,NULL,'EPSG','4180','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00016,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6742','Oregon Baker zone (International feet)',NULL,NULL,'EPSG','4180','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00016,'EPSG','9201','EPSG','8806','False easting',131233.5958,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6743','Oregon Bend-Klamath Falls zone (meters)',NULL,NULL,'EPSG','4192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-121.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0002,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6744','Oregon Bend-Klamath Falls zone (International feet)',NULL,NULL,'EPSG','4192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-121.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0002,'EPSG','9201','EPSG','8806','False easting',262467.1916,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6745','Oregon Bend-Redmond-Prineville zone (meters)',NULL,NULL,'EPSG','4195','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-121.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00012,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',130000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6746','Oregon Bend-Redmond-Prineville zone (International feet)',NULL,NULL,'EPSG','4195','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-121.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00012,'EPSG','9201','EPSG','8806','False easting',262467.1916,'EPSG','9002','EPSG','8807','False northing',426509.1864,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6747','Oregon Bend-Burns zone (meters)',NULL,NULL,'EPSG','4182','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0002,'EPSG','9201','EPSG','8806','False easting',120000.0,'EPSG','9001','EPSG','8807','False northing',60000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6748','Oregon Bend-Burns zone (International feet)',NULL,NULL,'EPSG','4182','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0002,'EPSG','9201','EPSG','8806','False easting',393700.7874,'EPSG','9002','EPSG','8807','False northing',196850.3937,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6749','Oregon Canyonville-Grants Pass zone (meters)',NULL,NULL,'EPSG','4199','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00007,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6750','Oregon Canyonville-Grants Pass zone (International feet)',NULL,NULL,'EPSG','4199','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00007,'EPSG','9201','EPSG','8806','False easting',131233.5958,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6751','Oregon Columbia River East zone (meters)',NULL,NULL,'EPSG','4200','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000008,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',30000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6752','Oregon Columbia River East zone (International feet)',NULL,NULL,'EPSG','4200','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000008,'EPSG','9201','EPSG','8806','False easting',492125.9843,'EPSG','9002','EPSG','8807','False northing',98425.1969,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6753','Oregon Columbia River West zone (meters)',NULL,NULL,'EPSG','4202','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',45.55,'EPSG','9110','EPSG','8812','Longitude of projection centre',-123.0,'EPSG','9110','EPSG','8813','Azimuth of initial line',295.0,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',295.0,'EPSG','9102','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8806','False easting',7000000.0,'EPSG','9001','EPSG','8807','False northing',-3000000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','6754','Oregon Columbia River West zone (International feet)',NULL,NULL,'EPSG','4202','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',45.55,'EPSG','9110','EPSG','8812','Longitude of projection centre',-123.0,'EPSG','9110','EPSG','8813','Azimuth of initial line',295.0,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',295.0,'EPSG','9102','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8806','False easting',22965879.2651,'EPSG','9002','EPSG','8807','False northing',-9842519.685,'EPSG','9002',0); INSERT INTO "conversion" VALUES('EPSG','6755','Oregon Cottage Grove-Canyonville zone (meters)',NULL,NULL,'EPSG','4203','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000023,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6756','Oregon Cottage Grove-Canyonville zone (International feet)',NULL,NULL,'EPSG','4203','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000023,'EPSG','9201','EPSG','8806','False easting',164041.9948,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6757','Oregon Dufur-Madras zone (meters)',NULL,NULL,'EPSG','4204','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-121.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00011,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6758','Oregon Dufur-Madras zone (International feet)',NULL,NULL,'EPSG','4204','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-121.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00011,'EPSG','9201','EPSG','8806','False easting',262467.1916,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6759','Oregon Eugene zone (meters)',NULL,NULL,'EPSG','4197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000015,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6760','Oregon Eugene zone (International feet)',NULL,NULL,'EPSG','4197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000015,'EPSG','9201','EPSG','8806','False easting',164041.9948,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6761','Oregon Grants Pass-Ashland zone (meters)',NULL,NULL,'EPSG','4198','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000043,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6762','Oregon Grants Pass-Ashland zone (International feet)',NULL,NULL,'EPSG','4198','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000043,'EPSG','9201','EPSG','8806','False easting',164041.9948,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6763','Oregon Gresham-Warm Springs zone (meters)',NULL,NULL,'EPSG','4201','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00005,'EPSG','9201','EPSG','8806','False easting',10000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6764','Oregon Gresham-Warm Springs zone (International feet)',NULL,NULL,'EPSG','4201','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00005,'EPSG','9201','EPSG','8806','False easting',32808.399,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6765','Oregon La Grande zone (meters)',NULL,NULL,'EPSG','4206','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-118.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00013,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6766','Oregon La Grande zone (International feet)',NULL,NULL,'EPSG','4206','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-118.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00013,'EPSG','9201','EPSG','8806','False easting',131233.5958,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6767','Oregon Ontario zone (meters)',NULL,NULL,'EPSG','4207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0001,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6768','Oregon Ontario zone (International feet)',NULL,NULL,'EPSG','4207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0001,'EPSG','9201','EPSG','8806','False easting',262467.1916,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6769','Oregon Coast zone (meters)',NULL,NULL,'EPSG','4208','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',44.45,'EPSG','9110','EPSG','8812','Longitude of projection centre',-124.03,'EPSG','9110','EPSG','8813','Azimuth of initial line',5.0,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',5.0,'EPSG','9102','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8806','False easting',-300000.0,'EPSG','9001','EPSG','8807','False northing',-4600000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','6770','Oregon Coast zone (International feet)',NULL,NULL,'EPSG','4208','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',44.45,'EPSG','9110','EPSG','8812','Longitude of projection centre',-124.03,'EPSG','9110','EPSG','8813','Azimuth of initial line',5.0,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',5.0,'EPSG','9102','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8806','False easting',-984251.9685,'EPSG','9002','EPSG','8807','False northing',-15091863.5171,'EPSG','9002',0); INSERT INTO "conversion" VALUES('EPSG','6771','Oregon Pendleton zone (meters)',NULL,NULL,'EPSG','4209','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000045,'EPSG','9201','EPSG','8806','False easting',60000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6772','Oregon Pendleton zone (International feet)',NULL,NULL,'EPSG','4209','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000045,'EPSG','9201','EPSG','8806','False easting',196850.3937,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6773','Oregon Pendleton-La Grande zone (meters)',NULL,NULL,'EPSG','4210','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',-118.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000175,'EPSG','9201','EPSG','8806','False easting',30000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6774','Oregon Pendleton-La Grande zone (International feet)',NULL,NULL,'EPSG','4210','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',-118.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000175,'EPSG','9201','EPSG','8806','False easting',98425.1969,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6775','Oregon Portland zone (meters)',NULL,NULL,'EPSG','4211','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000002,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6776','Oregon Portland zone (International feet)',NULL,NULL,'EPSG','4211','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000002,'EPSG','9201','EPSG','8806','False easting',328083.9895,'EPSG','9002','EPSG','8807','False northing',164041.9948,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6777','Oregon Salem zone (meters)',NULL,NULL,'EPSG','4212','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00001,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6778','Oregon Salem zone (International feet)',NULL,NULL,'EPSG','4212','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00001,'EPSG','9201','EPSG','8806','False easting',164041.9948,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6779','Oregon Santiam Pass zone (meters)',NULL,NULL,'EPSG','4213','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000155,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6780','Oregon Santiam Pass zone (International feet)',NULL,NULL,'EPSG','4213','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000155,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6869','Albania TM 2010',NULL,NULL,'EPSG','3212','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',20.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6877','Italy zone',NULL,NULL,'EPSG','1127','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',12.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9985,'EPSG','9201','EPSG','8806','False easting',7000000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6878','Italy zone 12',NULL,NULL,'EPSG','1127','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',12.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3000000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6920','Kansas DOT Lambert (meters)',NULL,NULL,'EPSG','1385','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.3,'EPSG','9110','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6921','Kansas DOT Lambert (US Survey feet)',NULL,NULL,'EPSG','1385','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.3,'EPSG','9110','EPSG','8826','Easting at false origin',1312333.3333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6928','US NSIDC EASE-Grid 2.0 Global',NULL,NULL,'EPSG','3463','EPSG','9835','Lambert Cylindrical Equal Area','EPSG','8823','Latitude of 1st standard parallel',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6929','US NSIDC EASE-Grid 2.0 North',NULL,NULL,'EPSG','3475','EPSG','9820','Lambert Azimuthal Equal Area','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6930','US NSIDC EASE-Grid 2.0 South',NULL,NULL,'EPSG','3474','EPSG','9820','Lambert Azimuthal Equal Area','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6952','Vietnam TM-3 zone 481',NULL,NULL,'EPSG','4193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',102.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','6953','Vietnam TM-3 zone 482',NULL,NULL,'EPSG','4215','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','6954','Vietnam TM-3 zone 491',NULL,NULL,'EPSG','4217','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',108.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','6955','Vietnam TM-3 Da Nang zone',NULL,NULL,'EPSG','4218','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',107.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','6961','Albania LCC 2010',NULL,NULL,'EPSG','1025','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9102','EPSG','8822','Longitude of false origin',20.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','6965','Michigan CS27 North zone',NULL,NULL,'EPSG','1723','EPSG','1051','Lambert Conic Conformal (2SP Michigan)','EPSG','8821','Latitude of false origin',44.47,'EPSG','9110','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.29,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.05,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003','EPSG','1038','Ellipsoid scaling factor',1.0000382,'EPSG','9201',0); INSERT INTO "conversion" VALUES('EPSG','6994','City and County of San Francisco CS13 (meters)',NULL,NULL,'EPSG','4228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-122.45,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000007,'EPSG','9202','EPSG','8806','False easting',48000.0,'EPSG','9001','EPSG','8807','False northing',24000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','6995','City and County of San Francisco CS13 (US Survey feet)',NULL,NULL,'EPSG','4228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-122.45,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000007,'EPSG','9202','EPSG','8806','False easting',157480.0,'EPSG','9003','EPSG','8807','False northing',78740.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','7043','Iowa regional zone 1 Spencer',NULL,NULL,'EPSG','4164','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.12,'EPSG','9110','EPSG','8802','Longitude of natural origin',-95.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000052,'EPSG','9201','EPSG','8806','False easting',11500000.0,'EPSG','9003','EPSG','8807','False northing',9600000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7044','Iowa regional zone 2 Mason City',NULL,NULL,'EPSG','4219','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000043,'EPSG','9201','EPSG','8806','False easting',12500000.0,'EPSG','9003','EPSG','8807','False northing',9800000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7045','Iowa regional zone 3 Elkader',NULL,NULL,'EPSG','4230','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.12,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000035,'EPSG','9201','EPSG','8806','False easting',13500000.0,'EPSG','9003','EPSG','8807','False northing',8300000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7046','Iowa regional zone 4 Sioux City-Iowa Falls',NULL,NULL,'EPSG','4233','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.32,'EPSG','9110','EPSG','8802','Longitude of natural origin',-94.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000045,'EPSG','9201','EPSG','8806','False easting',14500000.0,'EPSG','9003','EPSG','8807','False northing',8600000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7047','Iowa regional zone 5 Waterloo',NULL,NULL,'EPSG','4234','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000032,'EPSG','9201','EPSG','8806','False easting',15500000.0,'EPSG','9003','EPSG','8807','False northing',8900000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7048','Iowa regional zone 6 Council Bluffs',NULL,NULL,'EPSG','4235','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-95.44,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000039,'EPSG','9201','EPSG','8806','False easting',16500000.0,'EPSG','9003','EPSG','8807','False northing',6600000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7049','Iowa regional zone 7 Carroll-Atlantic',NULL,NULL,'EPSG','4236','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-94.38,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000045,'EPSG','9201','EPSG','8806','False easting',17500000.0,'EPSG','9003','EPSG','8807','False northing',6800000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7050','Iowa regional zone 8 Ames-Des Moines',NULL,NULL,'EPSG','4237','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-93.43,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000033,'EPSG','9201','EPSG','8806','False easting',18500000.0,'EPSG','9003','EPSG','8807','False northing',7000000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7051','Iowa regional zone 9 Newton',NULL,NULL,'EPSG','4239','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.49,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000027,'EPSG','9201','EPSG','8806','False easting',19500000.0,'EPSG','9003','EPSG','8807','False northing',7200000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7052','Iowa regional zone 10 Cedar Rapids',NULL,NULL,'EPSG','4240','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',41.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',20500000.0,'EPSG','9003','EPSG','8807','False northing',8000000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7053','Iowa regional zone 11 Dubuque-Davenport',NULL,NULL,'EPSG','4241','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.32,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000027,'EPSG','9201','EPSG','8806','False easting',21500000.0,'EPSG','9003','EPSG','8807','False northing',7600000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7054','Iowa regional zone 12 Red Oak-Ottumwa',NULL,NULL,'EPSG','4242','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',40.55,'EPSG','9110','EPSG','8802','Longitude of natural origin',-93.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000037,'EPSG','9201','EPSG','8806','False easting',22500000.0,'EPSG','9003','EPSG','8807','False northing',6200000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7055','Iowa regional zone 13 Fairfield',NULL,NULL,'EPSG','4243','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.55,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',23500000.0,'EPSG','9003','EPSG','8807','False northing',6400000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7056','Iowa regional zone 14 Burlington',NULL,NULL,'EPSG','4244','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000018,'EPSG','9201','EPSG','8806','False easting',24500000.0,'EPSG','9003','EPSG','8807','False northing',6200000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7089','Montana Blackfeet St Mary Valley (meters)',NULL,NULL,'EPSG','4310','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',48.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-112.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00016,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7090','Montana Blackfeet St Mary Valley (International feet)',NULL,NULL,'EPSG','4310','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',48.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-112.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00016,'EPSG','9201','EPSG','8806','False easting',492125.9843,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7091','Montana Blackfeet (meters)',NULL,NULL,'EPSG','4311','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',48.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-112.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00019,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7092','Montana Blackfeet (International feet)',NULL,NULL,'EPSG','4311','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',48.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-112.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00019,'EPSG','9201','EPSG','8806','False easting',328083.9895,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7093','Montana Milk River (meters)',NULL,NULL,'EPSG','4312','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',48.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-111.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000145,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7094','Montana Milk River (International feet)',NULL,NULL,'EPSG','4312','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',48.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-111.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000145,'EPSG','9201','EPSG','8806','False easting',492125.9843,'EPSG','9002','EPSG','8807','False northing',656167.979,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7095','Montana Fort Belknap (meters)',NULL,NULL,'EPSG','4313','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',48.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-108.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00012,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',150000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7096','Montana Fort Belknap (International feet)',NULL,NULL,'EPSG','4313','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',48.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-108.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00012,'EPSG','9201','EPSG','8806','False easting',656167.979,'EPSG','9002','EPSG','8807','False northing',492125.9843,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7097','Montana Fort Peck Assiniboine (meters)',NULL,NULL,'EPSG','4314','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',48.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-105.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00012,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7098','Montana Fort Peck Assiniboine (International feet)',NULL,NULL,'EPSG','4314','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',48.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-105.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00012,'EPSG','9201','EPSG','8806','False easting',656167.979,'EPSG','9002','EPSG','8807','False northing',328083.9895,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7099','Montana Fort Peck Sioux (meters)',NULL,NULL,'EPSG','4315','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',48.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-105.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00009,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7100','Montana Fort Peck Sioux (International feet)',NULL,NULL,'EPSG','4315','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',48.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-105.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00009,'EPSG','9201','EPSG','8806','False easting',328083.9895,'EPSG','9002','EPSG','8807','False northing',164041.9938,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7101','Montana Crow (meters)',NULL,NULL,'EPSG','4316','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-107.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000148,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7102','Montana Crow (International feet)',NULL,NULL,'EPSG','4316','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-107.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000148,'EPSG','9201','EPSG','8806','False easting',656167.979,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7103','Montana Bobcat (meters)',NULL,NULL,'EPSG','4317','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-111.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000185,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7104','Montana Bobcat (International feet)',NULL,NULL,'EPSG','4317','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-111.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000185,'EPSG','9201','EPSG','8806','False easting',328083.9895,'EPSG','9002','EPSG','8807','False northing',328083.9895,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7105','Montana Billings (meters)',NULL,NULL,'EPSG','4318','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.47,'EPSG','9110','EPSG','8802','Longitude of natural origin',-108.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0001515,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7106','Montana Billings (International feet)',NULL,NULL,'EPSG','4318','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.47,'EPSG','9110','EPSG','8802','Longitude of natural origin',-108.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0001515,'EPSG','9201','EPSG','8806','False easting',656167.979,'EPSG','9002','EPSG','8807','False northing',164041.9948,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7107','Wyoming Wind River (meters)',NULL,NULL,'EPSG','4319','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-108.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00024,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7108','Wyoming Wind River (US Survey feet)',NULL,NULL,'EPSG','4319','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-108.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00024,'EPSG','9201','EPSG','8806','False easting',328083.3333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7129','City and County of San Francisco CS13 (meters)',NULL,NULL,'EPSG','4228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-122.45,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000007,'EPSG','9201','EPSG','8806','False easting',48000.0,'EPSG','9001','EPSG','8807','False northing',24000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7130','City and County of San Francisco CS13 (US Survey feet)',NULL,NULL,'EPSG','4228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-122.45,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000007,'EPSG','9201','EPSG','8806','False easting',157480.0,'EPSG','9003','EPSG','8807','False northing',78740.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7141','Palestine Grid modified',NULL,NULL,'EPSG','1356','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.4402749,'EPSG','9110','EPSG','8802','Longitude of natural origin',35.124349,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',170251.555,'EPSG','9001','EPSG','8807','False northing',126867.909,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7143','InGCS Adams (m)',NULL,NULL,'EPSG','4289','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.33,'EPSG','9110','EPSG','8802','Longitude of natural origin',-84.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7144','InGCS Adams (ftUS)',NULL,NULL,'EPSG','4289','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.33,'EPSG','9110','EPSG','8802','Longitude of natural origin',-84.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7145','InGCS Allen (m)',NULL,NULL,'EPSG','4285','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.03,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7146','InGCS Allen (ftUS)',NULL,NULL,'EPSG','4285','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.03,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7147','InGCS Bartholomew (m)',NULL,NULL,'EPSG','4302','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.51,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000026,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7148','InGCS Bartholomew (ftUS)',NULL,NULL,'EPSG','4302','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.51,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000026,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7149','InGCS Benton (m)',NULL,NULL,'EPSG','4256','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.27,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000029,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7150','InGCS Benton (ftUS)',NULL,NULL,'EPSG','4256','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.27,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000029,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7151','InGCS Blackford-Delaware (m)',NULL,NULL,'EPSG','4291','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.03,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.24,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000038,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7152','InGCS Blackford-Delaware (ftUS)',NULL,NULL,'EPSG','4291','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.03,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.24,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000038,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7153','InGCS Boone-Hendricks (m)',NULL,NULL,'EPSG','4263','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.36,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000036,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7154','InGCS Boone-Hendricks (ftUS)',NULL,NULL,'EPSG','4263','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.36,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000036,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7155','InGCS Brown (m)',NULL,NULL,'EPSG','4301','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00003,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7156','InGCS Brown (ftUS)',NULL,NULL,'EPSG','4301','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00003,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7157','InGCS Carroll (m)',NULL,NULL,'EPSG','4258','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.24,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.39,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000026,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7158','InGCS Carroll (ftUS)',NULL,NULL,'EPSG','4258','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.24,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.39,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000026,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7159','InGCS Cass (m)',NULL,NULL,'EPSG','4286','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.33,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.24,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000028,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7160','InGCS Cass (ftUS)',NULL,NULL,'EPSG','4286','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.33,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.24,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000028,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7161','InGCS Clark-Floyd-Scott (m)',NULL,NULL,'EPSG','4308','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.09,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.36,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000021,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7162','InGCS Clark-Floyd-Scott (ftUS)',NULL,NULL,'EPSG','4308','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.09,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.36,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000021,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7163','InGCS Clay (m)',NULL,NULL,'EPSG','4265','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.09,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.09,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000024,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7164','InGCS Clay (ftUS)',NULL,NULL,'EPSG','4265','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.09,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.09,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000024,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7165','InGCS Clinton (m)',NULL,NULL,'EPSG','4260','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.09,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.36,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000032,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7166','InGCS Clinton (ftUS)',NULL,NULL,'EPSG','4260','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.09,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.36,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000032,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7167','InGCS Crawford-Lawrence-Orange (m)',NULL,NULL,'EPSG','4272','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.06,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000025,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7168','InGCS Crawford-Lawrence-Orange (ftUS)',NULL,NULL,'EPSG','4272','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.06,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000025,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7169','InGCS Daviess-Greene (m)',NULL,NULL,'EPSG','4269','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.27,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.06,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000018,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7170','InGCS Daviess-Greene (ftUS)',NULL,NULL,'EPSG','4269','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.27,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.06,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000018,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7171','InGCS Dearborn-Ohio-Switzerland (m)',NULL,NULL,'EPSG','4306','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',-84.54,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000029,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7172','InGCS Dearborn-Ohio-Switzerland (ftUS)',NULL,NULL,'EPSG','4306','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',-84.54,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000029,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7173','InGCS Decatur-Rush (m)',NULL,NULL,'EPSG','4299','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.06,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.39,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000036,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7174','InGCS Decatur-Rush (ftUS)',NULL,NULL,'EPSG','4299','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.06,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.39,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000036,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7175','InGCS DeKalb (m)',NULL,NULL,'EPSG','4283','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-84.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000036,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7176','InGCS DeKalb (ftUS)',NULL,NULL,'EPSG','4283','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-84.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000036,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7177','InGCS Dubois-Martin (m)',NULL,NULL,'EPSG','4271','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.12,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7178','InGCS Dubois-Martin (ftUS)',NULL,NULL,'EPSG','4271','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.12,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7179','InGCS Elkhart-Kosciusko-Wabash (m)',NULL,NULL,'EPSG','4280','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.51,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000033,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7180','InGCS Elkhart-Kosciusko-Wabash (ftUS)',NULL,NULL,'EPSG','4280','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.51,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000033,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7181','InGCS Fayette-Franklin-Union (m)',NULL,NULL,'EPSG','4300','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.03,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000038,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7182','InGCS Fayette-Franklin-Union (ftUS)',NULL,NULL,'EPSG','4300','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.03,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000038,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7183','InGCS Fountain-Warren (m)',NULL,NULL,'EPSG','4259','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.57,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000025,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7184','InGCS Fountain-Warren (ftUS)',NULL,NULL,'EPSG','4259','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.57,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000025,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7185','InGCS Fulton-Marshall-St. Joseph (m)',NULL,NULL,'EPSG','4279','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7186','InGCS Fulton-Marshall-St. Joseph (ftUS)',NULL,NULL,'EPSG','4279','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7187','InGCS Gibson (m)',NULL,NULL,'EPSG','4273','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.09,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.39,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000013,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7188','InGCS Gibson (ftUS)',NULL,NULL,'EPSG','4273','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.09,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.39,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000013,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7189','InGCS Grant (m)',NULL,NULL,'EPSG','4290','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.21,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.42,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7190','InGCS Grant (ftUS)',NULL,NULL,'EPSG','4290','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.21,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.42,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7191','InGCS Hamilton-Tipton (m)',NULL,NULL,'EPSG','4293','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7192','InGCS Hamilton-Tipton (ftUS)',NULL,NULL,'EPSG','4293','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7193','InGCS Hancock-Madison (m)',NULL,NULL,'EPSG','4294','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.48,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000036,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7194','InGCS Hancock-Madison (ftUS)',NULL,NULL,'EPSG','4294','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.48,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000036,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7195','InGCS Harrison-Washington (m)',NULL,NULL,'EPSG','4307','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.57,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.09,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000027,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7196','InGCS Harrison-Washington (ftUS)',NULL,NULL,'EPSG','4307','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.57,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.09,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000027,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7197','InGCS Henry (m)',NULL,NULL,'EPSG','4296','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.27,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000043,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7198','InGCS Henry (ftUS)',NULL,NULL,'EPSG','4296','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.27,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000043,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7199','InGCS Howard-Miami (m)',NULL,NULL,'EPSG','4287','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.21,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.09,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7200','InGCS Howard-Miami (ftUS)',NULL,NULL,'EPSG','4287','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.21,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.09,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7201','InGCS Huntington-Whitley (m)',NULL,NULL,'EPSG','4284','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7202','InGCS Huntington-Whitley (ftUS)',NULL,NULL,'EPSG','4284','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7203','InGCS Jackson (m)',NULL,NULL,'EPSG','4303','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.42,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000022,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7204','InGCS Jackson (ftUS)',NULL,NULL,'EPSG','4303','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.42,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000022,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7205','InGCS Jasper-Porter (m)',NULL,NULL,'EPSG','4254','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.42,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.06,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000027,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7206','InGCS Jasper-Porter (ftUS)',NULL,NULL,'EPSG','4254','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.42,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.06,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000027,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7207','InGCS Jay (m)',NULL,NULL,'EPSG','4292','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.18,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000038,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7208','InGCS Jay (ftUS)',NULL,NULL,'EPSG','4292','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.18,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000038,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7209','InGCS Jefferson (m)',NULL,NULL,'EPSG','4309','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.33,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.21,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000028,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7210','InGCS Jefferson (ftUS)',NULL,NULL,'EPSG','4309','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.33,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.21,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000028,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7211','InGCS Jennings (m)',NULL,NULL,'EPSG','4304','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.48,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.48,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000025,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7212','InGCS Jennings (ftUS)',NULL,NULL,'EPSG','4304','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.48,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.48,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000025,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7213','InGCS Johnson-Marion (m)',NULL,NULL,'EPSG','4297','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.18,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.09,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7214','InGCS Johnson-Marion (ftUS)',NULL,NULL,'EPSG','4297','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.18,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.09,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7215','InGCS Knox (m)',NULL,NULL,'EPSG','4270','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.24,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.27,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000015,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7216','InGCS Knox (ftUS)',NULL,NULL,'EPSG','4270','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.24,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.27,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000015,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7217','InGCS LaGrange-Noble (m)',NULL,NULL,'EPSG','4281','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.27,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000037,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7218','InGCS LaGrange-Noble (ftUS)',NULL,NULL,'EPSG','4281','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.27,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000037,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7219','InGCS Lake-Newton (m)',NULL,NULL,'EPSG','4253','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.42,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.24,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000026,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7220','InGCS Lake-Newton (ftUS)',NULL,NULL,'EPSG','4253','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.42,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.24,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000026,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7221','InGCS LaPorte-Pulaski-Starke (m)',NULL,NULL,'EPSG','4255','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000027,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7222','InGCS LaPorte-Pulaski-Starke (ftUS)',NULL,NULL,'EPSG','4255','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000027,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7223','InGCS Monroe-Morgan (m)',NULL,NULL,'EPSG','4267','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.57,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000028,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7224','InGCS Monroe-Morgan (ftUS)',NULL,NULL,'EPSG','4267','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.57,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000028,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7225','InGCS Montgomery-Putnam (m)',NULL,NULL,'EPSG','4262','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.27,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7226','InGCS Montgomery-Putnam (ftUS)',NULL,NULL,'EPSG','4262','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.27,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7227','InGCS Owen (m)',NULL,NULL,'EPSG','4266','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.09,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.54,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000026,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7228','InGCS Owen (ftUS)',NULL,NULL,'EPSG','4266','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.09,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.54,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000026,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7229','InGCS Parke-Vermillion (m)',NULL,NULL,'EPSG','4261','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.36,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.21,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000022,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7230','InGCS Parke-Vermillion (ftUS)',NULL,NULL,'EPSG','4261','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.36,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.21,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000022,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7231','InGCS Perry (m)',NULL,NULL,'EPSG','4278','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.48,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.42,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7232','InGCS Perry (ftUS)',NULL,NULL,'EPSG','4278','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.48,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.42,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7233','InGCS Pike-Warrick (m)',NULL,NULL,'EPSG','4274','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.51,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000015,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7234','InGCS Pike-Warrick (ftUS)',NULL,NULL,'EPSG','4274','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.51,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000015,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7235','InGCS Posey (m)',NULL,NULL,'EPSG','4275','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000013,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7236','InGCS Posey (ftUS)',NULL,NULL,'EPSG','4275','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000013,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7237','InGCS Randolph-Wayne (m)',NULL,NULL,'EPSG','4295','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.42,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.03,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000044,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7238','InGCS Randolph-Wayne (ftUS)',NULL,NULL,'EPSG','4295','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.42,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.03,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000044,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7239','InGCS Ripley (m)',NULL,NULL,'EPSG','4305','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000038,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7240','InGCS Ripley (ftUS)',NULL,NULL,'EPSG','4305','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.18,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000038,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7241','InGCS Shelby (m)',NULL,NULL,'EPSG','4298','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.18,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.54,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00003,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7242','InGCS Shelby (ftUS)',NULL,NULL,'EPSG','4298','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.18,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.54,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00003,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7243','InGCS Spencer (m)',NULL,NULL,'EPSG','4277','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.03,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000014,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7244','InGCS Spencer (ftUS)',NULL,NULL,'EPSG','4277','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.03,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000014,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7245','InGCS Steuben (m)',NULL,NULL,'EPSG','4282','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000041,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7246','InGCS Steuben (ftUS)',NULL,NULL,'EPSG','4282','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000041,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7247','InGCS Sullivan (m)',NULL,NULL,'EPSG','4268','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000017,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7248','InGCS Sullivan (ftUS)',NULL,NULL,'EPSG','4268','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000017,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7249','InGCS Tippecanoe-White (m)',NULL,NULL,'EPSG','4257','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.12,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.54,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000026,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7250','InGCS Tippecanoe-White (ftUS)',NULL,NULL,'EPSG','4257','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.12,'EPSG','9110','EPSG','8802','Longitude of natural origin',-86.54,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000026,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7251','InGCS Vanderburgh (m)',NULL,NULL,'EPSG','4276','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.48,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.33,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000015,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7252','InGCS Vanderburgh (ftUS)',NULL,NULL,'EPSG','4276','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.48,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.33,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000015,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7253','InGCS Vigo (m)',NULL,NULL,'EPSG','4264','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.27,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7254','InGCS Vigo (ftUS)',NULL,NULL,'EPSG','4264','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.27,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7255','InGCS Wells (m)',NULL,NULL,'EPSG','4288','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.33,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',240000.0,'EPSG','9001','EPSG','8807','False northing',36000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7256','InGCS Wells (ftUS)',NULL,NULL,'EPSG','4288','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.33,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',787400.0,'EPSG','9003','EPSG','8807','False northing',118110.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7378','WISCRS Ashland County (m)',NULL,NULL,'EPSG','4320','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.4222,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.372,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000495683,'EPSG','9201','EPSG','8806','False easting',172821.9461,'EPSG','9001','EPSG','8807','False northing',0.0017,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7379','WISCRS Ashland County (ftUS)',NULL,NULL,'EPSG','4320','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.4222,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.372,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000495683,'EPSG','9201','EPSG','8806','False easting',567000.001,'EPSG','9003','EPSG','8807','False northing',0.006,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7380','WISCRS Bayfield County (m)',NULL,NULL,'EPSG','4321','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.4010734158,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.091,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000331195,'EPSG','9201','EPSG','8806','False easting',228600.4575,'EPSG','9001','EPSG','8807','False northing',148551.4837,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7381','WISCRS Bayfield County (ftUS)',NULL,NULL,'EPSG','4321','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.4010734158,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.091,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000331195,'EPSG','9201','EPSG','8806','False easting',750000.001,'EPSG','9003','EPSG','8807','False northing',487372.659,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7382','WISCRS Burnett County (m)',NULL,NULL,'EPSG','4325','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.5355373517,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.2728,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000383841,'EPSG','9201','EPSG','8806','False easting',64008.1276,'EPSG','9001','EPSG','8807','False northing',59445.9043,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7383','WISCRS Burnett County (ftUS)',NULL,NULL,'EPSG','4325','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.5355373517,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.2728,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000383841,'EPSG','9201','EPSG','8806','False easting',209999.999,'EPSG','9003','EPSG','8807','False northing',195032.104,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7384','WISCRS Douglas County (m)',NULL,NULL,'EPSG','4326','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.53,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.55,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000385418,'EPSG','9201','EPSG','8806','False easting',59131.3183,'EPSG','9001','EPSG','8807','False northing',0.0041,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7385','WISCRS Douglas County (ftUS)',NULL,NULL,'EPSG','4326','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.53,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.55,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000385418,'EPSG','9201','EPSG','8806','False easting',194000.0,'EPSG','9003','EPSG','8807','False northing',0.013,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7386','WISCRS Florence County (m)',NULL,NULL,'EPSG','4327','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.262,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.083,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000552095,'EPSG','9201','EPSG','8806','False easting',133502.6683,'EPSG','9001','EPSG','8807','False northing',0.0063,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7387','WISCRS Florence County (ftUS)',NULL,NULL,'EPSG','4327','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.262,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.083,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000552095,'EPSG','9201','EPSG','8806','False easting',438000.004,'EPSG','9003','EPSG','8807','False northing',0.021,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7388','WISCRS Forest County (m)',NULL,NULL,'EPSG','4328','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.002,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.38,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000673004,'EPSG','9201','EPSG','8806','False easting',275844.5533,'EPSG','9001','EPSG','8807','False northing',0.0157,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7389','WISCRS Forest County (ftUS)',NULL,NULL,'EPSG','4328','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.002,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.38,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000673004,'EPSG','9201','EPSG','8806','False easting',905000.005,'EPSG','9003','EPSG','8807','False northing',0.052,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7390','WISCRS Iron County (m)',NULL,NULL,'EPSG','4329','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.26,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.152,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000677153,'EPSG','9201','EPSG','8806','False easting',220980.4419,'EPSG','9001','EPSG','8807','False northing',0.0085,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7391','WISCRS Iron County (ftUS)',NULL,NULL,'EPSG','4329','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.26,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.152,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000677153,'EPSG','9201','EPSG','8806','False easting',725000.0,'EPSG','9003','EPSG','8807','False northing',0.028,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7392','WISCRS Oneida County (m)',NULL,NULL,'EPSG','4330','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.4215205573,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.324,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000686968,'EPSG','9201','EPSG','8806','False easting',70104.1401,'EPSG','9001','EPSG','8807','False northing',57588.0346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7393','WISCRS Oneida County (ftUS)',NULL,NULL,'EPSG','4330','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.4215205573,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.324,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000686968,'EPSG','9201','EPSG','8806','False easting',230000.0,'EPSG','9003','EPSG','8807','False northing',188936.744,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7394','WISCRS Price County (m)',NULL,NULL,'EPSG','4332','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.332,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.292,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000649554,'EPSG','9201','EPSG','8806','False easting',227990.8546,'EPSG','9001','EPSG','8807','False northing',0.0109,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7395','WISCRS Price County (ftUS)',NULL,NULL,'EPSG','4332','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.332,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.292,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000649554,'EPSG','9201','EPSG','8806','False easting',747999.995,'EPSG','9003','EPSG','8807','False northing',0.036,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7396','WISCRS Sawyer County (m)',NULL,NULL,'EPSG','4333','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.5400356873,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.07,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000573461,'EPSG','9201','EPSG','8806','False easting',216713.2336,'EPSG','9001','EPSG','8807','False northing',120734.1631,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7397','WISCRS Sawyer County (ftUS)',NULL,NULL,'EPSG','4333','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.5400356873,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.07,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000573461,'EPSG','9201','EPSG','8806','False easting',711000.001,'EPSG','9003','EPSG','8807','False northing',396108.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7398','WISCRS Vilas County (m)',NULL,NULL,'EPSG','4334','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.0440238726,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.292,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000730142,'EPSG','9201','EPSG','8806','False easting',134417.0689,'EPSG','9001','EPSG','8807','False northing',50337.1092,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7399','WISCRS Vilas County (ftUS)',NULL,NULL,'EPSG','4334','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.0440238726,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.292,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000730142,'EPSG','9201','EPSG','8806','False easting',441000.0,'EPSG','9003','EPSG','8807','False northing',165147.666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7424','WISCRS Washburn County (m)',NULL,NULL,'EPSG','4335','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.57403914,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.47,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000475376,'EPSG','9201','EPSG','8806','False easting',234086.8682,'EPSG','9001','EPSG','8807','False northing',188358.6058,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7425','WISCRS Washburn County (ftUS)',NULL,NULL,'EPSG','4335','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.57403914,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.47,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000475376,'EPSG','9201','EPSG','8806','False easting',768000.0,'EPSG','9003','EPSG','8807','False northing',617973.193,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7426','WISCRS Barron County (m)',NULL,NULL,'EPSG','4331','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.08,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.51,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000486665,'EPSG','9201','EPSG','8806','False easting',93150.0,'EPSG','9001','EPSG','8807','False northing',0.0029,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7427','WISCRS Barron County (ftUS)',NULL,NULL,'EPSG','4331','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.08,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.51,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000486665,'EPSG','9201','EPSG','8806','False easting',305609.625,'EPSG','9003','EPSG','8807','False northing',0.01,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7428','WISCRS Brown County (m)',NULL,NULL,'EPSG','4336','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',31600.0,'EPSG','9001','EPSG','8807','False northing',4600.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7429','WISCRS Brown County (ftUS)',NULL,NULL,'EPSG','4336','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',103674.333,'EPSG','9003','EPSG','8807','False northing',15091.833,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7430','WISCRS Buffalo County (m)',NULL,NULL,'EPSG','4337','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.2853,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.475,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000382778,'EPSG','9201','EPSG','8806','False easting',175260.3502,'EPSG','9001','EPSG','8807','False northing',0.0048,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7431','WISCRS Buffalo County (ftUS)',NULL,NULL,'EPSG','4337','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.2853,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.475,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000382778,'EPSG','9201','EPSG','8806','False easting',574999.999,'EPSG','9003','EPSG','8807','False northing',0.016,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7432','WISCRS Chippewa County (m)',NULL,NULL,'EPSG','4338','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.5840284835,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.174,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000391127,'EPSG','9201','EPSG','8806','False easting',60045.72,'EPSG','9001','EPSG','8807','False northing',44091.4346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7433','WISCRS Chippewa County (ftUS)',NULL,NULL,'EPSG','4338','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.5840284835,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.174,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000391127,'EPSG','9201','EPSG','8806','False easting',197000.0,'EPSG','9003','EPSG','8807','False northing',144656.648,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7434','WISCRS Clark County (m)',NULL,NULL,'EPSG','4339','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.36,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.423,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000463003,'EPSG','9201','EPSG','8806','False easting',199949.1989,'EPSG','9001','EPSG','8807','False northing',0.0086,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7435','WISCRS Clark County (ftUS)',NULL,NULL,'EPSG','4339','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.36,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.423,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000463003,'EPSG','9201','EPSG','8806','False easting',655999.997,'EPSG','9003','EPSG','8807','False northing',0.028,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7436','WISCRS Door County (m)',NULL,NULL,'EPSG','4340','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.24,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.162,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000187521,'EPSG','9201','EPSG','8806','False easting',158801.1176,'EPSG','9001','EPSG','8807','False northing',0.0023,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7437','WISCRS Door County (ftUS)',NULL,NULL,'EPSG','4340','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.24,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.162,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000187521,'EPSG','9201','EPSG','8806','False easting',521000.0,'EPSG','9003','EPSG','8807','False northing',0.008,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7438','WISCRS Dunn County (m)',NULL,NULL,'EPSG','4341','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.243,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.534,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000410324,'EPSG','9201','EPSG','8806','False easting',51816.104,'EPSG','9001','EPSG','8807','False northing',0.003,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7439','WISCRS Dunn County (ftUS)',NULL,NULL,'EPSG','4341','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.243,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.534,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000410324,'EPSG','9201','EPSG','8806','False easting',170000.001,'EPSG','9003','EPSG','8807','False northing',0.01,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7440','WISCRS Eau Claire County (m)',NULL,NULL,'EPSG','4342','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.5220212055,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.172,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000035079,'EPSG','9201','EPSG','8806','False easting',120091.4402,'EPSG','9001','EPSG','8807','False northing',91687.9239,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7441','WISCRS Eau Claire County (ftUS)',NULL,NULL,'EPSG','4342','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.5220212055,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.172,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000035079,'EPSG','9201','EPSG','8806','False easting',394000.0,'EPSG','9003','EPSG','8807','False northing',300812.797,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7450','WISCRS Jackson County (m)',NULL,NULL,'EPSG','4343','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.151200646,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.503946747,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000353,'EPSG','9201','EPSG','8806','False easting',27000.0,'EPSG','9001','EPSG','8807','False northing',25000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7451','WISCRS Jackson County (ftUS)',NULL,NULL,'EPSG','4343','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.151200646,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.503946747,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000353,'EPSG','9201','EPSG','8806','False easting',88582.5,'EPSG','9003','EPSG','8807','False northing',82020.833,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7452','WISCRS Langlade County (m)',NULL,NULL,'EPSG','4344','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.0915253579,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.02,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000627024,'EPSG','9201','EPSG','8806','False easting',198425.197,'EPSG','9001','EPSG','8807','False northing',105279.7829,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7453','WISCRS Langlade County (ftUS)',NULL,NULL,'EPSG','4344','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.0915253579,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.02,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000627024,'EPSG','9201','EPSG','8806','False easting',651000.0,'EPSG','9003','EPSG','8807','False northing',345405.421,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7454','WISCRS Lincoln County (m)',NULL,NULL,'EPSG','4345','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.504,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.44,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000599003,'EPSG','9201','EPSG','8806','False easting',116129.0323,'EPSG','9001','EPSG','8807','False northing',0.0058,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7455','WISCRS Lincoln County (ftUS)',NULL,NULL,'EPSG','4345','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.504,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.44,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000599003,'EPSG','9201','EPSG','8806','False easting',381000.0,'EPSG','9003','EPSG','8807','False northing',0.019,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7456','WISCRS Marathon County (m)',NULL,NULL,'EPSG','4346','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.5403255925,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.4612,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000053289,'EPSG','9201','EPSG','8806','False easting',74676.1493,'EPSG','9001','EPSG','8807','False northing',55049.2669,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7457','WISCRS Marathon County (ftUS)',NULL,NULL,'EPSG','4346','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.5403255925,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.4612,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000053289,'EPSG','9201','EPSG','8806','False easting',245000.0,'EPSG','9003','EPSG','8807','False northing',180607.47,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7458','WISCRS Marinette County (m)',NULL,NULL,'EPSG','4347','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.413,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.424,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000234982,'EPSG','9201','EPSG','8806','False easting',238658.8794,'EPSG','9001','EPSG','8807','False northing',0.0032,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7459','WISCRS Marinette County (ftUS)',NULL,NULL,'EPSG','4347','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.413,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.424,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000234982,'EPSG','9201','EPSG','8806','False easting',783000.007,'EPSG','9003','EPSG','8807','False northing',0.01,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7460','WISCRS Menominee County (m)',NULL,NULL,'EPSG','4348','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.43,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000362499,'EPSG','9201','EPSG','8806','False easting',105461.0121,'EPSG','9001','EPSG','8807','False northing',0.0029,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7461','WISCRS Menominee County (ftUS)',NULL,NULL,'EPSG','4348','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.43,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000362499,'EPSG','9201','EPSG','8806','False easting',346000.004,'EPSG','9003','EPSG','8807','False northing',0.01,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7462','WISCRS Oconto County (m)',NULL,NULL,'EPSG','4349','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.235,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.543,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000236869,'EPSG','9201','EPSG','8806','False easting',182880.3676,'EPSG','9001','EPSG','8807','False northing',0.0033,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7463','WISCRS Oconto County (ftUS)',NULL,NULL,'EPSG','4349','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.235,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.543,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000236869,'EPSG','9201','EPSG','8806','False easting',600000.006,'EPSG','9003','EPSG','8807','False northing',0.011,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7464','WISCRS Pepin and Pierce Counties (m)',NULL,NULL,'EPSG','4350','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.3810135939,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.134,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000362977,'EPSG','9201','EPSG','8806','False easting',167640.3354,'EPSG','9001','EPSG','8807','False northing',86033.0876,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7465','WISCRS Pepin and Pierce Counties (ftUS)',NULL,NULL,'EPSG','4350','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.3810135939,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.134,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000362977,'EPSG','9201','EPSG','8806','False easting',550000.0,'EPSG','9003','EPSG','8807','False northing',282260.222,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7466','WISCRS Polk County (m)',NULL,NULL,'EPSG','4351','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.394,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.38,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000433849,'EPSG','9201','EPSG','8806','False easting',141732.2823,'EPSG','9001','EPSG','8807','False northing',0.0059,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7467','WISCRS Polk County (ftUS)',NULL,NULL,'EPSG','4351','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.394,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.38,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000433849,'EPSG','9201','EPSG','8806','False easting',464999.996,'EPSG','9003','EPSG','8807','False northing',0.019,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7468','WISCRS Portage County (m)',NULL,NULL,'EPSG','4352','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.2500566311,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000039936,'EPSG','9201','EPSG','8806','False easting',56388.1128,'EPSG','9001','EPSG','8807','False northing',50022.1874,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7469','WISCRS Portage County (ftUS)',NULL,NULL,'EPSG','4352','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.2500566311,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000039936,'EPSG','9201','EPSG','8806','False easting',185000.0,'EPSG','9003','EPSG','8807','False northing',164114.46,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7470','WISCRS Rusk County (m)',NULL,NULL,'EPSG','4353','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.551,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.04,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000495976,'EPSG','9201','EPSG','8806','False easting',250546.1013,'EPSG','9001','EPSG','8807','False northing',0.0234,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7471','WISCRS Rusk County (ftUS)',NULL,NULL,'EPSG','4353','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.551,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.04,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000495976,'EPSG','9201','EPSG','8806','False easting',822000.001,'EPSG','9003','EPSG','8807','False northing',0.077,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7472','WISCRS Shawano County (m)',NULL,NULL,'EPSG','4354','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.021,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.362,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000032144,'EPSG','9201','EPSG','8806','False easting',262433.3253,'EPSG','9001','EPSG','8807','False northing',0.0096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7473','WISCRS Shawano County (ftUS)',NULL,NULL,'EPSG','4354','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.021,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.362,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000032144,'EPSG','9201','EPSG','8806','False easting',861000.001,'EPSG','9003','EPSG','8807','False northing',0.031,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7474','WISCRS St. Croix County (m)',NULL,NULL,'EPSG','4355','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.021,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.38,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000381803,'EPSG','9201','EPSG','8806','False easting',165506.7302,'EPSG','9001','EPSG','8807','False northing',0.0103,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7475','WISCRS St. Croix County (ftUS)',NULL,NULL,'EPSG','4355','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.021,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.38,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000381803,'EPSG','9201','EPSG','8806','False easting',542999.997,'EPSG','9003','EPSG','8807','False northing',0.034,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7476','WISCRS Taylor County (m)',NULL,NULL,'EPSG','4356','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.1040159509,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.29,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000597566,'EPSG','9201','EPSG','8806','False easting',187147.5744,'EPSG','9001','EPSG','8807','False northing',107746.7522,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7477','WISCRS Taylor County (ftUS)',NULL,NULL,'EPSG','4356','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.1040159509,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.29,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000597566,'EPSG','9201','EPSG','8806','False easting',614000.0,'EPSG','9003','EPSG','8807','False northing',353499.136,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7478','WISCRS Trempealeau County (m)',NULL,NULL,'EPSG','4357','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.094,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.22,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000361538,'EPSG','9201','EPSG','8806','False easting',256946.9138,'EPSG','9001','EPSG','8807','False northing',0.0041,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7479','WISCRS Trempealeau County (ftUS)',NULL,NULL,'EPSG','4357','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.094,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.22,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000361538,'EPSG','9201','EPSG','8806','False easting',843000.0,'EPSG','9003','EPSG','8807','False northing',0.013,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7480','WISCRS Waupaca County (m)',NULL,NULL,'EPSG','4358','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.2513,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.49,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000333645,'EPSG','9201','EPSG','8806','False easting',185013.9709,'EPSG','9001','EPSG','8807','False northing',0.007,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7481','WISCRS Waupaca County (ftUS)',NULL,NULL,'EPSG','4358','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.2513,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.49,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000333645,'EPSG','9201','EPSG','8806','False easting',607000.003,'EPSG','9003','EPSG','8807','False northing',0.023,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7482','WISCRS Wood County (m)',NULL,NULL,'EPSG','4359','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.214534369,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000421209,'EPSG','9201','EPSG','8806','False easting',208483.6173,'EPSG','9001','EPSG','8807','False northing',134589.754,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7483','WISCRS Wood County (ftUS)',NULL,NULL,'EPSG','4359','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.214534369,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000421209,'EPSG','9201','EPSG','8806','False easting',684000.001,'EPSG','9003','EPSG','8807','False northing',441566.551,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7484','WISCRS Adams and Juneau Counties (m)',NULL,NULL,'EPSG','4360','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.22,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000365285,'EPSG','9201','EPSG','8806','False easting',147218.6942,'EPSG','9001','EPSG','8807','False northing',0.0037,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7485','WISCRS Adams and Juneau Counties (ftUS)',NULL,NULL,'EPSG','4360','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.22,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000365285,'EPSG','9201','EPSG','8806','False easting',482999.999,'EPSG','9003','EPSG','8807','False northing',0.012,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7486','WISCRS Calumet, Fond du Lac, Outagamie and Winnebago Counties (m)',NULL,NULL,'EPSG','4361','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.431,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000286569,'EPSG','9201','EPSG','8806','False easting',244754.8893,'EPSG','9001','EPSG','8807','False northing',0.0049,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7487','WISCRS Calumet, Fond du Lac, Outagamie and Winnebago Counties (ftUS)',NULL,NULL,'EPSG','4361','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.431,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000286569,'EPSG','9201','EPSG','8806','False easting',802999.999,'EPSG','9003','EPSG','8807','False northing',0.016,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7488','WISCRS Columbia County (m)',NULL,NULL,'EPSG','4362','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.2745167925,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.234,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00003498,'EPSG','9201','EPSG','8806','False easting',169164.3381,'EPSG','9001','EPSG','8807','False northing',111569.6134,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7489','WISCRS Columbia County (ftUS)',NULL,NULL,'EPSG','4362','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.2745167925,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.234,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00003498,'EPSG','9201','EPSG','8806','False easting',554999.999,'EPSG','9003','EPSG','8807','False northing',366041.307,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7490','WISCRS Crawford County (m)',NULL,NULL,'EPSG','4363','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.1200200178,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.562,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000349151,'EPSG','9201','EPSG','8806','False easting',113690.6274,'EPSG','9001','EPSG','8807','False northing',53703.1201,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7491','WISCRS Crawford County (ftUS)',NULL,NULL,'EPSG','4363','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.1200200178,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.562,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000349151,'EPSG','9201','EPSG','8806','False easting',373000.0,'EPSG','9003','EPSG','8807','False northing',176190.987,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7492','WISCRS Dane County (m)',NULL,NULL,'EPSG','4364','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.0410257735,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.252,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000384786,'EPSG','9201','EPSG','8806','False easting',247193.2944,'EPSG','9001','EPSG','8807','False northing',146591.9896,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7493','WISCRS Dane County (ftUS)',NULL,NULL,'EPSG','4364','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.0410257735,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.252,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000384786,'EPSG','9201','EPSG','8806','False easting',811000.0,'EPSG','9003','EPSG','8807','False northing',480943.886,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7494','WISCRS Dodge and Jefferson Counties (m)',NULL,NULL,'EPSG','4365','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.282,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.463,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000346418,'EPSG','9201','EPSG','8806','False easting',263347.7263,'EPSG','9001','EPSG','8807','False northing',0.0076,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7495','WISCRS Dodge and Jefferson Counties (ftUS)',NULL,NULL,'EPSG','4365','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.282,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.463,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000346418,'EPSG','9201','EPSG','8806','False easting',863999.999,'EPSG','9003','EPSG','8807','False northing',0.025,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7496','WISCRS Grant County (m)',NULL,NULL,'EPSG','4366','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.244,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.48,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000349452,'EPSG','9201','EPSG','8806','False easting',242316.4841,'EPSG','9001','EPSG','8807','False northing',0.01,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7497','WISCRS Grant County (ftUS)',NULL,NULL,'EPSG','4366','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.244,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.48,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000349452,'EPSG','9201','EPSG','8806','False easting',794999.998,'EPSG','9003','EPSG','8807','False northing',0.033,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7498','WISCRS Green and Lafayette Counties (m)',NULL,NULL,'EPSG','4367','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.3815224197,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.502,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000390487,'EPSG','9201','EPSG','8806','False easting',170078.7403,'EPSG','9001','EPSG','8807','False northing',45830.2947,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7499','WISCRS Green and Lafayette Counties (ftUS)',NULL,NULL,'EPSG','4367','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.3815224197,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.502,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000390487,'EPSG','9201','EPSG','8806','False easting',558000.0,'EPSG','9003','EPSG','8807','False northing',150361.559,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7500','WISCRS Green Lake and Marquette Counties (m)',NULL,NULL,'EPSG','4368','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.4825200424,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.143,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000344057,'EPSG','9201','EPSG','8806','False easting',150876.3018,'EPSG','9001','EPSG','8807','False northing',79170.7795,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7501','WISCRS Green Lake and Marquette Counties (ftUS)',NULL,NULL,'EPSG','4368','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.4825200424,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.143,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000344057,'EPSG','9201','EPSG','8806','False easting',495000.0,'EPSG','9003','EPSG','8807','False northing',259746.132,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7502','WISCRS Iowa County (m)',NULL,NULL,'EPSG','4369','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.322,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.094,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000394961,'EPSG','9201','EPSG','8806','False easting',113081.0261,'EPSG','9001','EPSG','8807','False northing',0.0045,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7503','WISCRS Iowa County (ftUS)',NULL,NULL,'EPSG','4369','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.322,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.094,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000394961,'EPSG','9201','EPSG','8806','False easting',371000.0,'EPSG','9003','EPSG','8807','False northing',0.015,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7504','WISCRS Kenosha, Milwaukee, Ozaukee and Racine Counties (m)',NULL,NULL,'EPSG','4370','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.13,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.534,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000260649,'EPSG','9201','EPSG','8806','False easting',185928.3728,'EPSG','9001','EPSG','8807','False northing',0.0009,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7505','WISCRS Kenosha, Milwaukee, Ozaukee and Racine Counties (ftUS)',NULL,NULL,'EPSG','4370','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.13,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.534,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000260649,'EPSG','9201','EPSG','8806','False easting',610000.003,'EPSG','9003','EPSG','8807','False northing',0.003,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7506','WISCRS Kewaunee, Manitowoc and Sheboygan Counties (m)',NULL,NULL,'EPSG','4371','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.16,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.33,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000233704,'EPSG','9201','EPSG','8806','False easting',79857.7614,'EPSG','9001','EPSG','8807','False northing',0.0012,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7507','WISCRS Kewaunee, Manitowoc and Sheboygan Counties (ftUS)',NULL,NULL,'EPSG','4371','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.16,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.33,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000233704,'EPSG','9201','EPSG','8806','False easting',262000.006,'EPSG','9003','EPSG','8807','False northing',0.004,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7508','WISCRS La Crosse County (m)',NULL,NULL,'EPSG','4372','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.2704,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.19,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000319985,'EPSG','9201','EPSG','8806','False easting',130454.6598,'EPSG','9001','EPSG','8807','False northing',0.0033,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7509','WISCRS La Crosse County (ftUS)',NULL,NULL,'EPSG','4372','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.2704,'EPSG','9110','EPSG','8802','Longitude of natural origin',-91.19,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000319985,'EPSG','9201','EPSG','8806','False easting',427999.996,'EPSG','9003','EPSG','8807','False northing',0.011,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7510','WISCRS Monroe County (m)',NULL,NULL,'EPSG','4373','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.0000266143,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.383,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000434122,'EPSG','9201','EPSG','8806','False easting',204521.209,'EPSG','9001','EPSG','8807','False northing',121923.9861,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7511','WISCRS Monroe County (ftUS)',NULL,NULL,'EPSG','4373','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.0000266143,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.383,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000434122,'EPSG','9201','EPSG','8806','False easting',671000.0,'EPSG','9003','EPSG','8807','False northing',400012.278,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7512','WISCRS Richland County (m)',NULL,NULL,'EPSG','4374','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.1920326539,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.255,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000375653,'EPSG','9201','EPSG','8806','False easting',202387.6048,'EPSG','9001','EPSG','8807','False northing',134255.4253,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7513','WISCRS Richland County (ftUS)',NULL,NULL,'EPSG','4374','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.1920326539,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.255,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000375653,'EPSG','9201','EPSG','8806','False easting',664000.0,'EPSG','9003','EPSG','8807','False northing',440469.675,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7514','WISCRS Rock County (m)',NULL,NULL,'EPSG','4375','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.564,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.042,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000337311,'EPSG','9201','EPSG','8806','False easting',146304.2926,'EPSG','9001','EPSG','8807','False northing',0.0068,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7515','WISCRS Rock County (ftUS)',NULL,NULL,'EPSG','4375','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.564,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.042,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000337311,'EPSG','9201','EPSG','8806','False easting',480000.0,'EPSG','9003','EPSG','8807','False northing',0.022,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7516','WISCRS Sauk County (m)',NULL,NULL,'EPSG','4376','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.491,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.54,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000373868,'EPSG','9201','EPSG','8806','False easting',185623.5716,'EPSG','9001','EPSG','8807','False northing',0.0051,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7517','WISCRS Sauk County (ftUS)',NULL,NULL,'EPSG','4376','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.491,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.54,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000373868,'EPSG','9201','EPSG','8806','False easting',609000.001,'EPSG','9003','EPSG','8807','False northing',0.017,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7518','WISCRS Vernon County (m)',NULL,NULL,'EPSG','4377','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.3430118583,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.47,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000408158,'EPSG','9201','EPSG','8806','False easting',222504.4451,'EPSG','9001','EPSG','8807','False northing',47532.0602,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7519','WISCRS Vernon County (ftUS)',NULL,NULL,'EPSG','4377','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.3430118583,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.47,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000408158,'EPSG','9201','EPSG','8806','False easting',730000.0,'EPSG','9003','EPSG','8807','False northing',155944.768,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7520','WISCRS Walworth County (m)',NULL,NULL,'EPSG','4378','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.4010063549,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.323,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000367192,'EPSG','9201','EPSG','8806','False easting',232562.8651,'EPSG','9001','EPSG','8807','False northing',111088.2224,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7521','WISCRS Walworth County (ftUS)',NULL,NULL,'EPSG','4378','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.4010063549,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.323,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000367192,'EPSG','9201','EPSG','8806','False easting',763000.0,'EPSG','9003','EPSG','8807','False northing',364461.943,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7522','WISCRS Washington County (m)',NULL,NULL,'EPSG','4379','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5505,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.035,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00003738,'EPSG','9201','EPSG','8806','False easting',120091.4415,'EPSG','9001','EPSG','8807','False northing',0.003,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7523','WISCRS Washington County (ftUS)',NULL,NULL,'EPSG','4379','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5505,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.035,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00003738,'EPSG','9201','EPSG','8806','False easting',394000.004,'EPSG','9003','EPSG','8807','False northing',0.01,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7524','WISCRS Waukesha County (m)',NULL,NULL,'EPSG','4380','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.341,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.133,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000346179,'EPSG','9201','EPSG','8806','False easting',208788.418,'EPSG','9001','EPSG','8807','False northing',0.0034,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7525','WISCRS Waukesha County (ftUS)',NULL,NULL,'EPSG','4380','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.341,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.133,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000346179,'EPSG','9201','EPSG','8806','False easting',685000.001,'EPSG','9003','EPSG','8807','False northing',0.011,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7526','WISCRS Waushara County (m)',NULL,NULL,'EPSG','4381','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.0650198565,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.143,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000392096,'EPSG','9201','EPSG','8806','False easting',120091.4402,'EPSG','9001','EPSG','8807','False northing',45069.7587,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7527','WISCRS Waushara County (ftUS)',NULL,NULL,'EPSG','4381','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.0650198565,'EPSG','9110','EPSG','8802','Longitude of natural origin',-89.143,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000392096,'EPSG','9201','EPSG','8806','False easting',394000.0,'EPSG','9003','EPSG','8807','False northing',147866.367,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7687','Kyrgyzstan zone 1',NULL,NULL,'EPSG','4385','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',68.31,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1300000.0,'EPSG','9001','EPSG','8807','False northing',14743.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7688','Kyrgyzstan zone 2',NULL,NULL,'EPSG','4386','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',71.31,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',2300000.0,'EPSG','9001','EPSG','8807','False northing',14743.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7689','Kyrgyzstan zone 3',NULL,NULL,'EPSG','4387','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',74.31,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3300000.0,'EPSG','9001','EPSG','8807','False northing',14743.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7690','Kyrgyzstan zone 4',NULL,NULL,'EPSG','4388','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',77.31,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',4300000.0,'EPSG','9001','EPSG','8807','False northing',14743.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7691','Kyrgyzstan zone 5',NULL,NULL,'EPSG','4389','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',80.31,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',5300000.0,'EPSG','9001','EPSG','8807','False northing',14743.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7722','Survey of India Lambert',NULL,NULL,'EPSG','1121','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',24.0,'EPSG','9102','EPSG','8822','Longitude of false origin',80.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',12.2822638,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',35.1022096,'EPSG','9110','EPSG','8826','Easting at false origin',4000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7723','Andhra Pradesh NSF LCC',NULL,NULL,'EPSG','4394','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',16.25543298,'EPSG','9102','EPSG','8822','Longitude of false origin',80.875,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',13.75,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',18.75,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7724','Arunachal Pradesh NSF LCC',NULL,NULL,'EPSG','4395','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',28.00157897,'EPSG','9102','EPSG','8822','Longitude of false origin',94.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',27.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',29.0,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7725','Assam NSF LCC',NULL,NULL,'EPSG','4396','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',26.00257703,'EPSG','9102','EPSG','8822','Longitude of false origin',92.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',24.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',27.2,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7726','Bihar NSF LCC',NULL,NULL,'EPSG','4397','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.87725247,'EPSG','9102','EPSG','8822','Longitude of false origin',85.875,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',24.625,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',27.125,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7727','Delhi NSF LCC',NULL,NULL,'EPSG','4422','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',28.62510126,'EPSG','9102','EPSG','8822','Longitude of false origin',77.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',28.223,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',28.523,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7728','Gujarat NSF LCC',NULL,NULL,'EPSG','4400','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',22.37807121,'EPSG','9102','EPSG','8822','Longitude of false origin',71.375,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',20.473,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',23.573,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7729','Haryana NSF LCC',NULL,NULL,'EPSG','4401','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.25226266,'EPSG','9102','EPSG','8822','Longitude of false origin',76.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',28.05,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',30.25,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7730','Himachal Pradesh NSF LCC',NULL,NULL,'EPSG','4402','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.75183497,'EPSG','9102','EPSG','8822','Longitude of false origin',77.375,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',30.75,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',32.75,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7731','Jammu and Kashmir NSF LCC',NULL,NULL,'EPSG','4403','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.75570874,'EPSG','9102','EPSG','8822','Longitude of false origin',76.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',33.05,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.25,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7732','Jharkhand NSF LCC',NULL,NULL,'EPSG','4404','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',23.62652682,'EPSG','9102','EPSG','8822','Longitude of false origin',85.625,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',22.323,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',24.423,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7733','Madhya Pradesh NSF LCC',NULL,NULL,'EPSG','4407','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',24.00529821,'EPSG','9102','EPSG','8822','Longitude of false origin',78.375,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',22.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',26.0,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7734','Maharashtra NSF LCC',NULL,NULL,'EPSG','4408','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',18.88015774,'EPSG','9102','EPSG','8822','Longitude of false origin',76.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',16.373,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',21.073,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7735','Manipur NSF LCC',NULL,NULL,'EPSG','4409','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',24.75060911,'EPSG','9102','EPSG','8822','Longitude of false origin',94.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',24.05,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',25.25,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7736','Meghalaya NSF LCC',NULL,NULL,'EPSG','4410','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.62524747,'EPSG','9102','EPSG','8822','Longitude of false origin',91.375,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',25.123,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',26.023,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7737','Nagaland NSF LCC',NULL,NULL,'EPSG','4412','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',26.12581974,'EPSG','9102','EPSG','8822','Longitude of false origin',94.375,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',25.223,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',26.523,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7738','Northeast India NSF LCC',NULL,NULL,'EPSG','4392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.63452135,'EPSG','9102','EPSG','8822','Longitude of false origin',93.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',23.023,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',28.123,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7739','Orissa NSF LCC',NULL,NULL,'EPSG','4413','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',20.25305174,'EPSG','9102','EPSG','8822','Longitude of false origin',84.375,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',18.35,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',21.55,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7740','Punjab NSF LCC',NULL,NULL,'EPSG','4414','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.00178226,'EPSG','9102','EPSG','8822','Longitude of false origin',75.375,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',30.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',32.0,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7741','Rajasthan NSF LCC',NULL,NULL,'EPSG','4415','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',26.88505546,'EPSG','9102','EPSG','8822','Longitude of false origin',73.875,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',24.173,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',29.273,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7742','Uttar Pradesh NSF LCC',NULL,NULL,'EPSG','4419','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',27.13270823,'EPSG','9102','EPSG','8822','Longitude of false origin',80.875,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',24.523,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',29.223,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7743','Uttaranchal NSF LCC',NULL,NULL,'EPSG','4420','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',30.0017132,'EPSG','9102','EPSG','8822','Longitude of false origin',79.375,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',29.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',31.0,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7744','Andaman and Nicobar NSF TM',NULL,NULL,'EPSG','4423','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',10.25,'EPSG','9102','EPSG','8802','Longitude of natural origin',93.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999428,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7745','Chhattisgarh NSF TM',NULL,NULL,'EPSG','4398','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',82.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9998332,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7746','Goa NSF TM',NULL,NULL,'EPSG','4399','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',15.375,'EPSG','9102','EPSG','8802','Longitude of natural origin',74.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999913,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7747','Karnataka NSF TM',NULL,NULL,'EPSG','4405','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',15.125,'EPSG','9102','EPSG','8802','Longitude of natural origin',76.375,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9998012,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7748','Kerala NSF TM',NULL,NULL,'EPSG','4406','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',10.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',76.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999177,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7749','Lakshadweep NSF TM',NULL,NULL,'EPSG','4424','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',10.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',73.125,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999536,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7750','Mizoram NSF TM',NULL,NULL,'EPSG','4411','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',23.125,'EPSG','9102','EPSG','8802','Longitude of natural origin',92.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999821,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7751','Sikkim NSF TM',NULL,NULL,'EPSG','4416','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',27.625,'EPSG','9102','EPSG','8802','Longitude of natural origin',88.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999926,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7752','Tamil Nadu NSF TM',NULL,NULL,'EPSG','4417','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',10.875,'EPSG','9102','EPSG','8802','Longitude of natural origin',78.375,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9997942,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7753','Tripura NSF TM',NULL,NULL,'EPSG','4418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',23.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',91.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999822,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7754','West Bengal NSF TM',NULL,NULL,'EPSG','4421','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.375,'EPSG','9102','EPSG','8802','Longitude of natural origin',87.875,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9998584,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7802','Cadastral Coordinate System 2005',NULL,NULL,'EPSG','3224','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.400435246,'EPSG','9110','EPSG','8822','Longitude of false origin',25.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',42.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',43.2,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4725824.3591,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7812','Height <> Depth Conversion',NULL,NULL,'EPSG','1262','EPSG','1068','Height Depth Reversal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7813','Vertical Axis Unit Conversion',NULL,NULL,'EPSG','1262','EPSG','1069','Change of Vertical Unit','EPSG','1051','Unit conversion scalar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7818','CS63 zone X1',NULL,NULL,'EPSG','4435','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',23.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7819','CS63 zone X2',NULL,NULL,'EPSG','4429','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',26.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',2300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7820','CS63 zone X3',NULL,NULL,'EPSG','4430','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',29.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7821','CS63 zone X4',NULL,NULL,'EPSG','4431','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',32.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',4300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7822','CS63 zone X5',NULL,NULL,'EPSG','4432','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',35.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',5300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7823','CS63 zone X6',NULL,NULL,'EPSG','4433','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',38.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',6300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7824','CS63 zone X7',NULL,NULL,'EPSG','4434','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',41.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',7300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7875','St. Helena Local Grid 1971',NULL,NULL,'EPSG','3183','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-15.58,'EPSG','9110','EPSG','8802','Longitude of natural origin',-5.43,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7876','St. Helena Local Grid (Tritan)',NULL,NULL,'EPSG','3183','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-15.58,'EPSG','9110','EPSG','8802','Longitude of natural origin',-5.43,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',299483.737,'EPSG','9001','EPSG','8807','False northing',2000527.879,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7993','Albany Grid 2020',NULL,NULL,'EPSG','4439','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',117.53,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000044,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',4100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7994','Barrow Island Grid 2020',NULL,NULL,'EPSG','4438','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',115.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000022,'EPSG','9201','EPSG','8806','False easting',60000.0,'EPSG','9001','EPSG','8807','False northing',2700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7995','Broome Grid 2020',NULL,NULL,'EPSG','4441','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',122.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00000298,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',2300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7996','Busselton Coastal Grid',NULL,NULL,'EPSG','4437','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',115.26,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999592,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7997','Carnarvon Grid 2020',NULL,NULL,'EPSG','4442','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',113.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999796,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',3050000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7998','Christmas Island Grid 2020',NULL,NULL,'EPSG','4169','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',105.373,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00002514,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',1400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','7999','Cocos Island Grid 2020',NULL,NULL,'EPSG','1069','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',96.523,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999387,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',1600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8000','Collie Grid 2020',NULL,NULL,'EPSG','4443','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',115.56,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000019,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',4100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8001','Esperance Grid 2020',NULL,NULL,'EPSG','4445','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',121.53,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000055,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',4050000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8002','Exmouth Grid 2020',NULL,NULL,'EPSG','4448','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',114.04,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00000236,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',2750000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8003','Geraldton Coastal Grid',NULL,NULL,'EPSG','4449','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',114.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00000628,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',3450000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8004','Goldfields Grid 2020',NULL,NULL,'EPSG','4436','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',121.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00004949,'EPSG','9201','EPSG','8806','False easting',60000.0,'EPSG','9001','EPSG','8807','False northing',3800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8005','Jurien Coastal Grid',NULL,NULL,'EPSG','4440','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',114.59,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00000314,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',3650000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8006','Kalbarri Grid 2020',NULL,NULL,'EPSG','4444','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',114.1855,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000014,'EPSG','9201','EPSG','8806','False easting',55000.0,'EPSG','9001','EPSG','8807','False northing',3700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8007','Karratha Grid 2020',NULL,NULL,'EPSG','4451','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',116.56,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999989,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',2550000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8008','Kununurra Grid 2020',NULL,NULL,'EPSG','4452','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',128.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000165,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',2100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8009','Lancelin Coastal Grid',NULL,NULL,'EPSG','4453','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',115.22,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00000157,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',3750000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8010','Margaret River Coastal Grid',NULL,NULL,'EPSG','4457','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',115.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000055,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',4050000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8011','Perth Coastal Grid',NULL,NULL,'EPSG','4462','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',115.49,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999906,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',3900000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8012','Port Hedland Grid 2020',NULL,NULL,'EPSG','4466','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',118.36,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00000135,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8033','TM Zone 20N (US survey feet)',NULL,NULL,'EPSG','4467','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8034','TM Zone 21N (US survey feet)',NULL,NULL,'EPSG','4468','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8040','Gusterberg Grid',NULL,NULL,'EPSG','4455','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',48.021847,'EPSG','9110','EPSG','8802','Longitude of natural origin',31.481505,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8041','St. Stephen Grid',NULL,NULL,'EPSG','4456','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',48.123154,'EPSG','9110','EPSG','8802','Longitude of natural origin',34.022732,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8061','Pima County zone 1 East (ft)',NULL,NULL,'EPSG','4472','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',32.15,'EPSG','9110','EPSG','8812','Longitude of projection centre',-111.24,'EPSG','9110','EPSG','8813','Azimuth of initial line',45.0,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',45.0,'EPSG','9102','EPSG','8815','Scale factor on initial line',1.00011,'EPSG','9201','EPSG','8816','Easting at projection centre',160000.0,'EPSG','9002','EPSG','8817','Northing at projection centre',800000.0,'EPSG','9002',0); INSERT INTO "conversion" VALUES('EPSG','8062','Pima County zone 2 Central (ft)',NULL,NULL,'EPSG','4460','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-112.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00009,'EPSG','9201','EPSG','8806','False easting',1800000.0,'EPSG','9002','EPSG','8807','False northing',1000000.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8063','Pima County zone 3 West (ft)',NULL,NULL,'EPSG','4450','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-113.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000055,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8064','Pima County zone 4 Mt. Lemmon (ft)',NULL,NULL,'EPSG','4473','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',30.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-110.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9998,'EPSG','9201','EPSG','8806','False easting',30000.0,'EPSG','9002','EPSG','8807','False northing',-620000.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8080','MTM Nova Scotia zone 4 v2',NULL,NULL,'EPSG','1534','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-61.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',24500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8081','MTM Nova Scotia zone 5 v2',NULL,NULL,'EPSG','1535','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-64.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',25500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8087','Iceland Lambert 2016',NULL,NULL,'EPSG','1120','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-19.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',64.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',65.45,'EPSG','9110','EPSG','8826','Easting at false origin',2700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8273','Oregon Burns-Harper zone (meters)',NULL,NULL,'EPSG','4459','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00014,'EPSG','9201','EPSG','8806','False easting',90000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8274','Oregon Burns-Harper zone (International feet)',NULL,NULL,'EPSG','4459','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00014,'EPSG','9201','EPSG','8806','False easting',295275.5906,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8275','Oregon Canyon City-Burns zone (meters)',NULL,NULL,'EPSG','4465','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00022,'EPSG','9201','EPSG','8806','False easting',20000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8276','Oregon Canyon City-Burns zone (International feet)',NULL,NULL,'EPSG','4465','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00022,'EPSG','9201','EPSG','8806','False easting',65616.7979,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8277','Oregon Coast Range North zone (meters)',NULL,NULL,'EPSG','4471','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.35,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000045,'EPSG','9201','EPSG','8806','False easting',30000.0,'EPSG','9001','EPSG','8807','False northing',20000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8278','Oregon Coast Range North zone (International feet)',NULL,NULL,'EPSG','4471','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.35,'EPSG','9110','EPSG','8802','Longitude of natural origin',-123.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000045,'EPSG','9201','EPSG','8806','False easting',98425.1969,'EPSG','9002','EPSG','8807','False northing',65616.7979,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8279','Oregon Dayville-Prairie City zone (meters)',NULL,NULL,'EPSG','4474','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.38,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00012,'EPSG','9201','EPSG','8806','False easting',20000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8280','Oregon Dayville-Prairie City zone (International feet)',NULL,NULL,'EPSG','4474','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.38,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00012,'EPSG','9201','EPSG','8806','False easting',65616.7979,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8281','Oregon Denio-Burns zone (meters)',NULL,NULL,'EPSG','4475','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-118.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00019,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8282','Oregon Denio-Burns zone (International feet)',NULL,NULL,'EPSG','4475','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-118.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00019,'EPSG','9201','EPSG','8806','False easting',262467.1916,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8283','Oregon Halfway zone (meters)',NULL,NULL,'EPSG','4476','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000085,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',70000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8284','Oregon Halfway zone (International feet)',NULL,NULL,'EPSG','4476','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000085,'EPSG','9201','EPSG','8806','False easting',131233.5958,'EPSG','9002','EPSG','8807','False northing',229658.7927,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8285','Oregon Medford-Diamond Lake zone (meters)',NULL,NULL,'EPSG','4477','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00004,'EPSG','9201','EPSG','8806','False easting',60000.0,'EPSG','9001','EPSG','8807','False northing',-60000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8286','Oregon Medford-Diamond Lake zone (International feet)',NULL,NULL,'EPSG','4477','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00004,'EPSG','9201','EPSG','8806','False easting',196850.3937,'EPSG','9002','EPSG','8807','False northing',-196850.3937,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8287','Oregon Mitchell zone (meters)',NULL,NULL,'EPSG','4478','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',47.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99927,'EPSG','9201','EPSG','8806','False easting',30000.0,'EPSG','9001','EPSG','8807','False northing',290000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8288','Oregon Mitchell zone (International feet)',NULL,NULL,'EPSG','4478','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',47.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99927,'EPSG','9201','EPSG','8806','False easting',98425.1969,'EPSG','9002','EPSG','8807','False northing',951443.5696,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8289','Oregon North Central zone (meters)',NULL,NULL,'EPSG','4479','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',140000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8290','Oregon North Central zone (International feet)',NULL,NULL,'EPSG','4479','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',328083.9895,'EPSG','9002','EPSG','8807','False northing',459317.5853,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8291','Oregon Ochoco Summit zone (meters)',NULL,NULL,'EPSG','4481','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00006,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',-80000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8292','Oregon Ochoco Summit zone (International feet)',NULL,NULL,'EPSG','4481','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00006,'EPSG','9201','EPSG','8806','False easting',131233.5958,'EPSG','9002','EPSG','8807','False northing',-262467.1916,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8293','Oregon Owyhee zone (meters)',NULL,NULL,'EPSG','4482','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00018,'EPSG','9201','EPSG','8806','False easting',70000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8294','Oregon Owyhee zone (International feet)',NULL,NULL,'EPSG','4482','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00018,'EPSG','9201','EPSG','8806','False easting',229658.7927,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8295','Oregon Pilot Rock-Ukiah zone (meters)',NULL,NULL,'EPSG','4483','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000025,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',130000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8296','Oregon Pilot Rock-Ukiah zone (International feet)',NULL,NULL,'EPSG','4483','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000025,'EPSG','9201','EPSG','8806','False easting',164041.9948,'EPSG','9002','EPSG','8807','False northing',426509.1864,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8297','Oregon Prairie City-Brogan zone (meters)',NULL,NULL,'EPSG','4484','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-118.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00017,'EPSG','9201','EPSG','8806','False easting',60000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8298','Oregon Prairie City-Brogan zone (International feet)',NULL,NULL,'EPSG','4484','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-118.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00017,'EPSG','9201','EPSG','8806','False easting',196850.3937,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8299','Oregon Riley-Lakeview zone (meters)',NULL,NULL,'EPSG','4458','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000215,'EPSG','9201','EPSG','8806','False easting',70000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8300','Oregon Riley-Lakeview zone (International feet)',NULL,NULL,'EPSG','4458','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000215,'EPSG','9201','EPSG','8806','False easting',229658.7927,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8301','Oregon Siskiyou Pass zone (meters)',NULL,NULL,'EPSG','4463','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00015,'EPSG','9201','EPSG','8806','False easting',10000.0,'EPSG','9001','EPSG','8807','False northing',60000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8302','Oregon Siskiyou Pass zone (International feet)',NULL,NULL,'EPSG','4463','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00015,'EPSG','9201','EPSG','8806','False easting',32808.399,'EPSG','9002','EPSG','8807','False northing',196850.3937,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8303','Oregon Ukiah-Fox zone (meters)',NULL,NULL,'EPSG','4470','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00014,'EPSG','9201','EPSG','8806','False easting',30000.0,'EPSG','9001','EPSG','8807','False northing',90000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8304','Oregon Ukiah-Fox zone (International feet)',NULL,NULL,'EPSG','4470','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-119.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00014,'EPSG','9201','EPSG','8806','False easting',98425.1969,'EPSG','9002','EPSG','8807','False northing',295275.5906,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8305','Oregon Wallowa zone (meters)',NULL,NULL,'EPSG','4480','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000195,'EPSG','9201','EPSG','8806','False easting',60000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8306','Oregon Wallowa zone (International feet)',NULL,NULL,'EPSG','4480','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-117.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000195,'EPSG','9201','EPSG','8806','False easting',196850.3937,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8307','Oregon Warner Highway zone (meters)',NULL,NULL,'EPSG','4486','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000245,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',60000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8308','Oregon Warner Highway zone (International feet)',NULL,NULL,'EPSG','4486','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-120.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000245,'EPSG','9201','EPSG','8806','False easting',131233.5958,'EPSG','9002','EPSG','8807','False northing',196850.3937,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8309','Oregon Willamette Pass zone (meters)',NULL,NULL,'EPSG','4488','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000223,'EPSG','9201','EPSG','8806','False easting',20000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8310','Oregon Willamette Pass zone (International feet)',NULL,NULL,'EPSG','4488','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-122.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000223,'EPSG','9201','EPSG','8806','False easting',65616.7979,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8373','NCRS Las Vegas zone (m)',NULL,NULL,'EPSG','4485','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-114.58,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0001,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8374','NCRS Las Vegas zone (ftUS)',NULL,NULL,'EPSG','4485','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-114.58,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0001,'EPSG','9201','EPSG','8806','False easting',328083.3333,'EPSG','9003','EPSG','8807','False northing',656166.6667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8375','NCRS Las Vegas high elevation zone (m)',NULL,NULL,'EPSG','4487','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-114.58,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000135,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8376','NCRS Las Vegas high elevation zone (ftUS)',NULL,NULL,'EPSG','4487','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-114.58,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000135,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',1312333.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8389','WEIPA94',NULL,NULL,'EPSG','4491','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999929,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8432','Macau Grid',NULL,NULL,'EPSG','1147','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',22.124463,'EPSG','9110','EPSG','8802','Longitude of natural origin',113.321129,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',20000.0,'EPSG','9001','EPSG','8807','False northing',20000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8440','Laborde Grid (Greenwich)',NULL,NULL,'EPSG','1149','EPSG','9813','Laborde Oblique Mercator','EPSG','8811','Latitude of projection centre',-18.54,'EPSG','9110','EPSG','8812','Longitude of projection centre',46.2614025,'EPSG','9110','EPSG','8813','Azimuth of initial line',18.54,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.9995,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8458','Kansas regional zone 1 Goodland (ftUS)',NULL,NULL,'EPSG','4495','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-101.36,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000156,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8459','Kansas regional zone 2 Colby (ftUS)',NULL,NULL,'EPSG','4496','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-100.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000134,'EPSG','9201','EPSG','8806','False easting',2500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8490','Kansas regional zone 3 Oberlin (ftUS)',NULL,NULL,'EPSG','4497','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-100.21,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000116,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8491','Kansas regional zone 4 Hays (ftUS)',NULL,NULL,'EPSG','4494','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-99.27,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000082,'EPSG','9201','EPSG','8806','False easting',4500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8492','Kansas regional zone 5 Great Bend (ftUS)',NULL,NULL,'EPSG','4498','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-98.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000078,'EPSG','9201','EPSG','8806','False easting',5500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8493','Kansas regional zone 6 Beliot (ftUS)',NULL,NULL,'EPSG','4499','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-98.09,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000068,'EPSG','9201','EPSG','8806','False easting',6500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8494','Kansas regional zone 7 Salina (ftUS)',NULL,NULL,'EPSG','4500','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-97.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000049,'EPSG','9201','EPSG','8806','False easting',7500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8495','Kansas regional zone 8 Manhattan (ftUS)',NULL,NULL,'EPSG','4501','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',39.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-96.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000044,'EPSG','9201','EPSG','8806','False easting',8500000.0,'EPSG','9003','EPSG','8807','False northing',600000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8498','Kansas regional zone 9 Emporia (ftUS)',NULL,NULL,'EPSG','4502','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',38.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-96.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00005,'EPSG','9201','EPSG','8806','False easting',9500000.0,'EPSG','9003','EPSG','8807','False northing',300000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8499','Kansas regional zone 10 Atchison (ftUS)',NULL,NULL,'EPSG','4503','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',39.38,'EPSG','9110','EPSG','8802','Longitude of natural origin',-95.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00004,'EPSG','9201','EPSG','8806','False easting',10500000.0,'EPSG','9003','EPSG','8807','False northing',700000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8500','Kansas regional zone 11 Kansas City (ftUS)',NULL,NULL,'EPSG','4504','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',39.06,'EPSG','9110','EPSG','8802','Longitude of natural origin',-95.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000033,'EPSG','9201','EPSG','8806','False easting',11500000.0,'EPSG','9003','EPSG','8807','False northing',600000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8501','Kansas regional zone 12 Ulysses (ftUS)',NULL,NULL,'EPSG','4505','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-101.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00014,'EPSG','9201','EPSG','8806','False easting',12500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8502','Kansas regional zone 13 Garden City (ftUS)',NULL,NULL,'EPSG','4506','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-100.24,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000109,'EPSG','9201','EPSG','8806','False easting',13500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8503','Kansas regional zone 14 Dodge City (ftUS)',NULL,NULL,'EPSG','4507','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-99.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000097,'EPSG','9201','EPSG','8806','False easting',14500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8504','Kansas regional zone 15 Larned (ftUS)',NULL,NULL,'EPSG','4508','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-99.12,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000087,'EPSG','9201','EPSG','8806','False easting',15500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8505','Kansas regional zone 16 Pratt (ftUS)',NULL,NULL,'EPSG','4509','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-98.33,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000069,'EPSG','9201','EPSG','8806','False easting',16500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8506','Kansas regional zone 17 Wichita (ftUS)',NULL,NULL,'EPSG','4510','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',37.46,'EPSG','9110','EPSG','8802','Longitude of natural origin',-97.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000059,'EPSG','9201','EPSG','8806','False easting',17500000.0,'EPSG','9003','EPSG','8807','False northing',400000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8507','Kansas regional zone 18 Arkansas City (ftUS)',NULL,NULL,'EPSG','4511','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',37.11,'EPSG','9110','EPSG','8802','Longitude of natural origin',-97.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000055,'EPSG','9201','EPSG','8806','False easting',18500000.0,'EPSG','9003','EPSG','8807','False northing',200000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8515','Kansas regional zone 19 Coffeyville (ftUS)',NULL,NULL,'EPSG','4512','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-95.58,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000034,'EPSG','9201','EPSG','8806','False easting',19500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8516','Kansas regional zone 20 Pittsburg (ftUS)',NULL,NULL,'EPSG','4513','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-95.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000031,'EPSG','9201','EPSG','8806','False easting',20500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8825','Idaho Transverse Mercator',NULL,NULL,'EPSG','1381','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-114.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',2500000.0,'EPSG','9001','EPSG','8807','False northing',1200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8854','Equal Earth Greenwich',NULL,NULL,'EPSG','1262','EPSG','1078','Equal Earth','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8855','Equal Earth Americas',NULL,NULL,'EPSG','4520','EPSG','1078','Equal Earth','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','8856','Equal Earth Asia-Pacific',NULL,NULL,'EPSG','4523','EPSG','1078','Equal Earth','EPSG','8802','Longitude of natural origin',150.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9058','Vietnam TM-3 103-00',NULL,NULL,'EPSG','4541','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',103.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9190','NIWA Albers',NULL,NULL,'EPSG','3508','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',-40.0,'EPSG','9102','EPSG','8822','Longitude of false origin',175.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-30.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-50.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9192','Vietnam TM-3 104-00',NULL,NULL,'EPSG','4538','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',104.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9193','Vietnam TM-3 104-30',NULL,NULL,'EPSG','4545','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',104.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9194','Vietnam TM-3 104-45',NULL,NULL,'EPSG','4546','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',104.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9195','Vietnam TM-3 105-30',NULL,NULL,'EPSG','4548','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',105.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9196','Vietnam TM-3 105-45',NULL,NULL,'EPSG','4549','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',105.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9197','Vietnam TM-3 106-00',NULL,NULL,'EPSG','4550','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',106.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9198','Vietnam TM-3 106-15',NULL,NULL,'EPSG','4552','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',106.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9199','Vietnam TM-3 106-30',NULL,NULL,'EPSG','4553','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',106.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9200','Vietnam TM-3 107-00',NULL,NULL,'EPSG','4554','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',107.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9201','Vietnam TM-3 107-15',NULL,NULL,'EPSG','4556','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',107.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9202','Vietnam TM-3 107-30',NULL,NULL,'EPSG','4557','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',107.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9203','Vietnam TM-3 108-15',NULL,NULL,'EPSG','4559','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',108.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9204','Vietnam TM-3 108-30',NULL,NULL,'EPSG','4560','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',108.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9219','South Africa Basic Survey Unit Albers 25E',NULL,NULL,'EPSG','4567','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',-30.0,'EPSG','9102','EPSG','8822','Longitude of false origin',25.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-22.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-38.0,'EPSG','9102','EPSG','8826','Easting at false origin',1400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9220','South Africa Basic Survey Unit Albers 44E',NULL,NULL,'EPSG','4568','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',-42.0,'EPSG','9102','EPSG','8822','Longitude of false origin',44.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-34.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-50.0,'EPSG','9102','EPSG','8826','Easting at false origin',1200000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9268','Austria West',NULL,NULL,'EPSG','1706','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',10.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9269','Austria Central',NULL,NULL,'EPSG','1707','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',13.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','9270','Austria East',NULL,NULL,'EPSG','1708','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',16.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10101','Alabama CS27 East zone',NULL,NULL,'EPSG','2154','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10102','Alabama CS27 West zone',NULL,NULL,'EPSG','2155','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10131','SPCS83 Alabama East zone (meters)',NULL,NULL,'EPSG','2154','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99996,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10132','SPCS83 Alabama West zone (meters)',NULL,NULL,'EPSG','2155','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10201','Arizona Coordinate System East zone',NULL,NULL,'EPSG','2167','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-110.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10202','Arizona Coordinate System Central zone',NULL,NULL,'EPSG','2166','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-111.55,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10203','Arizona Coordinate System West zone',NULL,NULL,'EPSG','2168','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-113.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10231','SPCS83 Arizona East zone (meters)',NULL,NULL,'EPSG','2167','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-110.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',213360.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10232','SPCS83 Arizona Central zone (meters)',NULL,NULL,'EPSG','2166','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-111.55,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',213360.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10233','SPCS83 Arizona West zone (meters)',NULL,NULL,'EPSG','2168','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-113.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',213360.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10301','Arkansas CS27 North',NULL,NULL,'EPSG','2169','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.14,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.56,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10302','Arkansas CS27 South',NULL,NULL,'EPSG','2170','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',34.46,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',33.18,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10331','SPCS83 Arkansas North zone (meters)',NULL,NULL,'EPSG','2169','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.14,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.56,'EPSG','9110','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10332','SPCS83 Arkansas South zone (meters)',NULL,NULL,'EPSG','2170','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',34.46,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',33.18,'EPSG','9110','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10401','California CS27 zone I',NULL,NULL,'EPSG','2175','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.0,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10402','California CS27 zone II',NULL,NULL,'EPSG','2176','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.2,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10403','California CS27 zone III',NULL,NULL,'EPSG','2177','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.04,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10404','California CS27 zone IV',NULL,NULL,'EPSG','2178','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-119.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.0,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10405','California CS27 zone V',NULL,NULL,'EPSG','2179','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-118.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',35.28,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.02,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10406','California CS27 zone VI',NULL,NULL,'EPSG','2180','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-116.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',33.53,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',32.47,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10407','California CS27 zone VII',NULL,NULL,'EPSG','2181','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.08,'EPSG','9110','EPSG','8822','Longitude of false origin',-118.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',34.25,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',33.52,'EPSG','9110','EPSG','8826','Easting at false origin',4186692.58,'EPSG','9003','EPSG','8827','Northing at false origin',416926.74,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','10408','California CS27 zone VII',NULL,NULL,'EPSG','2181','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.08,'EPSG','9110','EPSG','8822','Longitude of false origin',-118.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',34.25,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',33.52,'EPSG','9110','EPSG','8826','Easting at false origin',4186692.58,'EPSG','9003','EPSG','8827','Northing at false origin',4160926.74,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10420','California Albers',NULL,NULL,'EPSG','1375','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.5,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',-4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10431','SPCS83 California zone 1 (meters)',NULL,NULL,'EPSG','2175','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.0,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10432','SPCS83 California zone 2 (meters)',NULL,NULL,'EPSG','2176','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.2,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10433','SPCS83 California zone 3 (meters)',NULL,NULL,'EPSG','2177','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.04,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10434','SPCS83 California zone 4 (meters)',NULL,NULL,'EPSG','2178','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-119.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.0,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10435','SPCS83 California zone 5 (meters)',NULL,NULL,'EPSG','2182','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-118.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',35.28,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.02,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10436','SPCS83 California zone 6 (meters)',NULL,NULL,'EPSG','2180','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-116.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',33.53,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',32.47,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10501','Colorado CS27 North zone',NULL,NULL,'EPSG','2184','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-105.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.43,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.47,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10502','Colorado CS27 Central zone',NULL,NULL,'EPSG','2183','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-105.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.45,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.27,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10503','Colorado CS27 South zone',NULL,NULL,'EPSG','2185','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-105.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.14,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10531','SPCS83 Colorado North zone (meters)',NULL,NULL,'EPSG','2184','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-105.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.43,'EPSG','9110','EPSG','8826','Easting at false origin',914401.8289,'EPSG','9001','EPSG','8827','Northing at false origin',304800.6096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10532','SPCS83 Colorado Central zone (meters)',NULL,NULL,'EPSG','2183','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-105.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.45,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.27,'EPSG','9110','EPSG','8826','Easting at false origin',914401.8289,'EPSG','9001','EPSG','8827','Northing at false origin',304800.6096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10533','SPCS83 Colorado South zone (meters)',NULL,NULL,'EPSG','2185','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-105.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.14,'EPSG','9110','EPSG','8826','Easting at false origin',914401.8289,'EPSG','9001','EPSG','8827','Northing at false origin',304800.6096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10600','Connecticut CS27',NULL,NULL,'EPSG','1377','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-72.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.52,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.12,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10630','SPCS83 Connecticut zone (meters)',NULL,NULL,'EPSG','1377','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-72.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.52,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.12,'EPSG','9110','EPSG','8826','Easting at false origin',304800.6096,'EPSG','9001','EPSG','8827','Northing at false origin',152400.3048,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10700','Delaware CS27',NULL,NULL,'EPSG','1378','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10730','SPCS83 Delaware zone (meters)',NULL,NULL,'EPSG','1378','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10901','Florida CS27 East zone',NULL,NULL,'EPSG','2186','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10902','Florida CS27 West zone',NULL,NULL,'EPSG','2188','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-82.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10903','Florida CS27 North zone',NULL,NULL,'EPSG','2187','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',30.45,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',29.35,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10931','SPCS83 Florida East zone (meters)',NULL,NULL,'EPSG','2186','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10932','SPCS83 Florida West zone (meters)',NULL,NULL,'EPSG','2188','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-82.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10933','SPCS83 Florida North zone (meters)',NULL,NULL,'EPSG','2187','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',30.45,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',29.35,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','10934','Florida GDL Albers (meters)',NULL,NULL,'EPSG','1379','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',24.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',24.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',31.3,'EPSG','9110','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11001','Georgia CS27 East zone',NULL,NULL,'EPSG','2189','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-82.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11002','Georgia CS27 West zone',NULL,NULL,'EPSG','2190','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-84.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11031','SPCS83 Georgia East zone (meters)',NULL,NULL,'EPSG','2189','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-82.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11032','SPCS83 Georgia West zone (meters)',NULL,NULL,'EPSG','2190','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-84.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11101','Idaho CS27 East zone',NULL,NULL,'EPSG','2192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-112.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999947368,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11102','Idaho CS27 Central zone',NULL,NULL,'EPSG','2191','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-114.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999947368,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11103','Idaho CS27 West zone',NULL,NULL,'EPSG','2193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-115.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11131','SPCS83 Idaho East zone (meters)',NULL,NULL,'EPSG','2192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-112.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999947368,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11132','SPCS83 Idaho Central zone (meters)',NULL,NULL,'EPSG','2191','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-114.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999947368,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11133','SPCS83 Idaho West zone (meters)',NULL,NULL,'EPSG','2193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-115.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11201','Illinois CS27 East zone',NULL,NULL,'EPSG','2194','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999975,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11202','Illinois CS27 West zone',NULL,NULL,'EPSG','2195','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11231','SPCS83 Illinois East zone (meters)',NULL,NULL,'EPSG','2194','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999975,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11232','SPCS83 Illinois West zone (meters)',NULL,NULL,'EPSG','2195','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11301','Indiana CS27 East zone',NULL,NULL,'EPSG','2196','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11302','Indiana CS27 West zone',NULL,NULL,'EPSG','2197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11331','SPCS83 Indiana East zone (meters)',NULL,NULL,'EPSG','2196','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',250000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11332','SPCS83 Indiana West zone (meters)',NULL,NULL,'EPSG','2197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',900000.0,'EPSG','9001','EPSG','8807','False northing',250000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11401','Iowa CS27 North zone',NULL,NULL,'EPSG','2198','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-93.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',43.16,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.04,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11402','Iowa CS27 South zone',NULL,NULL,'EPSG','2199','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-93.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.37,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11431','SPCS83 Iowa North zone (meters)',NULL,NULL,'EPSG','2198','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-93.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',43.16,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.04,'EPSG','9110','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11432','SPCS83 Iowa South zone (meters)',NULL,NULL,'EPSG','2199','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-93.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.37,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11501','Kansas CS27 North zone',NULL,NULL,'EPSG','2200','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.43,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11502','Kansas CS27 South zone',NULL,NULL,'EPSG','2201','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.34,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.16,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11531','SPCS83 Kansas North zone (meters)',NULL,NULL,'EPSG','2200','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.43,'EPSG','9110','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11532','SPCS83 Kansas South zone (meters)',NULL,NULL,'EPSG','2201','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.34,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.16,'EPSG','9110','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11601','Kentucky CS27 North zone',NULL,NULL,'EPSG','2202','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.58,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11602','Kentucky CS27 South zone',NULL,NULL,'EPSG','2203','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-85.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.44,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.56,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11630','SPCS83 Kentucky Single Zone (meters)',NULL,NULL,'EPSG','1386','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-85.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.05,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.4,'EPSG','9110','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11631','Kentucky CS83 North zone',NULL,NULL,'EPSG','2202','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.58,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','11632','SPCS83 Kentucky South zone (meters)',NULL,NULL,'EPSG','2203','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-85.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.56,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.44,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11701','Louisiana CS27 North zone',NULL,NULL,'EPSG','2204','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',30.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-92.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',31.1,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',32.4,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11702','Louisiana CS27 South zone',NULL,NULL,'EPSG','2205','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',28.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-91.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',29.18,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',30.42,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11703','Louisiana CS27 Offshore zone',NULL,NULL,'EPSG','1387','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-91.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',27.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',26.1,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11731','SPCS83 Louisiana North zone (meters)',NULL,NULL,'EPSG','2204','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',30.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-92.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',32.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',31.1,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11732','SPCS83 Louisiana South zone (meters)',NULL,NULL,'EPSG','2529','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',28.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-91.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',30.42,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',29.18,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11733','SPCS83 Louisiana Offshore zone (meters)',NULL,NULL,'EPSG','1387','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-91.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',27.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',26.1,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11801','Maine CS27 East zone',NULL,NULL,'EPSG','2206','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-68.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11802','Maine CS27 West zone',NULL,NULL,'EPSG','2207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-70.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11831','SPCS83 Maine East zone (meters)',NULL,NULL,'EPSG','2206','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-68.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11832','SPCS83 Maine West zone (meters)',NULL,NULL,'EPSG','2207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-70.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',900000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11833','SPCS83 Maine East zone (US Survey feet)',NULL,NULL,'EPSG','2206','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-68.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11834','SPCS83 Maine West zone (US Survey feet)',NULL,NULL,'EPSG','2207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-70.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',2952750.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11851','Maine CS2000 East zone (meters)',NULL,NULL,'EPSG','2960','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-67.523,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11852','Maine CS2000 Central zone',NULL,NULL,'EPSG','2959','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-69.073,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','11853','Maine CS2000 West zone (meters)',NULL,NULL,'EPSG','2958','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-70.223,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11854','Maine CS2000 Central zone (meters)',NULL,NULL,'EPSG','2959','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-69.073,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11900','Maryland CS27',NULL,NULL,'EPSG','1389','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-77.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.18,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.27,'EPSG','9110','EPSG','8826','Easting at false origin',800000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','11930','SPCS83 Maryland zone (meters)',NULL,NULL,'EPSG','1389','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-77.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.27,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.18,'EPSG','9110','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12001','Massachusetts CS27 Mainland zone',NULL,NULL,'EPSG','2209','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-71.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.43,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.41,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12002','Massachusetts CS27 Island zone',NULL,NULL,'EPSG','2208','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-70.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.17,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.29,'EPSG','9110','EPSG','8826','Easting at false origin',200000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12031','SPCS83 Massachusetts Mainland zone (meters)',NULL,NULL,'EPSG','2209','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-71.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',42.41,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.43,'EPSG','9110','EPSG','8826','Easting at false origin',200000.0,'EPSG','9001','EPSG','8827','Northing at false origin',750000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12032','SPCS83 Massachusetts Island zone (meters)',NULL,NULL,'EPSG','2208','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-70.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.29,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.17,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12101','Michigan State Plane East zone',NULL,NULL,'EPSG','1720','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-83.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999942857,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12102','Michigan State Plane Old Central zone',NULL,NULL,'EPSG','1721','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999909091,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12103','Michigan State Plane West zone',NULL,NULL,'EPSG','3652','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999909091,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12111','Michigan CS27 North zone',NULL,NULL,'EPSG','1723','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.47,'EPSG','9110','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.29,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.05,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','12112','Michigan CS27 Central zone',NULL,NULL,'EPSG','1724','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.19,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.11,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.42,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','12113','Michigan CS27 South zone',NULL,NULL,'EPSG','1725','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',42.06,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',43.4,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','12141','SPCS83 Michigan North zone (meters)',NULL,NULL,'EPSG','1723','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.47,'EPSG','9110','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.05,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.29,'EPSG','9110','EPSG','8826','Easting at false origin',8000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12142','SPCS83 Michigan Central zone (meters)',NULL,NULL,'EPSG','1724','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.19,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.22,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.42,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.11,'EPSG','9110','EPSG','8826','Easting at false origin',6000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12143','SPCS83 Michigan South zone (meters)',NULL,NULL,'EPSG','1725','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.22,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',43.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.06,'EPSG','9110','EPSG','8826','Easting at false origin',4000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12150','Michigan Oblique Mercator (meters)',NULL,NULL,'EPSG','1391','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',45.1833,'EPSG','9110','EPSG','8812','Longitude of projection centre',-86.0,'EPSG','9110','EPSG','8813','Azimuth of initial line',337.25556,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',337.25556,'EPSG','9102','EPSG','8815','Scale factor on initial line',0.9996,'EPSG','9201','EPSG','8806','False easting',2546731.496,'EPSG','9001','EPSG','8807','False northing',-4354009.816,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','12201','Minnesota CS27 North zone',NULL,NULL,'EPSG','2214','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-93.06,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.02,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',48.38,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12202','Minnesota CS27 Central zone',NULL,NULL,'EPSG','2213','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-94.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.37,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.03,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12203','Minnesota CS27 South zone',NULL,NULL,'EPSG','2215','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-94.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',43.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.13,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12231','SPCS83 Minnesota North zone (meters)',NULL,NULL,'EPSG','2214','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-93.06,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',48.38,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.02,'EPSG','9110','EPSG','8826','Easting at false origin',800000.0,'EPSG','9001','EPSG','8827','Northing at false origin',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12232','SPCS83 Minnesota Central zone (meters)',NULL,NULL,'EPSG','2213','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-94.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.03,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.37,'EPSG','9110','EPSG','8826','Easting at false origin',800000.0,'EPSG','9001','EPSG','8827','Northing at false origin',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12233','SPCS83 Minnesota South zone (meters)',NULL,NULL,'EPSG','2215','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-94.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.13,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',43.47,'EPSG','9110','EPSG','8826','Easting at false origin',800000.0,'EPSG','9001','EPSG','8827','Northing at false origin',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12234','SPCS83 Minnesota North zone (US Survey feet)',NULL,NULL,'EPSG','2214','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-93.06,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',48.38,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.02,'EPSG','9110','EPSG','8826','Easting at false origin',2624666.6667,'EPSG','9003','EPSG','8827','Northing at false origin',328083.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12235','SPCS83 Minnesota Central zone (US Survey feet)',NULL,NULL,'EPSG','2213','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-94.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.03,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.37,'EPSG','9110','EPSG','8826','Easting at false origin',2624666.6667,'EPSG','9003','EPSG','8827','Northing at false origin',328083.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12236','SPCS83 Minnesota South zone (US Survey feet)',NULL,NULL,'EPSG','2215','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-94.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.13,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',43.47,'EPSG','9110','EPSG','8826','Easting at false origin',2624666.6667,'EPSG','9003','EPSG','8827','Northing at false origin',328083.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12301','Mississippi CS27 East zone',NULL,NULL,'EPSG','2216','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12302','Mississippi CS27 West zone',NULL,NULL,'EPSG','2217','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12331','SPCS83 Mississippi East zone (meters)',NULL,NULL,'EPSG','2216','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12332','SPCS83 Mississippi West zone (meters)',NULL,NULL,'EPSG','2217','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12401','Missouri CS27 East zone',NULL,NULL,'EPSG','2219','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',35.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12402','Missouri CS27 Central zone',NULL,NULL,'EPSG','2218','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',35.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12403','Missouri CS27 West zone',NULL,NULL,'EPSG','2220','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-94.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12431','SPCS83 Missouri East zone (meters)',NULL,NULL,'EPSG','2219','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',35.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12432','SPCS83 Missouri Central zone (meters)',NULL,NULL,'EPSG','2218','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',35.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-92.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12433','SPCS83 Missouri West zone (meters)',NULL,NULL,'EPSG','2220','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-94.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',850000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12501','Montana CS27 North zone',NULL,NULL,'EPSG','2211','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-109.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',48.43,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.51,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12502','Montana CS27 Central zone',NULL,NULL,'EPSG','2210','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-109.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.53,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',46.27,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12503','Montana CS27 South zone',NULL,NULL,'EPSG','2212','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-109.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',46.24,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.52,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12530','SPCS83 Montana zone (meters)',NULL,NULL,'EPSG','1395','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.15,'EPSG','9110','EPSG','8822','Longitude of false origin',-109.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',49.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.0,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12601','Nebraska CS27 North zone',NULL,NULL,'EPSG','2221','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.51,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.49,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12602','Nebraska CS27 South zone',NULL,NULL,'EPSG','2222','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-99.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.17,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.43,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12630','SPCS83 Nebraska zone (meters)',NULL,NULL,'EPSG','1396','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',43.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.0,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12701','Nevada CS27 East zone',NULL,NULL,'EPSG','2224','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-115.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12702','Nevada CS27 Central zone',NULL,NULL,'EPSG','2223','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-116.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12703','Nevada CS27 West zone',NULL,NULL,'EPSG','2225','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-118.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12731','SPCS83 Nevada East zone (meters)',NULL,NULL,'EPSG','2224','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-115.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',8000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12732','SPCS83 Nevada Central zone (meters)',NULL,NULL,'EPSG','2223','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-116.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',6000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12733','SPCS83 Nevada West zone (meters)',NULL,NULL,'EPSG','2225','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-118.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12800','New Hampshire CS27',NULL,NULL,'EPSG','1398','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12830','SPCS83 New Hampshire zone (meters)',NULL,NULL,'EPSG','1398','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12900','New Jersey CS27',NULL,NULL,'EPSG','1399','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999975,'EPSG','9201','EPSG','8806','False easting',2000000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','12930','SPCS83 New Jersey zone (meters)',NULL,NULL,'EPSG','1399','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13001','New Mexico CS27 East zone',NULL,NULL,'EPSG','2228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-104.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999909091,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13002','New Mexico CS27 Central zone',NULL,NULL,'EPSG','2229','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-106.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13003','New Mexico CS27 West zone',NULL,NULL,'EPSG','2230','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-107.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999916667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13031','SPCS83 New Mexico East zone (meters)',NULL,NULL,'EPSG','2228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-104.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999909091,'EPSG','9201','EPSG','8806','False easting',165000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13032','SPCS83 New Mexico Central zone (meters)',NULL,NULL,'EPSG','2231','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-106.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13033','SPCS83 New Mexico West zone (meters)',NULL,NULL,'EPSG','2232','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-107.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999916667,'EPSG','9201','EPSG','8806','False easting',830000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13101','New York CS27 East zone',NULL,NULL,'EPSG','2234','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13102','New York CS27 Central zone',NULL,NULL,'EPSG','2233','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-76.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13103','New York CS27 West zone',NULL,NULL,'EPSG','2236','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-78.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13104','New York CS27 Long Island zone',NULL,NULL,'EPSG','2235','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-74.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.02,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.4,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','13131','SPCS83 New York East zone (meters)',NULL,NULL,'EPSG','2234','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13132','SPCS83 New York Central zone (meters)',NULL,NULL,'EPSG','2233','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-76.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13133','SPCS83 New York West zone (meters)',NULL,NULL,'EPSG','2236','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-78.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',350000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13134','SPCS83 New York Long Island zone (meters)',NULL,NULL,'EPSG','2235','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-74.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.02,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.4,'EPSG','9110','EPSG','8826','Easting at false origin',300000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13200','North Carolina CS27',NULL,NULL,'EPSG','1402','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.45,'EPSG','9110','EPSG','8822','Longitude of false origin',-79.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',34.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.1,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13230','SPCS83 North Carolina zone (meters)',NULL,NULL,'EPSG','1402','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.45,'EPSG','9110','EPSG','8822','Longitude of false origin',-79.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.1,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.2,'EPSG','9110','EPSG','8826','Easting at false origin',609601.22,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13301','North Dakota CS27 North zone',NULL,NULL,'EPSG','2237','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',48.44,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13302','North Dakota CS27 South zone',NULL,NULL,'EPSG','2238','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',46.11,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.29,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13331','SPCS83 North Dakota North zone (meters)',NULL,NULL,'EPSG','2237','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',48.44,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.26,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13332','SPCS83 North Dakota South zone (meters)',NULL,NULL,'EPSG','2238','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.29,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',46.11,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13401','Ohio CS27 North zone',NULL,NULL,'EPSG','2239','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-82.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.42,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13402','Ohio CS27 South zone',NULL,NULL,'EPSG','2240','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-82.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.44,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.02,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13431','SPCS83 Ohio North zone (meters)',NULL,NULL,'EPSG','2239','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-82.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.42,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.26,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13432','SPCS83 Ohio South zone (meters)',NULL,NULL,'EPSG','2240','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-82.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.02,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.44,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13433','SPCS83 Ohio North zone (US Survey feet)',NULL,NULL,'EPSG','2239','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-82.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.42,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.26,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13434','SPCS83 Ohio South zone (US Survey feet)',NULL,NULL,'EPSG','2240','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-82.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.02,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.44,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13501','Oklahoma CS27 North zone',NULL,NULL,'EPSG','2241','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',35.34,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.46,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13502','Oklahoma CS27 South zone',NULL,NULL,'EPSG','2242','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',33.56,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',35.14,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13531','SPCS83 Oklahoma North zone (meters)',NULL,NULL,'EPSG','2241','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.46,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',35.34,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13532','SPCS83 Oklahoma South zone (meters)',NULL,NULL,'EPSG','2242','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',35.14,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',33.56,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13601','Oregon CS27 North zone',NULL,NULL,'EPSG','2243','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',46.0,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13602','Oregon CS27 South zone',NULL,NULL,'EPSG','2244','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',42.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.0,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13631','SPCS83 Oregon North zone (meters)',NULL,NULL,'EPSG','2243','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',46.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.2,'EPSG','9110','EPSG','8826','Easting at false origin',2500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13632','SPCS83 Oregon South zone (meters)',NULL,NULL,'EPSG','2244','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.2,'EPSG','9110','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13633','Oregon Lambert (meters)',NULL,NULL,'EPSG','1406','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.45,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',43.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.3,'EPSG','9110','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13701','Pennsylvania CS27 North zone',NULL,NULL,'EPSG','2245','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-77.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.53,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.57,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13702','Pennsylvania CS27 South zone',NULL,NULL,'EPSG','2246','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-77.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.56,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.48,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','13731','SPCS83 Pennsylvania North zone (meters)',NULL,NULL,'EPSG','2245','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-77.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.57,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.53,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13732','SPCS83 Pennsylvania South zone (meters)',NULL,NULL,'EPSG','2246','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-77.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.56,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13800','Rhode Island CS27',NULL,NULL,'EPSG','1408','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999938,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13830','SPCS83 Rhode Island zone (meters)',NULL,NULL,'EPSG','1408','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999375,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13901','South Carolina CS27 North zone',NULL,NULL,'EPSG','2247','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',33.46,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.58,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13902','South Carolina CS27 South zone',NULL,NULL,'EPSG','2248','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',32.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',33.4,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','13930','SPCS83 South Carolina zone (meters)',NULL,NULL,'EPSG','1409','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',34.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',32.3,'EPSG','9110','EPSG','8826','Easting at false origin',609600.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14001','South Dakota CS27 North zone',NULL,NULL,'EPSG','2249','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.25,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.41,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14002','South Dakota CS27 South zone',NULL,NULL,'EPSG','2250','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',42.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.24,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14031','SPCS83 South Dakota North zone (meters)',NULL,NULL,'EPSG','2249','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.41,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.25,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14032','SPCS83 South Dakota South zone (meters)',NULL,NULL,'EPSG','2250','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.24,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.5,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14100','Tennessee CS27',NULL,NULL,'EPSG','1411','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-86.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',35.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.25,'EPSG','9110','EPSG','8826','Easting at false origin',100000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','14130','SPCS83 Tennessee zone (meters)',NULL,NULL,'EPSG','1411','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-86.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.25,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',35.15,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14201','Texas CS27 North zone',NULL,NULL,'EPSG','2253','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-101.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',34.39,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.11,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14202','Texas CS27 North Central zone',NULL,NULL,'EPSG','2254','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-97.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',32.08,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',33.58,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14203','Texas CS27 Central zone',NULL,NULL,'EPSG','2252','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',30.07,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',31.53,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14204','Texas CS27 South Central zone',NULL,NULL,'EPSG','2256','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',27.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-99.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',28.23,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',30.17,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14205','Texas CS27 South zone',NULL,NULL,'EPSG','2255','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',26.1,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',27.5,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14231','SPCS83 Texas North zone (meters)',NULL,NULL,'EPSG','2253','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-101.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.11,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.39,'EPSG','9110','EPSG','8826','Easting at false origin',200000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14232','SPCS83 Texas North Central zone (meters)',NULL,NULL,'EPSG','2254','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',33.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',32.08,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14233','SPCS83 Texas Central zone (meters)',NULL,NULL,'EPSG','2252','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',31.53,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',30.07,'EPSG','9110','EPSG','8826','Easting at false origin',700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14234','SPCS83 Texas South Central zone (meters)',NULL,NULL,'EPSG','2527','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',27.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-99.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',30.17,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',28.23,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14235','SPCS83 Texas South zone (meters)',NULL,NULL,'EPSG','2528','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',27.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',26.1,'EPSG','9110','EPSG','8826','Easting at false origin',300000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14251','Texas State Mapping System (meters)',NULL,NULL,'EPSG','1412','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',27.25,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.55,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14252','Shackleford',NULL,NULL,'EPSG','1412','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',27.25,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.55,'EPSG','9110','EPSG','8826','Easting at false origin',3000000.0,'EPSG','9002','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14253','Texas Centric Lambert Conformal',NULL,NULL,'EPSG','1412','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',18.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',27.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',35.0,'EPSG','9110','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14254','Texas Centric Albers Equal Area',NULL,NULL,'EPSG','1412','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',18.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',27.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',35.0,'EPSG','9110','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14301','Utah CS27 North zone',NULL,NULL,'EPSG','2258','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.43,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.47,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14302','Utah CS27 Central zone',NULL,NULL,'EPSG','2257','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.01,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.39,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14303','Utah CS27 South zone',NULL,NULL,'EPSG','2259','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.13,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.21,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14331','SPCS83 Utah North zone (meters)',NULL,NULL,'EPSG','2258','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.43,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14332','SPCS83 Utah Central zone (meters)',NULL,NULL,'EPSG','2257','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.39,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.01,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14333','SPCS83 Utah South zone (meters)',NULL,NULL,'EPSG','2259','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.21,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.13,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14400','Vermont CS27',NULL,NULL,'EPSG','1414','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-72.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999964286,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14430','SPCS83 Vermont zone (meters)',NULL,NULL,'EPSG','1414','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-72.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999964286,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14501','Virginia CS27 North zone',NULL,NULL,'EPSG','2260','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-78.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.02,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.12,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14502','Virginia CS27 South zone',NULL,NULL,'EPSG','2261','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-78.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.46,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.58,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14531','SPCS83 Virginia North zone (meters)',NULL,NULL,'EPSG','2260','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-78.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.12,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.02,'EPSG','9110','EPSG','8826','Easting at false origin',3500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14532','SPCS83 Virginia South zone (meters)',NULL,NULL,'EPSG','2261','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-78.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.46,'EPSG','9110','EPSG','8826','Easting at false origin',3500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14601','Washington CS27 North zone',NULL,NULL,'EPSG','2262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',48.44,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14602','Washington CS27 South zone',NULL,NULL,'EPSG','2263','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.2,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14631','SPCS83 Washington North zone (meters)',NULL,NULL,'EPSG','2273','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',48.44,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.3,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14632','SPCS83 Washington South zone (meters)',NULL,NULL,'EPSG','2274','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.5,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14701','West Virginia CS27 North zone',NULL,NULL,'EPSG','2264','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-79.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.15,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14702','West Virginia CS27 South zone',NULL,NULL,'EPSG','2265','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.29,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.53,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14731','SPCS83 West Virginia North zone (meters)',NULL,NULL,'EPSG','2264','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-79.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.0,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14732','SPCS83 West Virginia South zone (meters)',NULL,NULL,'EPSG','2265','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.53,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.29,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14733','SPCS83 West Virginia North zone (US Survey feet)',NULL,NULL,'EPSG','2264','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-79.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.0,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','14734','SPCS83 West Virginia South zone (US Survey feet)',NULL,NULL,'EPSG','2265','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.53,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.29,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','14735','SPCS83 West Virginia North zone (US Survey feet)',NULL,NULL,'EPSG','2264','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-79.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.0,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14736','SPCS83 West Virginia South zone (US Survey feet)',NULL,NULL,'EPSG','2265','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.53,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.29,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14801','Wisconsin CS27 North zone',NULL,NULL,'EPSG','2267','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.34,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',46.46,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14802','Wisconsin CS27 Central zone',NULL,NULL,'EPSG','2266','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.3,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14803','Wisconsin CS27 South zone',NULL,NULL,'EPSG','2268','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',42.44,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.04,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14811','Wisconsin Transverse Mercator 27',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',-4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14831','SPCS83 Wisconsin North zone (meters)',NULL,NULL,'EPSG','2267','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',46.46,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.34,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14832','SPCS83 Wisconsin Central zone (meters)',NULL,NULL,'EPSG','2266','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.15,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14833','SPCS83 Wisconsin South zone (meters)',NULL,NULL,'EPSG','2268','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.04,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.44,'EPSG','9110','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14841','Wisconsin Transverse Mercator 83',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',520000.0,'EPSG','9001','EPSG','8807','False northing',-4480000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14901','Wyoming CS27 East zone',NULL,NULL,'EPSG','2269','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-105.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14902','Wyoming CS27 East Central zone',NULL,NULL,'EPSG','2270','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-107.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14903','Wyoming CS27 West Central zone',NULL,NULL,'EPSG','2272','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-108.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14904','Wyoming CS27 West zone',NULL,NULL,'EPSG','2271','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-110.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14931','SPCS83 Wyoming East zone (meters)',NULL,NULL,'EPSG','2269','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-105.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14932','SPCS83 Wyoming East Central zone (meters)',NULL,NULL,'EPSG','2270','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-107.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14933','SPCS83 Wyoming West Central zone (meters)',NULL,NULL,'EPSG','2272','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-108.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14934','SPCS83 Wyoming West zone (meters)',NULL,NULL,'EPSG','2271','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-110.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14935','SPCS83 Wyoming East zone (US Survey feet)',NULL,NULL,'EPSG','2269','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-105.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',656166.6667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14936','SPCS83 Wyoming East Central zone (US Survey feet)',NULL,NULL,'EPSG','2270','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-107.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',1312333.3333,'EPSG','9003','EPSG','8807','False northing',328083.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14937','SPCS83 Wyoming West Central zone (US Survey feet)',NULL,NULL,'EPSG','2272','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-108.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',1968500.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','14938','SPCS83 Wyoming West zone (US Survey feet)',NULL,NULL,'EPSG','2271','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-110.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',2624666.6667,'EPSG','9003','EPSG','8807','False northing',328083.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15001','Alaska CS27 zone 1',NULL,NULL,'EPSG','2156','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',57.0,'EPSG','9110','EPSG','8812','Longitude of projection centre',-133.4,'EPSG','9110','EPSG','8813','Azimuth of initial line',323.07483685,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',323.07483685,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.9999,'EPSG','9201','EPSG','8806','False easting',16404166.67,'EPSG','9003','EPSG','8807','False northing',-16404166.67,'EPSG','9003',0); INSERT INTO "conversion" VALUES('EPSG','15002','Alaska CS27 zone 2',NULL,NULL,'EPSG','2158','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-142.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15003','Alaska CS27 zone 3',NULL,NULL,'EPSG','2159','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-146.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15004','Alaska CS27 zone 4',NULL,NULL,'EPSG','2160','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-150.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15005','Alaska CS27 zone 5',NULL,NULL,'EPSG','2161','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-154.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15006','Alaska CS27 zone 6',NULL,NULL,'EPSG','2162','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-158.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15007','Alaska CS27 zone 7',NULL,NULL,'EPSG','2163','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-162.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15008','Alaska CS27 zone 8',NULL,NULL,'EPSG','2164','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-166.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15009','Alaska CS27 zone 9',NULL,NULL,'EPSG','2165','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-170.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15010','Alaska CS27 zone 10',NULL,NULL,'EPSG','2157','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',51.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-176.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',53.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',51.5,'EPSG','9110','EPSG','8826','Easting at false origin',3000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15020','Alaska Albers',NULL,NULL,'EPSG','1330','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',50.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-154.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',55.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',65.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15021','Alaska Albers (meters)',NULL,NULL,'EPSG','1330','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',50.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-154.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',55.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',65.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15031','SPCS83 Alaska zone 1 (meters)',NULL,NULL,'EPSG','2156','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',57.0,'EPSG','9110','EPSG','8812','Longitude of projection centre',-133.4,'EPSG','9110','EPSG','8813','Azimuth of initial line',323.07483685,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',323.07483685,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.9999,'EPSG','9201','EPSG','8806','False easting',5000000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','15032','SPCS83 Alaska zone 2 (meters)',NULL,NULL,'EPSG','2158','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-142.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15033','SPCS83 Alaska zone 3 (meters)',NULL,NULL,'EPSG','2159','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-146.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15034','SPCS83 Alaska zone 4 (meters)',NULL,NULL,'EPSG','2160','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-150.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15035','SPCS83 Alaska zone 5 (meters)',NULL,NULL,'EPSG','2161','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-154.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15036','SPCS83 Alaska zone 6 (meters)',NULL,NULL,'EPSG','2162','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-158.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15037','SPCS83 Alaska zone 7 (meters)',NULL,NULL,'EPSG','2163','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-162.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15038','SPCS83 Alaska zone 8 (meters)',NULL,NULL,'EPSG','2164','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-166.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15039','SPCS83 Alaska zone 9 (meters)',NULL,NULL,'EPSG','2165','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-170.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15040','SPCS83 Alaska zone 10 (meters)',NULL,NULL,'EPSG','2157','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',51.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-176.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',53.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',51.5,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15101','Hawaii CS27 zone 1',NULL,NULL,'EPSG','1546','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',18.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-155.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15102','Hawaii CS27 zone 2',NULL,NULL,'EPSG','1547','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',20.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-156.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15103','Hawaii CS27 zone 3',NULL,NULL,'EPSG','1548','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-158.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15104','Hawaii CS27 zone 4',NULL,NULL,'EPSG','1549','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-159.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15105','Hawaii CS27 zone 5',NULL,NULL,'EPSG','1550','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-160.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15131','SPCS83 Hawaii zone 1 (meters)',NULL,NULL,'EPSG','1546','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',18.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-155.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15132','SPCS83 Hawaii zone 2 (meters)',NULL,NULL,'EPSG','1547','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',20.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-156.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15133','SPCS83 Hawaii zone 3 (meters)',NULL,NULL,'EPSG','1548','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-158.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15134','SPCS83 Hawaii zone 4 (meters)',NULL,NULL,'EPSG','1549','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-159.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15135','SPCS83 Hawaii zone 5 (meters)',NULL,NULL,'EPSG','1550','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-160.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15138','SPCS83 Hawaii zone 3 (US Survey feet)',NULL,NULL,'EPSG','1548','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-158.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',1640416.6667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15201','Puerto Rico CS27',NULL,NULL,'EPSG','3294','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',17.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-66.26,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',18.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',18.02,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15202','St. Croix CS27',NULL,NULL,'EPSG','3330','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',17.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-66.26,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',18.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',18.02,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15230','SPCS83 Puerto Rico & Virgin Islands zone (meters)',NULL,NULL,'EPSG','3634','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',17.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-66.26,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',18.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',18.02,'EPSG','9110','EPSG','8826','Easting at false origin',200000.0,'EPSG','9001','EPSG','8827','Northing at false origin',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15297','SPCS83 Utah North zone (US Survey feet)',NULL,NULL,'EPSG','2258','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.43,'EPSG','9110','EPSG','8826','Easting at false origin',1640416.6667,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15298','SPCS83 Utah Central zone (US Survey feet)',NULL,NULL,'EPSG','2257','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.39,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.01,'EPSG','9110','EPSG','8826','Easting at false origin',1640416.6667,'EPSG','9003','EPSG','8827','Northing at false origin',6561666.6667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15299','SPCS83 Utah South zone (US Survey feet)',NULL,NULL,'EPSG','2259','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.21,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.13,'EPSG','9110','EPSG','8826','Easting at false origin',1640416.6667,'EPSG','9003','EPSG','8827','Northing at false origin',9842500.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15300','American Samoa Lambert',NULL,NULL,'EPSG','1027','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',-14.16,'EPSG','9110','EPSG','8802','Longitude of natural origin',170.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15301','American Samoa Lambert',NULL,NULL,'EPSG','1027','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',-14.16,'EPSG','9110','EPSG','8802','Longitude of natural origin',-170.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15302','Tennessee CS27',NULL,NULL,'EPSG','1411','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-86.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',35.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.25,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15303','SPCS83 Kentucky North zone (meters)',NULL,NULL,'EPSG','2202','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.58,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15304','SPCS83 Arizona East zone (International feet)',NULL,NULL,'EPSG','2167','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-110.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15305','SPCS83 Arizona Central zone (International feet)',NULL,NULL,'EPSG','2166','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-111.55,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15306','SPCS83 Arizona West zone (International feet)',NULL,NULL,'EPSG','2168','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-113.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15307','SPCS83 California zone 1 (US Survey feet)',NULL,NULL,'EPSG','2175','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.0,'EPSG','9110','EPSG','8826','Easting at false origin',6561666.667,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15308','SPCS83 California zone 2 (US Survey feet)',NULL,NULL,'EPSG','2176','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.2,'EPSG','9110','EPSG','8826','Easting at false origin',6561666.667,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15309','SPCS83 California zone 3 (US Survey feet)',NULL,NULL,'EPSG','2177','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.04,'EPSG','9110','EPSG','8826','Easting at false origin',6561666.667,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15310','SPCS83 California zone 4 (US Survey feet)',NULL,NULL,'EPSG','2178','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-119.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.0,'EPSG','9110','EPSG','8826','Easting at false origin',6561666.667,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15311','SPCS83 California zone 5 (US Survey feet)',NULL,NULL,'EPSG','2182','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-118.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',35.28,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.02,'EPSG','9110','EPSG','8826','Easting at false origin',6561666.667,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15312','SPCS83 California zone 6 (US Survey feet)',NULL,NULL,'EPSG','2180','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-116.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',33.53,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',32.47,'EPSG','9110','EPSG','8826','Easting at false origin',6561666.667,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15313','SPCS83 Colorado North zone (US Survey feet)',NULL,NULL,'EPSG','2184','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-105.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.43,'EPSG','9110','EPSG','8826','Easting at false origin',3000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15314','SPCS83 Colorado Central zone (US Survey feet)',NULL,NULL,'EPSG','2183','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-105.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.45,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.27,'EPSG','9110','EPSG','8826','Easting at false origin',3000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15315','SPCS83 Colorado South zone (US Survey feet)',NULL,NULL,'EPSG','2185','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-105.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.26,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.14,'EPSG','9110','EPSG','8826','Easting at false origin',3000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15316','SPCS83 Connecticut zone (US Survey feet)',NULL,NULL,'EPSG','1377','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-72.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.52,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.12,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',500000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15317','SPCS83 Delaware zone (US Survey feet)',NULL,NULL,'EPSG','1378','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-75.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',656166.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15318','SPCS83 Florida East zone (US Survey feet)',NULL,NULL,'EPSG','2186','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',656166.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15319','SPCS83 Florida West zone (US Survey feet)',NULL,NULL,'EPSG','2188','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.2,'EPSG','9110','EPSG','8802','Longitude of natural origin',-82.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',656166.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15320','SPCS83 Florida North zone (US Survey feet)',NULL,NULL,'EPSG','2187','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',30.45,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',29.35,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15321','SPCS83 Georgia East zone (US Survey feet)',NULL,NULL,'EPSG','2189','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-82.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',656166.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15322','SPCS83 Georgia West zone (US Survey feet)',NULL,NULL,'EPSG','2190','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-84.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',2296583.333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15323','SPCS83 Idaho East zone (US Survey feet)',NULL,NULL,'EPSG','2192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-112.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999947368,'EPSG','9201','EPSG','8806','False easting',656166.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15324','SPCS83 Idaho Central zone (US Survey feet)',NULL,NULL,'EPSG','2191','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-114.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999947368,'EPSG','9201','EPSG','8806','False easting',1640416.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15325','SPCS83 Idaho West zone (US Survey feet)',NULL,NULL,'EPSG','2193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-115.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999933333,'EPSG','9201','EPSG','8806','False easting',2624666.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15326','SPCS83 Indiana East zone (US Survey feet)',NULL,NULL,'EPSG','2196','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',328083.333,'EPSG','9003','EPSG','8807','False northing',818125.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15327','SPCS83 Indiana West zone (US Survey feet)',NULL,NULL,'EPSG','2197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',2952750.0,'EPSG','9003','EPSG','8807','False northing',818125.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15328','SPCS83 Kentucky North zone (US Survey feet)',NULL,NULL,'EPSG','2202','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.15,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.58,'EPSG','9110','EPSG','8826','Easting at false origin',1640416.667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15329','SPCS83 Kentucky South zone (US Survey feet)',NULL,NULL,'EPSG','2203','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-85.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.56,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.44,'EPSG','9110','EPSG','8826','Easting at false origin',1640416.667,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15330','SPCS83 Maryland zone (US Survey feet)',NULL,NULL,'EPSG','1389','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-77.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.27,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.18,'EPSG','9110','EPSG','8826','Easting at false origin',1312333.333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15331','SPCS83 Massachusetts Mainland zone (US Survey feet)',NULL,NULL,'EPSG','2209','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-71.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',42.41,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.43,'EPSG','9110','EPSG','8826','Easting at false origin',656166.667,'EPSG','9003','EPSG','8827','Northing at false origin',2460625.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15332','SPCS83 Massachusetts Island zone (US Survey feet)',NULL,NULL,'EPSG','2208','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-70.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.29,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',41.17,'EPSG','9110','EPSG','8826','Easting at false origin',1640416.667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15333','SPCS83 Michigan North zone (International feet)',NULL,NULL,'EPSG','1723','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.47,'EPSG','9110','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.05,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.29,'EPSG','9110','EPSG','8826','Easting at false origin',26246719.16,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15334','SPCS83 Michigan Central zone (International feet)',NULL,NULL,'EPSG','1724','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.19,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.22,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.42,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.11,'EPSG','9110','EPSG','8826','Easting at false origin',19685039.37,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15335','SPCS83 Michigan South zone (International feet)',NULL,NULL,'EPSG','1725','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-84.22,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',43.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.06,'EPSG','9110','EPSG','8826','Easting at false origin',13123359.58,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15336','SPCS83 Mississippi East zone (US Survey feet)',NULL,NULL,'EPSG','2216','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15337','SPCS83 Mississippi West zone (US Survey feet)',NULL,NULL,'EPSG','2217','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',2296583.333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15338','SPCS83 Montana zone (International feet)',NULL,NULL,'EPSG','1395','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.15,'EPSG','9110','EPSG','8822','Longitude of false origin',-109.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',49.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.0,'EPSG','9110','EPSG','8826','Easting at false origin',1968503.937,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15339','SPCS83 New Mexico East zone (US Survey feet)',NULL,NULL,'EPSG','2228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-104.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999909091,'EPSG','9201','EPSG','8806','False easting',541337.5,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15340','SPCS83 New Mexico Central zone (US Survey feet)',NULL,NULL,'EPSG','2231','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-106.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15341','SPCS83 New Mexico West zone (US Survey feet)',NULL,NULL,'EPSG','2232','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-107.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999916667,'EPSG','9201','EPSG','8806','False easting',2723091.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15342','SPCS83 New York East zone (US Survey feet)',NULL,NULL,'EPSG','2234','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',492125.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15343','SPCS83 New York Central zone (US Survey feet)',NULL,NULL,'EPSG','2233','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-76.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',820208.333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15344','SPCS83 New York West zone (US Survey feet)',NULL,NULL,'EPSG','2236','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-78.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',1148291.667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15345','SPCS83 New York Long Island zone (US Survey feet)',NULL,NULL,'EPSG','2235','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-74.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.02,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.4,'EPSG','9110','EPSG','8826','Easting at false origin',984250.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15346','SPCS83 North Carolina zone (US Survey feet)',NULL,NULL,'EPSG','1402','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.45,'EPSG','9110','EPSG','8822','Longitude of false origin',-79.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.1,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.2,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15347','SPCS83 North Dakota North zone (International feet)',NULL,NULL,'EPSG','2237','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',48.44,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.26,'EPSG','9110','EPSG','8826','Easting at false origin',1968503.937,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15348','SPCS83 North Dakota South zone (International feet)',NULL,NULL,'EPSG','2238','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.29,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',46.11,'EPSG','9110','EPSG','8826','Easting at false origin',1968503.937,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15349','SPCS83 Oklahoma North zone (US Survey feet)',NULL,NULL,'EPSG','2241','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.46,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',35.34,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15350','SPCS83 Oklahoma South zone (US Survey feet)',NULL,NULL,'EPSG','2242','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',35.14,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',33.56,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15351','SPCS83 Oregon North zone (International feet)',NULL,NULL,'EPSG','2243','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',46.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.2,'EPSG','9110','EPSG','8826','Easting at false origin',8202099.738,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15352','SPCS83 Oregon South zone (International feet)',NULL,NULL,'EPSG','2244','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.2,'EPSG','9110','EPSG','8826','Easting at false origin',4921259.843,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15353','SPCS83 Pennsylvania North zone (US Survey feet)',NULL,NULL,'EPSG','2245','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-77.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.57,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.53,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15354','SPCS83 Pennsylvania South zone (US Survey feet)',NULL,NULL,'EPSG','2246','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-77.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.56,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15355','SPCS83 South Carolina zone (International feet)',NULL,NULL,'EPSG','1409','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',34.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',32.3,'EPSG','9110','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15356','SPCS83 Tennessee zone (US Survey feet)',NULL,NULL,'EPSG','1411','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-86.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.25,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',35.15,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15357','SPCS83 Texas North zone (US Survey feet)',NULL,NULL,'EPSG','2253','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-101.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.11,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.39,'EPSG','9110','EPSG','8826','Easting at false origin',656166.667,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15358','SPCS83 Texas North Central zone (US Survey feet)',NULL,NULL,'EPSG','2254','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',33.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',32.08,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',6561666.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15359','SPCS83 Texas Central zone (US Survey feet)',NULL,NULL,'EPSG','2252','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',31.53,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',30.07,'EPSG','9110','EPSG','8826','Easting at false origin',2296583.333,'EPSG','9003','EPSG','8827','Northing at false origin',9842500.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15360','SPCS83 Texas South Central zone (US Survey feet)',NULL,NULL,'EPSG','2527','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',27.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-99.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',30.17,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',28.23,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',13123333.333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15361','SPCS83 Texas South zone (US Survey feet)',NULL,NULL,'EPSG','2528','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',27.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',26.1,'EPSG','9110','EPSG','8826','Easting at false origin',984250.0,'EPSG','9003','EPSG','8827','Northing at false origin',16404166.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15362','SPCS83 Utah North zone (International feet)',NULL,NULL,'EPSG','2258','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.43,'EPSG','9110','EPSG','8826','Easting at false origin',1640419.948,'EPSG','9002','EPSG','8827','Northing at false origin',3280839.895,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15363','SPCS83 Utah Central zone (International feet)',NULL,NULL,'EPSG','2257','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',40.39,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',39.01,'EPSG','9110','EPSG','8826','Easting at false origin',1640419.948,'EPSG','9002','EPSG','8827','Northing at false origin',6561679.79,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15364','SPCS83 Utah South zone (International feet)',NULL,NULL,'EPSG','2259','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-111.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.21,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.13,'EPSG','9110','EPSG','8826','Easting at false origin',1640419.948,'EPSG','9002','EPSG','8827','Northing at false origin',9842519.685,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15365','SPCS83 Virginia North zone (US Survey feet)',NULL,NULL,'EPSG','2260','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-78.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.12,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.02,'EPSG','9110','EPSG','8826','Easting at false origin',11482916.667,'EPSG','9003','EPSG','8827','Northing at false origin',6561666.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15366','SPCS83 Virginia South zone (US Survey feet)',NULL,NULL,'EPSG','2261','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-78.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.58,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',36.46,'EPSG','9110','EPSG','8826','Easting at false origin',11482916.667,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15367','SPCS83 Washington North zone (US Survey feet)',NULL,NULL,'EPSG','2273','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',48.44,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',47.3,'EPSG','9110','EPSG','8826','Easting at false origin',1640416.667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15368','SPCS83 Washington South zone (US Survey feet)',NULL,NULL,'EPSG','2274','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',47.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.5,'EPSG','9110','EPSG','8826','Easting at false origin',1640416.667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15369','SPCS83 Wisconsin North zone (US Survey feet)',NULL,NULL,'EPSG','2267','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.1,'EPSG','9110','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',46.46,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.34,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15370','SPCS83 Wisconsin Central zone (US Survey feet)',NULL,NULL,'EPSG','2266','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.15,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15371','SPCS83 Wisconsin South zone (US Survey feet)',NULL,NULL,'EPSG','2268','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.04,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.44,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15372','SPCS83 Indiana East zone (US Survey feet)',NULL,NULL,'EPSG','2196','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-85.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',328083.333,'EPSG','9003','EPSG','8807','False northing',820208.333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15373','SPCS83 Indiana West zone (US Survey feet)',NULL,NULL,'EPSG','2197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-87.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',2952750.0,'EPSG','9003','EPSG','8807','False northing',820208.333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15374','Oregon GIC Lambert (International feet)',NULL,NULL,'EPSG','1406','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.45,'EPSG','9110','EPSG','8822','Longitude of false origin',-120.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',43.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',45.3,'EPSG','9110','EPSG','8826','Easting at false origin',1312335.958,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15375','SPCS83 Kentucky Single Zone (US Survey feet)',NULL,NULL,'EPSG','1386','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-85.45,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',37.05,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.4,'EPSG','9110','EPSG','8826','Easting at false origin',4921250.0,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15376','American Samoa Lambert',NULL,NULL,'EPSG','3109','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',-14.16,'EPSG','9110','EPSG','8802','Longitude of natural origin',-170.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',312234.65,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15377','SPCS83 Iowa North zone (US Survey feet)',NULL,NULL,'EPSG','2198','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-93.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',43.16,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.04,'EPSG','9110','EPSG','8826','Easting at false origin',4921250.0,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15378','SPCS83 Iowa South zone (US Survey feet)',NULL,NULL,'EPSG','2199','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-93.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',41.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.37,'EPSG','9110','EPSG','8826','Easting at false origin',1640416.6667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15379','SPCS83 Kansas North zone (US Survey feet)',NULL,NULL,'EPSG','2200','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',39.47,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',38.43,'EPSG','9110','EPSG','8826','Easting at false origin',1312333.3333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15380','SPCS83 Kansas South zone (US Survey feet)',NULL,NULL,'EPSG','2201','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-98.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',38.34,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',37.16,'EPSG','9110','EPSG','8826','Easting at false origin',1312333.3333,'EPSG','9003','EPSG','8827','Northing at false origin',1312333.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15381','SPCS83 Nevada East zone (US Survey feet)',NULL,NULL,'EPSG','2224','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-115.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',656166.6667,'EPSG','9003','EPSG','8807','False northing',26246666.6667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15382','SPCS83 Nevada Central zone (US Survey feet)',NULL,NULL,'EPSG','2223','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-116.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.6667,'EPSG','9003','EPSG','8807','False northing',19685000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15383','SPCS83 Nevada West zone (US Survey feet)',NULL,NULL,'EPSG','2225','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.45,'EPSG','9110','EPSG','8802','Longitude of natural origin',-118.35,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',2624666.6667,'EPSG','9003','EPSG','8807','False northing',13123333.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15384','SPCS83 New Jersey zone (US Survey feet)',NULL,NULL,'EPSG','1399','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',492125.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15385','SPCS83 Arkansas North zone (US Survey feet)',NULL,NULL,'EPSG','2169','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',36.14,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',34.56,'EPSG','9110','EPSG','8826','Easting at false origin',1312333.3333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15386','SPCS83 Arkansas South zone (US Survey feet)',NULL,NULL,'EPSG','2170','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.4,'EPSG','9110','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',34.46,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',33.18,'EPSG','9110','EPSG','8826','Easting at false origin',1312333.3333,'EPSG','9003','EPSG','8827','Northing at false origin',1312333.3333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15387','SPCS83 Illinois East zone (US Survey feet)',NULL,NULL,'EPSG','2194','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-88.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999975,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15388','SPCS83 Illinois West zone (US Survey feet)',NULL,NULL,'EPSG','2195','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999941177,'EPSG','9201','EPSG','8806','False easting',2296583.3333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15389','SPCS83 New Hampshire zone (US Survey feet)',NULL,NULL,'EPSG','1398','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999966667,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15390','SPCS83 Rhode Island zone (US Survey feet)',NULL,NULL,'EPSG','1408','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.05,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999375,'EPSG','9201','EPSG','8806','False easting',328083.3333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15391','SPCS83 Louisiana North zone (US Survey feet)',NULL,NULL,'EPSG','2204','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',30.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-92.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',32.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',31.1,'EPSG','9110','EPSG','8826','Easting at false origin',3280833.3333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15392','SPCS83 Louisiana South zone (US Survey feet)',NULL,NULL,'EPSG','2529','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',28.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-91.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',30.42,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',29.18,'EPSG','9110','EPSG','8826','Easting at false origin',3280833.3333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15393','SPCS83 Louisiana Offshore zone (US Survey feet)',NULL,NULL,'EPSG','1387','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.3,'EPSG','9110','EPSG','8822','Longitude of false origin',-91.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',27.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',26.1,'EPSG','9110','EPSG','8826','Easting at false origin',3280833.3333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15394','SPCS83 South Dakota North zone (US Survey feet)',NULL,NULL,'EPSG','2249','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.41,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.25,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15395','SPCS83 South Dakota South zone (US Survey feet)',NULL,NULL,'EPSG','2250','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.2,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',44.24,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',42.5,'EPSG','9110','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15396','SPCS83 Nebraska zone (US Survey feet)',NULL,NULL,'EPSG','1396','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.5,'EPSG','9110','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',43.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',40.0,'EPSG','9110','EPSG','8826','Easting at false origin',1640416.6667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15397','Great Lakes Albers',NULL,NULL,'EPSG','3467','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',45.568977,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.455955,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.122774,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.01518,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15398','Great Lakes and St Lawrence Albers',NULL,NULL,'EPSG','3468','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',45.568977,'EPSG','9102','EPSG','8822','Longitude of false origin',-83.248627,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.122774,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.01518,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15399','Yap Islands',NULL,NULL,'EPSG','3108','EPSG','9832','Modified Azimuthal Equidistant','EPSG','8801','Latitude of natural origin',9.324815,'EPSG','9110','EPSG','8802','Longitude of natural origin',138.100748,'EPSG','9110','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',60000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15400','Guam SPCS',NULL,NULL,'EPSG','3255','EPSG','9831','Guam Projection','EPSG','8801','Latitude of natural origin',13.282087887,'EPSG','9110','EPSG','8802','Longitude of natural origin',144.445550254,'EPSG','9110','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15498','axis order change (2D)',NULL,NULL,'EPSG','1262','EPSG','9843','Axis Order Reversal (2D)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15499','axis order change (geographic3D horizontal)',NULL,NULL,'EPSG','1262','EPSG','9844','Axis Order Reversal (Geographic3D horizontal)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15500','Australian Antarctic geocentric to geog3D',NULL,NULL,'EPSG','1278','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15501','Australian Antarctic geog3D to geog2D',NULL,NULL,'EPSG','1278','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15502','CHTRF95 geocentric to geog3D',NULL,NULL,'EPSG','1286','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15503','CHTRF95 geog3D to geog2D',NULL,NULL,'EPSG','1286','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15504','EST97 geocentric to geog3D',NULL,NULL,'EPSG','1090','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15505','EST97 geog3D to geog2D',NULL,NULL,'EPSG','1090','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15506','ETRS89 geocentric to geog3D',NULL,NULL,'EPSG','1298','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15507','ETRS89 geog3D to geog2D',NULL,NULL,'EPSG','1298','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15508','GDA94 geocentric to geog3D',NULL,NULL,'EPSG','2575','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15509','GDA94 geog3D to geog2D',NULL,NULL,'EPSG','2575','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15510','Hartebeesthoek94 geocentric to geog3D',NULL,NULL,'EPSG','1215','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15511','Hartebeesthoek94 geog3D to geog2D',NULL,NULL,'EPSG','1215','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15512','IRENET95 geocentric to geog3D',NULL,NULL,'EPSG','1305','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15513','IRENET95 geog3D to geog2D',NULL,NULL,'EPSG','1305','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15514','ISN93 geocentric to geog3D',NULL,NULL,'EPSG','1120','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15515','ISN93 geog3D to geog2D',NULL,NULL,'EPSG','1120','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15516','JGD2000 geocentric to geog3D',NULL,NULL,'EPSG','1129','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15517','JGD2000 geog3D to geog2D',NULL,NULL,'EPSG','1129','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15518','LKS92 geocentric to geog3D',NULL,NULL,'EPSG','1139','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15519','LKS92 geog3D to geog2D',NULL,NULL,'EPSG','1139','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15520','LKS94 geocentric to geog3D',NULL,NULL,'EPSG','1145','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15521','LKS94 geocentric to geog3D',NULL,NULL,'EPSG','1145','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15522','Moznet geocentric to geog3D',NULL,NULL,'EPSG','1167','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15523','Moznet geog3D to geog2D',NULL,NULL,'EPSG','1167','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15524','NAD83(CSRS) geocentric to geog3D',NULL,NULL,'EPSG','1061','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15525','NAD83(CSRS) geog3D to geog2D',NULL,NULL,'EPSG','1061','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15526','NAD83(HARN) geocentric to geog3D',NULL,NULL,'EPSG','1337','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15527','NAD83(HARN) geog3D to geog2D',NULL,NULL,'EPSG','1337','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15528','NZGD2000 geocentric to geog3D',NULL,NULL,'EPSG','1175','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15529','NZGD2000 geog3D to geog2D',NULL,NULL,'EPSG','1175','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15530','POSGAR 98 geocentric to geog3D',NULL,NULL,'EPSG','1033','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15531','POSGAR 98 geog3D to geog2D',NULL,NULL,'EPSG','1033','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15532','REGVEN geocentric to geog3D',NULL,NULL,'EPSG','1251','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15533','REGVEN geog3D to geog2D',NULL,NULL,'EPSG','1251','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15534','RGF93 geocentric to geog3D',NULL,NULL,'EPSG','1096','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15535','RGF93 geog3D to geog2D',NULL,NULL,'EPSG','1096','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15536','RGFG95 geocentric to geog3D',NULL,NULL,'EPSG','1097','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15537','RGFG95 geog3D to geog2D',NULL,NULL,'EPSG','1097','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15538','RGNC91-93 geocentric to geog3D',NULL,NULL,'EPSG','1174','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15539','RGNC91-93 geog3D to geog2D',NULL,NULL,'EPSG','1174','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15540','RGR92 geocentric to geog3D',NULL,NULL,'EPSG','1196','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15541','RGR92 geog3D to geog2D',NULL,NULL,'EPSG','1196','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15542','RRAF 1991 geocentric to geog3D',NULL,NULL,'EPSG','2824','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15543','RRAF 1991 geog3D to geog2D',NULL,NULL,'EPSG','2824','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15544','SIRGAS geocentric to geog3D',NULL,NULL,'EPSG','3448','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15545','SIRGAS geog3D to geog2D',NULL,NULL,'EPSG','3448','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15546','SWEREF99 geocentric to geog3D',NULL,NULL,'EPSG','1225','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15547','SWEREF99 geog3D to geog2D',NULL,NULL,'EPSG','1225','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15548','WGS 84 geocentric to geog3D',NULL,NULL,'EPSG','1262','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15549','WGS 84 geog3D to geog2D',NULL,NULL,'EPSG','1262','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15550','Yemen NGN96 geocentric to geog3D',NULL,NULL,'EPSG','1257','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15551','Yemen NGN96 geog3D to geog2D',NULL,NULL,'EPSG','1257','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15552','IGM95 geocentric to geog3D',NULL,NULL,'EPSG','1127','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15553','IGM95 geog3D to geog2D',NULL,NULL,'EPSG','1127','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15554','WGS 72 geocentric to geog3D',NULL,NULL,'EPSG','1262','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15555','WGS 72 geog3D to geog2D',NULL,NULL,'EPSG','1262','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15556','WGS 72BE geocentric to geog3D',NULL,NULL,'EPSG','1262','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15557','WGS 72BE geog3D to geog2D',NULL,NULL,'EPSG','1262','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15558','SIRGAS 2000 geocentric to geog3D',NULL,NULL,'EPSG','3418','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15559','SIRGAS 2000 geog3D to geog2D',NULL,NULL,'EPSG','3418','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15560','Lao 1993 geocentric to geog3D',NULL,NULL,'EPSG','1138','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15561','Lao 1993 geog3D to geog2D',NULL,NULL,'EPSG','1138','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15562','Lao 1997 geocentric to geog3D',NULL,NULL,'EPSG','1138','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15563','Lao 1997 geog3D to geog2D',NULL,NULL,'EPSG','1138','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15564','PRS92 geocentric to geog3D',NULL,NULL,'EPSG','1190','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15565','PRS92 geog3D to geog2D',NULL,NULL,'EPSG','1190','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15566','MAGNA-SIRGAS geocentric to geog3D',NULL,NULL,'EPSG','1070','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15567','MAGNA-SIRGAS geog3D to geog2D',NULL,NULL,'EPSG','1070','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15568','RGPF geocentric to geog3D',NULL,NULL,'EPSG','1098','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15569','RGPF geog3D to geog2D',NULL,NULL,'EPSG','1098','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15570','POSGAR 94 geocentric to geog3D',NULL,NULL,'EPSG','1033','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15571','POSGAR 94 geog3D to geog2D',NULL,NULL,'EPSG','1033','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15572','Korean 2000 geocentric to geog3D',NULL,NULL,'EPSG','1135','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15573','Korean 2000 geog3D to geog2D',NULL,NULL,'EPSG','1135','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15574','Mauritania 1999 geocentric to geog3D',NULL,NULL,'EPSG','1157','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15575','Mauritania 1999 geog3D to geog2D',NULL,NULL,'EPSG','1157','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15576','PZ-90 geocentric to geog3D',NULL,NULL,'EPSG','1262','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15577','PZ-90 geog3D to geog2D',NULL,NULL,'EPSG','1262','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15578','GDM2000 geocentric to geog3D',NULL,NULL,'EPSG','1151','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15579','GDM2000 geog3D to geog2D',NULL,NULL,'EPSG','1151','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15580','GR96 geocentric to geog3D',NULL,NULL,'EPSG','1107','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15581','GR96 geog3D to geog2D',NULL,NULL,'EPSG','1107','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15582','LGD2006 geocentric to geog3D',NULL,NULL,'EPSG','1143','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15583','LGD2006 geog3D to geog2D',NULL,NULL,'EPSG','1143','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15584','DGN95 geocentric to geog3D',NULL,NULL,'EPSG','1122','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15585','DGN95 geog3D to geog2D',NULL,NULL,'EPSG','1122','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15586','JAD2001 geocentric to geog3D',NULL,NULL,'EPSG','1128','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15587','JAD2001 geog3D to geog2D',NULL,NULL,'EPSG','1128','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15588','NAD83(NSRS2007) geocentric to geog3D',NULL,NULL,'EPSG','1511','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15589','NAD83(NSRS2007) geog3D to geog2D',NULL,NULL,'EPSG','1511','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15590','WGS 66 geocentric to geog3D',NULL,NULL,'EPSG','1262','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15591','WGS 66 geog3D to geog2D',NULL,NULL,'EPSG','1262','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','15592','geocentric to geographic3D',NULL,NULL,'EPSG','1262','EPSG','9602','Geographic/geocentric conversions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15593','geographic3D to geographic2D',NULL,NULL,'EPSG','1262','EPSG','9659','Geographic3D to 2D conversion',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15594','EPSG topocentric example A',NULL,NULL,'EPSG','1263','EPSG','9837','Geographic/topocentric conversions','EPSG','8834','Latitude of topocentric origin',55.0,'EPSG','9102','EPSG','8835','Longitude of topocentric origin',5.0,'EPSG','9102','EPSG','8836','Ellipsoidal height of topocentric origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15595','EPSG topocentric example B',NULL,NULL,'EPSG','1263','EPSG','9836','Geocentric/topocentric conversions','EPSG','8837','Geocentric X of topocentric origin',3771793.97,'EPSG','9001','EPSG','8838','Geocentric Y of topocentric origin',140253.34,'EPSG','9001','EPSG','8839','Geocentric Z of topocentric origin',5124304.35,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15914','BLM zone 14N (US survey feet)',NULL,NULL,'EPSG','3637','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15915','BLM zone 15N (US survey feet)',NULL,NULL,'EPSG','3640','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15916','BLM zone 16N (US survey feet)',NULL,NULL,'EPSG','3641','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','15917','BLM zone 17N (US survey feet)',NULL,NULL,'EPSG','3642','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1640416.67,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16000','UTM grid system (northern hemisphere)',NULL,NULL,'EPSG','1998','EPSG','9824','Transverse Mercator Zoned Grid System','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8830','Initial longitude',-180.0,'EPSG','9102','EPSG','8831','Zone width',6.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16001','UTM zone 1N',NULL,NULL,'EPSG','1873','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16002','UTM zone 2N',NULL,NULL,'EPSG','1875','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16003','UTM zone 3N',NULL,NULL,'EPSG','1877','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16004','UTM zone 4N',NULL,NULL,'EPSG','1879','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16005','UTM zone 5N',NULL,NULL,'EPSG','1881','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16006','UTM zone 6N',NULL,NULL,'EPSG','1883','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16007','UTM zone 7N',NULL,NULL,'EPSG','1885','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16008','UTM zone 8N',NULL,NULL,'EPSG','1887','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16009','UTM zone 9N',NULL,NULL,'EPSG','1889','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16010','UTM zone 10N',NULL,NULL,'EPSG','1891','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16011','UTM zone 11N',NULL,NULL,'EPSG','1893','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16012','UTM zone 12N',NULL,NULL,'EPSG','1895','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16013','UTM zone 13N',NULL,NULL,'EPSG','1897','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16014','UTM zone 14N',NULL,NULL,'EPSG','1899','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16015','UTM zone 15N',NULL,NULL,'EPSG','1901','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16016','UTM zone 16N',NULL,NULL,'EPSG','1903','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16017','UTM zone 17N',NULL,NULL,'EPSG','1905','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16018','UTM zone 18N',NULL,NULL,'EPSG','1907','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16019','UTM zone 19N',NULL,NULL,'EPSG','1909','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16020','UTM zone 20N',NULL,NULL,'EPSG','1911','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16021','UTM zone 21N',NULL,NULL,'EPSG','1913','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16022','UTM zone 22N',NULL,NULL,'EPSG','1915','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16023','UTM zone 23N',NULL,NULL,'EPSG','1917','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16024','UTM zone 24N',NULL,NULL,'EPSG','1919','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16025','UTM zone 25N',NULL,NULL,'EPSG','1921','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16026','UTM zone 26N',NULL,NULL,'EPSG','1923','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16027','UTM zone 27N',NULL,NULL,'EPSG','1925','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16028','UTM zone 28N',NULL,NULL,'EPSG','1927','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16029','UTM zone 29N',NULL,NULL,'EPSG','1929','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16030','UTM zone 30N',NULL,NULL,'EPSG','1931','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16031','UTM zone 31N',NULL,NULL,'EPSG','1933','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16032','UTM zone 32N',NULL,NULL,'EPSG','1935','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16033','UTM zone 33N',NULL,NULL,'EPSG','1937','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16034','UTM zone 34N',NULL,NULL,'EPSG','1939','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16035','UTM zone 35N',NULL,NULL,'EPSG','1941','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16036','UTM zone 36N',NULL,NULL,'EPSG','1943','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16037','UTM zone 37N',NULL,NULL,'EPSG','1945','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16038','UTM zone 38N',NULL,NULL,'EPSG','1947','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16039','UTM zone 39N',NULL,NULL,'EPSG','1949','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16040','UTM zone 40N',NULL,NULL,'EPSG','1951','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16041','UTM zone 41N',NULL,NULL,'EPSG','1953','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16042','UTM zone 42N',NULL,NULL,'EPSG','1955','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16043','UTM zone 43N',NULL,NULL,'EPSG','1957','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16044','UTM zone 44N',NULL,NULL,'EPSG','1959','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16045','UTM zone 45N',NULL,NULL,'EPSG','1961','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16046','UTM zone 46N',NULL,NULL,'EPSG','1963','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16047','UTM zone 47N',NULL,NULL,'EPSG','1965','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16048','UTM zone 48N',NULL,NULL,'EPSG','1967','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16049','UTM zone 49N',NULL,NULL,'EPSG','1969','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16050','UTM zone 50N',NULL,NULL,'EPSG','1971','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16051','UTM zone 51N',NULL,NULL,'EPSG','1973','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16052','UTM zone 52N',NULL,NULL,'EPSG','1975','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16053','UTM zone 53N',NULL,NULL,'EPSG','1977','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16054','UTM zone 54N',NULL,NULL,'EPSG','1979','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16055','UTM zone 55N',NULL,NULL,'EPSG','1981','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16056','UTM zone 56N',NULL,NULL,'EPSG','1983','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16057','UTM zone 57N',NULL,NULL,'EPSG','1985','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16058','UTM zone 58N',NULL,NULL,'EPSG','1987','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16059','UTM zone 59N',NULL,NULL,'EPSG','1989','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16060','UTM zone 60N',NULL,NULL,'EPSG','1991','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16061','Universal Polar Stereographic North',NULL,NULL,'EPSG','1996','EPSG','9810','Polar Stereographic (variant A)','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.994,'EPSG','9201','EPSG','8806','False easting',2000000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16065','TM35FIN',NULL,NULL,'EPSG','1095','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16070','3-degree Gauss-Kruger zone 40',NULL,NULL,'EPSG','2628','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',120.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',40500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16071','3-degree Gauss-Kruger zone 41',NULL,NULL,'EPSG','2629','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',41500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16072','3-degree Gauss-Kruger zone 42',NULL,NULL,'EPSG','2630','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',126.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',42500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16073','3-degree Gauss-Kruger zone 43',NULL,NULL,'EPSG','2631','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',43500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16074','3-degree Gauss-Kruger zone 44',NULL,NULL,'EPSG','2632','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',132.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',44500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16075','3-degree Gauss-Kruger zone 45',NULL,NULL,'EPSG','2633','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',45500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16076','3-degree Gauss-Kruger zone 46',NULL,NULL,'EPSG','2634','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',138.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',46500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16077','3-degree Gauss-Kruger zone 47',NULL,NULL,'EPSG','2635','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',47500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16078','3-degree Gauss-Kruger zone 48',NULL,NULL,'EPSG','2636','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',144.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',48500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16079','3-degree Gauss-Kruger zone 49',NULL,NULL,'EPSG','2637','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',49500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16080','3-degree Gauss-Kruger zone 50',NULL,NULL,'EPSG','2638','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',150.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',50500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16081','3-degree Gauss-Kruger zone 51',NULL,NULL,'EPSG','2639','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',51500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16082','3-degree Gauss-Kruger zone 52',NULL,NULL,'EPSG','2640','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',156.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',52500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16083','3-degree Gauss-Kruger zone 53',NULL,NULL,'EPSG','2641','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',53500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16084','3-degree Gauss-Kruger zone 54',NULL,NULL,'EPSG','2642','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',162.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',54500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16085','3-degree Gauss-Kruger zone 55',NULL,NULL,'EPSG','2643','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',55500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16086','3-degree Gauss-Kruger zone 56',NULL,NULL,'EPSG','2644','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',168.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',56500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16087','3-degree Gauss-Kruger zone 57',NULL,NULL,'EPSG','2645','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',57500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16088','3-degree Gauss-Kruger zone 58',NULL,NULL,'EPSG','2646','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',174.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',58500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16089','3-degree Gauss-Kruger zone 59',NULL,NULL,'EPSG','2647','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',59500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16090','3-degree Gauss-Kruger zone 60',NULL,NULL,'EPSG','2648','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',180.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',60000000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16091','3-degree Gauss-Kruger zone 61',NULL,NULL,'EPSG','2649','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',61500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16092','3-degree Gauss-Kruger zone 62',NULL,NULL,'EPSG','2650','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-174.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',62500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16093','3-degree Gauss-Kruger zone 63',NULL,NULL,'EPSG','2651','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',63500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16094','3-degree Gauss-Kruger zone 64',NULL,NULL,'EPSG','2652','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-168.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',64500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16099','3-degree Gauss-Kruger zone 60',NULL,NULL,'EPSG','2648','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',180.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',60500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16100','UTM grid system (southern hemisphere)',NULL,NULL,'EPSG','1999','EPSG','9824','Transverse Mercator Zoned Grid System','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8830','Initial longitude',-180.0,'EPSG','9102','EPSG','8831','Zone width',6.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16101','UTM zone 1S',NULL,NULL,'EPSG','1874','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16102','UTM zone 2S',NULL,NULL,'EPSG','1876','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16103','UTM zone 3S',NULL,NULL,'EPSG','1878','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16104','UTM zone 4S',NULL,NULL,'EPSG','1880','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16105','UTM zone 5S',NULL,NULL,'EPSG','1882','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16106','UTM zone 6S',NULL,NULL,'EPSG','1884','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16107','UTM zone 7S',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16108','UTM zone 8S',NULL,NULL,'EPSG','1888','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16109','UTM zone 9S',NULL,NULL,'EPSG','1890','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16110','UTM zone 10S',NULL,NULL,'EPSG','1892','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16111','UTM zone 11S',NULL,NULL,'EPSG','1894','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16112','UTM zone 12S',NULL,NULL,'EPSG','1896','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16113','UTM zone 13S',NULL,NULL,'EPSG','1898','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16114','UTM zone 14S',NULL,NULL,'EPSG','1900','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16115','UTM zone 15S',NULL,NULL,'EPSG','1902','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16116','UTM zone 16S',NULL,NULL,'EPSG','1904','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16117','UTM zone 17S',NULL,NULL,'EPSG','1906','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16118','UTM zone 18S',NULL,NULL,'EPSG','1908','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16119','UTM zone 19S',NULL,NULL,'EPSG','1910','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16120','UTM zone 20S',NULL,NULL,'EPSG','1912','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16121','UTM zone 21S',NULL,NULL,'EPSG','1914','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16122','UTM zone 22S',NULL,NULL,'EPSG','1916','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16123','UTM zone 23S',NULL,NULL,'EPSG','1918','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16124','UTM zone 24S',NULL,NULL,'EPSG','1920','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16125','UTM zone 25S',NULL,NULL,'EPSG','1922','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16126','UTM zone 26S',NULL,NULL,'EPSG','1924','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16127','UTM zone 27S',NULL,NULL,'EPSG','1926','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16128','UTM zone 28S',NULL,NULL,'EPSG','1928','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16129','UTM zone 29S',NULL,NULL,'EPSG','1930','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16130','UTM zone 30S',NULL,NULL,'EPSG','1932','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16131','UTM zone 31S',NULL,NULL,'EPSG','1934','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16132','UTM zone 32S',NULL,NULL,'EPSG','1936','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16133','UTM zone 33S',NULL,NULL,'EPSG','1938','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16134','UTM zone 34S',NULL,NULL,'EPSG','1940','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16135','UTM zone 35S',NULL,NULL,'EPSG','1942','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16136','UTM zone 36S',NULL,NULL,'EPSG','1944','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16137','UTM zone 37S',NULL,NULL,'EPSG','1946','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16138','UTM zone 38S',NULL,NULL,'EPSG','1948','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16139','UTM zone 39S',NULL,NULL,'EPSG','1950','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16140','UTM zone 40S',NULL,NULL,'EPSG','1952','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16141','UTM zone 41S',NULL,NULL,'EPSG','1954','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16142','UTM zone 42S',NULL,NULL,'EPSG','1956','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16143','UTM zone 43S',NULL,NULL,'EPSG','1958','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16144','UTM zone 44S',NULL,NULL,'EPSG','1960','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16145','UTM zone 45S',NULL,NULL,'EPSG','1962','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16146','UTM zone 46S',NULL,NULL,'EPSG','1964','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16147','UTM zone 47S',NULL,NULL,'EPSG','1966','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16148','UTM zone 48S',NULL,NULL,'EPSG','1968','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16149','UTM zone 49S',NULL,NULL,'EPSG','1970','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16150','UTM zone 50S',NULL,NULL,'EPSG','1972','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16151','UTM zone 51S',NULL,NULL,'EPSG','1974','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16152','UTM zone 52S',NULL,NULL,'EPSG','1976','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16153','UTM zone 53S',NULL,NULL,'EPSG','1978','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16154','UTM zone 54S',NULL,NULL,'EPSG','1980','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16155','UTM zone 55S',NULL,NULL,'EPSG','1982','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16156','UTM zone 56S',NULL,NULL,'EPSG','1984','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16157','UTM zone 57S',NULL,NULL,'EPSG','1986','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16158','UTM zone 58S',NULL,NULL,'EPSG','1988','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16159','UTM zone 59S',NULL,NULL,'EPSG','1990','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16160','UTM zone 60S',NULL,NULL,'EPSG','1992','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16161','Universal Polar Stereographic South',NULL,NULL,'EPSG','1997','EPSG','9810','Polar Stereographic (variant A)','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.994,'EPSG','9201','EPSG','8806','False easting',2000000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16170','3-degree Gauss-Kruger CM 120E',NULL,NULL,'EPSG','2628','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',120.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16171','3-degree Gauss-Kruger CM 123E',NULL,NULL,'EPSG','2629','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16172','3-degree Gauss-Kruger CM 126E',NULL,NULL,'EPSG','2630','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',126.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16173','3-degree Gauss-Kruger CM 129E',NULL,NULL,'EPSG','2631','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16174','3-degree Gauss-Kruger CM 132E',NULL,NULL,'EPSG','2632','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',132.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16175','3-degree Gauss-Kruger CM 135E',NULL,NULL,'EPSG','2633','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16176','3-degree Gauss-Kruger CM 138E',NULL,NULL,'EPSG','2634','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',138.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16177','3-degree Gauss-Kruger CM 141E',NULL,NULL,'EPSG','2635','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16178','3-degree Gauss-Kruger CM 144E',NULL,NULL,'EPSG','2636','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',144.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16179','3-degree Gauss-Kruger CM 147E',NULL,NULL,'EPSG','2637','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16180','3-degree Gauss-Kruger CM 150E',NULL,NULL,'EPSG','2638','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',150.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16181','3-degree Gauss-Kruger CM 153E',NULL,NULL,'EPSG','2639','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16182','3-degree Gauss-Kruger CM 156E',NULL,NULL,'EPSG','2640','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',156.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16183','3-degree Gauss-Kruger CM 159E',NULL,NULL,'EPSG','2641','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16184','3-degree Gauss-Kruger CM 162E',NULL,NULL,'EPSG','2642','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',162.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16185','3-degree Gauss-Kruger CM 165E',NULL,NULL,'EPSG','2643','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16186','3-degree Gauss-Kruger CM 168E',NULL,NULL,'EPSG','2644','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',168.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16187','3-degree Gauss-Kruger CM 171E',NULL,NULL,'EPSG','2645','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16188','3-degree Gauss-Kruger CM 174E',NULL,NULL,'EPSG','2646','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',174.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16189','3-degree Gauss-Kruger CM 177E',NULL,NULL,'EPSG','2647','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16190','3-degree Gauss-Kruger CM 180',NULL,NULL,'EPSG','2648','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',180.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16191','3-degree Gauss-Kruger CM 177W',NULL,NULL,'EPSG','2649','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16192','3-degree Gauss-Kruger CM 174W',NULL,NULL,'EPSG','2650','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-174.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16193','3-degree Gauss-Kruger CM 171W',NULL,NULL,'EPSG','2651','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16194','3-degree Gauss-Kruger CM 168W',NULL,NULL,'EPSG','2652','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-168.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16201','6-degree Gauss-Kruger zone 1',NULL,NULL,'EPSG','1933','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16202','6-degree Gauss-Kruger zone 2',NULL,NULL,'EPSG','2741','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',2500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16203','6-degree Gauss-Kruger zone 3',NULL,NULL,'EPSG','2742','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16204','6-degree Gauss-Kruger zone 4',NULL,NULL,'EPSG','2743','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',4500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16205','6-degree Gauss-Kruger zone 5',NULL,NULL,'EPSG','2744','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',5500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16206','6-degree Gauss-Kruger zone 6',NULL,NULL,'EPSG','2745','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',6500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16207','6-degree Gauss-Kruger zone 7',NULL,NULL,'EPSG','2746','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',7500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16208','6-degree Gauss-Kruger zone 8',NULL,NULL,'EPSG','1947','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',8500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16209','6-degree Gauss-Kruger zone 9',NULL,NULL,'EPSG','1949','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',9500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16210','6-degree Gauss-Kruger zone 10',NULL,NULL,'EPSG','1951','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',10500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16211','6-degree Gauss-Kruger zone 11',NULL,NULL,'EPSG','1953','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',11500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16212','6-degree Gauss-Kruger zone 12',NULL,NULL,'EPSG','1955','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',12500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16213','6-degree Gauss-Kruger zone 13',NULL,NULL,'EPSG','1957','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',13500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16214','6-degree Gauss-Kruger zone 14',NULL,NULL,'EPSG','1959','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',14500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16215','6-degree Gauss-Kruger zone 15',NULL,NULL,'EPSG','1961','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',15500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16216','6-degree Gauss-Kruger zone 16',NULL,NULL,'EPSG','1963','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',16500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16217','6-degree Gauss-Kruger zone 17',NULL,NULL,'EPSG','1965','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',17500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16218','6-degree Gauss-Kruger zone 18',NULL,NULL,'EPSG','1967','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',18500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16219','6-degree Gauss-Kruger zone 19',NULL,NULL,'EPSG','1969','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',19500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16220','6-degree Gauss-Kruger zone 20',NULL,NULL,'EPSG','1971','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',20500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16221','6-degree Gauss-Kruger zone 21',NULL,NULL,'EPSG','1973','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',21500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16222','6-degree Gauss-Kruger zone 22',NULL,NULL,'EPSG','1975','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',22500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16223','6-degree Gauss-Kruger zone 23',NULL,NULL,'EPSG','1977','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',23500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16224','6-degree Gauss-Kruger zone 24',NULL,NULL,'EPSG','1979','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',24500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16225','6-degree Gauss-Kruger zone 25',NULL,NULL,'EPSG','1981','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',25500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16226','6-degree Gauss-Kruger zone 26',NULL,NULL,'EPSG','1983','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',26500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16227','6-degree Gauss-Kruger zone 27',NULL,NULL,'EPSG','1985','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',27500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16228','6-degree Gauss-Kruger zone 28',NULL,NULL,'EPSG','1987','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',28500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16229','6-degree Gauss-Kruger zone 29',NULL,NULL,'EPSG','1989','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',29500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16230','6-degree Gauss-Kruger zone 30',NULL,NULL,'EPSG','1991','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',30500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16231','6-degree Gauss-Kruger zone 31',NULL,NULL,'EPSG','1873','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',31500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16232','6-degree Gauss-Kruger zone 32',NULL,NULL,'EPSG','1875','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',32500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16233','6-degree Gauss-Kruger zone 33',NULL,NULL,'EPSG','1877','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',33500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16234','6-degree Gauss-Kruger zone 34',NULL,NULL,'EPSG','1879','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',34500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16235','6-degree Gauss-Kruger zone 35',NULL,NULL,'EPSG','1881','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',35500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16236','6-degree Gauss-Kruger zone 36',NULL,NULL,'EPSG','1883','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',36500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16237','6-degree Gauss-Kruger zone 37',NULL,NULL,'EPSG','1885','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',37500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16238','6-degree Gauss-Kruger zone 38',NULL,NULL,'EPSG','1887','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',38500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16239','6-degree Gauss-Kruger zone 39',NULL,NULL,'EPSG','1889','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',39500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16240','6-degree Gauss-Kruger zone 40',NULL,NULL,'EPSG','1891','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',40500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16241','6-degree Gauss-Kruger zone 41',NULL,NULL,'EPSG','1893','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',41500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16242','6-degree Gauss-Kruger zone 42',NULL,NULL,'EPSG','1895','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',42500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16243','6-degree Gauss-Kruger zone 43',NULL,NULL,'EPSG','1897','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',43500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16244','6-degree Gauss-Kruger zone 44',NULL,NULL,'EPSG','1899','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',44500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16245','6-degree Gauss-Kruger zone 45',NULL,NULL,'EPSG','1901','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',45500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16246','6-degree Gauss-Kruger zone 46',NULL,NULL,'EPSG','1903','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',46500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16247','6-degree Gauss-Kruger zone 47',NULL,NULL,'EPSG','2732','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',47500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16248','6-degree Gauss-Kruger zone 48',NULL,NULL,'EPSG','2733','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',48500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16249','6-degree Gauss-Kruger zone 49',NULL,NULL,'EPSG','2734','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',49500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16250','6-degree Gauss-Kruger zone 50',NULL,NULL,'EPSG','2735','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',50500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16251','6-degree Gauss-Kruger zone 51',NULL,NULL,'EPSG','2736','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',51500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16252','6-degree Gauss-Kruger zone 52',NULL,NULL,'EPSG','2737','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',52500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16253','6-degree Gauss-Kruger zone 53',NULL,NULL,'EPSG','2738','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',53500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16254','6-degree Gauss-Kruger zone 54',NULL,NULL,'EPSG','2739','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',54500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16255','6-degree Gauss-Kruger zone 55',NULL,NULL,'EPSG','2740','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',55500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16256','6-degree Gauss-Kruger zone 56',NULL,NULL,'EPSG','1923','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',56500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16257','6-degree Gauss-Kruger zone 57',NULL,NULL,'EPSG','1925','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',57500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16258','6-degree Gauss-Kruger zone 58',NULL,NULL,'EPSG','1927','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',58500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16259','6-degree Gauss-Kruger zone 59',NULL,NULL,'EPSG','1929','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',59500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16260','6-degree Gauss-Kruger zone 60',NULL,NULL,'EPSG','1931','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',60500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16261','3-degree Gauss-Kruger zone 1',NULL,NULL,'EPSG','2299','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16262','3-degree Gauss-Kruger zone 2',NULL,NULL,'EPSG','2300','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',6.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',2500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16263','3-degree Gauss-Kruger zone 3',NULL,NULL,'EPSG','2301','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16264','3-degree Gauss-Kruger zone 4',NULL,NULL,'EPSG','2302','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',12.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',4500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16265','3-degree Gauss-Kruger zone 5',NULL,NULL,'EPSG','2303','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',5500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16266','3-degree Gauss-Kruger zone 6',NULL,NULL,'EPSG','2304','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',6500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16267','3-degree Gauss-Kruger zone 7',NULL,NULL,'EPSG','2305','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',7500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16268','3-degree Gauss-Kruger zone 8',NULL,NULL,'EPSG','2306','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',8500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16269','3-degree Gauss-Kruger zone 9',NULL,NULL,'EPSG','2534','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',9500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16270','3-degree Gauss-Kruger zone 10',NULL,NULL,'EPSG','2535','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',10500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16271','3-degree Gauss-Kruger zone 11',NULL,NULL,'EPSG','2536','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',11500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16272','3-degree Gauss-Kruger zone 12',NULL,NULL,'EPSG','2537','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',36.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',12500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16273','3-degree Gauss-Kruger zone 13',NULL,NULL,'EPSG','2538','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',13500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16274','3-degree Gauss-Kruger zone 14',NULL,NULL,'EPSG','2539','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',42.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',14500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16275','3-degree Gauss-Kruger zone 15',NULL,NULL,'EPSG','2540','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',15500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16276','3-degree Gauss-Kruger zone 16',NULL,NULL,'EPSG','2604','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',48.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',16500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16277','3-degree Gauss-Kruger zone 17',NULL,NULL,'EPSG','2605','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',17500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16278','3-degree Gauss-Kruger zone 18',NULL,NULL,'EPSG','2606','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',54.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',18500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16279','3-degree Gauss-Kruger zone 19',NULL,NULL,'EPSG','2607','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',19500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16280','3-degree Gauss-Kruger zone 20',NULL,NULL,'EPSG','2608','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',60.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',20500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16281','3-degree Gauss-Kruger zone 21',NULL,NULL,'EPSG','2609','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',21500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16282','3-degree Gauss-Kruger zone 22',NULL,NULL,'EPSG','2610','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',66.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',22500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16283','3-degree Gauss-Kruger zone 23',NULL,NULL,'EPSG','2611','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',23500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16284','3-degree Gauss-Kruger zone 24',NULL,NULL,'EPSG','2612','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',72.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',24500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16285','3-degree Gauss-Kruger zone 25',NULL,NULL,'EPSG','2613','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',25500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16286','3-degree Gauss-Kruger zone 26',NULL,NULL,'EPSG','2614','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',78.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',26500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16287','3-degree Gauss-Kruger zone 27',NULL,NULL,'EPSG','2615','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',27500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16288','3-degree Gauss-Kruger zone 28',NULL,NULL,'EPSG','2616','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',84.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',28500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16289','3-degree Gauss-Kruger zone 29',NULL,NULL,'EPSG','2617','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',29500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16290','3-degree Gauss-Kruger zone 30',NULL,NULL,'EPSG','2618','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',30500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16291','3-degree Gauss-Kruger zone 31',NULL,NULL,'EPSG','2619','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',31500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16292','3-degree Gauss-Kruger zone 32',NULL,NULL,'EPSG','2620','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',96.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',32500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16293','3-degree Gauss-Kruger zone 33',NULL,NULL,'EPSG','2621','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',33500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16294','3-degree Gauss-Kruger zone 34',NULL,NULL,'EPSG','2622','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',102.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',34500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16295','3-degree Gauss-Kruger zone 35',NULL,NULL,'EPSG','2623','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',35500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16296','3-degree Gauss-Kruger zone 36',NULL,NULL,'EPSG','2624','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',108.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',36500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16297','3-degree Gauss-Kruger zone 37',NULL,NULL,'EPSG','2625','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',37500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16298','3-degree Gauss-Kruger zone 38',NULL,NULL,'EPSG','2626','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',114.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',38500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16299','3-degree Gauss-Kruger zone 39',NULL,NULL,'EPSG','2627','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',39500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16301','Gauss-Kruger CM 3E',NULL,NULL,'EPSG','1933','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16302','Gauss-Kruger CM 9E',NULL,NULL,'EPSG','1935','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16303','Gauss-Kruger CM 15E',NULL,NULL,'EPSG','1937','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16304','Gauss-Kruger CM 21E',NULL,NULL,'EPSG','1939','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16305','Gauss-Kruger CM 27E',NULL,NULL,'EPSG','1941','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16306','Gauss-Kruger CM 33E',NULL,NULL,'EPSG','1943','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16307','Gauss-Kruger CM 39E',NULL,NULL,'EPSG','1945','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16308','Gauss-Kruger CM 45E',NULL,NULL,'EPSG','1947','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16309','Gauss-Kruger CM 51E',NULL,NULL,'EPSG','1949','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16310','Gauss-Kruger CM 57E',NULL,NULL,'EPSG','1951','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16311','Gauss-Kruger CM 63E',NULL,NULL,'EPSG','1953','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16312','Gauss-Kruger CM 69E',NULL,NULL,'EPSG','1955','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16313','Gauss-Kruger CM 75E',NULL,NULL,'EPSG','1957','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16314','Gauss-Kruger CM 81E',NULL,NULL,'EPSG','1959','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16315','Gauss-Kruger CM 87E',NULL,NULL,'EPSG','1961','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16316','Gauss-Kruger CM 93E',NULL,NULL,'EPSG','1963','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16317','Gauss-Kruger CM 99E',NULL,NULL,'EPSG','1965','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16318','Gauss-Kruger CM 105E',NULL,NULL,'EPSG','1967','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16319','Gauss-Kruger CM 111E',NULL,NULL,'EPSG','1969','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16320','Gauss-Kruger CM 117E',NULL,NULL,'EPSG','1971','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16321','Gauss-Kruger CM 123E',NULL,NULL,'EPSG','1973','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16322','Gauss-Kruger CM 129E',NULL,NULL,'EPSG','1975','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16323','Gauss-Kruger CM 135E',NULL,NULL,'EPSG','1977','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16324','Gauss-Kruger CM 141E',NULL,NULL,'EPSG','1979','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16325','Gauss-Kruger CM 147E',NULL,NULL,'EPSG','1981','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16326','Gauss-Kruger CM 153E',NULL,NULL,'EPSG','1983','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16327','Gauss-Kruger CM 159E',NULL,NULL,'EPSG','1985','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16328','Gauss-Kruger CM 165E',NULL,NULL,'EPSG','1987','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16329','Gauss-Kruger CM 171E',NULL,NULL,'EPSG','1989','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16330','Gauss-Kruger CM 177E',NULL,NULL,'EPSG','1991','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16331','Gauss-Kruger CM 177W',NULL,NULL,'EPSG','1873','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16332','Gauss-Kruger CM 171W',NULL,NULL,'EPSG','1875','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16333','Gauss-Kruger CM 165W',NULL,NULL,'EPSG','1877','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16334','Gauss-Kruger CM 159W',NULL,NULL,'EPSG','1879','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16335','Gauss-Kruger CM 153W',NULL,NULL,'EPSG','1881','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16336','Gauss-Kruger CM 147W',NULL,NULL,'EPSG','1883','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16337','Gauss-Kruger CM 141W',NULL,NULL,'EPSG','1885','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16338','Gauss-Kruger CM 135W',NULL,NULL,'EPSG','1887','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16339','Gauss-Kruger CM 129W',NULL,NULL,'EPSG','1889','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16340','Gauss-Kruger CM 123W',NULL,NULL,'EPSG','1891','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16341','Gauss-Kruger CM 117W',NULL,NULL,'EPSG','1893','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16342','Gauss-Kruger CM 111W',NULL,NULL,'EPSG','1895','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16343','Gauss-Kruger CM 105W',NULL,NULL,'EPSG','1897','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16344','Gauss-Kruger CM 99W',NULL,NULL,'EPSG','1899','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16345','Gauss-Kruger CM 93W',NULL,NULL,'EPSG','1901','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16346','Gauss-Kruger CM 87W',NULL,NULL,'EPSG','1903','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16347','Gauss-Kruger CM 81W',NULL,NULL,'EPSG','1905','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16348','Gauss-Kruger CM 75W',NULL,NULL,'EPSG','1907','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16349','Gauss-Kruger CM 69W',NULL,NULL,'EPSG','1909','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16350','Gauss-Kruger CM 63W',NULL,NULL,'EPSG','1911','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16351','Gauss-Kruger CM 57W',NULL,NULL,'EPSG','1913','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16352','Gauss-Kruger CM 51W',NULL,NULL,'EPSG','1915','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16353','Gauss-Kruger CM 45W',NULL,NULL,'EPSG','1917','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16354','Gauss-Kruger CM 39W',NULL,NULL,'EPSG','1919','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16355','Gauss-Kruger CM 33W',NULL,NULL,'EPSG','1921','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16356','Gauss-Kruger CM 27W',NULL,NULL,'EPSG','1923','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16357','Gauss-Kruger CM 21W',NULL,NULL,'EPSG','1925','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16358','Gauss-Kruger CM 15W',NULL,NULL,'EPSG','1927','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16359','Gauss-Kruger CM 9W',NULL,NULL,'EPSG','1929','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16360','Gauss-Kruger CM 3W',NULL,NULL,'EPSG','1931','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16361','3-degree Gauss-Kruger CM 3E',NULL,NULL,'EPSG','2299','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16362','3-degree Gauss-Kruger CM 6E',NULL,NULL,'EPSG','2300','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',6.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16363','3-degree Gauss-Kruger CM 9E',NULL,NULL,'EPSG','2301','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16364','3-degree Gauss-Kruger CM 12E',NULL,NULL,'EPSG','2302','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',12.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16365','3-degree Gauss-Kruger CM 15E',NULL,NULL,'EPSG','2303','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16366','3-degree Gauss-Kruger CM 18E',NULL,NULL,'EPSG','2304','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16367','3-degree Gauss-Kruger CM 21E',NULL,NULL,'EPSG','2305','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16368','3-degree Gauss-Kruger CM 24E',NULL,NULL,'EPSG','2306','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16369','3-degree Gauss-Kruger CM 27E',NULL,NULL,'EPSG','2534','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16370','3-degree Gauss-Kruger CM 30E',NULL,NULL,'EPSG','2535','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16371','3-degree Gauss-Kruger CM 33E',NULL,NULL,'EPSG','2536','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16372','3-degree Gauss-Kruger CM 36E',NULL,NULL,'EPSG','2537','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',36.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16373','3-degree Gauss-Kruger CM 39E',NULL,NULL,'EPSG','2538','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16374','3-degree Gauss-Kruger CM 42E',NULL,NULL,'EPSG','2539','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',42.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16375','3-degree Gauss-Kruger CM 45E',NULL,NULL,'EPSG','2540','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16376','3-degree Gauss-Kruger CM 48E',NULL,NULL,'EPSG','2604','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',48.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16377','3-degree Gauss-Kruger CM 51E',NULL,NULL,'EPSG','2605','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16378','3-degree Gauss-Kruger CM 54E',NULL,NULL,'EPSG','2606','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',54.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16379','3-degree Gauss-Kruger CM 57E',NULL,NULL,'EPSG','2607','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16380','3-degree Gauss-Kruger CM 60E',NULL,NULL,'EPSG','2608','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',60.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16381','3-degree Gauss-Kruger CM 63E',NULL,NULL,'EPSG','2609','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16382','3-degree Gauss-Kruger CM 66E',NULL,NULL,'EPSG','2610','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',66.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16383','3-degree Gauss-Kruger CM 69E',NULL,NULL,'EPSG','2611','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16384','3-degree Gauss-Kruger CM 72E',NULL,NULL,'EPSG','2612','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',72.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16385','3-degree Gauss-Kruger CM 75E',NULL,NULL,'EPSG','2613','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16386','3-degree Gauss-Kruger CM 78E',NULL,NULL,'EPSG','2614','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',78.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16387','3-degree Gauss-Kruger CM 81E',NULL,NULL,'EPSG','2615','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16388','3-degree Gauss-Kruger CM 84E',NULL,NULL,'EPSG','2616','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',84.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16389','3-degree Gauss-Kruger CM 87E',NULL,NULL,'EPSG','2617','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16390','3-degree Gauss-Kruger CM 90E',NULL,NULL,'EPSG','2618','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16391','3-degree Gauss-Kruger CM 93E',NULL,NULL,'EPSG','2619','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16392','3-degree Gauss-Kruger CM 96E',NULL,NULL,'EPSG','2620','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',96.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16393','3-degree Gauss-Kruger CM 99E',NULL,NULL,'EPSG','2621','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',99.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16394','3-degree Gauss-Kruger CM 102E',NULL,NULL,'EPSG','2622','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',102.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16395','3-degree Gauss-Kruger CM 105E',NULL,NULL,'EPSG','2623','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16396','3-degree Gauss-Kruger CM 108E',NULL,NULL,'EPSG','2624','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',108.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16397','3-degree Gauss-Kruger CM 111E',NULL,NULL,'EPSG','2625','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16398','3-degree Gauss-Kruger CM 114E',NULL,NULL,'EPSG','2626','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',114.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16399','3-degree Gauss-Kruger CM 117E',NULL,NULL,'EPSG','2627','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','16400','TM 0 N',NULL,NULL,'EPSG','1629','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16405','TM 5 NE',NULL,NULL,'EPSG','1630','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',5.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16406','TM 6 NE',NULL,NULL,'EPSG','3914','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',6.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16411','TM 11 NE',NULL,NULL,'EPSG','1489','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',11.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16412','TM 12 NE',NULL,NULL,'EPSG','1482','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',12.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16413','TM 13 NE',NULL,NULL,'EPSG','2771','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',13.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16430','TM 30 NE',NULL,NULL,'EPSG','2546','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16490','Bangladesh Transverse Mercator',NULL,NULL,'EPSG','1041','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16506','TM 106 NE',NULL,NULL,'EPSG','1495','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',106.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16586','GK 106 NE',NULL,NULL,'EPSG','1494','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',106.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16611','TM 11.30 SE',NULL,NULL,'EPSG','1605','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',11.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16612','TM 12 SE',NULL,NULL,'EPSG','1604','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',12.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16636','TM 36 SE',NULL,NULL,'EPSG','1726','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',36.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16709','TM 109 SE',NULL,NULL,'EPSG','2577','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',109.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16716','TM 116 SE',NULL,NULL,'EPSG','2588','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',116.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','16732','TM 132 SE',NULL,NULL,'EPSG','2589','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',132.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17001','TM 1 NW',NULL,NULL,'EPSG','1505','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-1.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17005','TM 5 NW',NULL,NULL,'EPSG','2296','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-5.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17054','TM 54 NW',NULL,NULL,'EPSG','1727','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-54.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17204','SCAR IMW SP19-20',NULL,NULL,'EPSG','2991','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-66.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-60.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-63.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17205','SCAR IMW SP21-22',NULL,NULL,'EPSG','2992','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-54.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-60.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-63.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17206','SCAR IMW SP23-24',NULL,NULL,'EPSG','2993','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-42.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-60.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-63.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17207','SCAR IMW SQ01-02',NULL,NULL,'EPSG','2994','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-174.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17208','SCAR IMW SQ19-20',NULL,NULL,'EPSG','2995','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-66.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17209','SCAR IMW SQ21-22',NULL,NULL,'EPSG','2996','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-54.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17210','SCAR IMW SQ37-38',NULL,NULL,'EPSG','2997','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',42.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17211','SCAR IMW SQ39-40',NULL,NULL,'EPSG','2998','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',54.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17212','SCAR IMW SQ41-42',NULL,NULL,'EPSG','2999','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',66.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17213','SCAR IMW SQ43-44',NULL,NULL,'EPSG','3000','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',78.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17214','SCAR IMW SQ45-46',NULL,NULL,'EPSG','3001','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17215','SCAR IMW SQ47-48',NULL,NULL,'EPSG','3002','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',102.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17216','SCAR IMW SQ49-50',NULL,NULL,'EPSG','3003','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',114.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17217','SCAR IMW SQ51-52',NULL,NULL,'EPSG','3004','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',126.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17218','SCAR IMW SQ53-54',NULL,NULL,'EPSG','3005','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',138.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17219','SCAR IMW SQ55-56',NULL,NULL,'EPSG','3006','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',150.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17220','SCAR IMW SQ57-58',NULL,NULL,'EPSG','3007','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',162.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-64.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-67.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17221','SCAR IMW SR13-14',NULL,NULL,'EPSG','3008','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-102.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17222','SCAR IMW SR15-16',NULL,NULL,'EPSG','3009','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17223','SCAR IMW SR17-18',NULL,NULL,'EPSG','3010','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-78.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17224','SCAR IMW SR19-20',NULL,NULL,'EPSG','3011','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-66.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17225','SCAR IMW SR27-28',NULL,NULL,'EPSG','3012','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-18.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17226','SCAR IMW SR29-30',NULL,NULL,'EPSG','3013','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-6.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17227','SCAR IMW SR31-32',NULL,NULL,'EPSG','3014','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',6.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17228','SCAR IMW SR33-34',NULL,NULL,'EPSG','3015','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',18.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17229','SCAR IMW SR35-36',NULL,NULL,'EPSG','3016','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',30.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17230','SCAR IMW SR37-38',NULL,NULL,'EPSG','3017','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',42.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17231','SCAR IMW SR39-40',NULL,NULL,'EPSG','3018','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',54.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17232','SCAR IMW SR41-42',NULL,NULL,'EPSG','3019','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',66.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17233','SCAR IMW SR43-44',NULL,NULL,'EPSG','3020','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',78.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17234','SCAR IMW SR45-46',NULL,NULL,'EPSG','3021','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17235','SCAR IMW SR47-48',NULL,NULL,'EPSG','3022','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',102.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17236','SCAR IMW SR49-50',NULL,NULL,'EPSG','3023','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',114.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17237','SCAR IMW SR51-52',NULL,NULL,'EPSG','3024','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',126.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17238','SCAR IMW SR53-54',NULL,NULL,'EPSG','3025','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',138.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17239','SCAR IMW SR55-56',NULL,NULL,'EPSG','3026','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',150.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17240','SCAR IMW SR57-58',NULL,NULL,'EPSG','3027','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',162.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17241','SCAR IMW SR59-60',NULL,NULL,'EPSG','3028','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',174.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-68.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-71.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17242','SCAR IMW SS04-06',NULL,NULL,'EPSG','3029','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-153.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17243','SCAR IMW SS07-09',NULL,NULL,'EPSG','3030','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-135.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17244','SCAR IMW SS10-12',NULL,NULL,'EPSG','3031','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-117.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17245','SCAR IMW SS13-15',NULL,NULL,'EPSG','3032','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-99.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17246','SCAR IMW SS16-18',NULL,NULL,'EPSG','3033','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17247','SCAR IMW SS19-21',NULL,NULL,'EPSG','3034','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-63.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17248','SCAR IMW SS25-27',NULL,NULL,'EPSG','3035','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-27.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17249','SCAR IMW SS28-30',NULL,NULL,'EPSG','3036','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-9.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17250','SCAR IMW SS31-33',NULL,NULL,'EPSG','3037','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',9.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17251','SCAR IMW SS34-36',NULL,NULL,'EPSG','3038','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',27.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17252','SCAR IMW SS37-39',NULL,NULL,'EPSG','3039','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',45.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17253','SCAR IMW SS40-42',NULL,NULL,'EPSG','3040','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',63.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17254','SCAR IMW SS43-45',NULL,NULL,'EPSG','3041','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17255','SCAR IMW SS46-48',NULL,NULL,'EPSG','3042','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',99.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17256','SCAR IMW SS49-51',NULL,NULL,'EPSG','3043','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',117.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17257','SCAR IMW SS52-54',NULL,NULL,'EPSG','3044','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',135.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17258','SCAR IMW SS55-57',NULL,NULL,'EPSG','3045','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',153.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17259','SCAR IMW SS58-60',NULL,NULL,'EPSG','3046','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',171.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-72.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-75.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17260','SCAR IMW ST01-04',NULL,NULL,'EPSG','3047','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-168.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17261','SCAR IMW ST05-08',NULL,NULL,'EPSG','3048','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-144.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17262','SCAR IMW ST09-12',NULL,NULL,'EPSG','3049','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17263','SCAR IMW ST13-16',NULL,NULL,'EPSG','3050','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17264','SCAR IMW ST17-20',NULL,NULL,'EPSG','3051','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-72.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17265','SCAR IMW ST21-24',NULL,NULL,'EPSG','3052','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-48.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17266','SCAR IMW ST25-28',NULL,NULL,'EPSG','3053','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-24.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17267','SCAR IMW ST29-32',NULL,NULL,'EPSG','3054','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',0.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17268','SCAR IMW ST33-36',NULL,NULL,'EPSG','3055','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',24.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17269','SCAR IMW ST37-40',NULL,NULL,'EPSG','3056','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',48.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17270','SCAR IMW ST41-44',NULL,NULL,'EPSG','3057','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',72.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17271','SCAR IMW ST45-48',NULL,NULL,'EPSG','3058','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',96.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17272','SCAR IMW ST49-52',NULL,NULL,'EPSG','3059','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',120.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17273','SCAR IMW ST53-56',NULL,NULL,'EPSG','3060','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',144.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17274','SCAR IMW ST57-60',NULL,NULL,'EPSG','3061','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',168.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17275','SCAR IMW SU01-05',NULL,NULL,'EPSG','3062','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',-165.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17276','SCAR IMW SU06-10',NULL,NULL,'EPSG','3063','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',-135.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17277','SCAR IMW SU11-15',NULL,NULL,'EPSG','3064','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',-105.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17278','SCAR IMW SU16-20',NULL,NULL,'EPSG','3065','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',-75.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17279','SCAR IMW SU21-25',NULL,NULL,'EPSG','3066','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',-45.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17280','SCAR IMW SU26-30',NULL,NULL,'EPSG','3067','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',-15.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17281','SCAR IMW SU31-35',NULL,NULL,'EPSG','3068','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',15.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17282','SCAR IMW SU36-40',NULL,NULL,'EPSG','3069','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',45.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17283','SCAR IMW SU41-45',NULL,NULL,'EPSG','3070','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',75.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17284','SCAR IMW SU46-50',NULL,NULL,'EPSG','3071','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',105.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17285','SCAR IMW SU51-55',NULL,NULL,'EPSG','3072','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',135.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17286','SCAR IMW SU56-60',NULL,NULL,'EPSG','3073','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',165.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17287','SCAR IMW SV01-10',NULL,NULL,'EPSG','3074','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',-150.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17288','SCAR IMW SV11-20',NULL,NULL,'EPSG','3075','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',-90.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17289','SCAR IMW SV21-30',NULL,NULL,'EPSG','3076','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',-30.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17290','SCAR IMW SV31-40',NULL,NULL,'EPSG','3077','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',30.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17291','SCAR IMW SV41-50',NULL,NULL,'EPSG','3078','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',90.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17292','SCAR IMW SV51-60',NULL,NULL,'EPSG','3079','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',150.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17293','SCAR IMW SW01-60',NULL,NULL,'EPSG','3080','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-80.1419,'EPSG','9110','EPSG','8833','Longitude of origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17294','USGS Transantarctic Mountains',NULL,NULL,'EPSG','3081','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-78.0,'EPSG','9102','EPSG','8822','Longitude of false origin',162.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17295','North Pole Lambert Azimuthal Equal Area (Bering Sea)',NULL,NULL,'EPSG','3480','EPSG','9820','Lambert Azimuthal Equal Area','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',180.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17296','North Pole Lambert Azimuthal Equal Area (Alaska)',NULL,NULL,'EPSG','3480','EPSG','9820','Lambert Azimuthal Equal Area','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-150.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17297','North Pole Lambert Azimuthal Equal Area (Canada)',NULL,NULL,'EPSG','3480','EPSG','9820','Lambert Azimuthal Equal Area','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-100.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17298','North Pole Lambert Azimuthal Equal Area (Atlantic)',NULL,NULL,'EPSG','3480','EPSG','9820','Lambert Azimuthal Equal Area','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-40.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17299','North Pole Lambert Azimuthal Equal Area (Europe)',NULL,NULL,'EPSG','3480','EPSG','9820','Lambert Azimuthal Equal Area','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',10.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17300','North Pole Lambert Azimuthal Equal Area (Russia)',NULL,NULL,'EPSG','3480','EPSG','9820','Lambert Azimuthal Equal Area','EPSG','8801','Latitude of natural origin',90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',90.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17321','SWEREF99 12 00',NULL,NULL,'EPSG','2833','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',12.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17322','SWEREF99 13 30',NULL,NULL,'EPSG','2834','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',13.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17323','SWEREF99 15 00',NULL,NULL,'EPSG','2835','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17324','SWEREF99 16 30',NULL,NULL,'EPSG','2836','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',16.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17325','SWEREF99 18 00',NULL,NULL,'EPSG','2837','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17326','SWEREF99 14 15',NULL,NULL,'EPSG','2838','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',14.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17327','SWEREF99 15 45',NULL,NULL,'EPSG','2839','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',15.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17328','SWEREF99 17 15',NULL,NULL,'EPSG','2840','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',17.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17329','SWEREF99 18 45',NULL,NULL,'EPSG','2841','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',18.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17330','SWEREF99 20 15',NULL,NULL,'EPSG','2842','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',20.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17331','SWEREF99 21 45',NULL,NULL,'EPSG','2843','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',21.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17332','SWEREF99 23 15',NULL,NULL,'EPSG','2844','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',23.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17333','SWEREF99 TM',NULL,NULL,'EPSG','1225','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17334','Sweden zone 7.5 gon V',NULL,NULL,'EPSG','2845','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',11.18298,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17335','Sweden zone 5 gon V',NULL,NULL,'EPSG','2846','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',13.33298,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17336','Sweden zone 0 gon',NULL,NULL,'EPSG','2848','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',18.03298,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17337','Sweden zone 2.5 gon O',NULL,NULL,'EPSG','2849','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',20.18298,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17338','Sweden zone 5 gon O',NULL,NULL,'EPSG','2850','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',22.33298,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17339','RT90 zone 7.5 gon V emulation',NULL,NULL,'EPSG','2845','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',11.18225,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000006,'EPSG','9201','EPSG','8806','False easting',1500025.141,'EPSG','9001','EPSG','8807','False northing',-667.282,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17340','RT90 zone 5 gon V emulation',NULL,NULL,'EPSG','2846','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',13.332256,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000058,'EPSG','9201','EPSG','8806','False easting',1500044.695,'EPSG','9001','EPSG','8807','False northing',-667.13,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17341','RT90 zone 2.5 gon V emulation',NULL,NULL,'EPSG','2847','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',15.4822624306,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.00000561024,'EPSG','9201','EPSG','8806','False easting',1500064.274,'EPSG','9001','EPSG','8807','False northing',-667.711,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17342','RT90 zone 0 gon emulation',NULL,NULL,'EPSG','2848','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',18.032268,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000054,'EPSG','9201','EPSG','8806','False easting',1500083.521,'EPSG','9001','EPSG','8807','False northing',-668.844,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17343','RT90 zone 2.5 gon O emulation',NULL,NULL,'EPSG','2849','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',20.182274,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000052,'EPSG','9201','EPSG','8806','False easting',1500102.765,'EPSG','9001','EPSG','8807','False northing',-670.706,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17344','RT90 zone 5 gon O emulation',NULL,NULL,'EPSG','2850','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',22.33228,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000049,'EPSG','9201','EPSG','8806','False easting',1500121.846,'EPSG','9001','EPSG','8807','False northing',-672.557,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17348','Map Grid of Australia zone 48',NULL,NULL,'EPSG','4191','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17349','Map Grid of Australia zone 49',NULL,NULL,'EPSG','4176','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17350','Map Grid of Australia zone 50',NULL,NULL,'EPSG','4178','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17351','Map Grid of Australia zone 51',NULL,NULL,'EPSG','1559','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17352','Map Grid of Australia zone 52',NULL,NULL,'EPSG','1560','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17353','Map Grid of Australia zone 53',NULL,NULL,'EPSG','1561','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17354','Map Grid of Australia zone 54',NULL,NULL,'EPSG','1562','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17355','Map Grid of Australia zone 55',NULL,NULL,'EPSG','1563','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17356','Map Grid of Australia zone 56',NULL,NULL,'EPSG','1564','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17357','Map Grid of Australia zone 57',NULL,NULL,'EPSG','4196','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17358','Map Grid of Australia zone 58',NULL,NULL,'EPSG','4175','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17359','South Australia Lambert',NULL,NULL,'EPSG','2986','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-32.0,'EPSG','9102','EPSG','8822','Longitude of false origin',135.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-28.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-36.0,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17360','Vicgrid66',NULL,NULL,'EPSG','2285','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-37.0,'EPSG','9102','EPSG','8822','Longitude of false origin',145.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-36.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-38.0,'EPSG','9102','EPSG','8826','Easting at false origin',2500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17361','Vicgrid',NULL,NULL,'EPSG','2285','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-37.0,'EPSG','9102','EPSG','8822','Longitude of false origin',145.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-36.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-38.0,'EPSG','9102','EPSG','8826','Easting at false origin',2500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17362','Geoscience Australia Standard National Scale Lambert Projection',NULL,NULL,'EPSG','2575','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',134.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-18.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-36.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17363','Brisbane City Survey Grid 02',NULL,NULL,'EPSG','2990','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-28.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17364','New South Wales Lambert',NULL,NULL,'EPSG','3139','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-33.25,'EPSG','9102','EPSG','8822','Longitude of false origin',147.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-30.75,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-35.75,'EPSG','9102','EPSG','8826','Easting at false origin',9300000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17365','Australian Albers',NULL,NULL,'EPSG','2575','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',132.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-18.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-36.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17401','Katanga Lambert Conformal',NULL,NULL,'EPSG','3147','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',26.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-6.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-11.5,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','17402','Katanga Transverse Mercator',NULL,NULL,'EPSG','3147','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-9.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',26.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9998,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','17412','Congo Transverse Mercator zone 12',NULL,NULL,'EPSG','3937','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',12.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17414','Congo Transverse Mercator zone 14',NULL,NULL,'EPSG','3151','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',14.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17416','Congo Transverse Mercator zone 16',NULL,NULL,'EPSG','3152','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',16.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17418','Congo Transverse Mercator zone 18',NULL,NULL,'EPSG','3153','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17420','Congo Transverse Mercator zone 20',NULL,NULL,'EPSG','3154','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',20.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17422','Congo Transverse Mercator zone 22',NULL,NULL,'EPSG','3155','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',22.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17424','Congo Transverse Mercator zone 24',NULL,NULL,'EPSG','3156','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17426','Congo Transverse Mercator zone 26',NULL,NULL,'EPSG','3157','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',26.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17428','Congo Transverse Mercator zone 28',NULL,NULL,'EPSG','3158','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',28.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17430','Congo Transverse Mercator zone 30',NULL,NULL,'EPSG','3159','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17432','Indonesia TM-3 zone 46.2',NULL,NULL,'EPSG','3976','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',94.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17433','Indonesia TM-3 zone 47.1',NULL,NULL,'EPSG','3510','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',97.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17434','Indonesia TM-3 zone 47.2',NULL,NULL,'EPSG','3511','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',100.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17435','Indonesia TM-3 zone 48.1',NULL,NULL,'EPSG','3512','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',103.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17436','Indonesia TM-3 zone 48.2',NULL,NULL,'EPSG','3513','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',106.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17437','Indonesia TM-3 zone 49.1',NULL,NULL,'EPSG','3514','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',109.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17438','Indonesia TM-3 zone 49.2',NULL,NULL,'EPSG','3515','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',112.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17439','Indonesia TM-3 zone 50.1',NULL,NULL,'EPSG','3516','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',115.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17440','Indonesia TM-3 zone 50.2',NULL,NULL,'EPSG','3517','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',118.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17441','Indonesia TM-3 zone 51.1',NULL,NULL,'EPSG','3518','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',121.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17442','Indonesia TM-3 zone 51.2',NULL,NULL,'EPSG','3519','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',124.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17443','Indonesia TM-3 zone 52.1',NULL,NULL,'EPSG','3520','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17444','Indonesia TM-3 zone 52.2',NULL,NULL,'EPSG','3521','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',130.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17445','Indonesia TM-3 zone 53.1',NULL,NULL,'EPSG','3522','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',133.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17446','Indonesia TM-3 zone 53.2',NULL,NULL,'EPSG','3523','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',136.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17447','Indonesia TM-3 zone 54.1',NULL,NULL,'EPSG','3975','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',139.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',1500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17448','Australian Map Grid zone 48',NULL,NULL,'EPSG','1556','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',105.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','17449','Australian Map Grid zone 49',NULL,NULL,'EPSG','1557','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17450','Australian Map Grid zone 50',NULL,NULL,'EPSG','1558','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17451','Australian Map Grid zone 51',NULL,NULL,'EPSG','1559','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17452','Australian Map Grid zone 52',NULL,NULL,'EPSG','1560','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17453','Australian Map Grid zone 53',NULL,NULL,'EPSG','1561','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17454','Australian Map Grid zone 54',NULL,NULL,'EPSG','1567','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17455','Australian Map Grid zone 55',NULL,NULL,'EPSG','1568','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17456','Australian Map Grid zone 56',NULL,NULL,'EPSG','2291','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17457','Australian Map Grid zone 57',NULL,NULL,'EPSG','1565','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17458','Australian Map Grid zone 58',NULL,NULL,'EPSG','1566','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17515','South African Survey Grid zone 15',NULL,NULL,'EPSG','1454','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17517','South African Survey Grid zone 17',NULL,NULL,'EPSG','1455','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',17.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17519','South African Survey Grid zone 19',NULL,NULL,'EPSG','1456','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17521','South African Survey Grid zone 21',NULL,NULL,'EPSG','1457','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17523','South African Survey Grid zone 23',NULL,NULL,'EPSG','1458','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',23.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17525','South African Survey Grid zone 25',NULL,NULL,'EPSG','1459','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',25.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17527','South African Survey Grid zone 27',NULL,NULL,'EPSG','1460','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17529','South African Survey Grid zone 29',NULL,NULL,'EPSG','1461','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',29.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17531','South African Survey Grid zone 31',NULL,NULL,'EPSG','1462','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',31.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17533','South African Survey Grid zone 33',NULL,NULL,'EPSG','1463','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17611','South West African Survey Grid zone 11',NULL,NULL,'EPSG','1838','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',-22.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',11.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9031','EPSG','8807','False northing',0.0,'EPSG','9031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17613','South West African Survey Grid zone 13',NULL,NULL,'EPSG','1839','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',-22.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',13.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9031','EPSG','8807','False northing',0.0,'EPSG','9031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17615','South West African Survey Grid zone 15',NULL,NULL,'EPSG','1840','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',-22.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9031','EPSG','8807','False northing',0.0,'EPSG','9031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17617','South West African Survey Grid zone 17',NULL,NULL,'EPSG','1841','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',-22.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',17.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9031','EPSG','8807','False northing',0.0,'EPSG','9031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17619','South West African Survey Grid zone 19',NULL,NULL,'EPSG','1842','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',-22.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9031','EPSG','8807','False northing',0.0,'EPSG','9031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17621','South West African Survey Grid zone 21',NULL,NULL,'EPSG','1843','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',-22.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9031','EPSG','8807','False northing',0.0,'EPSG','9031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17623','South West African Survey Grid zone 23',NULL,NULL,'EPSG','1844','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',-22.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',23.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9031','EPSG','8807','False northing',0.0,'EPSG','9031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17625','South West African Survey Grid zone 25',NULL,NULL,'EPSG','1845','EPSG','9808','Transverse Mercator (South Orientated)','EPSG','8801','Latitude of natural origin',-22.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',25.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9031','EPSG','8807','False northing',0.0,'EPSG','9031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17700','MTM Quebec zone 2',NULL,NULL,'EPSG','1420','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-55.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','17701','MTM zone 1',NULL,NULL,'EPSG','2226','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-53.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17702','MTM zone 2',NULL,NULL,'EPSG','2227','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-56.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17703','MTM zone 3',NULL,NULL,'EPSG','2290','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-58.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17704','MTM zone 4',NULL,NULL,'EPSG','2276','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-61.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17705','MTM zone 5',NULL,NULL,'EPSG','2277','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-64.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17706','MTM zone 6',NULL,NULL,'EPSG','2278','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-67.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17707','MTM zone 7',NULL,NULL,'EPSG','1425','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-70.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17708','MTM zone 8',NULL,NULL,'EPSG','2279','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-73.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17709','MTM zone 9',NULL,NULL,'EPSG','2280','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-76.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17710','MTM zone 10',NULL,NULL,'EPSG','2281','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-79.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17711','MTM zone 11',NULL,NULL,'EPSG','1432','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-82.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17712','MTM zone 12',NULL,NULL,'EPSG','1433','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17713','MTM zone 13',NULL,NULL,'EPSG','1434','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-84.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17714','MTM zone 14',NULL,NULL,'EPSG','1435','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17715','MTM zone 15',NULL,NULL,'EPSG','1436','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17716','MTM zone 16',NULL,NULL,'EPSG','1437','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-93.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17717','MTM zone 17',NULL,NULL,'EPSG','1438','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-96.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',304800.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17722','Alberta 3-degree TM reference meridian 111 W',NULL,NULL,'EPSG','3543','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17723','Alberta 3-degree TM reference meridian 114 W',NULL,NULL,'EPSG','3542','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-114.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17724','Alberta 3-degree TM reference meridian 117 W',NULL,NULL,'EPSG','3541','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17725','Alberta 3-degree TM reference meridian 120 W',NULL,NULL,'EPSG','3540','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-120.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9001','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','17726','Alberta 3-degree TM reference meridian 120 W',NULL,NULL,'EPSG','3540','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-120.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17794','MTM Nova Scotia zone 4',NULL,NULL,'EPSG','1534','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-61.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',4500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17795','MTM Nova Scotia zone 5',NULL,NULL,'EPSG','1535','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-64.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',5500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17801','Japan Plane Rectangular CS zone I',NULL,NULL,'EPSG','1854','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',33.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',129.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17802','Japan Plane Rectangular CS zone II',NULL,NULL,'EPSG','1855','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',33.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',131.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17803','Japan Plane Rectangular CS zone III',NULL,NULL,'EPSG','1856','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',132.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17804','Japan Plane Rectangular CS zone IV',NULL,NULL,'EPSG','1857','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',33.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',133.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17805','Japan Plane Rectangular CS zone V',NULL,NULL,'EPSG','1858','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',134.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17806','Japan Plane Rectangular CS zone VI',NULL,NULL,'EPSG','1859','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',136.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17807','Japan Plane Rectangular CS zone VII',NULL,NULL,'EPSG','1860','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',137.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17808','Japan Plane Rectangular CS zone VIII',NULL,NULL,'EPSG','1861','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',138.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17809','Japan Plane Rectangular CS zone IX',NULL,NULL,'EPSG','1862','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',139.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17810','Japan Plane Rectangular CS zone X',NULL,NULL,'EPSG','1863','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',140.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17811','Japan Plane Rectangular CS zone XI',NULL,NULL,'EPSG','1864','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',140.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17812','Japan Plane Rectangular CS zone XII',NULL,NULL,'EPSG','1865','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',142.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17813','Japan Plane Rectangular CS zone XIII',NULL,NULL,'EPSG','1866','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',144.15,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17814','Japan Plane Rectangular CS zone XIV',NULL,NULL,'EPSG','1867','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',142.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17815','Japan Plane Rectangular CS zone XV',NULL,NULL,'EPSG','1868','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',127.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17816','Japan Plane Rectangular CS zone XVI',NULL,NULL,'EPSG','1869','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',124.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17817','Japan Plane Rectangular CS zone XVII',NULL,NULL,'EPSG','1870','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',131.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17818','Japan Plane Rectangular CS zone XVIII',NULL,NULL,'EPSG','1871','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',20.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',136.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17819','Japan Plane Rectangular CS zone XIX',NULL,NULL,'EPSG','1872','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',154.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17901','Mount Eden Circuit',NULL,NULL,'EPSG','3781','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-36.5247515,'EPSG','9110','EPSG','8802','Longitude of natural origin',174.45516217,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17902','Bay of Plenty Circuit',NULL,NULL,'EPSG','3779','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-37.45404993,'EPSG','9110','EPSG','8802','Longitude of natural origin',176.27583101,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17903','Poverty Bay Circuit',NULL,NULL,'EPSG','3780','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-38.372893,'EPSG','9110','EPSG','8802','Longitude of natural origin',177.53082906,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17904','Hawkes Bay Circuit',NULL,NULL,'EPSG','3772','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-39.39033455,'EPSG','9110','EPSG','8802','Longitude of natural origin',176.40252499,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17905','Taranaki Circuit',NULL,NULL,'EPSG','3777','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-39.08087299,'EPSG','9110','EPSG','8802','Longitude of natural origin',174.13408423,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17906','Tuhirangi Circuit',NULL,NULL,'EPSG','3778','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-39.30448934,'EPSG','9110','EPSG','8802','Longitude of natural origin',175.38241325,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17907','Wanganui Circuit',NULL,NULL,'EPSG','3776','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-40.14310097,'EPSG','9110','EPSG','8802','Longitude of natural origin',175.29171586,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17908','Wairarapa Circuit',NULL,NULL,'EPSG','3775','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-40.55319175,'EPSG','9110','EPSG','8802','Longitude of natural origin',175.38504588,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17909','Wellington Circuit',NULL,NULL,'EPSG','3774','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-41.18047507,'EPSG','9110','EPSG','8802','Longitude of natural origin',174.46358432,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17910','Collingwood Circuit',NULL,NULL,'EPSG','3782','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-40.42531326,'EPSG','9110','EPSG','8802','Longitude of natural origin',172.40193674,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17911','Nelson Circuit',NULL,NULL,'EPSG','3784','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-41.1628361,'EPSG','9110','EPSG','8802','Longitude of natural origin',173.17575405,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17912','Karamea Circuit',NULL,NULL,'EPSG','3783','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-41.17236815,'EPSG','9110','EPSG','8802','Longitude of natural origin',172.06325015,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17913','Buller Circuit',NULL,NULL,'EPSG','3786','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-41.48388903,'EPSG','9110','EPSG','8802','Longitude of natural origin',171.34525362,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17914','Grey Circuit',NULL,NULL,'EPSG','3787','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-42.20012994,'EPSG','9110','EPSG','8802','Longitude of natural origin',171.32591767,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17915','Amuri Circuit',NULL,NULL,'EPSG','3788','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-42.41208197,'EPSG','9110','EPSG','8802','Longitude of natural origin',173.00364802,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17916','Marlborough Circuit',NULL,NULL,'EPSG','3785','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-41.3240152,'EPSG','9110','EPSG','8802','Longitude of natural origin',173.48074668,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17917','Hokitika Circuit',NULL,NULL,'EPSG','3789','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-42.53107605,'EPSG','9110','EPSG','8802','Longitude of natural origin',170.58479766,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17918','Okarito Circuit',NULL,NULL,'EPSG','3791','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-43.06364613,'EPSG','9110','EPSG','8802','Longitude of natural origin',170.1539333,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17919','Jacksons Bay Circuit',NULL,NULL,'EPSG','3794','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-43.58400904,'EPSG','9110','EPSG','8802','Longitude of natural origin',168.36225612,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17920','Mount Pleasant Circuit',NULL,NULL,'EPSG','3790','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-43.35262953,'EPSG','9110','EPSG','8802','Longitude of natural origin',172.43378969,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17921','Gawler Circuit',NULL,NULL,'EPSG','3792','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-43.44553616,'EPSG','9110','EPSG','8802','Longitude of natural origin',171.21386945,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17922','Timaru Circuit',NULL,NULL,'EPSG','3793','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-44.24079933,'EPSG','9110','EPSG','8802','Longitude of natural origin',171.0326103,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17923','Lindis Peak Circuit',NULL,NULL,'EPSG','3795','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-44.44069647,'EPSG','9110','EPSG','8802','Longitude of natural origin',169.28039183,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17924','Mount Nicholas Circuit',NULL,NULL,'EPSG','3797','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-45.07584493,'EPSG','9110','EPSG','8802','Longitude of natural origin',168.23551083,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17925','Mount York Circuit',NULL,NULL,'EPSG','3799','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-45.33494142,'EPSG','9110','EPSG','8802','Longitude of natural origin',167.44199024,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17926','Observation Point Circuit',NULL,NULL,'EPSG','3796','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-45.48583078,'EPSG','9110','EPSG','8802','Longitude of natural origin',170.37429426,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17927','North Taieri Circuit',NULL,NULL,'EPSG','3798','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-45.51414481,'EPSG','9110','EPSG','8802','Longitude of natural origin',170.16573208,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99996,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17928','Bluff Circuit',NULL,NULL,'EPSG','3800','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-46.36000346,'EPSG','9110','EPSG','8802','Longitude of natural origin',168.20343392,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300002.66,'EPSG','9001','EPSG','8807','False northing',699999.58,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17931','Mount Eden 2000',NULL,NULL,'EPSG','3781','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-36.5247,'EPSG','9110','EPSG','8802','Longitude of natural origin',174.4551,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17932','Bay of Plenty 2000',NULL,NULL,'EPSG','3779','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-37.454,'EPSG','9110','EPSG','8802','Longitude of natural origin',176.2758,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17933','Poverty Bay 2000',NULL,NULL,'EPSG','3780','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-38.3728,'EPSG','9110','EPSG','8802','Longitude of natural origin',177.5308,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17934','Hawkes Bay 2000',NULL,NULL,'EPSG','3772','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-39.3903,'EPSG','9110','EPSG','8802','Longitude of natural origin',176.4025,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17935','Taranaki 2000',NULL,NULL,'EPSG','3777','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-39.0808,'EPSG','9110','EPSG','8802','Longitude of natural origin',174.134,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17936','Tuhirangi 2000',NULL,NULL,'EPSG','3778','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-39.3044,'EPSG','9110','EPSG','8802','Longitude of natural origin',175.3824,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17937','Wanganui 2000',NULL,NULL,'EPSG','3776','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-40.1431,'EPSG','9110','EPSG','8802','Longitude of natural origin',175.2917,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17938','Wairarapa 2000',NULL,NULL,'EPSG','3775','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-40.5531,'EPSG','9110','EPSG','8802','Longitude of natural origin',175.385,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17939','Wellington 2000',NULL,NULL,'EPSG','3774','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-41.1804,'EPSG','9110','EPSG','8802','Longitude of natural origin',174.4635,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17940','Collingwood 2000',NULL,NULL,'EPSG','3782','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-40.4253,'EPSG','9110','EPSG','8802','Longitude of natural origin',172.4019,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17941','Nelson 2000',NULL,NULL,'EPSG','3784','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-41.1628,'EPSG','9110','EPSG','8802','Longitude of natural origin',173.1757,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17942','Karamea 2000',NULL,NULL,'EPSG','3783','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-41.1723,'EPSG','9110','EPSG','8802','Longitude of natural origin',172.0632,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17943','Buller 2000',NULL,NULL,'EPSG','3786','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-41.4838,'EPSG','9110','EPSG','8802','Longitude of natural origin',171.3452,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17944','Grey 2000',NULL,NULL,'EPSG','3787','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-42.2001,'EPSG','9110','EPSG','8802','Longitude of natural origin',171.3259,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17945','Amuri 2000',NULL,NULL,'EPSG','3788','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-42.412,'EPSG','9110','EPSG','8802','Longitude of natural origin',173.0036,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17946','Marlborough 2000',NULL,NULL,'EPSG','3785','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-41.324,'EPSG','9110','EPSG','8802','Longitude of natural origin',173.4807,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17947','Hokitika 2000',NULL,NULL,'EPSG','3789','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-42.531,'EPSG','9110','EPSG','8802','Longitude of natural origin',170.5847,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17948','Okarito 2000',NULL,NULL,'EPSG','3791','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-43.0636,'EPSG','9110','EPSG','8802','Longitude of natural origin',170.1539,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17949','Jacksons Bay 2000',NULL,NULL,'EPSG','3794','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-43.584,'EPSG','9110','EPSG','8802','Longitude of natural origin',168.3622,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17950','Mount Pleasant 2000',NULL,NULL,'EPSG','3790','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-43.3526,'EPSG','9110','EPSG','8802','Longitude of natural origin',172.4337,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17951','Gawler 2000',NULL,NULL,'EPSG','3792','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-43.4455,'EPSG','9110','EPSG','8802','Longitude of natural origin',171.2138,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17952','Timaru 2000',NULL,NULL,'EPSG','3793','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-44.2407,'EPSG','9110','EPSG','8802','Longitude of natural origin',171.0326,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17953','Lindis Peak 2000',NULL,NULL,'EPSG','3795','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-44.4406,'EPSG','9110','EPSG','8802','Longitude of natural origin',169.2803,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17954','Mount Nicholas 2000',NULL,NULL,'EPSG','3797','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-45.0758,'EPSG','9110','EPSG','8802','Longitude of natural origin',168.2355,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17955','Mount York 2000',NULL,NULL,'EPSG','3799','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-45.3349,'EPSG','9110','EPSG','8802','Longitude of natural origin',167.4419,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17956','Observation Point 2000',NULL,NULL,'EPSG','3796','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-45.4858,'EPSG','9110','EPSG','8802','Longitude of natural origin',170.3742,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17957','North Taieri 2000',NULL,NULL,'EPSG','3798','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-45.5141,'EPSG','9110','EPSG','8802','Longitude of natural origin',170.1657,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99996,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17958','Bluff 2000',NULL,NULL,'EPSG','3800','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-46.36,'EPSG','9110','EPSG','8802','Longitude of natural origin',168.2034,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17959','Chatham Island Circuit 2000',NULL,NULL,'EPSG','2889','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-44.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-176.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17960','Auckland Islands Transverse Mercator 2000',NULL,NULL,'EPSG','3554','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',166.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17961','Campbell Island Transverse Mercator 2000',NULL,NULL,'EPSG','3555','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',169.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17962','Antipodes Islands Transverse Mercator 2000',NULL,NULL,'EPSG','3556','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',179.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17963','Raoul Island Transverse Mercator 2000',NULL,NULL,'EPSG','3557','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-178.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17964','New Zealand Continental Shelf Lambert Conformal 2000',NULL,NULL,'EPSG','3593','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-41.0,'EPSG','9110','EPSG','8822','Longitude of false origin',173.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',-37.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-44.3,'EPSG','9110','EPSG','8826','Easting at false origin',3000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',7000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17965','Chatham Islands Transverse Mercator 2000',NULL,NULL,'EPSG','2889','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-176.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','17966','Darwin Glacier Lambert Conformal 2000',NULL,NULL,'EPSG','3592','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-90.0,'EPSG','9110','EPSG','8822','Longitude of false origin',157.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',-76.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-79.2,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18001','Austria Gauss-Kruger West Zone',NULL,NULL,'EPSG','1706','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',28.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18002','Austria Gauss-Kruger Central Zone',NULL,NULL,'EPSG','1707','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',31.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18003','Austria Gauss-Kruger East Zone',NULL,NULL,'EPSG','1708','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',34.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18004','Austria Gauss-Kruger West',NULL,NULL,'EPSG','1706','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',10.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18005','Austria Gauss-Kruger Central',NULL,NULL,'EPSG','1707','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',13.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18006','Austria Gauss-Kruger East',NULL,NULL,'EPSG','1708','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',16.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18007','Austria Gauss-Kruger M28',NULL,NULL,'EPSG','1706','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',10.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18008','Austria Gauss-Kruger M31',NULL,NULL,'EPSG','1707','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',13.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',450000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18009','Austria Gauss-Kruger M34',NULL,NULL,'EPSG','1708','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',16.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',750000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18011','Nord Algerie (ancienne)',NULL,NULL,'EPSG','1728','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999625544,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18012','Sud Algerie (ancienne)',NULL,NULL,'EPSG','1729','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',37.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999625769,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18021','Nord Algerie',NULL,NULL,'EPSG','1728','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999625544,'EPSG','9201','EPSG','8806','False easting',500135.0,'EPSG','9001','EPSG','8807','False northing',300090.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18022','Sud Algerie',NULL,NULL,'EPSG','1729','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',37.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999625769,'EPSG','9201','EPSG','8806','False easting',500135.0,'EPSG','9001','EPSG','8807','False northing',300090.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18031','Argentina zone 1',NULL,NULL,'EPSG','1608','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-72.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18032','Argentina zone 2',NULL,NULL,'EPSG','1609','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',2500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18033','Argentina zone 3',NULL,NULL,'EPSG','1610','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-66.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18034','Argentina zone 4',NULL,NULL,'EPSG','1611','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',4500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18035','Argentina zone 5',NULL,NULL,'EPSG','1612','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-60.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',5500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18036','Argentina zone 6',NULL,NULL,'EPSG','1613','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',6500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18037','Argentina zone 7',NULL,NULL,'EPSG','1614','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-54.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',7500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18041','Austria West Zone',NULL,NULL,'EPSG','1706','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',28.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18042','Austria Central Zone',NULL,NULL,'EPSG','1707','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',31.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18043','Austria East Zone',NULL,NULL,'EPSG','1708','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',34.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18044','Austria M28',NULL,NULL,'EPSG','1706','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',10.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18045','Austria M31',NULL,NULL,'EPSG','1707','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',13.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',450000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18046','Austria M34',NULL,NULL,'EPSG','1708','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',16.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',750000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18047','Austria zone M28',NULL,NULL,'EPSG','1706','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',28.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18048','Austria zone M31',NULL,NULL,'EPSG','1707','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',31.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',450000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18049','Austria zone M34',NULL,NULL,'EPSG','1708','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',34.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',750000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18051','Colombia West zone',NULL,NULL,'EPSG','1598','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.355657,'EPSG','9110','EPSG','8802','Longitude of natural origin',-77.04513,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18052','Colombia Bogota zone',NULL,NULL,'EPSG','1599','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.355657,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.04513,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18053','Colombia East Central zone',NULL,NULL,'EPSG','1600','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.355657,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.04513,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18054','Colombia East zone',NULL,NULL,'EPSG','1601','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.355657,'EPSG','9110','EPSG','8802','Longitude of natural origin',-68.04513,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18055','Colombia MAGNA Far West zone',NULL,NULL,'EPSG','3091','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.35463215,'EPSG','9110','EPSG','8802','Longitude of natural origin',-80.04390285,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18056','Colombia MAGNA West zone',NULL,NULL,'EPSG','3090','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.35463215,'EPSG','9110','EPSG','8802','Longitude of natural origin',-77.04390285,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18057','Colombia MAGNA Bogota zone',NULL,NULL,'EPSG','1599','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.35463215,'EPSG','9110','EPSG','8802','Longitude of natural origin',-74.04390285,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18058','Colombia MAGNA East Central zone',NULL,NULL,'EPSG','1600','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.35463215,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.04390285,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18059','Colombia MAGNA East zone',NULL,NULL,'EPSG','1601','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.35463215,'EPSG','9110','EPSG','8802','Longitude of natural origin',-68.04390285,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18061','Cuba Norte',NULL,NULL,'EPSG','1487','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',22.21,'EPSG','9110','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99993602,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',280296.016,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','18062','Cuba Sur',NULL,NULL,'EPSG','1488','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',20.43,'EPSG','9110','EPSG','8802','Longitude of natural origin',-76.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99994848,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',229126.939,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','18063','Cuba Norte',NULL,NULL,'EPSG','1487','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',22.21,'EPSG','9110','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',23.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',21.42,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',280296.016,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18064','Cuba Sur',NULL,NULL,'EPSG','1488','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',20.43,'EPSG','9110','EPSG','8822','Longitude of false origin',-76.5,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',21.18,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',20.08,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',229126.939,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18071','Egypt Blue Belt',NULL,NULL,'EPSG','1642','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',35.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',1100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18072','Egypt Red Belt',NULL,NULL,'EPSG','1643','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',31.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',615000.0,'EPSG','9001','EPSG','8807','False northing',810000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18073','Egypt Purple Belt',NULL,NULL,'EPSG','1644','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18074','Egypt Extended Purple Belt',NULL,NULL,'EPSG','1645','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',1200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18081','Lambert zone I',NULL,NULL,'EPSG','1731','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',55.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999877341,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',1200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18082','Lambert zone II',NULL,NULL,'EPSG','1734','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',52.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99987742,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',2200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18083','Lambert zone III',NULL,NULL,'EPSG','1733','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999877499,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',3200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18084','Lambert zone IV',NULL,NULL,'EPSG','1327','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.85,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99994471,'EPSG','9201','EPSG','8806','False easting',234.358,'EPSG','9001','EPSG','8807','False northing',4185861.369,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18085','Lambert-93',NULL,NULL,'EPSG','1326','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.3,'EPSG','9110','EPSG','8822','Longitude of false origin',3.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',49.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',44.0,'EPSG','9110','EPSG','8826','Easting at false origin',700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18086','France EuroLambert',NULL,NULL,'EPSG','1326','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.48,'EPSG','9110','EPSG','8802','Longitude of natural origin',2.2014025,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99987742,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',2200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','18091','Lambert Nord France',NULL,NULL,'EPSG','1731','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',55.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999877341,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18092','Lambert Centre France',NULL,NULL,'EPSG','1734','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',52.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99987742,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18093','Lambert Sud France',NULL,NULL,'EPSG','1733','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999877499,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18094','Lambert Corse',NULL,NULL,'EPSG','1327','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.85,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99994471,'EPSG','9201','EPSG','8806','False easting',234.358,'EPSG','9001','EPSG','8807','False northing',185861.369,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18101','France Conic Conformal zone 1',NULL,NULL,'EPSG','3545','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',42.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18102','France Conic Conformal zone 2',NULL,NULL,'EPSG','3546','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18103','France Conic Conformal zone 3',NULL,NULL,'EPSG','3547','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18104','France Conic Conformal zone 4',NULL,NULL,'EPSG','3548','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18105','France Conic Conformal zone 5',NULL,NULL,'EPSG','3549','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18106','France Conic Conformal zone 6',NULL,NULL,'EPSG','3550','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18107','France Conic Conformal zone 7',NULL,NULL,'EPSG','3551','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',7200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18108','France Conic Conformal zone 8',NULL,NULL,'EPSG','3552','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',49.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',8200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18109','France Conic Conformal zone 9',NULL,NULL,'EPSG','3553','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',50.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',49.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',50.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',9200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18110','India zone 0',NULL,NULL,'EPSG','1668','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',39.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',68.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99846154,'EPSG','9201','EPSG','8806','False easting',2355500.0,'EPSG','9084','EPSG','8807','False northing',2590000.0,'EPSG','9084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18111','India zone I',NULL,NULL,'EPSG','1669','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',32.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',68.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',3000000.0,'EPSG','9084','EPSG','8807','False northing',1000000.0,'EPSG','9084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18112','India zone IIa',NULL,NULL,'EPSG','1670','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',74.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',3000000.0,'EPSG','9084','EPSG','8807','False northing',1000000.0,'EPSG','9084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18113','India zone IIb',NULL,NULL,'EPSG','1671','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',3000000.0,'EPSG','9084','EPSG','8807','False northing',1000000.0,'EPSG','9084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18114','India zone IIIa',NULL,NULL,'EPSG','1672','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',19.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',80.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',3000000.0,'EPSG','9084','EPSG','8807','False northing',1000000.0,'EPSG','9084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18115','India zone IIIb',NULL,NULL,'EPSG','2292','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',19.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',100.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',3000000.0,'EPSG','9084','EPSG','8807','False northing',1000000.0,'EPSG','9084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18116','India zone IVa',NULL,NULL,'EPSG','1673','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',12.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',80.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',3000000.0,'EPSG','9084','EPSG','8807','False northing',1000000.0,'EPSG','9084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18117','India zone IVb',NULL,NULL,'EPSG','2293','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',12.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',100.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',3000000.0,'EPSG','9084','EPSG','8807','False northing',1000000.0,'EPSG','9084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18121','Italy zone 1',NULL,NULL,'EPSG','1718','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18122','Italy zone 2',NULL,NULL,'EPSG','1719','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',2520000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18131','Nord Maroc',NULL,NULL,'EPSG','1703','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',37.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',-6.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999625769,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18132','Sud Maroc',NULL,NULL,'EPSG','2787','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',33.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',-6.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999615596,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18133','Sahara',NULL,NULL,'EPSG','1705','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',29.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',-6.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1200000.0,'EPSG','9001','EPSG','8807','False northing',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','18134','Sahara Nord',NULL,NULL,'EPSG','2788','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',29.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',-6.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999616304,'EPSG','9201','EPSG','8806','False easting',1200000.0,'EPSG','9001','EPSG','8807','False northing',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18135','Sahara Sud',NULL,NULL,'EPSG','2789','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',25.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',-6.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999616437,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18141','New Zealand North Island National Grid',NULL,NULL,'EPSG','1500','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-39.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',175.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9040','EPSG','8807','False northing',400000.0,'EPSG','9040',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18142','New Zealand South Island National Grid',NULL,NULL,'EPSG','3344','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-44.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',171.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9040','EPSG','8807','False northing',500000.0,'EPSG','9040',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18151','Nigeria West Belt',NULL,NULL,'EPSG','1715','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',4.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99975,'EPSG','9201','EPSG','8806','False easting',230738.26,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18152','Nigeria Mid Belt',NULL,NULL,'EPSG','1714','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',8.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99975,'EPSG','9201','EPSG','8806','False easting',670553.98,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18153','Nigeria East Belt',NULL,NULL,'EPSG','1713','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',12.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99975,'EPSG','9201','EPSG','8806','False easting',1110369.7,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18161','Peru west zone',NULL,NULL,'EPSG','1753','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-6.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-80.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99983008,'EPSG','9201','EPSG','8806','False easting',222000.0,'EPSG','9001','EPSG','8807','False northing',1426834.743,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18162','Peru central zone',NULL,NULL,'EPSG','1752','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-9.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-76.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99932994,'EPSG','9201','EPSG','8806','False easting',720000.0,'EPSG','9001','EPSG','8807','False northing',1039979.159,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18163','Peru east zone',NULL,NULL,'EPSG','1751','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-9.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-70.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99952992,'EPSG','9201','EPSG','8806','False easting',1324000.0,'EPSG','9001','EPSG','8807','False northing',1040084.558,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18171','Philippines zone I',NULL,NULL,'EPSG','1698','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18172','Philippines zone II',NULL,NULL,'EPSG','1699','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',119.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18173','Philippines zone III',NULL,NULL,'EPSG','1700','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',121.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18174','Philippines zone IV',NULL,NULL,'EPSG','1701','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',123.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18175','Philippines zone V',NULL,NULL,'EPSG','1702','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',125.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18180','Finland zone 0',NULL,NULL,'EPSG','3092','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18181','Nord Tunisie',NULL,NULL,'EPSG','1619','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',11.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999625544,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18182','Sud Tunisie',NULL,NULL,'EPSG','1620','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',37.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',11.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999625769,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18183','Finland ETRS-GK19',NULL,NULL,'EPSG','3092','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18184','Finland ETRS-GK20',NULL,NULL,'EPSG','3093','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',20.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18185','Finland ETRS-GK21',NULL,NULL,'EPSG','3094','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18186','Finland ETRS-GK22',NULL,NULL,'EPSG','3095','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',22.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18187','Finland ETRS-GK23',NULL,NULL,'EPSG','3096','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',23.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18188','Finland ETRS-GK24',NULL,NULL,'EPSG','3097','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18189','Finland ETRS-GK25',NULL,NULL,'EPSG','3098','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',25.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18190','Finland ETRS-GK26',NULL,NULL,'EPSG','3099','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',26.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18191','Finland zone 1',NULL,NULL,'EPSG','1536','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18192','Finland zone 2',NULL,NULL,'EPSG','1537','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',2500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18193','Finland Uniform Coordinate System',NULL,NULL,'EPSG','1095','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18194','Finland zone 4',NULL,NULL,'EPSG','1539','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',4500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18195','Finland ETRS-GK27',NULL,NULL,'EPSG','3100','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18196','Finland ETRS-GK28',NULL,NULL,'EPSG','3101','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',28.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18197','Finland ETRS-GK29',NULL,NULL,'EPSG','3102','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',29.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18198','Finland ETRS-GK30',NULL,NULL,'EPSG','3103','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18199','Finland ETRS-GK31',NULL,NULL,'EPSG','3104','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',31.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18201','Palestine Grid',NULL,NULL,'EPSG','1356','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',31.4402749,'EPSG','9110','EPSG','8802','Longitude of natural origin',35.124349,'EPSG','9110','EPSG','8806','False easting',170251.555,'EPSG','9001','EPSG','8807','False northing',126867.909,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18202','Palestine Belt',NULL,NULL,'EPSG','1356','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.4402749,'EPSG','9110','EPSG','8802','Longitude of natural origin',35.124349,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',170251.555,'EPSG','9001','EPSG','8807','False northing',1126867.909,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18203','Israeli CS',NULL,NULL,'EPSG','2603','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',31.4402749,'EPSG','9110','EPSG','8802','Longitude of natural origin',35.124349,'EPSG','9110','EPSG','8806','False easting',170251.555,'EPSG','9001','EPSG','8807','False northing',1126867.909,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18204','Israeli TM',NULL,NULL,'EPSG','2603','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.4403817,'EPSG','9110','EPSG','8802','Longitude of natural origin',35.1216261,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0000067,'EPSG','9201','EPSG','8806','False easting',219529.584,'EPSG','9001','EPSG','8807','False northing',626907.39,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18205','Finland zone 5',NULL,NULL,'EPSG','3385','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',5500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18211','Guatemala Norte',NULL,NULL,'EPSG','2120','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',16.49,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99992226,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',292209.579,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18212','Guatemala Sur',NULL,NULL,'EPSG','2121','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',14.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',-90.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99989906,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',325992.681,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18221','NGO zone I',NULL,NULL,'EPSG','1741','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-4.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18222','NGO zone II',NULL,NULL,'EPSG','1742','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-2.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18223','NGO zone III',NULL,NULL,'EPSG','1743','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18224','NGO zone IV',NULL,NULL,'EPSG','1744','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',2.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18225','NGO zone V',NULL,NULL,'EPSG','1745','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',6.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18226','NGO zone VI',NULL,NULL,'EPSG','1746','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',10.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18227','NGO zone VII',NULL,NULL,'EPSG','1747','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',14.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18228','NGO zone VIII',NULL,NULL,'EPSG','1748','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',18.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18231','India zone I (1975 metres)',NULL,NULL,'EPSG','1676','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',32.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',68.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',2743195.5,'EPSG','9001','EPSG','8807','False northing',914398.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18232','India zone IIa (1975 metres)',NULL,NULL,'EPSG','1677','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',74.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',2743195.5,'EPSG','9001','EPSG','8807','False northing',914398.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18233','India zone IIIa (1975 metres)',NULL,NULL,'EPSG','1672','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',19.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',80.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',2743195.5,'EPSG','9001','EPSG','8807','False northing',914398.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18234','India zone IVa (1975 metres)',NULL,NULL,'EPSG','1673','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',12.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',80.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',2743195.5,'EPSG','9001','EPSG','8807','False northing',914398.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18235','India zone IIb (1975 metres)',NULL,NULL,'EPSG','1678','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',2743195.5,'EPSG','9001','EPSG','8807','False northing',914398.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18236','India zone I (1962 metres)',NULL,NULL,'EPSG','1685','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',32.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',68.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',2743196.4,'EPSG','9001','EPSG','8807','False northing',914398.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18237','India zone IIa (1962 metres)',NULL,NULL,'EPSG','1686','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',74.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',2743196.4,'EPSG','9001','EPSG','8807','False northing',914398.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18238','India zone IIb (1937 metres)',NULL,NULL,'EPSG','3217','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99878641,'EPSG','9201','EPSG','8806','False easting',2743185.69,'EPSG','9001','EPSG','8807','False northing',914395.23,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18240','Libya zone 5',NULL,NULL,'EPSG','1470','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18241','Libya zone 6',NULL,NULL,'EPSG','1471','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',11.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18242','Libya zone 7',NULL,NULL,'EPSG','1472','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',13.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18243','Libya zone 8',NULL,NULL,'EPSG','1473','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18244','Libya zone 9',NULL,NULL,'EPSG','1474','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',17.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18245','Libya zone 10',NULL,NULL,'EPSG','1475','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18246','Libya zone 11',NULL,NULL,'EPSG','1476','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18247','Libya zone 12',NULL,NULL,'EPSG','1477','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',23.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18248','Libya zone 13',NULL,NULL,'EPSG','1478','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',25.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18251','Korea East Belt',NULL,NULL,'EPSG','3726','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18252','Korea Central Belt',NULL,NULL,'EPSG','3716','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18253','Korea West Belt',NULL,NULL,'EPSG','3713','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',125.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18260','Maracaibo Grid (M1)',NULL,NULL,'EPSG','1319','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',10.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.3620224,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',-52684.972,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18261','Maracaibo Grid',NULL,NULL,'EPSG','1319','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',10.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.3620224,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',147315.028,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18262','Maracaibo Grid (M3)',NULL,NULL,'EPSG','1319','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',10.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.3620224,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',447315.028,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18263','Maracaibo La Rosa Grid',NULL,NULL,'EPSG','1319','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',10.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',-71.3620224,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',-17044.0,'EPSG','9001','EPSG','8807','False northing',-23139.97,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18275','Balkans zone 5',NULL,NULL,'EPSG','1709','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',5500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18276','Balkans zone 6',NULL,NULL,'EPSG','1710','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',6500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18277','Balkans zone 7',NULL,NULL,'EPSG','1711','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',7500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18278','Balkans zone 8',NULL,NULL,'EPSG','1712','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',8500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18280','Poland zone I',NULL,NULL,'EPSG','1515','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',50.373,'EPSG','9110','EPSG','8802','Longitude of natural origin',21.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9998,'EPSG','9201','EPSG','8806','False easting',4637000.0,'EPSG','9001','EPSG','8807','False northing',5467000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18281','Poland zone I',NULL,NULL,'EPSG','1515','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',50.373,'EPSG','9110','EPSG','8802','Longitude of natural origin',21.05,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9998,'EPSG','9201','EPSG','8806','False easting',4637000.0,'EPSG','9001','EPSG','8807','False northing',5647000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','18282','Poland zone II',NULL,NULL,'EPSG','1516','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',53.0007,'EPSG','9110','EPSG','8802','Longitude of natural origin',21.301,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9998,'EPSG','9201','EPSG','8806','False easting',4603000.0,'EPSG','9001','EPSG','8807','False northing',5806000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18283','Poland zone III',NULL,NULL,'EPSG','1517','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',53.35,'EPSG','9110','EPSG','8802','Longitude of natural origin',17.003,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9998,'EPSG','9201','EPSG','8806','False easting',3501000.0,'EPSG','9001','EPSG','8807','False northing',5999000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18284','Poland zone IV',NULL,NULL,'EPSG','1518','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',51.4015,'EPSG','9110','EPSG','8802','Longitude of natural origin',16.402,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9998,'EPSG','9201','EPSG','8806','False easting',3703000.0,'EPSG','9001','EPSG','8807','False northing',5627000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18285','Poland zone V',NULL,NULL,'EPSG','1519','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',18.573,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999983,'EPSG','9201','EPSG','8806','False easting',237000.0,'EPSG','9001','EPSG','8807','False northing',-4700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18286','GUGiK-80',NULL,NULL,'EPSG','1192','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',52.1,'EPSG','9110','EPSG','8802','Longitude of natural origin',19.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999714,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18300','Poland CS92',NULL,NULL,'EPSG','1192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9993,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',-5300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18305','Poland CS2000 zone 5',NULL,NULL,'EPSG','1520','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',5500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18306','Poland CS2000 zone 6',NULL,NULL,'EPSG','1521','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',6500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18307','Poland CS2000 zone 7',NULL,NULL,'EPSG','1522','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',7500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18308','Poland CS2000 zone 8',NULL,NULL,'EPSG','1523','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',8500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18310','Libya TM zone 5',NULL,NULL,'EPSG','1470','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18311','Libya TM zone 6',NULL,NULL,'EPSG','1471','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',11.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18312','Libya TM zone 7',NULL,NULL,'EPSG','1472','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',13.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18313','Libya TM zone 8',NULL,NULL,'EPSG','1473','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18314','Libya TM zone 9',NULL,NULL,'EPSG','1474','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',17.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18315','Libya TM zone 10',NULL,NULL,'EPSG','1475','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18316','Libya TM zone 11',NULL,NULL,'EPSG','1476','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18317','Libya TM zone 12',NULL,NULL,'EPSG','1477','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',23.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18318','Libya TM zone 13',NULL,NULL,'EPSG','1478','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',25.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18319','Libya TM',NULL,NULL,'EPSG','1143','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',17.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9965,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18401','Kp2000 Jylland og Fyn',NULL,NULL,'EPSG','2531','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',9.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18402','Kp2000 Sjaelland',NULL,NULL,'EPSG','2532','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',12.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18403','Kp2000 Bornholm',NULL,NULL,'EPSG','2533','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',900000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18411','French West Africa Senegal zone',NULL,NULL,'EPSG','2548','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-13.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18412','French West Africa Ivory Coast zone',NULL,NULL,'EPSG','2549','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-6.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18413','French West Africa Dahomey zone',NULL,NULL,'EPSG','2550','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',0.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18414','French West Africa Niger zone',NULL,NULL,'EPSG','2551','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',7.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18415','French Equatorial Africa west zone',NULL,NULL,'EPSG','2552','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',10.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18416','French Equatorial Africa central zone',NULL,NULL,'EPSG','2553','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',17.4,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18417','French Equatorial Africa east zone',NULL,NULL,'EPSG','2554','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',24.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18421','Greenland zone 1 east',NULL,NULL,'EPSG','2556','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',82.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-40.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18422','Greenland zone 2 east',NULL,NULL,'EPSG','2557','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',79.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-24.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18423','Greenland zone 3 east',NULL,NULL,'EPSG','2558','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',76.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-20.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18424','Greenland zone 4 east',NULL,NULL,'EPSG','2559','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',73.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-24.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18425','Greenland zone 5 east',NULL,NULL,'EPSG','2560','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',70.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-24.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18426','Greenland zone 6 east',NULL,NULL,'EPSG','2561','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',67.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-32.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18427','Greenland zone 7 east',NULL,NULL,'EPSG','2562','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',64.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-40.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18428','Greenland zone 8 east',NULL,NULL,'EPSG','2569','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',61.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-48.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18432','Greenland zone 2 west',NULL,NULL,'EPSG','2563','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',79.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-64.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18433','Greenland zone 3 west',NULL,NULL,'EPSG','2564','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',76.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-64.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18434','Greenland zone 4 west',NULL,NULL,'EPSG','2565','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',73.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-52.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18435','Greenland zone 5 west',NULL,NULL,'EPSG','2566','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',70.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-52.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18436','Greenland zone 6 west',NULL,NULL,'EPSG','2567','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',67.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-52.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18437','Greenland zone 7 west',NULL,NULL,'EPSG','2568','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',64.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-52.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18441','CS63 zone A1',NULL,NULL,'EPSG','2772','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.07,'EPSG','9110','EPSG','8802','Longitude of natural origin',41.32,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18442','CS63 zone A2',NULL,NULL,'EPSG','2773','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.07,'EPSG','9110','EPSG','8802','Longitude of natural origin',44.32,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',2300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18443','CS63 zone A3',NULL,NULL,'EPSG','2774','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.07,'EPSG','9110','EPSG','8802','Longitude of natural origin',47.32,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18444','CS63 zone A4',NULL,NULL,'EPSG','2775','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.07,'EPSG','9110','EPSG','8802','Longitude of natural origin',50.32,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',4300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18446','CS63 zone K2',NULL,NULL,'EPSG','2776','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.08,'EPSG','9110','EPSG','8802','Longitude of natural origin',50.46,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',2300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18447','CS63 zone K3',NULL,NULL,'EPSG','2777','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.08,'EPSG','9110','EPSG','8802','Longitude of natural origin',53.46,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18448','CS63 zone K4',NULL,NULL,'EPSG','2778','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.08,'EPSG','9110','EPSG','8802','Longitude of natural origin',56.46,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',4300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18450','CS63 zone C0',NULL,NULL,'EPSG','3173','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.06,'EPSG','9110','EPSG','8802','Longitude of natural origin',21.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18451','CS63 zone C1',NULL,NULL,'EPSG','3174','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.06,'EPSG','9110','EPSG','8802','Longitude of natural origin',24.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','18452','CS63 zone C2',NULL,NULL,'EPSG','3175','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.06,'EPSG','9110','EPSG','8802','Longitude of natural origin',27.57,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',2250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19839','Dubai Local Transverse Mercator',NULL,NULL,'EPSG','3531','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',55.2,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19840','IBCAO Polar Stereographic',NULL,NULL,'EPSG','1996','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',75.0,'EPSG','9102','EPSG','8833','Longitude of origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19841','Swiss Oblique Mercator 1903C (Greenwich)',NULL,NULL,'EPSG','1144','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',46.570866,'EPSG','9110','EPSG','8812','Longitude of projection centre',7.26225,'EPSG','9110','EPSG','8813','Azimuth of initial line',90.0,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',90.0,'EPSG','9110','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8816','Easting at projection centre',0.0,'EPSG','9001','EPSG','8817','Northing at projection centre',0.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19842','Arctic Polar Stereographic',NULL,NULL,'EPSG','1996','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',71.0,'EPSG','9102','EPSG','8833','Longitude of origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19843','Mercator 41',NULL,NULL,'EPSG','3508','EPSG','9805','Mercator (variant B)','EPSG','8823','Latitude of 1st standard parallel',-41.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',100.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19844','Ministry of Transport of Quebec Lambert',NULL,NULL,'EPSG','1368','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-70.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',50.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.0,'EPSG','9102','EPSG','8826','Easting at false origin',800000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19845','Slovene National Grid',NULL,NULL,'EPSG','1212','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19846','World Equidistant Cylindrical',NULL,NULL,'EPSG','1262','EPSG','9842','Equidistant Cylindrical','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19847','Popular Visualisation Mercator',NULL,NULL,'EPSG','1262','EPSG','9841','Mercator (1SP) (Spherical)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19848','Pitcairn TM 2006',NULL,NULL,'EPSG','3208','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-25.04067894,'EPSG','9110','EPSG','8802','Longitude of natural origin',-130.06466816,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',14200.0,'EPSG','9001','EPSG','8807','False northing',15500.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19849','Bermuda 2000 National Grid',NULL,NULL,'EPSG','1047','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',32.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-64.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',550000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19850','EPSG vertical perspective example',NULL,NULL,'EPSG','1263','EPSG','9838','Vertical Perspective','EPSG','8834','Latitude of topocentric origin',55.0,'EPSG','9102','EPSG','8835','Longitude of topocentric origin',5.0,'EPSG','9102','EPSG','8836','Ellipsoidal height of topocentric origin',200.0,'EPSG','9001','EPSG','8840','Viewpoint height',5900.0,'EPSG','9036',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19851','Croatia Transverse Mercator',NULL,NULL,'EPSG','1076','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',16.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19852','Croatia Lambert Conformal Conic',NULL,NULL,'EPSG','1076','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',16.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',45.55,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',43.05,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19853','Portugual TM06',NULL,NULL,'EPSG','1294','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.400573,'EPSG','9110','EPSG','8802','Longitude of natural origin',-8.075919,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19854','South Georgia Lambert',NULL,NULL,'EPSG','3529','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-55.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-37.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-54.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-54.45,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19855','Mercator 41',NULL,NULL,'EPSG','3508','EPSG','9804','Mercator (variant A)','EPSG','8801','Latitude of natural origin',-41.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',100.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19856','TM Reunion',NULL,NULL,'EPSG','3337','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-21.07,'EPSG','9110','EPSG','8802','Longitude of natural origin',55.32,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',160000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19857','Northwest Territories Lambert',NULL,NULL,'EPSG','3481','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-112.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',62.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',70.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19858','Yukon Albers',NULL,NULL,'EPSG','2417','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',59.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-132.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',61.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',68.0,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19859','Fiji Map Grid',NULL,NULL,'EPSG','1094','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-17.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',178.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99985,'EPSG','9201','EPSG','8806','False easting',2000000.0,'EPSG','9001','EPSG','8807','False northing',4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19860','Jamaica Metric Grid 2001',NULL,NULL,'EPSG','3342','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',18.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-77.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',750000.0,'EPSG','9001','EPSG','8807','False northing',650000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19861','Laborde Grid',NULL,NULL,'EPSG','1149','EPSG','9813','Laborde Oblique Mercator','EPSG','8811','Latitude of projection centre',-21.0,'EPSG','9105','EPSG','8812','Longitude of projection centre',49.0,'EPSG','9105','EPSG','8813','Azimuth of initial line',21.0,'EPSG','9105','EPSG','8815','Scale factor on initial line',0.9995,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19862','Belgian Lambert 2005',NULL,NULL,'EPSG','1347','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',50.4752134,'EPSG','9110','EPSG','8822','Longitude of false origin',4.2133177,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',49.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',51.1,'EPSG','9110','EPSG','8826','Easting at false origin',150328.0,'EPSG','9001','EPSG','8827','Northing at false origin',166262.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19863','South China Sea Lambert',NULL,NULL,'EPSG','3470','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',21.0,'EPSG','9102','EPSG','8822','Longitude of false origin',114.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',18.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',24.0,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19864','Singapore Transverse Mercator',NULL,NULL,'EPSG','1210','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',1.22,'EPSG','9110','EPSG','8802','Longitude of natural origin',103.5,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',28001.642,'EPSG','9001','EPSG','8807','False northing',38744.572,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19865','US NSIDC Sea Ice polar stereographic north',NULL,NULL,'EPSG','1996','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',70.0,'EPSG','9102','EPSG','8833','Longitude of origin',-45.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19866','US NSIDC Sea Ice polar stereographic south',NULL,NULL,'EPSG','1997','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-70.0,'EPSG','9102','EPSG','8833','Longitude of origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19867','US NSIDC Equal Area north projection',NULL,NULL,'EPSG','1996','EPSG','9821','Lambert Azimuthal Equal Area (Spherical)','EPSG','8828','Spherical latitude of origin',90.0,'EPSG','9102','EPSG','8829','Spherical longitude of origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19868','US NSIDC Equal Area south projection',NULL,NULL,'EPSG','1997','EPSG','9821','Lambert Azimuthal Equal Area (Spherical)','EPSG','8828','Spherical latitude of origin',-90.0,'EPSG','9102','EPSG','8829','Spherical longitude of origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19869','US NSIDC Equal Area global projection',NULL,NULL,'EPSG','3463','EPSG','9834','Lambert Cylindrical Equal Area (Spherical)','EPSG','8823','Latitude of 1st standard parallel',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19870','Faroe Lambert',NULL,NULL,'EPSG','3248','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',62.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19871','Rectified Skew Orthomorphic Malaya Grid (chains)',NULL,NULL,'EPSG','1690','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',4.0,'EPSG','9110','EPSG','8812','Longitude of projection centre',102.15,'EPSG','9110','EPSG','8813','Azimuth of initial line',323.01328458,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',323.07483685,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.99984,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9301','EPSG','8807','False northing',0.0,'EPSG','9301',0); INSERT INTO "conversion" VALUES('EPSG','19872','Rectified Skew Orthomorphic Malaya Grid (metres)',NULL,NULL,'EPSG','1690','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',4.0,'EPSG','9110','EPSG','8812','Longitude of projection centre',102.15,'EPSG','9110','EPSG','8813','Azimuth of initial line',323.01328458,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',323.07483685,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.99984,'EPSG','9201','EPSG','8806','False easting',804670.24,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19873','Noumea Lambert',NULL,NULL,'EPSG','2823','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-22.16108903,'EPSG','9110','EPSG','8822','Longitude of false origin',166.26327327,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',-22.14408903,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-22.17408903,'EPSG','9110','EPSG','8826','Easting at false origin',0.66,'EPSG','9001','EPSG','8827','Northing at false origin',1.02,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19874','Noumea Lambert 2',NULL,NULL,'EPSG','2823','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-22.1611,'EPSG','9110','EPSG','8822','Longitude of false origin',166.2633,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',-22.1441,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-22.1741,'EPSG','9110','EPSG','8826','Easting at false origin',8.313,'EPSG','9001','EPSG','8827','Northing at false origin',-2.354,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19875','Ontario MNR Lambert',NULL,NULL,'EPSG','1367','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-85.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',53.5,'EPSG','9102','EPSG','8826','Easting at false origin',930000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6430000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19876','ST74',NULL,NULL,'EPSG','3408','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',18.0328044,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999425,'EPSG','9201','EPSG','8806','False easting',100178.1808,'EPSG','9001','EPSG','8807','False northing',-6500614.7836,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19877','Faroe Lambert fk89',NULL,NULL,'EPSG','3248','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',62.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',700000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19878','Vanua Levu Grid',NULL,NULL,'EPSG','3401','EPSG','9833','Hyperbolic Cassini-Soldner','EPSG','8801','Latitude of natural origin',-16.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',179.2,'EPSG','9110','EPSG','8806','False easting',1251331.8,'EPSG','9098','EPSG','8807','False northing',1662888.5,'EPSG','9098',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19879','Viti Levu Grid',NULL,NULL,'EPSG','3195','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',-18.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',178.0,'EPSG','9102','EPSG','8806','False easting',544000.0,'EPSG','9098','EPSG','8807','False northing',704000.0,'EPSG','9098',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19880','Fiji Map Grid',NULL,NULL,'EPSG','1094','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-17.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',178.45,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99985,'EPSG','9001','EPSG','8806','False easting',2000000.0,'EPSG','9001','EPSG','8807','False northing',4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19881','Alberta 10-degree TM (Forest)',NULL,NULL,'EPSG','2376','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9992,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19882','Alberta 10-degree TM (Resource)',NULL,NULL,'EPSG','2376','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9992,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19883','World Mercator',NULL,NULL,'EPSG','3391','EPSG','9804','Mercator (variant A)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19884','Caspian Sea Mercator',NULL,NULL,'EPSG','1291','EPSG','9805','Mercator (variant B)','EPSG','8823','Latitude of 1st standard parallel',42.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19885','Kelantan Grid',NULL,NULL,'EPSG','3384','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',5.582115717,'EPSG','9110','EPSG','8802','Longitude of natural origin',102.174287001,'EPSG','9110','EPSG','8806','False easting',13227.851,'EPSG','9001','EPSG','8807','False northing',8739.894,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19886','Perak Grid',NULL,NULL,'EPSG','3383','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',4.513262688,'EPSG','9110','EPSG','8802','Longitude of natural origin',100.485547811,'EPSG','9110','EPSG','8806','False easting',-1.769,'EPSG','9001','EPSG','8807','False northing',133454.779,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19887','Kedah and Perlis Grid',NULL,NULL,'EPSG','3382','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',5.575282177,'EPSG','9110','EPSG','8802','Longitude of natural origin',100.3810936,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19888','Pinang Grid',NULL,NULL,'EPSG','3381','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',5.251746315,'EPSG','9110','EPSG','8802','Longitude of natural origin',100.203975707,'EPSG','9110','EPSG','8806','False easting',-23.414,'EPSG','9001','EPSG','8807','False northing',62.283,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19889','Terengganu Grid',NULL,NULL,'EPSG','3380','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',4.583462672,'EPSG','9110','EPSG','8802','Longitude of natural origin',103.041299225,'EPSG','9110','EPSG','8806','False easting',19594.245,'EPSG','9001','EPSG','8807','False northing',3371.895,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19890','Selangor Grid',NULL,NULL,'EPSG','3379','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',3.410473658,'EPSG','9110','EPSG','8802','Longitude of natural origin',101.232078849,'EPSG','9110','EPSG','8806','False easting',-34836.161,'EPSG','9001','EPSG','8807','False northing',56464.049,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19891','Pahang Grid',NULL,NULL,'EPSG','3378','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',3.460979712,'EPSG','9110','EPSG','8802','Longitude of natural origin',102.220587634,'EPSG','9110','EPSG','8806','False easting',-7368.228,'EPSG','9001','EPSG','8807','False northing',6485.858,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19892','Sembilan and Melaka Grid',NULL,NULL,'EPSG','3377','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',2.405645149,'EPSG','9110','EPSG','8802','Longitude of natural origin',101.582965815,'EPSG','9110','EPSG','8806','False easting',3673.785,'EPSG','9001','EPSG','8807','False northing',-4240.573,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19893','Johor Grid',NULL,NULL,'EPSG','3376','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',2.071804708,'EPSG','9110','EPSG','8802','Longitude of natural origin',103.254057045,'EPSG','9110','EPSG','8806','False easting',-14810.562,'EPSG','9001','EPSG','8807','False northing',8758.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19894','Borneo RSO',NULL,NULL,'EPSG','1362','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',4.0,'EPSG','9110','EPSG','8812','Longitude of projection centre',115.0,'EPSG','9110','EPSG','8813','Azimuth of initial line',53.185691582,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',53.07483685,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.99984,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19895','Peninsular RSO',NULL,NULL,'EPSG','3955','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',4.0,'EPSG','9110','EPSG','8812','Longitude of projection centre',102.15,'EPSG','9110','EPSG','8813','Azimuth of initial line',323.013286728,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',323.07483685,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.99984,'EPSG','9201','EPSG','8806','False easting',804671.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19896','Hong Kong 1963 Grid',NULL,NULL,'EPSG','1118','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',22.184368,'EPSG','9110','EPSG','8802','Longitude of natural origin',114.10428,'EPSG','9110','EPSG','8806','False easting',132033.92,'EPSG','9005','EPSG','8807','False northing',62565.96,'EPSG','9005',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19897','Statistics Canada Lambert',NULL,NULL,'EPSG','1061','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',63.390675,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.52,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',49.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9102','EPSG','8826','Easting at false origin',6200000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19898','Pacific Disaster Center Mercator',NULL,NULL,'EPSG','3172','EPSG','9804','Mercator (variant A)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-150.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19899','Mauritius Grid',NULL,NULL,'EPSG','3209','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',-20.114225,'EPSG','9110','EPSG','8802','Longitude of natural origin',57.311858,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19900','Bahrain State Grid',NULL,NULL,'EPSG','1040','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19901','Belge Lambert 50',NULL,NULL,'EPSG','1347','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',90.0,'EPSG','9110','EPSG','8822','Longitude of false origin',0.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',49.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',51.1,'EPSG','9110','EPSG','8826','Easting at false origin',150000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19902','Belge Lambert 72',NULL,NULL,'EPSG','1347','EPSG','9803','Lambert Conic Conformal (2SP Belgium)','EPSG','8821','Latitude of false origin',90.0,'EPSG','9110','EPSG','8822','Longitude of false origin',4.2124983,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',49.5,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',51.1,'EPSG','9110','EPSG','8826','Easting at false origin',150000.01256,'EPSG','9001','EPSG','8827','Northing at false origin',5400088.4378,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19903','Nord de Guerre',NULL,NULL,'EPSG','1369','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',55.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',6.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99950908,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19904','Ghana Metre Grid',NULL,NULL,'EPSG','1104','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-1.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99975,'EPSG','9201','EPSG','8806','False easting',274319.51,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19905','Netherlands East Indies Equatorial Zone',NULL,NULL,'EPSG','4020','EPSG','9804','Mercator (variant A)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',110.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.997,'EPSG','9201','EPSG','8806','False easting',3900000.0,'EPSG','9001','EPSG','8807','False northing',900000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19906','Iraq zone',NULL,NULL,'EPSG','2294','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',32.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9987864078,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',1166200.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19907','Iraq National Grid',NULL,NULL,'EPSG','3625','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.0134566,'EPSG','9110','EPSG','8802','Longitude of natural origin',46.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9994,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19908','Irish National Grid',NULL,NULL,'EPSG','1305','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',53.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-8.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000035,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',250000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19909','Jamaica (Old Grid)',NULL,NULL,'EPSG','3342','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',18.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-77.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',550000.0,'EPSG','9005','EPSG','8807','False northing',400000.0,'EPSG','9005',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19910','Jamaica National Grid',NULL,NULL,'EPSG','3342','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',18.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-77.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',150000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19911','Laborde Grid approximation',NULL,NULL,'EPSG','1149','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',-21.0,'EPSG','9105','EPSG','8812','Longitude of projection centre',49.0,'EPSG','9105','EPSG','8813','Azimuth of initial line',21.0,'EPSG','9105','EPSG','8814','Angle from Rectified to Skew Grid',21.0,'EPSG','9105','EPSG','8815','Scale factor on initial line',0.9995,'EPSG','9201','EPSG','8816','Easting at projection centre',400000.0,'EPSG','9001','EPSG','8817','Northing at projection centre',800000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19913','RD Old',NULL,NULL,'EPSG','1275','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',52.0922178,'EPSG','9110','EPSG','8802','Longitude of natural origin',5.23155,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999079,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19914','RD New',NULL,NULL,'EPSG','1275','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',52.0922178,'EPSG','9110','EPSG','8802','Longitude of natural origin',5.23155,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999079,'EPSG','9201','EPSG','8806','False easting',155000.0,'EPSG','9001','EPSG','8807','False northing',463000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19915','Aden Zone',NULL,NULL,'EPSG','3332','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',15.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999365678,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19916','British National Grid',NULL,NULL,'EPSG','4390','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996012717,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',-100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19917','New Zealand Map Grid',NULL,NULL,'EPSG','3973','EPSG','9811','New Zealand Map Grid','EPSG','8801','Latitude of natural origin',-41.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',173.0,'EPSG','9102','EPSG','8806','False easting',2510000.0,'EPSG','9001','EPSG','8807','False northing',6023150.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19919','Qatar National Grid',NULL,NULL,'EPSG','1195','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.27,'EPSG','9110','EPSG','8802','Longitude of natural origin',51.13,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19920','Singapore Grid',NULL,NULL,'EPSG','1210','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',1.1715528,'EPSG','9110','EPSG','8802','Longitude of natural origin',103.5110808,'EPSG','9110','EPSG','8806','False easting',30000.0,'EPSG','9001','EPSG','8807','False northing',30000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19921','Spain',NULL,NULL,'EPSG','2366','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9988085293,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19922','Swiss Oblique Mercator 1903M',NULL,NULL,'EPSG','1286','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',46.570866,'EPSG','9110','EPSG','8812','Longitude of projection centre',7.26225,'EPSG','9110','EPSG','8813','Azimuth of initial line',90.0,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',90.0,'EPSG','9110','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8816','Easting at projection centre',600000.0,'EPSG','9001','EPSG','8817','Northing at projection centre',200000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19923','Swiss Oblique Mercator 1903C',NULL,NULL,'EPSG','1286','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',46.570866,'EPSG','9110','EPSG','8812','Longitude of projection centre',0.0,'EPSG','9110','EPSG','8813','Azimuth of initial line',90.0,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',90.0,'EPSG','9110','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8816','Easting at projection centre',0.0,'EPSG','9001','EPSG','8817','Northing at projection centre',0.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19924','Tobago Grid',NULL,NULL,'EPSG','1322','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',11.1507843,'EPSG','9110','EPSG','8802','Longitude of natural origin',-60.4109632,'EPSG','9110','EPSG','8806','False easting',187500.0,'EPSG','9039','EPSG','8807','False northing',180000.0,'EPSG','9039',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19925','Trinidad Grid',NULL,NULL,'EPSG','1339','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',10.263,'EPSG','9110','EPSG','8802','Longitude of natural origin',-61.2,'EPSG','9110','EPSG','8806','False easting',430000.0,'EPSG','9039','EPSG','8807','False northing',325000.0,'EPSG','9039',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19926','Stereo 70',NULL,NULL,'EPSG','1197','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',46.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',25.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99975,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19927','Stereo 33',NULL,NULL,'EPSG','1197','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',45.54,'EPSG','9110','EPSG','8802','Longitude of natural origin',25.23328772,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9996667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19928','Kuwait TM',NULL,NULL,'EPSG','1310','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',48.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19929','Sweden zone 2.5 gon V',NULL,NULL,'EPSG','2847','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',15.48298,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19930','Greek Grid',NULL,NULL,'EPSG','3254','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19931','Egyseges Orszagos Vetuleti',NULL,NULL,'EPSG','1119','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',47.08398174,'EPSG','9110','EPSG','8812','Longitude of projection centre',19.02548584,'EPSG','9110','EPSG','8813','Azimuth of initial line',90.0,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',90.0,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.99993,'EPSG','9201','EPSG','8816','Easting at projection centre',650000.0,'EPSG','9001','EPSG','8817','Northing at projection centre',200000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19933','Prince Edward Island Stereographic (ATS77)',NULL,NULL,'EPSG','1533','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',47.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999912,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19934','Lithuania 1994',NULL,NULL,'EPSG','1145','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9998,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19935','Rectified Skew Orthomorphic Malaya Grid',NULL,NULL,'EPSG','1690','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',4.0,'EPSG','9110','EPSG','8812','Longitude of projection centre',102.15,'EPSG','9110','EPSG','8813','Azimuth of initial line',323.01328458,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',323.07483685,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.99984,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9062','EPSG','8807','False northing',0.0,'EPSG','9062',1); INSERT INTO "conversion" VALUES('EPSG','19936','Portuguese National Grid',NULL,NULL,'EPSG','1294','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',1.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19937','Tunisia Mining Grid',NULL,NULL,'EPSG','1618','EPSG','9816','Tunisia Mining Grid','EPSG','8821','Latitude of false origin',36.5964,'EPSG','9105','EPSG','8822','Longitude of false origin',7.83445,'EPSG','9105','EPSG','8826','Easting at false origin',270.0,'EPSG','9036','EPSG','8827','Northing at false origin',360.0,'EPSG','9036',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19938','Estonian National Grid',NULL,NULL,'EPSG','1090','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',57.310319415,'EPSG','9110','EPSG','8822','Longitude of false origin',24.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',59.2,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',58.0,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6375000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19939','TM Baltic 93',NULL,NULL,'EPSG','1646','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19940','Levant Zone',NULL,NULL,'EPSG','1623','EPSG','9817','Lambert Conic Near-Conformal','EPSG','8801','Latitude of natural origin',34.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',37.21,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9996256,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19941','Brazil Polyconic',NULL,NULL,'EPSG','1053','EPSG','9818','American Polyconic','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-54.0,'EPSG','9102','EPSG','8806','False easting',5000000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19942','British West Indies Grid',NULL,NULL,'EPSG','2295','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-62.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9995,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19943','Barbados National Grid',NULL,NULL,'EPSG','3218','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',13.1035,'EPSG','9110','EPSG','8802','Longitude of natural origin',-59.3335,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999986,'EPSG','9201','EPSG','8806','False easting',30000.0,'EPSG','9001','EPSG','8807','False northing',75000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19944','Quebec Lambert Projection',NULL,NULL,'EPSG','1368','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-68.3,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',60.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',46.0,'EPSG','9110','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19945','New Brunswick Stereographic (ATS77)',NULL,NULL,'EPSG','1447','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',46.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-66.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999912,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19946','New Brunswick Stereographic (NAD83)',NULL,NULL,'EPSG','1447','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',46.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-66.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999912,'EPSG','9201','EPSG','8806','False easting',2500000.0,'EPSG','9001','EPSG','8807','False northing',7500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19947','Austria Lambert',NULL,NULL,'EPSG','1037','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.3,'EPSG','9110','EPSG','8822','Longitude of false origin',13.2,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',49.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',46.0,'EPSG','9110','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19948','Syria Lambert',NULL,NULL,'EPSG','1623','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',34.39,'EPSG','9110','EPSG','8802','Longitude of natural origin',37.21,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9996256,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19949','Levant Stereographic',NULL,NULL,'EPSG','1623','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',43.5,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.9995341,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19950','Swiss Oblique Mercator 1995',NULL,NULL,'EPSG','1286','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',46.570866,'EPSG','9110','EPSG','8812','Longitude of projection centre',7.26225,'EPSG','9110','EPSG','8813','Azimuth of initial line',90.0,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',90.0,'EPSG','9110','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8816','Easting at projection centre',2600000.0,'EPSG','9001','EPSG','8817','Northing at projection centre',1200000.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19951','Nakhl e Taqi Oblique Mercator',NULL,NULL,'EPSG','1338','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',27.31077837,'EPSG','9110','EPSG','8812','Longitude of projection centre',52.3612741,'EPSG','9110','EPSG','8813','Azimuth of initial line',0.34179803,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',0.34179803,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.999895934,'EPSG','9201','EPSG','8816','Easting at projection centre',658377.437,'EPSG','9001','EPSG','8817','Northing at projection centre',3044969.194,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19952','Krovak',NULL,NULL,'EPSG','1306','EPSG','9819','Krovak','EPSG','8811','Latitude of projection centre',49.3,'EPSG','9110','EPSG','8833','Longitude of origin',42.3,'EPSG','9110','EPSG','1036','Co-latitude of cone axis',30.171730311,'EPSG','9110','EPSG','8818','Latitude of pseudo standard parallel',78.3,'EPSG','9110','EPSG','8819','Scale factor on pseudo standard parallel',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19953','Qatar Grid',NULL,NULL,'EPSG','1346','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',25.22565,'EPSG','9110','EPSG','8802','Longitude of natural origin',50.4541,'EPSG','9110','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19954','Suriname Old TM',NULL,NULL,'EPSG','1222','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-55.41,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19955','Suriname TM',NULL,NULL,'EPSG','1222','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-55.41,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19956','Rectified Skew Orthomorphic Borneo Grid (chains)',NULL,NULL,'EPSG','1362','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',4.0,'EPSG','9110','EPSG','8812','Longitude of projection centre',115.0,'EPSG','9110','EPSG','8813','Azimuth of initial line',53.18569537,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',53.07483685,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.99984,'EPSG','9201','EPSG','8816','Easting at projection centre',29352.4763,'EPSG','9042','EPSG','8817','Northing at projection centre',22014.3572,'EPSG','9042',0); INSERT INTO "conversion" VALUES('EPSG','19957','Rectified Skew Orthomorphic Borneo Grid (feet)',NULL,NULL,'EPSG','1851','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',4.0,'EPSG','9110','EPSG','8812','Longitude of projection centre',115.0,'EPSG','9110','EPSG','8813','Azimuth of initial line',53.18569537,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',53.07483685,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.99984,'EPSG','9201','EPSG','8816','Easting at projection centre',1937263.44,'EPSG','9041','EPSG','8817','Northing at projection centre',1452947.58,'EPSG','9041',0); INSERT INTO "conversion" VALUES('EPSG','19958','Rectified Skew Orthomorphic Borneo Grid (metres)',NULL,NULL,'EPSG','1362','EPSG','9815','Hotine Oblique Mercator (variant B)','EPSG','8811','Latitude of projection centre',4.0,'EPSG','9110','EPSG','8812','Longitude of projection centre',115.0,'EPSG','9110','EPSG','8813','Azimuth of initial line',53.18569537,'EPSG','9110','EPSG','8814','Angle from Rectified to Skew Grid',53.07483685,'EPSG','9110','EPSG','8815','Scale factor on initial line',0.99984,'EPSG','9201','EPSG','8816','Easting at projection centre',590476.87,'EPSG','9001','EPSG','8817','Northing at projection centre',442857.65,'EPSG','9001',0); INSERT INTO "conversion" VALUES('EPSG','19959','Ghana National Grid',NULL,NULL,'EPSG','1104','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-1.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99975,'EPSG','9201','EPSG','8806','False easting',900000.0,'EPSG','9094','EPSG','8807','False northing',0.0,'EPSG','9094',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19960','Prince Edward Isl. Stereographic (NAD83)',NULL,NULL,'EPSG','1533','EPSG','9809','Oblique Stereographic','EPSG','8801','Latitude of natural origin',47.15,'EPSG','9110','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999912,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19961','Belgian Lambert 72',NULL,NULL,'EPSG','1347','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',90.0,'EPSG','9110','EPSG','8822','Longitude of false origin',4.2202952,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',51.100000204,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',49.500000204,'EPSG','9110','EPSG','8826','Easting at false origin',150000.013,'EPSG','9001','EPSG','8827','Northing at false origin',5400088.438,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19962','Irish Transverse Mercator',NULL,NULL,'EPSG','1305','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',53.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-8.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.99982,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',750000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19963','Sierra Leone New Colony Grid',NULL,NULL,'EPSG','1342','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',6.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-12.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9094','EPSG','8807','False northing',0.0,'EPSG','9094',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19964','New War Office Sierra Leone Grid',NULL,NULL,'EPSG','1342','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',6.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-12.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9094','EPSG','8807','False northing',600000.0,'EPSG','9094',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19965','US National Atlas Equal Area',NULL,NULL,'EPSG','1245','EPSG','9821','Lambert Azimuthal Equal Area (Spherical)','EPSG','8828','Spherical latitude of origin',45.0,'EPSG','9102','EPSG','8829','Spherical longitude of origin',-100.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19966','Luxembourg Gauss',NULL,NULL,'EPSG','1146','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.5,'EPSG','9110','EPSG','8802','Longitude of natural origin',6.1,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19967','Slovenia Grid',NULL,NULL,'EPSG','1212','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19968','World Equidistant Cylindrical (Sphere)',NULL,NULL,'EPSG','1262','EPSG','9823','Equidistant Cylindrical (Spherical)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19969','Portuguese Grid',NULL,NULL,'EPSG','1294','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',1.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19971','New Zealand Transverse Mercator 2000',NULL,NULL,'EPSG','3973','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',173.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1600000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19972','Irish Grid',NULL,NULL,'EPSG','1305','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',53.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-8.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.000035,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',250000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19973','Irish National Grid',NULL,NULL,'EPSG','2530','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',53.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-8.0,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',250000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19974','Modified Portuguese Grid',NULL,NULL,'EPSG','1294','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',-8.0754862,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',180.598,'EPSG','9001','EPSG','8807','False northing',-86.99,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19975','Trinidad Grid (Clarke''s feet)',NULL,NULL,'EPSG','1339','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',10.263,'EPSG','9110','EPSG','8802','Longitude of natural origin',-61.2,'EPSG','9110','EPSG','8806','False easting',283800.0,'EPSG','9005','EPSG','8807','False northing',214500.0,'EPSG','9005',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19976','ICN Regional',NULL,NULL,'EPSG','1251','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',6.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-66.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',9.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',3.0,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19977','Aramco Lambert',NULL,NULL,'EPSG','3303','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.0522236,'EPSG','9110','EPSG','8822','Longitude of false origin',48.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',17.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',33.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19978','Hong Kong 1980 Grid',NULL,NULL,'EPSG','1118','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',22.184368,'EPSG','9110','EPSG','8802','Longitude of natural origin',114.10428,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',836694.05,'EPSG','9001','EPSG','8807','False northing',819069.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19979','Portugal Bonne',NULL,NULL,'EPSG','1294','EPSG','9828','Bonne (South Orientated)','EPSG','8801','Latitude of natural origin',39.4,'EPSG','9110','EPSG','8802','Longitude of natural origin',1.0,'EPSG','9110','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19981','Lambert New Caledonia',NULL,NULL,'EPSG','3430','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-21.3,'EPSG','9110','EPSG','8822','Longitude of false origin',166.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',-20.4,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-22.2,'EPSG','9110','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19982','TM Reunion',NULL,NULL,'EPSG','1196','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-21.07,'EPSG','9110','EPSG','8802','Longitude of natural origin',55.32,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',160000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "conversion" VALUES('EPSG','19983','Terre Adelie Polar Stereographic',NULL,NULL,'EPSG','2818','EPSG','9830','Polar Stereographic (variant C)','EPSG','8832','Latitude of standard parallel',-67.0,'EPSG','9102','EPSG','8833','Longitude of origin',140.0,'EPSG','9102','EPSG','8826','Easting at false origin',300000.0,'EPSG','9001','EPSG','8827','Northing at false origin',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19984','British Columbia Albers',NULL,NULL,'EPSG','2832','EPSG','9822','Albers Equal Area','EPSG','8821','Latitude of false origin',45.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-126.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',50.0,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',58.3,'EPSG','9110','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19985','Europe Conformal 2001',NULL,NULL,'EPSG','2881','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',52.0,'EPSG','9102','EPSG','8822','Longitude of false origin',10.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',35.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',65.0,'EPSG','9102','EPSG','8826','Easting at false origin',4000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19986','Europe Equal Area 2001',NULL,NULL,'EPSG','2881','EPSG','9820','Lambert Azimuthal Equal Area','EPSG','8801','Latitude of natural origin',52.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',10.0,'EPSG','9102','EPSG','8806','False easting',4321000.0,'EPSG','9001','EPSG','8807','False northing',3210000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19987','Iceland Lambert 1900',NULL,NULL,'EPSG','3262','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',65.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-19.011965,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19988','Iceland Lambert 1955',NULL,NULL,'EPSG','3262','EPSG','9826','Lambert Conic Conformal (West Orientated)','EPSG','8801','Latitude of natural origin',65.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19989','Iceland Lambert 1993',NULL,NULL,'EPSG','1120','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.0,'EPSG','9110','EPSG','8822','Longitude of false origin',-19.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',64.15,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',65.45,'EPSG','9110','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19990','Latvian Transverse Mercator',NULL,NULL,'EPSG','1139','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',-6000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19991','Jan Mayen Grid',NULL,NULL,'EPSG','2869','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9110','EPSG','8802','Longitude of natural origin',-8.3,'EPSG','9110','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',-7800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19992','Antarctic Polar Stereographic',NULL,NULL,'EPSG','1031','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-71.0,'EPSG','9102','EPSG','8833','Longitude of origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19993','Australian Antarctic Polar Stereographic',NULL,NULL,'EPSG','1278','EPSG','9829','Polar Stereographic (variant B)','EPSG','8832','Latitude of standard parallel',-71.0,'EPSG','9102','EPSG','8833','Longitude of origin',70.0,'EPSG','9102','EPSG','8806','False easting',6000000.0,'EPSG','9001','EPSG','8807','False northing',6000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19994','Australian Antarctic Lambert',NULL,NULL,'EPSG','2880','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-50.0,'EPSG','9110','EPSG','8822','Longitude of false origin',70.0,'EPSG','9110','EPSG','8823','Latitude of 1st standard parallel',-68.3,'EPSG','9110','EPSG','8824','Latitude of 2nd standard parallel',-74.3,'EPSG','9110','EPSG','8826','Easting at false origin',6000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19995','Jordan Transverse Mercator',NULL,NULL,'EPSG','1130','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',37.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9998,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',-3000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19996','Soldner Berlin',NULL,NULL,'EPSG','2898','EPSG','9806','Cassini-Soldner','EPSG','8801','Latitude of natural origin',52.25071338,'EPSG','9110','EPSG','8802','Longitude of natural origin',13.37379332,'EPSG','9110','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',10000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19997','Kuwait Transverse Mercator',NULL,NULL,'EPSG','1310','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',48.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19998','Guernsey Grid',NULL,NULL,'EPSG','2989','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.3,'EPSG','9110','EPSG','8802','Longitude of natural origin',-2.25,'EPSG','9110','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',47000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('EPSG','19999','Jersey Transverse Mercator',NULL,NULL,'EPSG','2988','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.225,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.135,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999999,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',70000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "geodetic_crs" VALUES('EPSG','3819','HD1909',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1024','EPSG','1119',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','3821','TWD67',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1025','EPSG','3315',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','3822','TWD97',NULL,NULL,'geocentric','EPSG','6500','EPSG','1026','EPSG','1228',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','3823','TWD97',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1026','EPSG','1228',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','3824','TWD97',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1026','EPSG','1228',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','3887','IGRS',NULL,NULL,'geocentric','EPSG','6500','EPSG','1029','EPSG','1124',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','3888','IGRS',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1029','EPSG','1124',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','3889','IGRS',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1029','EPSG','1124',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','3906','MGI 1901',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1031','EPSG','2370',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4000','MOLDREF99',NULL,NULL,'geocentric','EPSG','6500','EPSG','1032','EPSG','1162',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4001','Unknown datum based upon the Airy 1830 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6001','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4002','Unknown datum based upon the Airy Modified 1849 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6002','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4003','Unknown datum based upon the Australian National Spheroid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6003','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4004','Unknown datum based upon the Bessel 1841 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6004','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4005','Unknown datum based upon the Bessel Modified ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6005','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4006','Unknown datum based upon the Bessel Namibia ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6006','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4007','Unknown datum based upon the Clarke 1858 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6007','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4008','Unknown datum based upon the Clarke 1866 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6008','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4009','Unknown datum based upon the Clarke 1866 Michigan ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6009','EPSG','1263',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4010','Unknown datum based upon the Clarke 1880 (Benoit) ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6010','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4011','Unknown datum based upon the Clarke 1880 (IGN) ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6011','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4012','Unknown datum based upon the Clarke 1880 (RGS) ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6012','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4013','Unknown datum based upon the Clarke 1880 (Arc) ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6013','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4014','Unknown datum based upon the Clarke 1880 (SGA 1922) ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6014','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4015','Unknown datum based upon the Everest 1830 (1937 Adjustment) ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6015','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4016','Unknown datum based upon the Everest 1830 (1967 Definition) ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6016','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4017','MOLDREF99',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1032','EPSG','1162',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4018','Unknown datum based upon the Everest 1830 Modified ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6018','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4019','Unknown datum based upon the GRS 1980 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6019','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4020','Unknown datum based upon the Helmert 1906 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6020','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4021','Unknown datum based upon the Indonesian National Spheroid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6021','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4022','Unknown datum based upon the International 1924 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6022','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4023','MOLDREF99',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1032','EPSG','1162',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4024','Unknown datum based upon the Krassowsky 1940 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6024','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4025','Unknown datum based upon the NWL 9D ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6025','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4027','Unknown datum based upon the Plessis 1817 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6027','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4028','Unknown datum based upon the Struve 1860 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6028','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4029','Unknown datum based upon the War Office ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6029','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4030','Unknown datum based upon the WGS 84 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6030','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4031','Unknown datum based upon the GEM 10C ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6031','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4032','Unknown datum based upon the OSU86F ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6032','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4033','Unknown datum based upon the OSU91A ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6033','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4034','Unknown datum based upon the Clarke 1880 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6034','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4035','Unknown datum based upon the Authalic Sphere',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6035','EPSG','1263',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4036','Unknown datum based upon the GRS 1967 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6036','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4039','RGRDC 2005',NULL,NULL,'geocentric','EPSG','6500','EPSG','1033','EPSG','3613',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4040','RGRDC 2005',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1033','EPSG','3613',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4041','Unknown datum based upon the Average Terrestrial System 1977 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6041','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4042','Unknown datum based upon the Everest (1830 Definition) ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6042','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4043','Unknown datum based upon the WGS 72 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6043','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4044','Unknown datum based upon the Everest 1830 (1962 Definition) ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6044','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4045','Unknown datum based upon the Everest 1830 (1975 Definition) ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6045','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4046','RGRDC 2005',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1033','EPSG','3613',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4047','Unspecified datum based upon the GRS 1980 Authalic Sphere',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6047','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4052','Unspecified datum based upon the Clarke 1866 Authalic Sphere',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6052','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4053','Unspecified datum based upon the International 1924 Authalic Sphere',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6053','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4054','Unspecified datum based upon the Hughes 1980 ellipsoid',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6054','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4055','Popular Visualisation CRS',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6055','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4073','SREF98',NULL,NULL,'geocentric','EPSG','6500','EPSG','1034','EPSG','4543',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4074','SREF98',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1034','EPSG','4543',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4075','SREF98',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1034','EPSG','4543',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4079','REGCAN95',NULL,NULL,'geocentric','EPSG','6500','EPSG','1035','EPSG','3199',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4080','REGCAN95',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1035','EPSG','3199',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4081','REGCAN95',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1035','EPSG','3199',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4120','Greek',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6120','EPSG','3254',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4121','GGRS87',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6121','EPSG','3254',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4122','ATS77',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6122','EPSG','1283',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4123','KKJ',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6123','EPSG','3333',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4124','RT90',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6124','EPSG','1225',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4125','Samboja',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6125','EPSG','1328',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4126','LKS94 (ETRS89)',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6126','EPSG','1145',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4127','Tete',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6127','EPSG','3281',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4128','Madzansua',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6128','EPSG','1315',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4129','Observatario',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6129','EPSG','1329',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4130','Moznet',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6130','EPSG','1167',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4131','Indian 1960',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6131','EPSG','4007',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4132','FD58',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6132','EPSG','1300',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4133','EST92',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6133','EPSG','3246',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4134','PSD93',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6134','EPSG','3288',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4135','Old Hawaiian',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6135','EPSG','1334',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4136','St. Lawrence Island',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6136','EPSG','1332',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4137','St. Paul Island',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6137','EPSG','1333',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4138','St. George Island',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6138','EPSG','1331',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4139','Puerto Rico',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6139','EPSG','1335',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4140','NAD83(CSRS98)',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6140','EPSG','1336',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4141','Israel 1993',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6141','EPSG','2603',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4142','Locodjo 1965',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6142','EPSG','1075',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4143','Abidjan 1987',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6143','EPSG','1075',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4144','Kalianpur 1937',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6144','EPSG','1308',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4145','Kalianpur 1962',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6145','EPSG','1184',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4146','Kalianpur 1975',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6146','EPSG','3341',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4147','Hanoi 1972',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6147','EPSG','3328',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4148','Hartebeesthoek94',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6148','EPSG','4540',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4149','CH1903',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6149','EPSG','1286',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4150','CH1903+',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6150','EPSG','1286',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4151','CHTRF95',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6151','EPSG','1286',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4152','NAD83(HARN)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6152','EPSG','1337',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4153','Rassadiran',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6153','EPSG','1338',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4154','ED50(ED77)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6154','EPSG','1123',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4155','Dabola 1981',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6155','EPSG','3257',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4156','S-JTSK',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6156','EPSG','1306',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4157','Mount Dillon',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6157','EPSG','1322',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4158','Naparima 1955',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6158','EPSG','3143',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4159','ELD79',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6159','EPSG','1143',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4160','Chos Malal 1914',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6160','EPSG','4562',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4161','Pampa del Castillo',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6161','EPSG','4563',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4162','Korean 1985',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6162','EPSG','3266',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4163','Yemen NGN96',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6163','EPSG','1257',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4164','South Yemen',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6164','EPSG','1340',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4165','Bissau',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6165','EPSG','3258',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4166','Korean 1995',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6166','EPSG','3266',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4167','NZGD2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6167','EPSG','1175',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4168','Accra',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6168','EPSG','1104',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4169','American Samoa 1962',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6169','EPSG','3109',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4170','SIRGAS 1995',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6170','EPSG','3448',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4171','RGF93',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6171','EPSG','1096',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4172','POSGAR',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6172','EPSG','1033',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4173','IRENET95',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6173','EPSG','1305',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4174','Sierra Leone 1924',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6174','EPSG','1342',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4175','Sierra Leone 1968',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6175','EPSG','3306',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4176','Australian Antarctic',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6176','EPSG','1278',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4178','Pulkovo 1942(83)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6178','EPSG','3900',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4179','Pulkovo 1942(58)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6179','EPSG','3574',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4180','EST97',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6180','EPSG','1090',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4181','Luxembourg 1930',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6181','EPSG','1146',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4182','Azores Occidental 1939',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6182','EPSG','1344',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4183','Azores Central 1948',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6183','EPSG','1301',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4184','Azores Oriental 1940',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6184','EPSG','1345',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4185','Madeira 1936',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6185','EPSG','1314',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4188','OSNI 1952',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6188','EPSG','2530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4189','REGVEN',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6189','EPSG','1251',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4190','POSGAR 98',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6190','EPSG','1033',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4191','Albanian 1987',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6191','EPSG','3212',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4192','Douala 1948',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6192','EPSG','2555',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4193','Manoca 1962',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6193','EPSG','2555',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4194','Qornoq 1927',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6194','EPSG','3362',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4195','Scoresbysund 1952',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6195','EPSG','2570',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4196','Ammassalik 1958',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6196','EPSG','2571',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4197','Garoua',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6197','EPSG','2590',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4198','Kousseri',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6198','EPSG','2591',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4199','Egypt 1930',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6199','EPSG','3242',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4200','Pulkovo 1995',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6200','EPSG','1198',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4201','Adindan',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6201','EPSG','1271',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4202','AGD66',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6202','EPSG','1279',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4203','AGD84',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6203','EPSG','2576',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4204','Ain el Abd',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6204','EPSG','1272',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4205','Afgooye',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6205','EPSG','3308',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4206','Agadez',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6206','EPSG','1177',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4207','Lisbon',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6207','EPSG','1294',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4208','Aratu',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6208','EPSG','1274',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4209','Arc 1950',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6209','EPSG','1276',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4210','Arc 1960',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6210','EPSG','1277',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4211','Batavia',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6211','EPSG','3666',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4212','Barbados 1938',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6212','EPSG','3218',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4213','Beduaram',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6213','EPSG','2771',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4214','Beijing 1954',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6214','EPSG','1067',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4215','Belge 1950',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6215','EPSG','1347',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4216','Bermuda 1957',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6216','EPSG','3221',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4218','Bogota 1975',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6218','EPSG','3686',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4219','Bukit Rimpah',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6219','EPSG','1287',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4220','Camacupa 1948',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6220','EPSG','1029',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4221','Campo Inchauspe',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6221','EPSG','3843',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4222','Cape',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6222','EPSG','1290',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4223','Carthage',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6223','EPSG','1236',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4224','Chua',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6224','EPSG','3356',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4225','Corrego Alegre 1970-72',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6225','EPSG','1293',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4226','Cote d''Ivoire',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6226','EPSG','1075',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4227','Deir ez Zor',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6227','EPSG','1623',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4228','Douala',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6228','EPSG','1060',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4229','Egypt 1907',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6229','EPSG','1086',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4230','ED50',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6230','EPSG','1296',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4231','ED87',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6231','EPSG','1297',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4232','Fahud',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6232','EPSG','4009',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4233','Gandajika 1970',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6233','EPSG','1152',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4234','Garoua',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6234','EPSG','1060',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4235','Guyane Francaise',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6235','EPSG','1097',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4236','Hu Tzu Shan 1950',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6236','EPSG','3315',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4237','HD72',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6237','EPSG','1119',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4238','ID74',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6238','EPSG','4020',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4239','Indian 1954',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6239','EPSG','1304',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4240','Indian 1975',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6240','EPSG','3741',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4241','Jamaica 1875',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6241','EPSG','3342',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4242','JAD69',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6242','EPSG','3342',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4243','Kalianpur 1880',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6243','EPSG','1307',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4244','Kandawala',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6244','EPSG','3310',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4245','Kertau 1968',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6245','EPSG','4223',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4246','KOC',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6246','EPSG','3267',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4247','La Canoa',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6247','EPSG','3327',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4248','PSAD56',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6248','EPSG','1348',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4249','Lake',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6249','EPSG','1312',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4250','Leigon',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6250','EPSG','1104',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4251','Liberia 1964',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6251','EPSG','3270',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4252','Lome',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6252','EPSG','1232',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4253','Luzon 1911',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6253','EPSG','3969',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4254','Hito XVIII 1963',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6254','EPSG','1303',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4255','Herat North',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6255','EPSG','1024',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4256','Mahe 1971',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6256','EPSG','2369',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4257','Makassar',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6257','EPSG','1316',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4258','ETRS89',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6258','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4259','Malongo 1987',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6259','EPSG','3180',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4260','Manoca',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6260','EPSG','1060',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4261','Merchich',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6261','EPSG','3280',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4262','Massawa',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6262','EPSG','1089',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4263','Minna',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6263','EPSG','1178',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4264','Mhast',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6264','EPSG','1318',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4265','Monte Mario',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6265','EPSG','3343',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4266','M''poraloko',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6266','EPSG','1100',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4267','NAD27',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6267','EPSG','1349',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4268','NAD27 Michigan',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6268','EPSG','1391',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4269','NAD83',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6269','EPSG','1350',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4270','Nahrwan 1967',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6270','EPSG','1351',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4271','Naparima 1972',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6271','EPSG','1322',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4272','NZGD49',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6272','EPSG','3285',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4273','NGO 1948',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6273','EPSG','1352',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4274','Datum 73',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6274','EPSG','1294',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4275','NTF',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6275','EPSG','3694',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4276','NSWC 9Z-2',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6276','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4277','OSGB 1936',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6277','EPSG','4390',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4278','OSGB70',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6278','EPSG','1264',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4279','OS(SN)80',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6279','EPSG','1354',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4280','Padang',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6280','EPSG','1355',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4281','Palestine 1923',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6281','EPSG','1356',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4282','Pointe Noire',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6282','EPSG','1072',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4283','GDA94',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6283','EPSG','4177',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4284','Pulkovo 1942',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6284','EPSG','2423',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4285','Qatar 1974',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6285','EPSG','1195',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4286','Qatar 1948',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6286','EPSG','1346',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4287','Qornoq',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6287','EPSG','1107',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4288','Loma Quintana',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6288','EPSG','1313',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4289','Amersfoort',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6289','EPSG','1275',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4291','SAD69',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6291','EPSG','1358',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4292','Sapper Hill 1943',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6292','EPSG','3247',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4293','Schwarzeck',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6293','EPSG','1169',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4294','Segora',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6294','EPSG','1359',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4295','Serindung',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6295','EPSG','4005',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4296','Sudan',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6296','EPSG','1361',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4297','Tananarive',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6297','EPSG','1149',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4298','Timbalai 1948',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6298','EPSG','1362',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4299','TM65',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6299','EPSG','1305',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4300','TM75',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6300','EPSG','1305',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4301','Tokyo',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6301','EPSG','1364',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4302','Trinidad 1903',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6302','EPSG','1339',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4303','TC(1948)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6303','EPSG','1363',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4304','Voirol 1875',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6304','EPSG','1365',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4306','Bern 1938',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6306','EPSG','1286',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4307','Nord Sahara 1959',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6307','EPSG','1026',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4308','RT38',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6308','EPSG','3313',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4309','Yacare',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6309','EPSG','3326',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4310','Yoff',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6310','EPSG','1207',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4311','Zanderij',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6311','EPSG','1222',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4312','MGI',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6312','EPSG','1037',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4313','Belge 1972',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6313','EPSG','1347',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4314','DHDN',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6314','EPSG','2326',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4315','Conakry 1905',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6315','EPSG','3257',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4316','Dealul Piscului 1930',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6316','EPSG','3295',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4317','Dealul Piscului 1970',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6317','EPSG','1197',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4318','NGN',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6318','EPSG','3267',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4319','KUDAMS',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6319','EPSG','1310',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4322','WGS 72',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6322','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4324','WGS 72BE',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6324','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4326','WGS 84',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6326','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4327','WGS 84 (geographic 3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6326','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4328','WGS 84 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6326','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4329','WGS 84 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6326','EPSG','2830',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4330','ITRF88 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6647','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4331','ITRF89 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6648','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4332','ITRF90 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6649','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4333','ITRF91 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6650','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4334','ITRF92 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6651','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4335','ITRF93 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6652','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4336','ITRF94 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6653','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4337','ITRF96 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6654','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4338','ITRF97 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6655','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4339','Australian Antarctic (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6176','EPSG','1278',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4340','Australian Antarctic (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6176','EPSG','1278',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4341','EST97 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6180','EPSG','1090',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4342','EST97 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6180','EPSG','1090',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4343','CHTRF95 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6151','EPSG','1286',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4344','CHTRF95 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6151','EPSG','1286',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4345','ETRS89 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6258','EPSG','1298',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4346','ETRS89 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6258','EPSG','1298',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4347','GDA94 (3D)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6283','EPSG','1036',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4348','GDA94 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6283','EPSG','1036',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4349','Hartebeesthoek94 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6148','EPSG','1215',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4350','Hartebeesthoek94 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6148','EPSG','1215',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4351','IRENET95 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6173','EPSG','1305',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4352','IRENET95 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6173','EPSG','1305',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4353','JGD2000 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6612','EPSG','1129',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4354','JGD2000 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6612','EPSG','1129',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4355','LKS94 (ETRS89) (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6126','EPSG','1145',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4356','LKS94 (ETRS89) (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6126','EPSG','1145',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4357','Moznet (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6130','EPSG','1167',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4358','Moznet (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6130','EPSG','1167',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4359','NAD83(CSRS) (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6140','EPSG','2784',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4360','NAD83(CSRS) (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6140','EPSG','2784',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4361','NAD83(HARN) (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6152','EPSG','1337',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4362','NAD83(HARN) (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6152','EPSG','1337',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4363','NZGD2000 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6167','EPSG','1175',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4364','NZGD2000 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6167','EPSG','1175',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4365','POSGAR 98 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6190','EPSG','1033',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4366','POSGAR 98 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6190','EPSG','1033',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4367','REGVEN (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6189','EPSG','1251',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4368','REGVEN (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6189','EPSG','1251',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4369','RGF93 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6171','EPSG','1096',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4370','RGF93 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6171','EPSG','1096',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4371','RGFG95 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6624','EPSG','1097',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4372','RGFG95 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6624','EPSG','1097',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4373','RGR92 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6627','EPSG','1196',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4374','RGR92 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6627','EPSG','1196',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4375','SIRGAS (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6170','EPSG','1341',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4376','SIRGAS (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6170','EPSG','1341',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4377','SWEREF99 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6619','EPSG','1225',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4378','SWEREF99 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6619','EPSG','1225',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4379','Yemen NGN96 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6163','EPSG','1257',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4380','Yemen NGN96 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6163','EPSG','1257',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4381','RGNC 1991 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6645','EPSG','1174',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4382','RGNC 1991 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6645','EPSG','1174',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4383','RRAF 1991 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6640','EPSG','2824',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4384','RRAF 1991 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6640','EPSG','2824',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4385','ITRF2000 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6656','EPSG','2830',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4386','ISN93 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6659','EPSG','1120',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4387','ISN93 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6659','EPSG','1120',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4388','LKS92 (3D)',NULL,NULL,'geographic 3D','EPSG','6401','EPSG','6661','EPSG','1139',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4389','LKS92 (geocentric)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6661','EPSG','1139',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4463','RGSPM06',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1038','EPSG','1220',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4465','RGSPM06',NULL,NULL,'geocentric','EPSG','6500','EPSG','1038','EPSG','1220',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4466','RGSPM06',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1038','EPSG','1220',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4468','RGM04',NULL,NULL,'geocentric','EPSG','6500','EPSG','1036','EPSG','1159',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4469','RGM04',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1036','EPSG','1159',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4470','RGM04',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1036','EPSG','1159',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4472','Cadastre 1997',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1037','EPSG','3340',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4473','Cadastre 1997',NULL,NULL,'geocentric','EPSG','6500','EPSG','1037','EPSG','3340',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4475','Cadastre 1997',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1037','EPSG','3340',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4479','China Geodetic Coordinate System 2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','1043','EPSG','1067',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4480','China Geodetic Coordinate System 2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1043','EPSG','1067',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4481','Mexico ITRF92',NULL,NULL,'geocentric','EPSG','6500','EPSG','1042','EPSG','1160',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4482','Mexico ITRF92',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1042','EPSG','1160',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4483','Mexico ITRF92',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1042','EPSG','1160',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4490','China Geodetic Coordinate System 2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1043','EPSG','1067',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4555','New Beijing',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1045','EPSG','3228',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4556','RRAF 1991',NULL,NULL,'geocentric','EPSG','6500','EPSG','1047','EPSG','2824',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4557','RRAF 1991',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1047','EPSG','2824',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4558','RRAF 1991',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1047','EPSG','2824',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4600','Anguilla 1957',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6600','EPSG','3214',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4601','Antigua 1943',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6601','EPSG','1273',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4602','Dominica 1945',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6602','EPSG','3239',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4603','Grenada 1953',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6603','EPSG','1551',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4604','Montserrat 1958',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6604','EPSG','3279',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4605','St. Kitts 1955',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6605','EPSG','3297',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4606','St. Lucia 1955',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6606','EPSG','3298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4607','St. Vincent 1945',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6607','EPSG','3300',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4608','NAD27(76)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6608','EPSG','1367',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4609','NAD27(CGQ77)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6609','EPSG','1368',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4610','Xian 1980',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6610','EPSG','3228',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4611','Hong Kong 1980',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6611','EPSG','1118',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4612','JGD2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6612','EPSG','1129',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4613','Segara',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6613','EPSG','1360',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4614','QND95',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6614','EPSG','1346',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4615','Porto Santo',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6615','EPSG','1314',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4616','Selvagem Grande',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6616','EPSG','2779',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4617','NAD83(CSRS)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6140','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4618','SAD69',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6618','EPSG','1358',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4619','SWEREF99',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6619','EPSG','1225',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4620','Point 58',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6620','EPSG','2790',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4621','Fort Marigot',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6621','EPSG','2828',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4622','Guadeloupe 1948',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6622','EPSG','2829',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4623','CSG67',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6623','EPSG','3105',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4624','RGFG95',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6624','EPSG','1097',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4625','Martinique 1938',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6625','EPSG','3276',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4626','Reunion 1947',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6626','EPSG','3337',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4627','RGR92',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6627','EPSG','3902',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4628','Tahiti 52',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6628','EPSG','2811',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4629','Tahaa 54',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6629','EPSG','2812',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4630','IGN72 Nuku Hiva',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6630','EPSG','3129',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4631','K0 1949',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6631','EPSG','2816',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4632','Combani 1950',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6632','EPSG','3340',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4633','IGN56 Lifou',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6633','EPSG','2814',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4634','IGN72 Grand Terre',NULL,NULL,'geographic 2D','EPSG','6402','EPSG','6634','EPSG','2822',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4635','ST87 Ouvea',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6635','EPSG','2813',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4636','Petrels 1972',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6636','EPSG','2817',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4637','Perroud 1950',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6637','EPSG','2818',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4638','Saint Pierre et Miquelon 1950',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6638','EPSG','3299',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4639','MOP78',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6639','EPSG','2815',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4640','RRAF 1991',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6640','EPSG','2824',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4641','IGN53 Mare',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6641','EPSG','2819',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4642','ST84 Ile des Pins',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6642','EPSG','2820',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4643','ST71 Belep',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6643','EPSG','2821',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4644','NEA74 Noumea',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6644','EPSG','2823',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4645','RGNC 1991',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6645','EPSG','1174',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4646','Grand Comoros',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6646','EPSG','2807',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4657','Reykjavik 1900',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6657','EPSG','3262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4658','Hjorsey 1955',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6658','EPSG','3262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4659','ISN93',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6659','EPSG','1120',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4660','Helle 1954',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6660','EPSG','2869',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4661','LKS92',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6661','EPSG','1139',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4662','IGN72 Grande Terre',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6634','EPSG','2822',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4663','Porto Santo 1995',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6663','EPSG','1314',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4664','Azores Oriental 1995',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6664','EPSG','1345',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4665','Azores Central 1995',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6665','EPSG','1301',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4666','Lisbon 1890',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6666','EPSG','1294',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4667','IKBD-92',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6667','EPSG','2876',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4668','ED79',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6668','EPSG','1297',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4669','LKS94',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6126','EPSG','1145',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4670','IGM95',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6670','EPSG','3343',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4671','Voirol 1879',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6671','EPSG','1365',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4672','Chatham Islands 1971',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6672','EPSG','2889',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4673','Chatham Islands 1979',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6673','EPSG','2889',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4674','SIRGAS 2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6674','EPSG','3418',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4675','Guam 1963',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6675','EPSG','4525',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4676','Vientiane 1982',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6676','EPSG','1138',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4677','Lao 1993',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6677','EPSG','1138',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4678','Lao 1997',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6678','EPSG','1138',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4679','Jouik 1961',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6679','EPSG','2967',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4680','Nouakchott 1965',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6680','EPSG','2968',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4681','Mauritania 1999',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6681','EPSG','1157',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4682','Gulshan 303',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6682','EPSG','1041',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4683','PRS92',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6683','EPSG','1190',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4684','Gan 1970',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6684','EPSG','3274',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4685','Gandajika',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6685','EPSG','1259',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4686','MAGNA-SIRGAS',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6686','EPSG','1070',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4687','RGPF',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6687','EPSG','1098',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4688','Fatu Iva 72',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6688','EPSG','3133',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4689','IGN63 Hiva Oa',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6689','EPSG','3130',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4690','Tahiti 79',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6690','EPSG','3124',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4691','Moorea 87',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6691','EPSG','3125',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4692','Maupiti 83',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6692','EPSG','3126',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4693','Nakhl-e Ghanem',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6693','EPSG','2362',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4694','POSGAR 94',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6694','EPSG','1033',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4695','Katanga 1955',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6695','EPSG','3147',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4696','Kasai 1953',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6696','EPSG','3148',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4697','IGC 1962 6th Parallel South',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6697','EPSG','3149',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4698','IGN 1962 Kerguelen',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6698','EPSG','2816',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4699','Le Pouce 1934',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6699','EPSG','3209',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4700','IGN Astro 1960',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6700','EPSG','3277',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4701','IGCB 1955',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6701','EPSG','3171',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4702','Mauritania 1999',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6702','EPSG','1157',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4703','Mhast 1951',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6703','EPSG','1318',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4704','Mhast (onshore)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6704','EPSG','3179',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4705','Mhast (offshore)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6705','EPSG','3180',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4706','Egypt Gulf of Suez S-650 TL',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6706','EPSG','2341',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4707','Tern Island 1961',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6707','EPSG','3181',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4708','Cocos Islands 1965',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6708','EPSG','1069',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4709','Iwo Jima 1945',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6709','EPSG','3200',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4710','Astro DOS 71',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6710','EPSG','3183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4711','Marcus Island 1952',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6711','EPSG','1872',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4712','Ascension Island 1958',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6712','EPSG','3182',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4713','Ayabelle Lighthouse',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6713','EPSG','1081',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4714','Bellevue',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6714','EPSG','3193',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4715','Camp Area Astro',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6715','EPSG','3205',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4716','Phoenix Islands 1966',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6716','EPSG','3196',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4717','Cape Canaveral',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6717','EPSG','3206',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4718','Solomon 1968',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6718','EPSG','1213',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4719','Easter Island 1967',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6719','EPSG','3188',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4720','Fiji 1986',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6720','EPSG','1094',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4721','Fiji 1956',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6721','EPSG','3398',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4722','South Georgia 1968',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6722','EPSG','3529',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4723','GCGD59',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6723','EPSG','3185',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4724','Diego Garcia 1969',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6724','EPSG','3189',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4725','Johnston Island 1961',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6725','EPSG','3201',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4726','SIGD61',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6726','EPSG','3186',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4727','Midway 1961',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6727','EPSG','3202',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4728','Pico de las Nieves 1984',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6728','EPSG','3873',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4729','Pitcairn 1967',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6729','EPSG','3208',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4730','Santo 1965',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6730','EPSG','3194',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4731','Viti Levu 1916',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6731','EPSG','3195',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4732','Marshall Islands 1960',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6732','EPSG','3191',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4733','Wake Island 1952',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6733','EPSG','3190',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4734','Tristan 1968',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6734','EPSG','3184',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4735','Kusaie 1951',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6735','EPSG','3192',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4736','Deception Island',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6736','EPSG','3204',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4737','Korea 2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6737','EPSG','1135',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4738','Hong Kong 1963',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6738','EPSG','1118',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4739','Hong Kong 1963(67)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6739','EPSG','1118',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4740','PZ-90',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6740','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4741','FD54',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6741','EPSG','3248',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4742','GDM2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6742','EPSG','1151',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4743','Karbala 1979',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6743','EPSG','3625',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4744','Nahrwan 1934',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6744','EPSG','4238',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4745','RD/83',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6745','EPSG','2545',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4746','PD/83',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6746','EPSG','2544',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4747','GR96',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6747','EPSG','1107',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4748','Vanua Levu 1915',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6748','EPSG','3401',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4749','RGNC91-93',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6749','EPSG','1174',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4750','ST87 Ouvea',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6750','EPSG','2813',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4751','Kertau (RSO)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6751','EPSG','1309',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4752','Viti Levu 1912',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6752','EPSG','3195',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4753','fk89',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6753','EPSG','3248',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4754','LGD2006',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6754','EPSG','1143',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4755','DGN95',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6755','EPSG','1122',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4756','VN-2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6756','EPSG','3328',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4757','SVY21',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6757','EPSG','1210',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4758','JAD2001',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6758','EPSG','1128',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4759','NAD83(NSRS2007)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6759','EPSG','1511',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4760','WGS 66',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6760','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4761','HTRS96',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6761','EPSG','1076',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4762','BDA2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6762','EPSG','1047',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4763','Pitcairn 2006',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6763','EPSG','3208',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4764','RSRGD2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6764','EPSG','3558',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4765','Slovenia 1996',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6765','EPSG','1212',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4801','Bern 1898 (Bern)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6801','EPSG','1286',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4802','Bogota 1975 (Bogota)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6802','EPSG','3229',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4803','Lisbon (Lisbon)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6803','EPSG','1294',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4804','Makassar (Jakarta)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6804','EPSG','1316',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4805','MGI (Ferro)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6805','EPSG','1321',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4806','Monte Mario (Rome)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6806','EPSG','3343',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4807','NTF (Paris)',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6807','EPSG','3694',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4808','Padang (Jakarta)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6808','EPSG','1355',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4809','Belge 1950 (Brussels)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6809','EPSG','1347',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4810','Tananarive (Paris)',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6810','EPSG','3273',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4811','Voirol 1875 (Paris)',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6811','EPSG','1365',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4813','Batavia (Jakarta)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6813','EPSG','1285',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4814','RT38 (Stockholm)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6814','EPSG','3313',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4815','Greek (Athens)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6815','EPSG','3254',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4816','Carthage (Paris)',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6816','EPSG','1618',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4817','NGO 1948 (Oslo)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6817','EPSG','1352',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4818','S-JTSK (Ferro)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6818','EPSG','1306',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4819','Nord Sahara 1959 (Paris)',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6819','EPSG','1366',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4820','Segara (Jakarta)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6820','EPSG','1360',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4821','Voirol 1879 (Paris)',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6821','EPSG','1365',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4823','Sao Tome',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1044','EPSG','3645',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4824','Principe',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1046','EPSG','3646',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4882','Slovenia 1996',NULL,NULL,'geocentric','EPSG','6500','EPSG','6765','EPSG','1212',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4883','Slovenia 1996',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6765','EPSG','1212',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4884','RSRGD2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','6764','EPSG','3558',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4885','RSRGD2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6764','EPSG','3558',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4886','BDA2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','6762','EPSG','1047',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4887','BDA2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6762','EPSG','1047',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4888','HTRS96',NULL,NULL,'geocentric','EPSG','6500','EPSG','6761','EPSG','1076',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4889','HTRS96',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6761','EPSG','1076',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4890','WGS 66',NULL,NULL,'geocentric','EPSG','6500','EPSG','6760','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4891','WGS 66',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6760','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4892','NAD83(NSRS2007)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6759','EPSG','1511',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4893','NAD83(NSRS2007)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6759','EPSG','1511',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4894','JAD2001',NULL,NULL,'geocentric','EPSG','6500','EPSG','6758','EPSG','1128',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4895','JAD2001',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6758','EPSG','1128',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4896','ITRF2005',NULL,NULL,'geocentric','EPSG','6500','EPSG','6896','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4897','DGN95',NULL,NULL,'geocentric','EPSG','6500','EPSG','6755','EPSG','1122',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4898','DGN95',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6755','EPSG','1122',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4899','LGD2006',NULL,NULL,'geocentric','EPSG','6500','EPSG','6754','EPSG','1143',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4900','LGD2006',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6754','EPSG','1143',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4901','ATF (Paris)',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6901','EPSG','1326',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4902','NDG (Paris)',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6902','EPSG','1369',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4903','Madrid 1870 (Madrid)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6903','EPSG','2366',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4904','Lisbon 1890 (Lisbon)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6904','EPSG','1294',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4906','RGNC91-93',NULL,NULL,'geocentric','EPSG','6500','EPSG','6749','EPSG','1174',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4907','RGNC91-93',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6749','EPSG','1174',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4908','GR96',NULL,NULL,'geocentric','EPSG','6500','EPSG','6747','EPSG','1107',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4909','GR96',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6747','EPSG','1107',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4910','ITRF88',NULL,NULL,'geocentric','EPSG','6500','EPSG','6647','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4911','ITRF89',NULL,NULL,'geocentric','EPSG','6500','EPSG','6648','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4912','ITRF90',NULL,NULL,'geocentric','EPSG','6500','EPSG','6649','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4913','ITRF91',NULL,NULL,'geocentric','EPSG','6500','EPSG','6650','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4914','ITRF92',NULL,NULL,'geocentric','EPSG','6500','EPSG','6651','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4915','ITRF93',NULL,NULL,'geocentric','EPSG','6500','EPSG','6652','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4916','ITRF94',NULL,NULL,'geocentric','EPSG','6500','EPSG','6653','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4917','ITRF96',NULL,NULL,'geocentric','EPSG','6500','EPSG','6654','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4918','ITRF97',NULL,NULL,'geocentric','EPSG','6500','EPSG','6655','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4919','ITRF2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','6656','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4920','GDM2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','6742','EPSG','1151',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4921','GDM2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6742','EPSG','1151',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4922','PZ-90',NULL,NULL,'geocentric','EPSG','6500','EPSG','6740','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4923','PZ-90',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6740','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4924','Mauritania 1999',NULL,NULL,'geocentric','EPSG','6500','EPSG','6702','EPSG','1157',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4925','Mauritania 1999',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6702','EPSG','1157',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4926','Korea 2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','6737','EPSG','1135',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4927','Korea 2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6737','EPSG','1135',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4928','POSGAR 94',NULL,NULL,'geocentric','EPSG','6500','EPSG','6694','EPSG','1033',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4929','POSGAR 94',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6694','EPSG','1033',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4930','Australian Antarctic',NULL,NULL,'geocentric','EPSG','6500','EPSG','6176','EPSG','1278',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4931','Australian Antarctic',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6176','EPSG','1278',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4932','CHTRF95',NULL,NULL,'geocentric','EPSG','6500','EPSG','6151','EPSG','1286',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4933','CHTRF95',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6151','EPSG','1286',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4934','EST97',NULL,NULL,'geocentric','EPSG','6500','EPSG','6180','EPSG','1090',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4935','EST97',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6180','EPSG','1090',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4936','ETRS89',NULL,NULL,'geocentric','EPSG','6500','EPSG','6258','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4937','ETRS89',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6258','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4938','GDA94',NULL,NULL,'geocentric','EPSG','6500','EPSG','6283','EPSG','4177',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4939','GDA94',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6283','EPSG','4177',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4940','Hartebeesthoek94',NULL,NULL,'geocentric','EPSG','6500','EPSG','6148','EPSG','4540',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4941','Hartebeesthoek94',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6148','EPSG','4540',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4942','IRENET95',NULL,NULL,'geocentric','EPSG','6500','EPSG','6173','EPSG','1305',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4943','IRENET95',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6173','EPSG','1305',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4944','ISN93',NULL,NULL,'geocentric','EPSG','6500','EPSG','6659','EPSG','1120',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4945','ISN93',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6659','EPSG','1120',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4946','JGD2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','6612','EPSG','1129',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4947','JGD2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6612','EPSG','1129',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4948','LKS92',NULL,NULL,'geocentric','EPSG','6500','EPSG','6661','EPSG','1139',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4949','LKS92',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6661','EPSG','1139',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4950','LKS94',NULL,NULL,'geocentric','EPSG','6500','EPSG','6126','EPSG','1145',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4951','LKS94',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6126','EPSG','1145',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4952','Moznet',NULL,NULL,'geocentric','EPSG','6500','EPSG','6130','EPSG','1167',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4953','Moznet',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6130','EPSG','1167',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4954','NAD83(CSRS)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6140','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4955','NAD83(CSRS)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6140','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4956','NAD83(HARN)',NULL,NULL,'geocentric','EPSG','6500','EPSG','6152','EPSG','1337',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4957','NAD83(HARN)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6152','EPSG','1337',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4958','NZGD2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','6167','EPSG','1175',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4959','NZGD2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6167','EPSG','1175',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4960','POSGAR 98',NULL,NULL,'geocentric','EPSG','6500','EPSG','6190','EPSG','1033',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4961','POSGAR 98',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6190','EPSG','1033',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4962','REGVEN',NULL,NULL,'geocentric','EPSG','6500','EPSG','6189','EPSG','1251',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4963','REGVEN',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6189','EPSG','1251',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4964','RGF93',NULL,NULL,'geocentric','EPSG','6500','EPSG','6171','EPSG','1096',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4965','RGF93',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6171','EPSG','1096',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4966','RGFG95',NULL,NULL,'geocentric','EPSG','6500','EPSG','6624','EPSG','1097',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4967','RGFG95',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6624','EPSG','1097',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4968','RGNC 1991',NULL,NULL,'geocentric','EPSG','6500','EPSG','6645','EPSG','1174',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4969','RGNC 1991',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6645','EPSG','1174',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4970','RGR92',NULL,NULL,'geocentric','EPSG','6500','EPSG','6627','EPSG','3902',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4971','RGR92',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6627','EPSG','3902',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4972','RRAF 1991',NULL,NULL,'geocentric','EPSG','6500','EPSG','6640','EPSG','2824',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4973','RRAF 1991',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6640','EPSG','2824',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','4974','SIRGAS 1995',NULL,NULL,'geocentric','EPSG','6500','EPSG','6170','EPSG','3448',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4975','SIRGAS 1995',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6170','EPSG','3448',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4976','SWEREF99',NULL,NULL,'geocentric','EPSG','6500','EPSG','6619','EPSG','1225',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4977','SWEREF99',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6619','EPSG','1225',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4978','WGS 84',NULL,NULL,'geocentric','EPSG','6500','EPSG','6326','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4979','WGS 84',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6326','EPSG','2830',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4980','Yemen NGN96',NULL,NULL,'geocentric','EPSG','6500','EPSG','6163','EPSG','1257',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4981','Yemen NGN96',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6163','EPSG','1257',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4982','IGM95',NULL,NULL,'geocentric','EPSG','6500','EPSG','6670','EPSG','3343',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4983','IGM95',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6670','EPSG','3343',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4984','WGS 72',NULL,NULL,'geocentric','EPSG','6500','EPSG','6322','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4985','WGS 72',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6322','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4986','WGS 72BE',NULL,NULL,'geocentric','EPSG','6500','EPSG','6324','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4987','WGS 72BE',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6324','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4988','SIRGAS 2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','6674','EPSG','3418',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4989','SIRGAS 2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6674','EPSG','3418',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4990','Lao 1993',NULL,NULL,'geocentric','EPSG','6500','EPSG','6677','EPSG','1138',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4991','Lao 1993',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6677','EPSG','1138',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4992','Lao 1997',NULL,NULL,'geocentric','EPSG','6500','EPSG','6678','EPSG','1138',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4993','Lao 1997',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6678','EPSG','1138',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4994','PRS92',NULL,NULL,'geocentric','EPSG','6500','EPSG','6683','EPSG','1190',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4995','PRS92',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6683','EPSG','1190',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4996','MAGNA-SIRGAS',NULL,NULL,'geocentric','EPSG','6500','EPSG','6686','EPSG','1070',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4997','MAGNA-SIRGAS',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6686','EPSG','1070',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4998','RGPF',NULL,NULL,'geocentric','EPSG','6500','EPSG','6687','EPSG','1098',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','4999','RGPF',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6687','EPSG','1098',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5011','PTRA08',NULL,NULL,'geocentric','EPSG','6500','EPSG','1041','EPSG','3670',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5012','PTRA08',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1041','EPSG','3670',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5013','PTRA08',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1041','EPSG','3670',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5132','Tokyo 1892',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1048','EPSG','1364',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5228','S-JTSK/05',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1052','EPSG','1079',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5229','S-JTSK/05 (Ferro)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1055','EPSG','1079',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5233','SLD99',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1053','EPSG','3310',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5244','GDBD2009',NULL,NULL,'geocentric','EPSG','6500','EPSG','1056','EPSG','1055',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5245','GDBD2009',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1056','EPSG','1055',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5246','GDBD2009',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1056','EPSG','1055',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5250','TUREF',NULL,NULL,'geocentric','EPSG','6500','EPSG','1057','EPSG','1237',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5251','TUREF',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1057','EPSG','1237',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5252','TUREF',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1057','EPSG','1237',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5262','DRUKREF 03',NULL,NULL,'geocentric','EPSG','6500','EPSG','1058','EPSG','1048',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5263','DRUKREF 03',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1058','EPSG','1048',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5264','DRUKREF 03',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1058','EPSG','1048',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5322','ISN2004',NULL,NULL,'geocentric','EPSG','6500','EPSG','1060','EPSG','1120',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5323','ISN2004',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1060','EPSG','1120',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5324','ISN2004',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1060','EPSG','1120',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5332','ITRF2008',NULL,NULL,'geocentric','EPSG','6500','EPSG','1061','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5340','POSGAR 2007',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1062','EPSG','1033',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5341','POSGAR 2007',NULL,NULL,'geocentric','EPSG','6500','EPSG','1062','EPSG','1033',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5342','POSGAR 2007',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1062','EPSG','1033',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5352','MARGEN',NULL,NULL,'geocentric','EPSG','6500','EPSG','1063','EPSG','1049',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5353','MARGEN',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1063','EPSG','1049',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5354','MARGEN',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1063','EPSG','1049',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5358','SIRGAS-Chile 2002',NULL,NULL,'geocentric','EPSG','6500','EPSG','1064','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5359','SIRGAS-Chile 2002',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1064','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5360','SIRGAS-Chile 2002',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1064','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5363','CR05',NULL,NULL,'geocentric','EPSG','6500','EPSG','1065','EPSG','1074',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5364','CR05',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1065','EPSG','1074',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5365','CR05',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1065','EPSG','1074',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5368','MACARIO SOLIS',NULL,NULL,'geocentric','EPSG','6500','EPSG','1066','EPSG','1186',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5369','Peru96',NULL,NULL,'geocentric','EPSG','6500','EPSG','1067','EPSG','1189',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5370','MACARIO SOLIS',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1066','EPSG','1186',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5371','MACARIO SOLIS',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1066','EPSG','1186',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5372','Peru96',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1067','EPSG','1189',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5373','Peru96',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1067','EPSG','1189',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5379','SIRGAS-ROU98',NULL,NULL,'geocentric','EPSG','6500','EPSG','1068','EPSG','1247',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5380','SIRGAS-ROU98',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1068','EPSG','1247',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5381','SIRGAS-ROU98',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1068','EPSG','1247',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5391','SIRGAS_ES2007.8',NULL,NULL,'geocentric','EPSG','6500','EPSG','1069','EPSG','1087',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5392','SIRGAS_ES2007.8',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1069','EPSG','1087',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5393','SIRGAS_ES2007.8',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1069','EPSG','1087',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5451','Ocotepeque 1935',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1070','EPSG','3876',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5464','Sibun Gorge 1922',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1071','EPSG','3219',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5467','Panama-Colon 1911',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1072','EPSG','3290',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5487','RGAF09',NULL,NULL,'geocentric','EPSG','6500','EPSG','1073','EPSG','2824',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5488','RGAF09',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1073','EPSG','2824',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5489','RGAF09',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1073','EPSG','2824',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5524','Corrego Alegre 1961',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1074','EPSG','3874',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5527','SAD69(96)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1075','EPSG','1053',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5544','PNG94',NULL,NULL,'geocentric','EPSG','6500','EPSG','1076','EPSG','1187',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5545','PNG94',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1076','EPSG','1187',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5546','PNG94',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1076','EPSG','1187',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5558','UCS-2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','1077','EPSG','1242',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5560','UCS-2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1077','EPSG','1242',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5561','UCS-2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1077','EPSG','1242',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5591','FEH2010',NULL,NULL,'geocentric','EPSG','6500','EPSG','1078','EPSG','3889',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5592','FEH2010',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1078','EPSG','3889',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5593','FEH2010',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1078','EPSG','3889',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5681','DB_REF',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1081','EPSG','3339',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5828','DB_REF',NULL,NULL,'geocentric','EPSG','6500','EPSG','1081','EPSG','3339',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5830','DB_REF',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1081','EPSG','3339',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5884','TGD2005',NULL,NULL,'geocentric','EPSG','6500','EPSG','1095','EPSG','1234',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5885','TGD2005',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1095','EPSG','1234',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','5886','TGD2005',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1095','EPSG','1234',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6133','CIGD11',NULL,NULL,'geocentric','EPSG','6500','EPSG','1100','EPSG','1063',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6134','CIGD11',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1100','EPSG','1063',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6135','CIGD11',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1100','EPSG','1063',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6207','Nepal 1981',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1111','EPSG','1171',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6309','CGRS93',NULL,NULL,'geocentric','EPSG','6500','EPSG','1112','EPSG','3236',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6310','CGRS93',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1112','EPSG','3236',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6311','CGRS93',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1112','EPSG','3236',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6317','NAD83(2011)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1116','EPSG','1511',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6318','NAD83(2011)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1116','EPSG','1511',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6319','NAD83(2011)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1116','EPSG','1511',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6320','NAD83(PA11)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1117','EPSG','4162',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6321','NAD83(PA11)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1117','EPSG','4162',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6322','NAD83(PA11)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1117','EPSG','4162',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6323','NAD83(MA11)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1118','EPSG','4167',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6324','NAD83(MA11)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1118','EPSG','4167',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6325','NAD83(MA11)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1118','EPSG','4167',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6363','Mexico ITRF2008',NULL,NULL,'geocentric','EPSG','6500','EPSG','1120','EPSG','1160',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6364','Mexico ITRF2008',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1120','EPSG','1160',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6365','Mexico ITRF2008',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1120','EPSG','1160',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6666','JGD2011',NULL,NULL,'geocentric','EPSG','6500','EPSG','1128','EPSG','1129',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6667','JGD2011',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1128','EPSG','1129',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6668','JGD2011',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1128','EPSG','1129',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6704','RDN2008',NULL,NULL,'geocentric','EPSG','6500','EPSG','1132','EPSG','3343',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6705','RDN2008',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1132','EPSG','3343',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6706','RDN2008',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1132','EPSG','3343',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6781','NAD83(CORS96)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1133','EPSG','1511',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6782','NAD83(CORS96)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1133','EPSG','1511',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6783','NAD83(CORS96)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1133','EPSG','1511',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6881','Aden 1925',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1135','EPSG','1340',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6882','Bekaa Valley 1920',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1137','EPSG','3269',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6883','Bioko',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1136','EPSG','4220',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6892','South East Island 1943',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1138','EPSG','4183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6894','Gambia',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1139','EPSG','3250',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6934','IGS08',NULL,NULL,'geocentric','EPSG','6500','EPSG','1141','EPSG','2830',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6978','IGD05',NULL,NULL,'geocentric','EPSG','6500','EPSG','1143','EPSG','1126',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','6979','IGD05',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1143','EPSG','1126',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','6980','IGD05',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1143','EPSG','1126',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','6981','IG05 Intermediate CRS',NULL,NULL,'geocentric','EPSG','6500','EPSG','1142','EPSG','2603',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6982','IG05 Intermediate CRS',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1142','EPSG','2603',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6983','IG05 Intermediate CRS',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1142','EPSG','2603',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6985','IGD05/12',NULL,NULL,'geocentric','EPSG','6500','EPSG','1145','EPSG','1126',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','6986','IGD05/12',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1145','EPSG','1126',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','6987','IGD05/12',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1145','EPSG','1126',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','6988','IG05/12 Intermediate CRS',NULL,NULL,'geocentric','EPSG','6500','EPSG','1144','EPSG','2603',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6989','IG05/12 Intermediate CRS',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1144','EPSG','2603',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','6990','IG05/12 Intermediate CRS',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1144','EPSG','2603',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7034','RGSPM06 (lon-lat)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1038','EPSG','1220',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7035','RGSPM06 (lon-lat)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1038','EPSG','1220',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7036','RGR92 (lon-lat)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6627','EPSG','3902',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7037','RGR92 (lon-lat)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6627','EPSG','3902',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7038','RGM04 (lon-lat)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1036','EPSG','1159',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7039','RGM04 (lon-lat)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1036','EPSG','1159',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7040','RGFG95 (lon-lat)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6624','EPSG','1097',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7041','RGFG95 (lon-lat)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6624','EPSG','1097',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7042','RGF93 (lon-lat)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6171','EPSG','1096',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7071','RGTAAF07',NULL,NULL,'geocentric','EPSG','6500','EPSG','1113','EPSG','4246',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7072','RGTAAF07',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1113','EPSG','4246',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7073','RGTAAF07',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1113','EPSG','4246',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7084','RGF93 (lon-lat)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6171','EPSG','1096',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7085','RGAF09 (lon-lat)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1073','EPSG','2824',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7086','RGAF09 (lon-lat)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1073','EPSG','2824',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7087','RGTAAF07 (lon-lat)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1113','EPSG','4246',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7088','RGTAAF07 (lon-lat)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1113','EPSG','4246',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','7133','RGTAAF07 (lon-lat)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1113','EPSG','4246',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7134','IGD05',NULL,NULL,'geocentric','EPSG','6500','EPSG','1114','EPSG','1126',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7135','IGD05',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1114','EPSG','1126',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7136','IGD05',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1114','EPSG','1126',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7137','IGD05/12',NULL,NULL,'geocentric','EPSG','6500','EPSG','1115','EPSG','1126',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7138','IGD05/12',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1115','EPSG','1126',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7139','IGD05/12',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1115','EPSG','1126',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7371','ONGD14',NULL,NULL,'geocentric','EPSG','6500','EPSG','1147','EPSG','1183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7372','ONGD14',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1147','EPSG','1183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7373','ONGD14',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1147','EPSG','1183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7656','WGS 84 (G730)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1152','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7657','WGS 84 (G730)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1152','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7658','WGS 84 (G873)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1153','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7659','WGS 84 (G873)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1153','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7660','WGS 84 (G1150)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1154','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7661','WGS 84 (G1150)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1154','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7662','WGS 84 (G1674)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1155','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7663','WGS 84 (G1674)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1155','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7664','WGS 84 (G1762)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1156','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7665','WGS 84 (G1762)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1156','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7677','PZ-90.02',NULL,NULL,'geocentric','EPSG','6500','EPSG','1157','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7678','PZ-90.02',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1157','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7679','PZ-90.11',NULL,NULL,'geocentric','EPSG','6500','EPSG','1158','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7680','PZ-90.11',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1158','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7681','GSK-2011',NULL,NULL,'geocentric','EPSG','6500','EPSG','1159','EPSG','1198',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7682','GSK-2011',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1159','EPSG','1198',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7683','GSK-2011',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1159','EPSG','1198',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7684','Kyrg-06',NULL,NULL,'geocentric','EPSG','6500','EPSG','1160','EPSG','1137',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7685','Kyrg-06',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1160','EPSG','1137',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7686','Kyrg-06',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1160','EPSG','1137',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7789','ITRF2014',NULL,NULL,'geocentric','EPSG','6500','EPSG','1165','EPSG','2830',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7796','BGS2005',NULL,NULL,'geocentric','EPSG','6500','EPSG','1167','EPSG','1056',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7797','BGS2005',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1167','EPSG','1056',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7798','BGS2005',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1167','EPSG','1056',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7815','WGS 84 (Transit)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1166','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7816','WGS 84 (Transit)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1166','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7842','GDA2020',NULL,NULL,'geocentric','EPSG','6500','EPSG','1168','EPSG','4177',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7843','GDA2020',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1168','EPSG','4177',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7844','GDA2020',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1168','EPSG','4177',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7879','St. Helena Tritan',NULL,NULL,'geocentric','EPSG','6500','EPSG','1173','EPSG','3183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7880','St. Helena Tritan',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1173','EPSG','3183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7881','St. Helena Tritan',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1173','EPSG','3183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7884','SHGD2015',NULL,NULL,'geocentric','EPSG','6500','EPSG','1174','EPSG','3183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7885','SHGD2015',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1174','EPSG','3183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7886','SHGD2015',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1174','EPSG','3183',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7900','ITRF88',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6647','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7901','ITRF89',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6648','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7902','ITRF90',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6649','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7903','ITRF91',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6650','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7904','ITRF92',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6651','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7905','ITRF93',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6652','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7906','ITRF94',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6653','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7907','ITRF96',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6654','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7908','ITRF97',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6655','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7909','ITRF2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6656','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7910','ITRF2005',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6896','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7911','ITRF2008',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1061','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7912','ITRF2014',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1165','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7914','ETRF89',NULL,NULL,'geocentric','EPSG','6500','EPSG','1178','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7915','ETRF89',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1178','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7916','ETRF90',NULL,NULL,'geocentric','EPSG','6500','EPSG','1179','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7917','ETRF90',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1179','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7918','ETRF91',NULL,NULL,'geocentric','EPSG','6500','EPSG','1180','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7919','ETRF91',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1180','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7920','ETRF92',NULL,NULL,'geocentric','EPSG','6500','EPSG','1181','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7921','ETRF92',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1181','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7922','ETRF93',NULL,NULL,'geocentric','EPSG','6500','EPSG','1182','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7923','ETRF93',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1182','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7924','ETRF94',NULL,NULL,'geocentric','EPSG','6500','EPSG','1183','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7925','ETRF94',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1183','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7926','ETRF96',NULL,NULL,'geocentric','EPSG','6500','EPSG','1184','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7927','ETRF96',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1184','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7928','ETRF97',NULL,NULL,'geocentric','EPSG','6500','EPSG','1185','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7929','ETRF97',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1185','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7930','ETRF2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','1186','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','7931','ETRF2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1186','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8042','Gusterberg (Ferro)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1188','EPSG','4455',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8043','St. Stephen (Ferro)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1189','EPSG','4456',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8084','ISN2016',NULL,NULL,'geocentric','EPSG','6500','EPSG','1187','EPSG','1120',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8085','ISN2016',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1187','EPSG','1120',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8086','ISN2016',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1187','EPSG','1120',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8227','IGS14',NULL,NULL,'geocentric','EPSG','6500','EPSG','1191','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8230','NAD83(CSRS96)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1192','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8231','NAD83(CSRS96)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1192','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8232','NAD83(CSRS96)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1192','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8233','NAD83(CSRS)v2',NULL,NULL,'geocentric','EPSG','6500','EPSG','1193','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8235','NAD83(CSRS)v2',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1193','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8237','NAD83(CSRS)v2',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1193','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8238','NAD83(CSRS)v3',NULL,NULL,'geocentric','EPSG','6500','EPSG','1194','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8239','NAD83(CSRS)v3',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1194','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8240','NAD83(CSRS)v3',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1194','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8242','NAD83(CSRS)v4',NULL,NULL,'geocentric','EPSG','6500','EPSG','1195','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8244','NAD83(CSRS)v4',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1195','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8246','NAD83(CSRS)v4',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1195','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8247','NAD83(CSRS)v5',NULL,NULL,'geocentric','EPSG','6500','EPSG','1196','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8248','NAD83(CSRS)v5',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1196','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8249','NAD83(CSRS)v5',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1196','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8250','NAD83(CSRS)v6',NULL,NULL,'geocentric','EPSG','6500','EPSG','1197','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8251','NAD83(CSRS)v6',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1197','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8252','NAD83(CSRS)v6',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1197','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8253','NAD83(CSRS)v7',NULL,NULL,'geocentric','EPSG','6500','EPSG','1198','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8254','NAD83(CSRS)v7',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1198','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8255','NAD83(CSRS)v7',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1198','EPSG','1061',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8351','S-JTSK [JTSK03]',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1201','EPSG','1211',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8397','ETRF2005',NULL,NULL,'geocentric','EPSG','6500','EPSG','1204','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8399','ETRF2005',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1204','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8401','ETRF2014',NULL,NULL,'geocentric','EPSG','6500','EPSG','1206','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8403','ETRF2014',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1206','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8425','Hong Kong Geodetic CS',NULL,NULL,'geocentric','EPSG','6500','EPSG','1209','EPSG','1118',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8426','Hong Kong Geodetic CS',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1209','EPSG','1118',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8427','Hong Kong Geodetic CS',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1209','EPSG','1118',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8428','Macao 1920',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1207','EPSG','1147',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8429','Macao 2008',NULL,NULL,'geocentric','EPSG','6500','EPSG','1208','EPSG','1147',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8430','Macao 2008',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1208','EPSG','1147',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8431','Macao 2008',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1208','EPSG','1147',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8449','NAD83(FBN)',NULL,NULL,'geographic 2D','EPSG','6423','EPSG','6152','EPSG','4515',NULL,1); INSERT INTO "geodetic_crs" VALUES('EPSG','8541','NAD83(FBN)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1211','EPSG','4515',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8542','NAD83(FBN)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1211','EPSG','4515',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8543','NAD83(HARN Corrected)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1212','EPSG','3634',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8544','NAD83(HARN Corrected)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1212','EPSG','3634',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8545','NAD83(HARN Corrected)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1212','EPSG','3634',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8683','SRB_ETRS89',NULL,NULL,'geocentric','EPSG','6500','EPSG','1214','EPSG','4543',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8684','SRB_ETRS89',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1214','EPSG','4543',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8685','SRB_ETRS89',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1214','EPSG','4543',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8694','Camacupa 2015',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1217','EPSG','1029',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8697','RSAO13',NULL,NULL,'geocentric','EPSG','6500','EPSG','1220','EPSG','1029',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8698','RSAO13',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1220','EPSG','1029',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8699','RSAO13',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1220','EPSG','1029',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8816','MTRF-2000',NULL,NULL,'geocentric','EPSG','6500','EPSG','1218','EPSG','1206',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8817','MTRF-2000',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1218','EPSG','1206',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8818','MTRF-2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1218','EPSG','1206',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8860','NAD83(FBN)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1211','EPSG','4515',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8888','WGS 84 (Transit)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1166','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8898','RGWF96',NULL,NULL,'geocentric','EPSG','6500','EPSG','1223','EPSG','1255',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8899','RGWF96',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1223','EPSG','1255',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8900','RGWF96',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1223','EPSG','1255',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8901','RGWF96 (lon-lat)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1223','EPSG','1255',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8902','RGWF96 (lon-lat)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1223','EPSG','1255',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8905','CR-SIRGAS',NULL,NULL,'geocentric','EPSG','6500','EPSG','1225','EPSG','1074',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8906','CR-SIRGAS',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1225','EPSG','1074',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8907','CR-SIRGAS',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1225','EPSG','1074',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8915','SIRGAS-CON DGF00P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1227','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8916','SIRGAS-CON DGF00P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1227','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8917','SIRGAS-CON DGF01P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1228','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8918','SIRGAS-CON DGF01P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1228','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8919','SIRGAS-CON DGF01P02',NULL,NULL,'geocentric','EPSG','6500','EPSG','1229','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8920','SIRGAS-CON DGF01P02',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1229','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8921','SIRGAS-CON DGF02P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1230','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8922','SIRGAS-CON DGF02P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1230','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8923','SIRGAS-CON DGF04P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1231','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8924','SIRGAS-CON DGF04P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1231','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8925','SIRGAS-CON DGF05P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1232','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8926','SIRGAS-CON DGF05P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1232','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8927','SIRGAS-CON DGF06P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1233','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8928','SIRGAS-CON DGF06P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1233','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8929','SIRGAS-CON DGF07P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1234','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8930','SIRGAS-CON DGF07P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1234','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8931','SIRGAS-CON DGF08P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1235','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8932','SIRGAS-CON DGF08P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1235','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8933','SIRGAS-CON SIR09P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1236','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8934','SIRGAS-CON SIR09P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1236','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8935','SIRGAS-CON SIR10P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1237','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8936','SIRGAS-CON SIR10P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1237','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8937','SIRGAS-CON SIR11P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1238','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8938','SIRGAS-CON SIR11P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1238','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8939','SIRGAS-CON SIR13P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1239','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8940','SIRGAS-CON SIR13P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1239','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8941','SIRGAS-CON SIR14P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1240','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8942','SIRGAS-CON SIR14P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1240','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8943','SIRGAS-CON SIR15P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1241','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8944','SIRGAS-CON SIR15P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1241','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8945','SIRGAS-CON SIR17P01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1242','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8946','SIRGAS-CON SIR17P01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1242','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8947','SIRGAS-Chile 2010',NULL,NULL,'geocentric','EPSG','6500','EPSG','1243','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8948','SIRGAS-Chile 2010',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1243','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8949','SIRGAS-Chile 2010',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1243','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8972','SIRGAS-CON DGF00P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1227','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8973','SIRGAS-CON DGF01P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1228','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8974','SIRGAS-CON DGF01P02',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1229','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8975','SIRGAS-CON DGF02P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1230','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8976','SIRGAS-CON DGF04P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1231','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8977','SIRGAS-CON DGF05P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1232','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8978','SIRGAS-CON DGF06P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1233','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8979','SIRGAS-CON DGF07P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1234','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8980','SIRGAS-CON DGF08P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1235','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8981','SIRGAS-CON SIR09P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1236','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8982','SIRGAS-CON SIR10P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1237','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8983','SIRGAS-CON SIR11P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1238','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8984','SIRGAS-CON SIR13P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1239','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8985','SIRGAS-CON SIR14P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1240','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8986','SIRGAS-CON SIR15P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1241','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8987','SIRGAS-CON SIR17P01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1242','EPSG','4530',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8988','ITRF88',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6647','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8989','ITRF89',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6648','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8990','ITRF90',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6649','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8991','ITRF91',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6650','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8992','ITRF92',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6651','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8993','ITRF93',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6652','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8994','ITRF94',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6653','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8995','ITRF96',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6654','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8996','ITRF97',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6655','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8997','ITRF2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6656','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8998','ITRF2005',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6896','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','8999','ITRF2008',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1061','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9000','ITRF2014',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1165','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9001','IGS97',NULL,NULL,'geocentric','EPSG','6500','EPSG','1244','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9002','IGS97',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1244','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9003','IGS97',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1244','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9004','IGS00',NULL,NULL,'geocentric','EPSG','6500','EPSG','1245','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9005','IGS00',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1245','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9006','IGS00',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1245','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9007','IGb00',NULL,NULL,'geocentric','EPSG','6500','EPSG','1246','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9008','IGb00',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1246','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9009','IGb00',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1246','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9010','IGS05',NULL,NULL,'geocentric','EPSG','6500','EPSG','1247','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9011','IGS05',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1247','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9012','IGS05',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1247','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9013','IGS08',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1141','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9014','IGS08',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1141','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9015','IGb08',NULL,NULL,'geocentric','EPSG','6500','EPSG','1248','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9016','IGb08',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1248','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9017','IGb08',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1248','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9018','IGS14',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1191','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9019','IGS14',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1191','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9053','WGS 84 (G730)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1152','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9054','WGS 84 (G873)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1153','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9055','WGS 84 (G1150)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1154','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9056','WGS 84 (G1674)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1155','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9057','WGS 84 (G1762)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1156','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9059','ETRF89',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1178','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9060','ETRF90',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1179','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9061','ETRF91',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1180','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9062','ETRF92',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1181','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9063','ETRF93',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1182','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9064','ETRF94',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1183','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9065','ETRF96',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1184','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9066','ETRF97',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1185','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9067','ETRF2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1186','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9068','ETRF2005',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1204','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9069','ETRF2014',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1206','EPSG','1298',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9070','NAD83(MARP00)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1221','EPSG','4167',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9071','NAD83(MARP00)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1221','EPSG','4167',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9072','NAD83(MARP00)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1221','EPSG','4167',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9073','NAD83(PACP00)',NULL,NULL,'geocentric','EPSG','6500','EPSG','1249','EPSG','4162',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9074','NAD83(PACP00)',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1249','EPSG','4162',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9075','NAD83(PACP00)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1249','EPSG','4162',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9138','KOSOVAREF01',NULL,NULL,'geocentric','EPSG','6500','EPSG','1251','EPSG','4542',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9139','KOSOVAREF01',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1251','EPSG','4542',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9140','KOSOVAREF01',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1251','EPSG','4542',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9146','SIRGAS-Chile 2013',NULL,NULL,'geocentric','EPSG','6500','EPSG','1252','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9147','SIRGAS-Chile 2013',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1252','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9148','SIRGAS-Chile 2013',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1252','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9151','SIRGAS-Chile 2016',NULL,NULL,'geocentric','EPSG','6500','EPSG','1253','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9152','SIRGAS-Chile 2016',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1253','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9153','SIRGAS-Chile 2016',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1253','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9182','SIRGAS-Chile',NULL,NULL,'geocentric','EPSG','6500','EPSG','1254','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9183','SIRGAS-Chile',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1254','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9184','SIRGAS-Chile',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1254','EPSG','1066',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9248','Tapi Aike',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1257','EPSG','4569',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9251','MMN',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1258','EPSG','2357',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9253','MMS',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1259','EPSG','2357',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9266','MGI',NULL,NULL,'geocentric','EPSG','6500','EPSG','6312','EPSG','1037',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9267','MGI',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','6312','EPSG','1037',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9331','KSA-GRF17',NULL,NULL,'geocentric','EPSG','6500','EPSG','1268','EPSG','1206',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9332','KSA-GRF17',NULL,NULL,'geographic 3D','EPSG','6423','EPSG','1268','EPSG','1206',NULL,0); INSERT INTO "geodetic_crs" VALUES('EPSG','9333','KSA-GRF17',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1268','EPSG','1206',NULL,0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "projected_crs" VALUES('EPSG','2000','Anguilla 1957 / British West Indies Grid',NULL,NULL,'EPSG','4400','EPSG','4600','EPSG','19942','EPSG','3214',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2001','Antigua 1943 / British West Indies Grid',NULL,NULL,'EPSG','4400','EPSG','4601','EPSG','19942','EPSG','1273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2002','Dominica 1945 / British West Indies Grid',NULL,NULL,'EPSG','4400','EPSG','4602','EPSG','19942','EPSG','3239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2003','Grenada 1953 / British West Indies Grid',NULL,NULL,'EPSG','4400','EPSG','4603','EPSG','19942','EPSG','1551',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2004','Montserrat 1958 / British West Indies Grid',NULL,NULL,'EPSG','4400','EPSG','4604','EPSG','19942','EPSG','3279',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2005','St. Kitts 1955 / British West Indies Grid',NULL,NULL,'EPSG','4400','EPSG','4605','EPSG','19942','EPSG','3297',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2006','St. Lucia 1955 / British West Indies Grid',NULL,NULL,'EPSG','4400','EPSG','4606','EPSG','19942','EPSG','3298',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2007','St. Vincent 45 / British West Indies Grid',NULL,NULL,'EPSG','4400','EPSG','4607','EPSG','19942','EPSG','3300',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2008','NAD27(CGQ77) / SCoPQ zone 2',NULL,NULL,'EPSG','4499','EPSG','4609','EPSG','17700','EPSG','1420',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2009','NAD27(CGQ77) / SCoPQ zone 3',NULL,NULL,'EPSG','4499','EPSG','4609','EPSG','17703','EPSG','1446',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2010','NAD27(CGQ77) / SCoPQ zone 4',NULL,NULL,'EPSG','4499','EPSG','4609','EPSG','17704','EPSG','1422',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2011','NAD27(CGQ77) / SCoPQ zone 5',NULL,NULL,'EPSG','4499','EPSG','4609','EPSG','17705','EPSG','1423',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2012','NAD27(CGQ77) / SCoPQ zone 6',NULL,NULL,'EPSG','4499','EPSG','4609','EPSG','17706','EPSG','1424',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2013','NAD27(CGQ77) / SCoPQ zone 7',NULL,NULL,'EPSG','4499','EPSG','4609','EPSG','17707','EPSG','1425',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2014','NAD27(CGQ77) / SCoPQ zone 8',NULL,NULL,'EPSG','4499','EPSG','4609','EPSG','17708','EPSG','1426',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2015','NAD27(CGQ77) / SCoPQ zone 9',NULL,NULL,'EPSG','4499','EPSG','4609','EPSG','17709','EPSG','1427',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2016','NAD27(CGQ77) / SCoPQ zone 10',NULL,NULL,'EPSG','4499','EPSG','4609','EPSG','17710','EPSG','1428',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2017','NAD27(76) / MTM zone 8',NULL,NULL,'EPSG','4499','EPSG','4608','EPSG','17708','EPSG','1429',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2018','NAD27(76) / MTM zone 9',NULL,NULL,'EPSG','4499','EPSG','4608','EPSG','17709','EPSG','1430',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2019','NAD27(76) / MTM zone 10',NULL,NULL,'EPSG','4499','EPSG','4608','EPSG','17710','EPSG','1431',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2020','NAD27(76) / MTM zone 11',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','17711','EPSG','1432',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2021','NAD27(76) / MTM zone 12',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','17712','EPSG','1433',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2022','NAD27(76) / MTM zone 13',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','17713','EPSG','1434',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2023','NAD27(76) / MTM zone 14',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','17714','EPSG','1435',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2024','NAD27(76) / MTM zone 15',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','17715','EPSG','1436',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2025','NAD27(76) / MTM zone 16',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','17716','EPSG','1437',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2026','NAD27(76) / MTM zone 17',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','17717','EPSG','1438',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2027','NAD27(76) / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','16015','EPSG','1439',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2028','NAD27(76) / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','16016','EPSG','1440',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2029','NAD27(76) / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','16017','EPSG','1441',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2030','NAD27(76) / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4608','EPSG','16018','EPSG','1442',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2031','NAD27(CGQ77) / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4609','EPSG','16017','EPSG','1428',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2032','NAD27(CGQ77) / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4609','EPSG','16018','EPSG','1443',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2033','NAD27(CGQ77) / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4609','EPSG','16019','EPSG','1444',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2034','NAD27(CGQ77) / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4609','EPSG','16020','EPSG','1445',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2035','NAD27(CGQ77) / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4609','EPSG','16021','EPSG','1446',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2036','NAD83(CSRS98) / New Brunswick Stereo',NULL,NULL,'EPSG','4500','EPSG','4140','EPSG','19946','EPSG','1447',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2037','NAD83(CSRS98) / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4140','EPSG','16019','EPSG','1448',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2038','NAD83(CSRS98) / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4140','EPSG','16020','EPSG','1449',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2039','Israel 1993 / Israeli TM Grid',NULL,NULL,'EPSG','4400','EPSG','4141','EPSG','18204','EPSG','2603',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2040','Locodjo 1965 / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4142','EPSG','16030','EPSG','1450',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2041','Abidjan 1987 / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4143','EPSG','16030','EPSG','1450',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2042','Locodjo 1965 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4142','EPSG','16029','EPSG','1451',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2043','Abidjan 1987 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4143','EPSG','16029','EPSG','1451',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2044','Hanoi 1972 / Gauss-Kruger zone 18',NULL,NULL,'EPSG','4530','EPSG','4147','EPSG','16218','EPSG','1452',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2045','Hanoi 1972 / Gauss-Kruger zone 19',NULL,NULL,'EPSG','4530','EPSG','4147','EPSG','16219','EPSG','1453',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2046','Hartebeesthoek94 / Lo15',NULL,NULL,'EPSG','6503','EPSG','4148','EPSG','17515','EPSG','1454',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2047','Hartebeesthoek94 / Lo17',NULL,NULL,'EPSG','6503','EPSG','4148','EPSG','17517','EPSG','1455',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2048','Hartebeesthoek94 / Lo19',NULL,NULL,'EPSG','6503','EPSG','4148','EPSG','17519','EPSG','1456',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2049','Hartebeesthoek94 / Lo21',NULL,NULL,'EPSG','6503','EPSG','4148','EPSG','17521','EPSG','1457',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2050','Hartebeesthoek94 / Lo23',NULL,NULL,'EPSG','6503','EPSG','4148','EPSG','17523','EPSG','1458',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2051','Hartebeesthoek94 / Lo25',NULL,NULL,'EPSG','6503','EPSG','4148','EPSG','17525','EPSG','1459',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2052','Hartebeesthoek94 / Lo27',NULL,NULL,'EPSG','6503','EPSG','4148','EPSG','17527','EPSG','1460',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2053','Hartebeesthoek94 / Lo29',NULL,NULL,'EPSG','6503','EPSG','4148','EPSG','17529','EPSG','1461',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2054','Hartebeesthoek94 / Lo31',NULL,NULL,'EPSG','6503','EPSG','4148','EPSG','17531','EPSG','1462',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2055','Hartebeesthoek94 / Lo33',NULL,NULL,'EPSG','6503','EPSG','4148','EPSG','17533','EPSG','1463',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2056','CH1903+ / LV95',NULL,NULL,'EPSG','4400','EPSG','4150','EPSG','19950','EPSG','1286',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2057','Rassadiran / Nakhl e Taqi',NULL,NULL,'EPSG','4400','EPSG','4153','EPSG','19951','EPSG','1338',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2058','ED50(ED77) / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4154','EPSG','16038','EPSG','1464',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2059','ED50(ED77) / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4154','EPSG','16039','EPSG','1465',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2060','ED50(ED77) / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','4154','EPSG','16040','EPSG','1466',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2061','ED50(ED77) / UTM zone 41N',NULL,NULL,'EPSG','4400','EPSG','4154','EPSG','16041','EPSG','1467',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2062','Madrid 1870 (Madrid) / Spain',NULL,NULL,'EPSG','4499','EPSG','4903','EPSG','19921','EPSG','2366',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2063','Dabola 1981 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4315','EPSG','16028','EPSG','1468',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2064','Dabola 1981 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4315','EPSG','16029','EPSG','1469',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2065','S-JTSK (Ferro) / Krovak',NULL,NULL,'EPSG','6501','EPSG','4818','EPSG','19952','EPSG','1306',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2066','Mount Dillon / Tobago Grid',NULL,NULL,'EPSG','4407','EPSG','4157','EPSG','19924','EPSG','1322',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2067','Naparima 1955 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4158','EPSG','16020','EPSG','3143',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2068','ELD79 / Libya zone 5',NULL,NULL,'EPSG','4499','EPSG','4159','EPSG','18240','EPSG','1470',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2069','ELD79 / Libya zone 6',NULL,NULL,'EPSG','4499','EPSG','4159','EPSG','18241','EPSG','1471',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2070','ELD79 / Libya zone 7',NULL,NULL,'EPSG','4499','EPSG','4159','EPSG','18242','EPSG','1472',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2071','ELD79 / Libya zone 8',NULL,NULL,'EPSG','4499','EPSG','4159','EPSG','18243','EPSG','1473',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2072','ELD79 / Libya zone 9',NULL,NULL,'EPSG','4499','EPSG','4159','EPSG','18244','EPSG','1474',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2073','ELD79 / Libya zone 10',NULL,NULL,'EPSG','4499','EPSG','4159','EPSG','18245','EPSG','1475',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2074','ELD79 / Libya zone 11',NULL,NULL,'EPSG','4499','EPSG','4159','EPSG','18246','EPSG','1476',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2075','ELD79 / Libya zone 12',NULL,NULL,'EPSG','4499','EPSG','4159','EPSG','18247','EPSG','1477',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2076','ELD79 / Libya zone 13',NULL,NULL,'EPSG','4499','EPSG','4159','EPSG','18248','EPSG','1478',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2077','ELD79 / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4159','EPSG','16032','EPSG','1479',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2078','ELD79 / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4159','EPSG','16033','EPSG','1480',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2079','ELD79 / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','4159','EPSG','16034','EPSG','1481',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2080','ELD79 / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','4159','EPSG','16035','EPSG','1478',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2081','Chos Malal 1914 / Argentina 2',NULL,NULL,'EPSG','4530','EPSG','4160','EPSG','18032','EPSG','1483',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2082','Pampa del Castillo / Argentina 2',NULL,NULL,'EPSG','4530','EPSG','4161','EPSG','18032','EPSG','1484',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2083','Hito XVIII 1963 / Argentina 2',NULL,NULL,'EPSG','4530','EPSG','4254','EPSG','18032','EPSG','1485',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2084','Hito XVIII 1963 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','4254','EPSG','16119','EPSG','2596',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2085','NAD27 / Cuba Norte',NULL,NULL,'EPSG','4532','EPSG','4267','EPSG','18061','EPSG','1487',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2086','NAD27 / Cuba Sur',NULL,NULL,'EPSG','4532','EPSG','4267','EPSG','18062','EPSG','1488',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2087','ELD79 / TM 12 NE',NULL,NULL,'EPSG','4400','EPSG','4159','EPSG','16412','EPSG','1482',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2088','Carthage / TM 11 NE',NULL,NULL,'EPSG','4400','EPSG','4223','EPSG','16411','EPSG','1489',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2089','Yemen NGN96 / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4163','EPSG','16038','EPSG','1490',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2090','Yemen NGN96 / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4163','EPSG','16039','EPSG','1491',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2091','South Yemen / Gauss Kruger zone 8',NULL,NULL,'EPSG','4530','EPSG','4164','EPSG','16208','EPSG','1492',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2092','South Yemen / Gauss Kruger zone 9',NULL,NULL,'EPSG','4530','EPSG','4164','EPSG','16209','EPSG','1493',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2093','Hanoi 1972 / GK 106 NE',NULL,NULL,'EPSG','4530','EPSG','4147','EPSG','16586','EPSG','1494',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2094','WGS 72BE / TM 106 NE',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16506','EPSG','1495',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2095','Bissau / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4165','EPSG','16028','EPSG','3258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2096','Korean 1985 / East Belt',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','18251','EPSG','1496',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2097','Korean 1985 / Central Belt',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','18252','EPSG','3730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2098','Korean 1985 / West Belt',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','18253','EPSG','1498',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2099','Qatar 1948 / Qatar Grid',NULL,NULL,'EPSG','4400','EPSG','4286','EPSG','19953','EPSG','1346',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2100','GGRS87 / Greek Grid',NULL,NULL,'EPSG','4400','EPSG','4121','EPSG','19930','EPSG','3254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2101','Lake / Maracaibo Grid M1',NULL,NULL,'EPSG','4499','EPSG','4249','EPSG','18260','EPSG','1319',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2102','Lake / Maracaibo Grid',NULL,NULL,'EPSG','4499','EPSG','4249','EPSG','18261','EPSG','1319',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2103','Lake / Maracaibo Grid M3',NULL,NULL,'EPSG','4499','EPSG','4249','EPSG','18262','EPSG','1319',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2104','Lake / Maracaibo La Rosa Grid',NULL,NULL,'EPSG','4499','EPSG','4249','EPSG','18263','EPSG','1499',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2105','NZGD2000 / Mount Eden 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17931','EPSG','3781',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2106','NZGD2000 / Bay of Plenty 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17932','EPSG','3779',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2107','NZGD2000 / Poverty Bay 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17933','EPSG','3780',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2108','NZGD2000 / Hawkes Bay 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17934','EPSG','3772',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2109','NZGD2000 / Taranaki 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17935','EPSG','3777',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2110','NZGD2000 / Tuhirangi 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17936','EPSG','3778',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2111','NZGD2000 / Wanganui 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17937','EPSG','3776',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2112','NZGD2000 / Wairarapa 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17938','EPSG','3775',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2113','NZGD2000 / Wellington 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17939','EPSG','3774',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2114','NZGD2000 / Collingwood 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17940','EPSG','3782',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2115','NZGD2000 / Nelson 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17941','EPSG','3784',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2116','NZGD2000 / Karamea 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17942','EPSG','3783',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2117','NZGD2000 / Buller 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17943','EPSG','3786',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2118','NZGD2000 / Grey 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17944','EPSG','3787',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2119','NZGD2000 / Amuri 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17945','EPSG','3788',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2120','NZGD2000 / Marlborough 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17946','EPSG','3785',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2121','NZGD2000 / Hokitika 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17947','EPSG','3789',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2122','NZGD2000 / Okarito 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17948','EPSG','3791',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2123','NZGD2000 / Jacksons Bay 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17949','EPSG','3794',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2124','NZGD2000 / Mount Pleasant 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17950','EPSG','3790',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2125','NZGD2000 / Gawler 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17951','EPSG','3792',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2126','NZGD2000 / Timaru 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17952','EPSG','3793',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2127','NZGD2000 / Lindis Peak 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17953','EPSG','3795',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2128','NZGD2000 / Mount Nicholas 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17954','EPSG','3797',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2129','NZGD2000 / Mount York 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17955','EPSG','3799',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2130','NZGD2000 / Observation Point 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17956','EPSG','3796',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2131','NZGD2000 / North Taieri 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17957','EPSG','3798',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2132','NZGD2000 / Bluff 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17958','EPSG','3800',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2133','NZGD2000 / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4167','EPSG','16158','EPSG','1502',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2134','NZGD2000 / UTM zone 59S',NULL,NULL,'EPSG','4400','EPSG','4167','EPSG','16159','EPSG','1503',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2135','NZGD2000 / UTM zone 60S',NULL,NULL,'EPSG','4400','EPSG','4167','EPSG','16160','EPSG','1504',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2136','Accra / Ghana National Grid',NULL,NULL,'EPSG','4404','EPSG','4168','EPSG','19959','EPSG','3252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2137','Accra / TM 1 NW',NULL,NULL,'EPSG','4400','EPSG','4168','EPSG','17001','EPSG','1505',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2138','NAD27(CGQ77) / Quebec Lambert',NULL,NULL,'EPSG','4499','EPSG','4609','EPSG','19944','EPSG','1368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2139','NAD83(CSRS98) / SCoPQ zone 2',NULL,NULL,'EPSG','4499','EPSG','4140','EPSG','17700','EPSG','1420',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2140','NAD83(CSRS98) / MTM zone 3',NULL,NULL,'EPSG','4496','EPSG','4140','EPSG','17703','EPSG','1421',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2141','NAD83(CSRS98) / MTM zone 4',NULL,NULL,'EPSG','4496','EPSG','4140','EPSG','17704','EPSG','1422',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2142','NAD83(CSRS98) / MTM zone 5',NULL,NULL,'EPSG','4496','EPSG','4140','EPSG','17705','EPSG','1423',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2143','NAD83(CSRS98) / MTM zone 6',NULL,NULL,'EPSG','4496','EPSG','4140','EPSG','17706','EPSG','1424',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2144','NAD83(CSRS98) / MTM zone 7',NULL,NULL,'EPSG','4496','EPSG','4140','EPSG','17707','EPSG','1425',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2145','NAD83(CSRS98) / MTM zone 8',NULL,NULL,'EPSG','4496','EPSG','4140','EPSG','17708','EPSG','1426',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2146','NAD83(CSRS98) / MTM zone 9',NULL,NULL,'EPSG','4496','EPSG','4140','EPSG','17709','EPSG','1427',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2147','NAD83(CSRS98) / MTM zone 10',NULL,NULL,'EPSG','4496','EPSG','4140','EPSG','17710','EPSG','1428',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2148','NAD83(CSRS98) / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4140','EPSG','16021','EPSG','1446',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2149','NAD83(CSRS98) / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4140','EPSG','16018','EPSG','1443',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2150','NAD83(CSRS98) / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4140','EPSG','16017','EPSG','1428',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2151','NAD83(CSRS98) / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4140','EPSG','16013','EPSG','1506',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2152','NAD83(CSRS98) / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4140','EPSG','16012','EPSG','1507',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2153','NAD83(CSRS98) / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4140','EPSG','16011','EPSG','1508',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2154','RGF93 / Lambert-93',NULL,NULL,'EPSG','4499','EPSG','4171','EPSG','18085','EPSG','1096',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2155','American Samoa 1962 / American Samoa Lambert',NULL,NULL,'EPSG','4497','EPSG','4169','EPSG','15300','EPSG','1027',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2156','NAD83(HARN) / UTM zone 59S',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16159','EPSG','1027',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2157','IRENET95 / Irish Transverse Mercator',NULL,NULL,'EPSG','4400','EPSG','4173','EPSG','19962','EPSG','1305',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2158','IRENET95 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4173','EPSG','16029','EPSG','1305',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2159','Sierra Leone 1924 / New Colony Grid',NULL,NULL,'EPSG','4404','EPSG','4174','EPSG','19963','EPSG','1342',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2160','Sierra Leone 1924 / New War Office Grid',NULL,NULL,'EPSG','4404','EPSG','4174','EPSG','19964','EPSG','1342',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2161','Sierra Leone 1968 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4175','EPSG','16028','EPSG','1509',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2162','Sierra Leone 1968 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4175','EPSG','16029','EPSG','1510',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2163','US National Atlas Equal Area',NULL,NULL,'EPSG','4499','EPSG','4052','EPSG','3899','EPSG','1245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2164','Locodjo 1965 / TM 5 NW',NULL,NULL,'EPSG','4400','EPSG','4142','EPSG','17005','EPSG','2296',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2165','Abidjan 1987 / TM 5 NW',NULL,NULL,'EPSG','4400','EPSG','4143','EPSG','17005','EPSG','2296',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2166','Pulkovo 1942(83) / Gauss Kruger zone 3',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16263','EPSG','1512',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2167','Pulkovo 1942(83) / Gauss Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16264','EPSG','1513',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2168','Pulkovo 1942(83) / Gauss Kruger zone 5',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16265','EPSG','1512',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2169','Luxembourg 1930 / Gauss',NULL,NULL,'EPSG','4530','EPSG','4181','EPSG','19966','EPSG','1146',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2170','MGI / Slovenia Grid',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','19967','EPSG','1212',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2171','Pulkovo 1942(58) / Poland zone I',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','18281','EPSG','1515',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2172','Pulkovo 1942(58) / Poland zone II',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','18282','EPSG','1516',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2173','Pulkovo 1942(58) / Poland zone III',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','18283','EPSG','1517',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2174','Pulkovo 1942(58) / Poland zone IV',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','18284','EPSG','1518',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2175','Pulkovo 1942(58) / Poland zone V',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','18285','EPSG','1519',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2176','ETRS89 / Poland CS2000 zone 5',NULL,NULL,'EPSG','4531','EPSG','4258','EPSG','18305','EPSG','1520',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2177','ETRS89 / Poland CS2000 zone 6',NULL,NULL,'EPSG','4531','EPSG','4258','EPSG','18306','EPSG','1521',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2178','ETRS89 / Poland CS2000 zone 7',NULL,NULL,'EPSG','4531','EPSG','4258','EPSG','18307','EPSG','1522',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2179','ETRS89 / Poland CS2000 zone 8',NULL,NULL,'EPSG','4531','EPSG','4258','EPSG','18308','EPSG','1523',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2180','ETRS89 / Poland CS92',NULL,NULL,'EPSG','4531','EPSG','4258','EPSG','18300','EPSG','1192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2188','Azores Occidental 1939 / UTM zone 25N',NULL,NULL,'EPSG','4400','EPSG','4182','EPSG','16025','EPSG','1344',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2189','Azores Central 1948 / UTM zone 26N',NULL,NULL,'EPSG','4400','EPSG','4183','EPSG','16026','EPSG','1301',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2190','Azores Oriental 1940 / UTM zone 26N',NULL,NULL,'EPSG','4400','EPSG','4184','EPSG','16026','EPSG','1345',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2191','Madeira 1936 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4185','EPSG','16028','EPSG','1314',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2192','ED50 / France EuroLambert',NULL,NULL,'EPSG','4499','EPSG','4230','EPSG','18086','EPSG','1326',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2193','NZGD2000 / New Zealand Transverse Mercator 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','19971','EPSG','3973',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2194','American Samoa 1962 / American Samoa Lambert',NULL,NULL,'EPSG','4497','EPSG','4169','EPSG','15301','EPSG','1027',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2195','NAD83(HARN) / UTM zone 2S',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16102','EPSG','3110',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2196','ETRS89 / Kp2000 Jutland',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','18401','EPSG','2531',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2197','ETRS89 / Kp2000 Zealand',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','18402','EPSG','2532',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2198','ETRS89 / Kp2000 Bornholm',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','18403','EPSG','2533',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2199','Albanian 1987 / Gauss Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4191','EPSG','16204','EPSG','1025',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2200','ATS77 / New Brunswick Stereographic (ATS77)',NULL,NULL,'EPSG','4500','EPSG','4122','EPSG','19945','EPSG','1447',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2201','REGVEN / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4189','EPSG','16018','EPSG','1693',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2202','REGVEN / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4189','EPSG','16019','EPSG','3859',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2203','REGVEN / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4189','EPSG','16020','EPSG','3858',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2204','NAD27 / Tennessee',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15302','EPSG','1411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2205','NAD83 / Kentucky North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15303','EPSG','2202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2206','ED50 / 3-degree Gauss-Kruger zone 9',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16269','EPSG','1524',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2207','ED50 / 3-degree Gauss-Kruger zone 10',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16270','EPSG','1525',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2208','ED50 / 3-degree Gauss-Kruger zone 11',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16271','EPSG','1526',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2209','ED50 / 3-degree Gauss-Kruger zone 12',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16272','EPSG','1527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2210','ED50 / 3-degree Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16273','EPSG','1528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2211','ED50 / 3-degree Gauss-Kruger zone 14',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16274','EPSG','1529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2212','ED50 / 3-degree Gauss-Kruger zone 15',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16275','EPSG','1530',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2213','ETRS89 / TM 30 NE',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16430','EPSG','2546',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2214','Douala 1948 / AOF west',NULL,NULL,'EPSG','4400','EPSG','4192','EPSG','18415','EPSG','2555',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2215','Manoca 1962 / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4193','EPSG','16032','EPSG','2555',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2216','Qornoq 1927 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4194','EPSG','16022','EPSG','2573',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2217','Qornoq 1927 / UTM zone 23N',NULL,NULL,'EPSG','4400','EPSG','4194','EPSG','16023','EPSG','2572',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2218','Scoresbysund 1952 / Greenland zone 5 east',NULL,NULL,'EPSG','1031','EPSG','4195','EPSG','18425','EPSG','3370',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2219','ATS77 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4122','EPSG','16019','EPSG','1531',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2220','ATS77 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4122','EPSG','16020','EPSG','1532',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2221','Scoresbysund 1952 / Greenland zone 6 east',NULL,NULL,'EPSG','1031','EPSG','4195','EPSG','18426','EPSG','3369',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2222','NAD83 / Arizona East (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15304','EPSG','2167',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2223','NAD83 / Arizona Central (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15305','EPSG','2166',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2224','NAD83 / Arizona West (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15306','EPSG','2168',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2225','NAD83 / California zone 1 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15307','EPSG','2175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2226','NAD83 / California zone 2 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15308','EPSG','2176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2227','NAD83 / California zone 3 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15309','EPSG','2177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2228','NAD83 / California zone 4 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15310','EPSG','2178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2229','NAD83 / California zone 5 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15311','EPSG','2182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2230','NAD83 / California zone 6 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15312','EPSG','2180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2231','NAD83 / Colorado North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15313','EPSG','2184',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2232','NAD83 / Colorado Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15314','EPSG','2183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2233','NAD83 / Colorado South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15315','EPSG','2185',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2234','NAD83 / Connecticut (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15316','EPSG','1377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2235','NAD83 / Delaware (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15317','EPSG','1378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2236','NAD83 / Florida East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15318','EPSG','2186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2237','NAD83 / Florida West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15319','EPSG','2188',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2238','NAD83 / Florida North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15320','EPSG','2187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2239','NAD83 / Georgia East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15321','EPSG','2189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2240','NAD83 / Georgia West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15322','EPSG','2190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2241','NAD83 / Idaho East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15323','EPSG','2192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2242','NAD83 / Idaho Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15324','EPSG','2191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2243','NAD83 / Idaho West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15325','EPSG','2193',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2244','NAD83 / Indiana East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15326','EPSG','2196',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2245','NAD83 / Indiana West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15327','EPSG','2197',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2246','NAD83 / Kentucky North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15328','EPSG','2202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2247','NAD83 / Kentucky South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15329','EPSG','2203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2248','NAD83 / Maryland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15330','EPSG','1389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2249','NAD83 / Massachusetts Mainland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15331','EPSG','2209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2250','NAD83 / Massachusetts Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15332','EPSG','2208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2251','NAD83 / Michigan North (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15333','EPSG','1723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2252','NAD83 / Michigan Central (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15334','EPSG','1724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2253','NAD83 / Michigan South (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15335','EPSG','1725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2254','NAD83 / Mississippi East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15336','EPSG','2216',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2255','NAD83 / Mississippi West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15337','EPSG','2217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2256','NAD83 / Montana (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15338','EPSG','1395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2257','NAD83 / New Mexico East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15339','EPSG','2228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2258','NAD83 / New Mexico Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15340','EPSG','2231',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2259','NAD83 / New Mexico West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15341','EPSG','2232',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2260','NAD83 / New York East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15342','EPSG','2234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2261','NAD83 / New York Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15343','EPSG','2233',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2262','NAD83 / New York West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15344','EPSG','2236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2263','NAD83 / New York Long Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15345','EPSG','2235',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2264','NAD83 / North Carolina (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15346','EPSG','1402',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2265','NAD83 / North Dakota North (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15347','EPSG','2237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2266','NAD83 / North Dakota South (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15348','EPSG','2238',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2267','NAD83 / Oklahoma North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15349','EPSG','2241',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2268','NAD83 / Oklahoma South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15350','EPSG','2242',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2269','NAD83 / Oregon North (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15351','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2270','NAD83 / Oregon South (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15352','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2271','NAD83 / Pennsylvania North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15353','EPSG','2245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2272','NAD83 / Pennsylvania South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15354','EPSG','2246',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2273','NAD83 / South Carolina (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15355','EPSG','1409',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2274','NAD83 / Tennessee (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15356','EPSG','1411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2275','NAD83 / Texas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15357','EPSG','2253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2276','NAD83 / Texas North Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15358','EPSG','2254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2277','NAD83 / Texas Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15359','EPSG','2252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2278','NAD83 / Texas South Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15360','EPSG','2527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2279','NAD83 / Texas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15361','EPSG','2528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2280','NAD83 / Utah North (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15362','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2281','NAD83 / Utah Central (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15363','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2282','NAD83 / Utah South (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15364','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2283','NAD83 / Virginia North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15365','EPSG','2260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2284','NAD83 / Virginia South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15366','EPSG','2261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2285','NAD83 / Washington North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15367','EPSG','2273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2286','NAD83 / Washington South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15368','EPSG','2274',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2287','NAD83 / Wisconsin North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15369','EPSG','2267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2288','NAD83 / Wisconsin Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15370','EPSG','2266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2289','NAD83 / Wisconsin South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15371','EPSG','2268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2290','ATS77 / Prince Edward Isl. Stereographic (ATS77)',NULL,NULL,'EPSG','4496','EPSG','4122','EPSG','19933','EPSG','1533',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2291','NAD83(CSRS98) / Prince Edward Isl. Stereographic (NAD83)',NULL,NULL,'EPSG','4496','EPSG','4122','EPSG','19960','EPSG','1533',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2292','NAD83(CSRS98) / Prince Edward Isl. Stereographic (NAD83)',NULL,NULL,'EPSG','4496','EPSG','4140','EPSG','19960','EPSG','1533',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2294','ATS77 / MTM Nova Scotia zone 4',NULL,NULL,'EPSG','4400','EPSG','4122','EPSG','17794','EPSG','1534',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2295','ATS77 / MTM Nova Scotia zone 5',NULL,NULL,'EPSG','4400','EPSG','4122','EPSG','17795','EPSG','1535',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2296','Ammassalik 1958 / Greenland zone 7 east',NULL,NULL,'EPSG','1031','EPSG','4196','EPSG','18427','EPSG','2571',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2297','Qornoq 1927 / Greenland zone 1 east',NULL,NULL,'EPSG','4501','EPSG','4194','EPSG','18421','EPSG','2556',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2298','Qornoq 1927 / Greenland zone 2 east',NULL,NULL,'EPSG','4501','EPSG','4194','EPSG','18422','EPSG','2557',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2299','Qornoq 1927 / Greenland zone 2 west',NULL,NULL,'EPSG','1031','EPSG','4194','EPSG','18432','EPSG','3368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2300','Qornoq 1927 / Greenland zone 3 east',NULL,NULL,'EPSG','4501','EPSG','4194','EPSG','18423','EPSG','2558',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2301','Qornoq 1927 / Greenland zone 3 west',NULL,NULL,'EPSG','1031','EPSG','4194','EPSG','18433','EPSG','3367',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2302','Qornoq 1927 / Greenland zone 4 east',NULL,NULL,'EPSG','4501','EPSG','4194','EPSG','18424','EPSG','2559',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2303','Qornoq 1927 / Greenland zone 4 west',NULL,NULL,'EPSG','1031','EPSG','4194','EPSG','18434','EPSG','3366',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2304','Qornoq 1927 / Greenland zone 5 west',NULL,NULL,'EPSG','1031','EPSG','4194','EPSG','18435','EPSG','3365',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2305','Qornoq 1927 / Greenland zone 6 west',NULL,NULL,'EPSG','1031','EPSG','4194','EPSG','18436','EPSG','3364',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2306','Qornoq 1927 / Greenland zone 7 west',NULL,NULL,'EPSG','1031','EPSG','4194','EPSG','18437','EPSG','3363',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2307','Qornoq 1927 / Greenland zone 8 east',NULL,NULL,'EPSG','1031','EPSG','4194','EPSG','18428','EPSG','3846',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2308','Batavia / TM 109 SE',NULL,NULL,'EPSG','4400','EPSG','4211','EPSG','16709','EPSG','2577',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2309','WGS 84 / TM 116 SE',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16716','EPSG','2588',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2310','WGS 84 / TM 132 SE',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16732','EPSG','2589',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2311','WGS 84 / TM 6 NE',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16406','EPSG','2981',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2312','Garoua / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4197','EPSG','16033','EPSG','2590',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2313','Kousseri / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4198','EPSG','16033','EPSG','2591',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2314','Trinidad 1903 / Trinidad Grid (ftCla)',NULL,NULL,'EPSG','4403','EPSG','4302','EPSG','19975','EPSG','1339',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2315','Campo Inchauspe / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','4221','EPSG','16119','EPSG','2596',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2316','Campo Inchauspe / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','4221','EPSG','16120','EPSG','2597',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2317','PSAD56 / ICN Regional',NULL,NULL,'EPSG','4499','EPSG','4248','EPSG','19976','EPSG','3327',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2318','Ain el Abd / Aramco Lambert',NULL,NULL,'EPSG','4400','EPSG','4204','EPSG','19977','EPSG','3303',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2319','ED50 / TM27',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16305','EPSG','1524',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2320','ED50 / TM30',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16370','EPSG','1525',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2321','ED50 / TM33',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16306','EPSG','1526',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2322','ED50 / TM36',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16372','EPSG','1527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2323','ED50 / TM39',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16307','EPSG','1528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2324','ED50 / TM42',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16374','EPSG','1529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2325','ED50 / TM45',NULL,NULL,'EPSG','4530','EPSG','4230','EPSG','16308','EPSG','1530',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2326','Hong Kong 1980 Grid System',NULL,NULL,'EPSG','4500','EPSG','4611','EPSG','19978','EPSG','1118',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2327','Xian 1980 / Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16213','EPSG','1587',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2328','Xian 1980 / Gauss-Kruger zone 14',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16214','EPSG','1588',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2329','Xian 1980 / Gauss-Kruger zone 15',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16215','EPSG','1589',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2330','Xian 1980 / Gauss-Kruger zone 16',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16216','EPSG','1590',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2331','Xian 1980 / Gauss-Kruger zone 17',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16217','EPSG','1591',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2332','Xian 1980 / Gauss-Kruger zone 18',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16218','EPSG','1592',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2333','Xian 1980 / Gauss-Kruger zone 19',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16219','EPSG','1593',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2334','Xian 1980 / Gauss-Kruger zone 20',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16220','EPSG','1594',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2335','Xian 1980 / Gauss-Kruger zone 21',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16221','EPSG','1595',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2336','Xian 1980 / Gauss-Kruger zone 22',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16222','EPSG','1596',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2337','Xian 1980 / Gauss-Kruger zone 23',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16223','EPSG','1597',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2338','Xian 1980 / Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16313','EPSG','1587',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2339','Xian 1980 / Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16314','EPSG','1588',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2340','Xian 1980 / Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16315','EPSG','1589',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2341','Xian 1980 / Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16316','EPSG','1590',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2342','Xian 1980 / Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16317','EPSG','1591',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2343','Xian 1980 / Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16318','EPSG','1592',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2344','Xian 1980 / Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16319','EPSG','1593',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2345','Xian 1980 / Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16320','EPSG','1594',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2346','Xian 1980 / Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16321','EPSG','1595',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2347','Xian 1980 / Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16322','EPSG','1596',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2348','Xian 1980 / Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16323','EPSG','1597',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2349','Xian 1980 / 3-degree Gauss-Kruger zone 25',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16285','EPSG','2711',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2350','Xian 1980 / 3-degree Gauss-Kruger zone 26',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16286','EPSG','2712',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2351','Xian 1980 / 3-degree Gauss-Kruger zone 27',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16287','EPSG','2713',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2352','Xian 1980 / 3-degree Gauss-Kruger zone 28',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16288','EPSG','2714',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2353','Xian 1980 / 3-degree Gauss-Kruger zone 29',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16289','EPSG','2715',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2354','Xian 1980 / 3-degree Gauss-Kruger zone 30',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16290','EPSG','2716',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2355','Xian 1980 / 3-degree Gauss-Kruger zone 31',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16291','EPSG','2717',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2356','Xian 1980 / 3-degree Gauss-Kruger zone 32',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16292','EPSG','2718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2357','Xian 1980 / 3-degree Gauss-Kruger zone 33',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16293','EPSG','2719',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2358','Xian 1980 / 3-degree Gauss-Kruger zone 34',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16294','EPSG','2720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2359','Xian 1980 / 3-degree Gauss-Kruger zone 35',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16295','EPSG','2721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2360','Xian 1980 / 3-degree Gauss-Kruger zone 36',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16296','EPSG','2722',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2361','Xian 1980 / 3-degree Gauss-Kruger zone 37',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16297','EPSG','2723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2362','Xian 1980 / 3-degree Gauss-Kruger zone 38',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16298','EPSG','2724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2363','Xian 1980 / 3-degree Gauss-Kruger zone 39',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16299','EPSG','2725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2364','Xian 1980 / 3-degree Gauss-Kruger zone 40',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16070','EPSG','2726',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2365','Xian 1980 / 3-degree Gauss-Kruger zone 41',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16071','EPSG','2727',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2366','Xian 1980 / 3-degree Gauss-Kruger zone 42',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16072','EPSG','2728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2367','Xian 1980 / 3-degree Gauss-Kruger zone 43',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16073','EPSG','2729',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2368','Xian 1980 / 3-degree Gauss-Kruger zone 44',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16074','EPSG','2730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2369','Xian 1980 / 3-degree Gauss-Kruger zone 45',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16075','EPSG','2731',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2370','Xian 1980 / 3-degree Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16313','EPSG','2711',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2371','Xian 1980 / 3-degree Gauss-Kruger CM 78E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16386','EPSG','2712',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2372','Xian 1980 / 3-degree Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16314','EPSG','2713',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2373','Xian 1980 / 3-degree Gauss-Kruger CM 84E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16388','EPSG','2714',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2374','Xian 1980 / 3-degree Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16315','EPSG','2715',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2375','Xian 1980 / 3-degree Gauss-Kruger CM 90E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16390','EPSG','2716',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2376','Xian 1980 / 3-degree Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16316','EPSG','2717',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2377','Xian 1980 / 3-degree Gauss-Kruger CM 96E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16392','EPSG','2718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2378','Xian 1980 / 3-degree Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16317','EPSG','2719',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2379','Xian 1980 / 3-degree Gauss-Kruger CM 102E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16394','EPSG','2720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2380','Xian 1980 / 3-degree Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16318','EPSG','2721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2381','Xian 1980 / 3-degree Gauss-Kruger CM 108E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16396','EPSG','2722',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2382','Xian 1980 / 3-degree Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16319','EPSG','2723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2383','Xian 1980 / 3-degree Gauss-Kruger CM 114E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16398','EPSG','2724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2384','Xian 1980 / 3-degree Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16320','EPSG','2725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2385','Xian 1980 / 3-degree Gauss-Kruger CM 120E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16170','EPSG','2726',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2386','Xian 1980 / 3-degree Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16321','EPSG','2727',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2387','Xian 1980 / 3-degree Gauss-Kruger CM 126E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16172','EPSG','2728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2388','Xian 1980 / 3-degree Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16322','EPSG','2729',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2389','Xian 1980 / 3-degree Gauss-Kruger CM 132E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16174','EPSG','2730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2390','Xian 1980 / 3-degree Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4610','EPSG','16323','EPSG','2731',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2391','KKJ / Finland zone 1',NULL,NULL,'EPSG','4530','EPSG','4123','EPSG','18191','EPSG','1536',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2392','KKJ / Finland zone 2',NULL,NULL,'EPSG','4530','EPSG','4123','EPSG','18192','EPSG','1537',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2393','KKJ / Finland Uniform Coordinate System',NULL,NULL,'EPSG','4530','EPSG','4123','EPSG','18193','EPSG','1538',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2394','KKJ / Finland zone 4',NULL,NULL,'EPSG','4530','EPSG','4123','EPSG','18194','EPSG','1539',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2395','South Yemen / Gauss-Kruger zone 8',NULL,NULL,'EPSG','4530','EPSG','4164','EPSG','16208','EPSG','1492',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2396','South Yemen / Gauss-Kruger zone 9',NULL,NULL,'EPSG','4530','EPSG','4164','EPSG','16209','EPSG','1493',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2397','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 3',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16263','EPSG','1512',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2398','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16264','EPSG','1513',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2399','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 5',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16265','EPSG','1514',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2400','RT90 2.5 gon W',NULL,NULL,'EPSG','4530','EPSG','4124','EPSG','19929','EPSG','1225',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2401','Beijing 1954 / 3-degree Gauss-Kruger zone 25',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16285','EPSG','2711',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2402','Beijing 1954 / 3-degree Gauss-Kruger zone 26',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16286','EPSG','2712',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2403','Beijing 1954 / 3-degree Gauss-Kruger zone 27',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16287','EPSG','2713',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2404','Beijing 1954 / 3-degree Gauss-Kruger zone 28',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16288','EPSG','2714',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2405','Beijing 1954 / 3-degree Gauss-Kruger zone 29',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16289','EPSG','2715',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2406','Beijing 1954 / 3-degree Gauss-Kruger zone 30',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16290','EPSG','2716',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2407','Beijing 1954 / 3-degree Gauss-Kruger zone 31',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16291','EPSG','2717',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2408','Beijing 1954 / 3-degree Gauss-Kruger zone 32',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16292','EPSG','2718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2409','Beijing 1954 / 3-degree Gauss-Kruger zone 33',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16293','EPSG','2719',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2410','Beijing 1954 / 3-degree Gauss-Kruger zone 34',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16294','EPSG','2720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2411','Beijing 1954 / 3-degree Gauss-Kruger zone 35',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16295','EPSG','2721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2412','Beijing 1954 / 3-degree Gauss-Kruger zone 36',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16296','EPSG','2722',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2413','Beijing 1954 / 3-degree Gauss-Kruger zone 37',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16297','EPSG','2723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2414','Beijing 1954 / 3-degree Gauss-Kruger zone 38',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16298','EPSG','2724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2415','Beijing 1954 / 3-degree Gauss-Kruger zone 39',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16299','EPSG','2725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2416','Beijing 1954 / 3-degree Gauss-Kruger zone 40',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16070','EPSG','2726',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2417','Beijing 1954 / 3-degree Gauss-Kruger zone 41',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16071','EPSG','2727',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2418','Beijing 1954 / 3-degree Gauss-Kruger zone 42',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16072','EPSG','2728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2419','Beijing 1954 / 3-degree Gauss-Kruger zone 43',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16073','EPSG','2729',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2420','Beijing 1954 / 3-degree Gauss-Kruger zone 44',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16074','EPSG','2730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2421','Beijing 1954 / 3-degree Gauss-Kruger zone 45',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16075','EPSG','2731',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2422','Beijing 1954 / 3-degree Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16313','EPSG','2711',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2423','Beijing 1954 / 3-degree Gauss-Kruger CM 78E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16386','EPSG','2712',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2424','Beijing 1954 / 3-degree Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16314','EPSG','2713',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2425','Beijing 1954 / 3-degree Gauss-Kruger CM 84E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16388','EPSG','2714',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2426','Beijing 1954 / 3-degree Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16315','EPSG','2715',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2427','Beijing 1954 / 3-degree Gauss-Kruger CM 90E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16390','EPSG','2716',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2428','Beijing 1954 / 3-degree Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16316','EPSG','2717',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2429','Beijing 1954 / 3-degree Gauss-Kruger CM 96E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16392','EPSG','2718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2430','Beijing 1954 / 3-degree Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16317','EPSG','2719',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2431','Beijing 1954 / 3-degree Gauss-Kruger CM 102E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16394','EPSG','2720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2432','Beijing 1954 / 3-degree Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16318','EPSG','2721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2433','Beijing 1954 / 3-degree Gauss-Kruger CM 108E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16396','EPSG','2722',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2434','Beijing 1954 / 3-degree Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16319','EPSG','2723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2435','Beijing 1954 / 3-degree Gauss-Kruger CM 114E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16398','EPSG','2724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2436','Beijing 1954 / 3-degree Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16320','EPSG','2725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2437','Beijing 1954 / 3-degree Gauss-Kruger CM 120E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16170','EPSG','2726',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2438','Beijing 1954 / 3-degree Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16321','EPSG','2727',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2439','Beijing 1954 / 3-degree Gauss-Kruger CM 126E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16172','EPSG','2728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2440','Beijing 1954 / 3-degree Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16322','EPSG','2729',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2441','Beijing 1954 / 3-degree Gauss-Kruger CM 132E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16174','EPSG','2730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2442','Beijing 1954 / 3-degree Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16323','EPSG','2731',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2443','JGD2000 / Japan Plane Rectangular CS I',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17801','EPSG','1854',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2444','JGD2000 / Japan Plane Rectangular CS II',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17802','EPSG','1855',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2445','JGD2000 / Japan Plane Rectangular CS III',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17803','EPSG','1856',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2446','JGD2000 / Japan Plane Rectangular CS IV',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17804','EPSG','1857',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2447','JGD2000 / Japan Plane Rectangular CS V',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17805','EPSG','1858',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2448','JGD2000 / Japan Plane Rectangular CS VI',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17806','EPSG','1859',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2449','JGD2000 / Japan Plane Rectangular CS VII',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17807','EPSG','1860',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2450','JGD2000 / Japan Plane Rectangular CS VIII',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17808','EPSG','1861',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2451','JGD2000 / Japan Plane Rectangular CS IX',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17809','EPSG','1862',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2452','JGD2000 / Japan Plane Rectangular CS X',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17810','EPSG','1863',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2453','JGD2000 / Japan Plane Rectangular CS XI',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17811','EPSG','1864',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2454','JGD2000 / Japan Plane Rectangular CS XII',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17812','EPSG','1865',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2455','JGD2000 / Japan Plane Rectangular CS XIII',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17813','EPSG','1866',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2456','JGD2000 / Japan Plane Rectangular CS XIV',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17814','EPSG','1867',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2457','JGD2000 / Japan Plane Rectangular CS XV',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17815','EPSG','1868',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2458','JGD2000 / Japan Plane Rectangular CS XVI',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17816','EPSG','1869',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2459','JGD2000 / Japan Plane Rectangular CS XVII',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17817','EPSG','1870',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2460','JGD2000 / Japan Plane Rectangular CS XVIII',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17818','EPSG','1871',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2461','JGD2000 / Japan Plane Rectangular CS XIX',NULL,NULL,'EPSG','4530','EPSG','4612','EPSG','17819','EPSG','1872',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2462','Albanian 1987 / Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4191','EPSG','16204','EPSG','3212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2463','Pulkovo 1995 / Gauss-Kruger CM 21E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16304','EPSG','1763',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2464','Pulkovo 1995 / Gauss-Kruger CM 27E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16305','EPSG','1764',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2465','Pulkovo 1995 / Gauss-Kruger CM 33E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16306','EPSG','1765',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2466','Pulkovo 1995 / Gauss-Kruger CM 39E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16307','EPSG','1766',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2467','Pulkovo 1995 / Gauss-Kruger CM 45E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16308','EPSG','1767',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2468','Pulkovo 1995 / Gauss-Kruger CM 51E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16309','EPSG','1768',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2469','Pulkovo 1995 / Gauss-Kruger CM 57E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16310','EPSG','1769',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2470','Pulkovo 1995 / Gauss-Kruger CM 63E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16311','EPSG','1770',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2471','Pulkovo 1995 / Gauss-Kruger CM 69E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16312','EPSG','1771',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2472','Pulkovo 1995 / Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16313','EPSG','1772',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2473','Pulkovo 1995 / Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16314','EPSG','1773',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2474','Pulkovo 1995 / Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16315','EPSG','1774',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2475','Pulkovo 1995 / Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16316','EPSG','1775',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2476','Pulkovo 1995 / Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16317','EPSG','1776',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2477','Pulkovo 1995 / Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16318','EPSG','1777',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2478','Pulkovo 1995 / Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16319','EPSG','1778',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2479','Pulkovo 1995 / Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16320','EPSG','1779',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2480','Pulkovo 1995 / Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16321','EPSG','1780',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2481','Pulkovo 1995 / Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16322','EPSG','1781',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2482','Pulkovo 1995 / Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16323','EPSG','1782',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2483','Pulkovo 1995 / Gauss-Kruger CM 141E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16324','EPSG','1783',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2484','Pulkovo 1995 / Gauss-Kruger CM 147E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16325','EPSG','1784',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2485','Pulkovo 1995 / Gauss-Kruger CM 153E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16326','EPSG','1785',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2486','Pulkovo 1995 / Gauss-Kruger CM 159E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16327','EPSG','1786',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2487','Pulkovo 1995 / Gauss-Kruger CM 165E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16328','EPSG','1787',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2488','Pulkovo 1995 / Gauss-Kruger CM 171E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16329','EPSG','1788',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2489','Pulkovo 1995 / Gauss-Kruger CM 177E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16330','EPSG','1789',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2490','Pulkovo 1995 / Gauss-Kruger CM 177W',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16331','EPSG','1790',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2491','Pulkovo 1995 / Gauss-Kruger CM 171W',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16332','EPSG','1791',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2492','Pulkovo 1942 / Gauss-Kruger CM 9E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16302','EPSG','1805',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2493','Pulkovo 1942 / Gauss-Kruger CM 15E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16303','EPSG','1792',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2494','Pulkovo 1942 / Gauss-Kruger CM 21E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16304','EPSG','1793',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2495','Pulkovo 1942 / Gauss-Kruger CM 27E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16305','EPSG','1794',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2496','Pulkovo 1942 / Gauss-Kruger CM 33E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16306','EPSG','1795',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2497','Pulkovo 1942 / Gauss-Kruger CM 39E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16307','EPSG','1796',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2498','Pulkovo 1942 / Gauss-Kruger CM 45E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16308','EPSG','1797',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2499','Pulkovo 1942 / Gauss-Kruger CM 51E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16309','EPSG','1798',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2500','Pulkovo 1942 / Gauss-Kruger CM 57E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16310','EPSG','1799',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2501','Pulkovo 1942 / Gauss-Kruger CM 63E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16311','EPSG','1800',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2502','Pulkovo 1942 / Gauss-Kruger CM 69E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16312','EPSG','1801',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2503','Pulkovo 1942 / Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16313','EPSG','1802',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2504','Pulkovo 1942 / Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16314','EPSG','1803',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2505','Pulkovo 1942 / Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16315','EPSG','1804',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2506','Pulkovo 1942 / Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16316','EPSG','1775',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2507','Pulkovo 1942 / Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16317','EPSG','1776',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2508','Pulkovo 1942 / Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16318','EPSG','1777',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2509','Pulkovo 1942 / Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16319','EPSG','1778',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2510','Pulkovo 1942 / Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16320','EPSG','1779',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2511','Pulkovo 1942 / Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16321','EPSG','1780',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2512','Pulkovo 1942 / Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16322','EPSG','1781',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2513','Pulkovo 1942 / Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16323','EPSG','1782',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2514','Pulkovo 1942 / Gauss-Kruger CM 141E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16324','EPSG','1783',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2515','Pulkovo 1942 / Gauss-Kruger CM 147E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16325','EPSG','1784',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2516','Pulkovo 1942 / Gauss-Kruger CM 153E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16326','EPSG','1785',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2517','Pulkovo 1942 / Gauss-Kruger CM 159E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16327','EPSG','1786',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2518','Pulkovo 1942 / Gauss-Kruger CM 165E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16328','EPSG','1787',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2519','Pulkovo 1942 / Gauss-Kruger CM 171E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16329','EPSG','1788',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2520','Pulkovo 1942 / Gauss-Kruger CM 177E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16330','EPSG','1789',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2521','Pulkovo 1942 / Gauss-Kruger CM 177W',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16331','EPSG','1790',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2522','Pulkovo 1942 / Gauss-Kruger CM 171W',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16332','EPSG','1791',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2523','Pulkovo 1942 / 3-degree Gauss-Kruger zone 7',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16267','EPSG','2653',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2524','Pulkovo 1942 / 3-degree Gauss-Kruger zone 8',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16268','EPSG','2654',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2525','Pulkovo 1942 / 3-degree Gauss-Kruger zone 9',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16269','EPSG','2655',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2526','Pulkovo 1942 / 3-degree Gauss-Kruger zone 10',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16270','EPSG','2656',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2527','Pulkovo 1942 / 3-degree Gauss-Kruger zone 11',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16271','EPSG','2657',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2528','Pulkovo 1942 / 3-degree Gauss-Kruger zone 12',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16272','EPSG','2658',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2529','Pulkovo 1942 / 3-degree Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16273','EPSG','2659',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2530','Pulkovo 1942 / 3-degree Gauss-Kruger zone 14',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16274','EPSG','2660',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2531','Pulkovo 1942 / 3-degree Gauss-Kruger zone 15',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16275','EPSG','2661',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2532','Pulkovo 1942 / 3-degree Gauss-Kruger zone 16',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16276','EPSG','2662',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2533','Pulkovo 1942 / 3-degree Gauss-Kruger zone 17',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16277','EPSG','2663',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2534','Pulkovo 1942 / 3-degree Gauss-Kruger zone 18',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16278','EPSG','2664',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2535','Pulkovo 1942 / 3-degree Gauss-Kruger zone 19',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16279','EPSG','2665',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2536','Pulkovo 1942 / 3-degree Gauss-Kruger zone 20',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16280','EPSG','2666',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2537','Pulkovo 1942 / 3-degree Gauss-Kruger zone 21',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16281','EPSG','2667',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2538','Pulkovo 1942 / 3-degree Gauss-Kruger zone 22',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16282','EPSG','2668',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2539','Pulkovo 1942 / 3-degree Gauss-Kruger zone 23',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16283','EPSG','2669',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2540','Pulkovo 1942 / 3-degree Gauss-Kruger zone 24',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16284','EPSG','2670',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2541','Pulkovo 1942 / 3-degree Gauss-Kruger zone 25',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16285','EPSG','2671',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2542','Pulkovo 1942 / 3-degree Gauss-Kruger zone 26',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16286','EPSG','2672',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2543','Pulkovo 1942 / 3-degree Gauss-Kruger zone 27',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16287','EPSG','2673',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2544','Pulkovo 1942 / 3-degree Gauss-Kruger zone 28',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16288','EPSG','2674',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2545','Pulkovo 1942 / 3-degree Gauss-Kruger zone 29',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16289','EPSG','2675',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2546','Pulkovo 1942 / 3-degree Gauss-Kruger zone 30',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16290','EPSG','2676',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2547','Pulkovo 1942 / 3-degree Gauss-Kruger zone 31',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16291','EPSG','2677',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2548','Pulkovo 1942 / 3-degree Gauss-Kruger zone 32',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16292','EPSG','2678',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2549','Pulkovo 1942 / 3-degree Gauss-Kruger zone 33',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16293','EPSG','2679',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2550','Samboja / UTM zone 50S',NULL,NULL,'EPSG','4400','EPSG','4125','EPSG','16150','EPSG','1328',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2551','Pulkovo 1942 / 3-degree Gauss-Kruger zone 34',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16294','EPSG','2680',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2552','Pulkovo 1942 / 3-degree Gauss-Kruger zone 35',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16295','EPSG','2681',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2553','Pulkovo 1942 / 3-degree Gauss-Kruger zone 36',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16296','EPSG','2682',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2554','Pulkovo 1942 / 3-degree Gauss-Kruger zone 37',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16297','EPSG','2683',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2555','Pulkovo 1942 / 3-degree Gauss-Kruger zone 38',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16298','EPSG','2684',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2556','Pulkovo 1942 / 3-degree Gauss-Kruger zone 39',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16299','EPSG','2685',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2557','Pulkovo 1942 / 3-degree Gauss-Kruger zone 40',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16070','EPSG','2686',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2558','Pulkovo 1942 / 3-degree Gauss-Kruger zone 41',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16071','EPSG','2687',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2559','Pulkovo 1942 / 3-degree Gauss-Kruger zone 42',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16072','EPSG','2688',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2560','Pulkovo 1942 / 3-degree Gauss-Kruger zone 43',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16073','EPSG','2689',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2561','Pulkovo 1942 / 3-degree Gauss-Kruger zone 44',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16074','EPSG','2690',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2562','Pulkovo 1942 / 3-degree Gauss-Kruger zone 45',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16075','EPSG','2691',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2563','Pulkovo 1942 / 3-degree Gauss-Kruger zone 46',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16076','EPSG','2692',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2564','Pulkovo 1942 / 3-degree Gauss-Kruger zone 47',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16077','EPSG','2693',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2565','Pulkovo 1942 / 3-degree Gauss-Kruger zone 48',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16078','EPSG','2694',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2566','Pulkovo 1942 / 3-degree Gauss-Kruger zone 49',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16079','EPSG','2695',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2567','Pulkovo 1942 / 3-degree Gauss-Kruger zone 50',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16080','EPSG','2696',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2568','Pulkovo 1942 / 3-degree Gauss-Kruger zone 51',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16081','EPSG','2697',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2569','Pulkovo 1942 / 3-degree Gauss-Kruger zone 52',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16082','EPSG','2698',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2570','Pulkovo 1942 / 3-degree Gauss-Kruger zone 53',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16083','EPSG','2699',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2571','Pulkovo 1942 / 3-degree Gauss-Kruger zone 54',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16084','EPSG','2700',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2572','Pulkovo 1942 / 3-degree Gauss-Kruger zone 55',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16085','EPSG','2701',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2573','Pulkovo 1942 / 3-degree Gauss-Kruger zone 56',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16086','EPSG','2702',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2574','Pulkovo 1942 / 3-degree Gauss-Kruger zone 57',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16087','EPSG','2703',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2575','Pulkovo 1942 / 3-degree Gauss-Kruger zone 58',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16088','EPSG','2704',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2576','Pulkovo 1942 / 3-degree Gauss-Kruger zone 59',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16089','EPSG','2705',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2577','Pulkovo 1942 / 3-degree Gauss-Kruger zone 60',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16090','EPSG','2706',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2578','Pulkovo 1942 / 3-degree Gauss-Kruger zone 61',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16091','EPSG','2707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2579','Pulkovo 1942 / 3-degree Gauss-Kruger zone 62',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16092','EPSG','2708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2580','Pulkovo 1942 / 3-degree Gauss-Kruger zone 63',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16093','EPSG','2709',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2581','Pulkovo 1942 / 3-degree Gauss-Kruger zone 64',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16094','EPSG','2710',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2582','Pulkovo 1942 / 3-degree Gauss-Kruger CM 21E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16304','EPSG','2653',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2583','Pulkovo 1942 / 3-degree Gauss-Kruger CM 24E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16368','EPSG','2654',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2584','Pulkovo 1942 / 3-degree Gauss-Kruger CM 27E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16305','EPSG','2655',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2585','Pulkovo 1942 / 3-degree Gauss-Kruger CM 30E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16370','EPSG','2656',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2586','Pulkovo 1942 / 3-degree Gauss-Kruger CM 33E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16306','EPSG','2657',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2587','Pulkovo 1942 / 3-degree Gauss-Kruger CM 36E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16372','EPSG','2658',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2588','Pulkovo 1942 / 3-degree Gauss-Kruger CM 39E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16307','EPSG','2659',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2589','Pulkovo 1942 / 3-degree Gauss-Kruger CM 42E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16374','EPSG','2660',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2590','Pulkovo 1942 / 3-degree Gauss-Kruger CM 45E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16308','EPSG','2661',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2591','Pulkovo 1942 / 3-degree Gauss-Kruger CM 48E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16376','EPSG','2662',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2592','Pulkovo 1942 / 3-degree Gauss-Kruger CM 51E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16309','EPSG','2663',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2593','Pulkovo 1942 / 3-degree Gauss-Kruger CM 54E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16378','EPSG','2664',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2594','Pulkovo 1942 / 3-degree Gauss-Kruger CM 57E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16310','EPSG','2665',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2595','Pulkovo 1942 / 3-degree Gauss-Kruger CM 60E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16380','EPSG','2666',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2596','Pulkovo 1942 / 3-degree Gauss-Kruger CM 63E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16311','EPSG','2667',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2597','Pulkovo 1942 / 3-degree Gauss-Kruger CM 66E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16382','EPSG','2668',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2598','Pulkovo 1942 / 3-degree Gauss-Kruger CM 69E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16312','EPSG','2669',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2599','Pulkovo 1942 / 3-degree Gauss-Kruger CM 72E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16384','EPSG','2670',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2600','Lietuvos Koordinoei Sistema 1994',NULL,NULL,'EPSG','4530','EPSG','4669','EPSG','19934','EPSG','1145',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2601','Pulkovo 1942 / 3-degree Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16313','EPSG','2671',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2602','Pulkovo 1942 / 3-degree Gauss-Kruger CM 78E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16386','EPSG','2672',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2603','Pulkovo 1942 / 3-degree Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16314','EPSG','2673',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2604','Pulkovo 1942 / 3-degree Gauss-Kruger CM 84E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16388','EPSG','2674',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2605','Pulkovo 1942 / 3-degree Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16315','EPSG','2675',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2606','Pulkovo 1942 / 3-degree Gauss-Kruger CM 90E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16390','EPSG','2676',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2607','Pulkovo 1942 / 3-degree Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16316','EPSG','2677',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2608','Pulkovo 1942 / 3-degree Gauss-Kruger CM 96E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16392','EPSG','2678',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2609','Pulkovo 1942 / 3-degree Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16317','EPSG','2679',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2610','Pulkovo 1942 / 3-degree Gauss-Kruger CM 102E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16394','EPSG','2680',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2611','Pulkovo 1942 / 3-degree Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16318','EPSG','2681',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2612','Pulkovo 1942 / 3-degree Gauss-Kruger CM 108E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16396','EPSG','2682',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2613','Pulkovo 1942 / 3-degree Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16319','EPSG','2683',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2614','Pulkovo 1942 / 3-degree Gauss-Kruger CM 114E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16398','EPSG','2684',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2615','Pulkovo 1942 / 3-degree Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16320','EPSG','2685',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2616','Pulkovo 1942 / 3-degree Gauss-Kruger CM 120E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16170','EPSG','2686',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2617','Pulkovo 1942 / 3-degree Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16321','EPSG','2687',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2618','Pulkovo 1942 / 3-degree Gauss-Kruger CM 126E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16172','EPSG','2688',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2619','Pulkovo 1942 / 3-degree Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16322','EPSG','2689',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2620','Pulkovo 1942 / 3-degree Gauss-Kruger CM 132E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16174','EPSG','2690',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2621','Pulkovo 1942 / 3-degree Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16323','EPSG','2691',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2622','Pulkovo 1942 / 3-degree Gauss-Kruger CM 138E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16176','EPSG','2692',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2623','Pulkovo 1942 / 3-degree Gauss-Kruger CM 141E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16324','EPSG','2693',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2624','Pulkovo 1942 / 3-degree Gauss-Kruger CM 144E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16178','EPSG','2694',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2625','Pulkovo 1942 / 3-degree Gauss-Kruger CM 147E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16325','EPSG','2695',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2626','Pulkovo 1942 / 3-degree Gauss-Kruger CM 150E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16180','EPSG','2696',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2627','Pulkovo 1942 / 3-degree Gauss-Kruger CM 153E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16326','EPSG','2697',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2628','Pulkovo 1942 / 3-degree Gauss-Kruger CM 156E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16182','EPSG','2698',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2629','Pulkovo 1942 / 3-degree Gauss-Kruger CM 159E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16327','EPSG','2699',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2630','Pulkovo 1942 / 3-degree Gauss-Kruger CM 162E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16184','EPSG','2700',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2631','Pulkovo 1942 / 3-degree Gauss-Kruger CM 165E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16328','EPSG','2701',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2632','Pulkovo 1942 / 3-degree Gauss-Kruger CM 168E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16186','EPSG','2702',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2633','Pulkovo 1942 / 3-degree Gauss-Kruger CM 171E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16329','EPSG','2703',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2634','Pulkovo 1942 / 3-degree Gauss-Kruger CM 174E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16188','EPSG','2704',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2635','Pulkovo 1942 / 3-degree Gauss-Kruger CM 177E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16330','EPSG','2705',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2636','Pulkovo 1942 / 3-degree Gauss-Kruger CM 180E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16190','EPSG','2706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2637','Pulkovo 1942 / 3-degree Gauss-Kruger CM 177W',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16331','EPSG','2707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2638','Pulkovo 1942 / 3-degree Gauss-Kruger CM 174W',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16192','EPSG','2708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2639','Pulkovo 1942 / 3-degree Gauss-Kruger CM 171W',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16332','EPSG','2709',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2640','Pulkovo 1942 / 3-degree Gauss-Kruger CM 168W',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16194','EPSG','2710',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2641','Pulkovo 1995 / 3-degree Gauss-Kruger zone 7',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16267','EPSG','2747',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2642','Pulkovo 1995 / 3-degree Gauss-Kruger zone 8',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16268','EPSG','2748',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2643','Pulkovo 1995 / 3-degree Gauss-Kruger zone 9',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16269','EPSG','2749',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2644','Pulkovo 1995 / 3-degree Gauss-Kruger zone 10',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16270','EPSG','2750',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2645','Pulkovo 1995 / 3-degree Gauss-Kruger zone 11',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16271','EPSG','2751',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2646','Pulkovo 1995 / 3-degree Gauss-Kruger zone 12',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16272','EPSG','2752',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2647','Pulkovo 1995 / 3-degree Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16273','EPSG','2753',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2648','Pulkovo 1995 / 3-degree Gauss-Kruger zone 14',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16274','EPSG','2754',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2649','Pulkovo 1995 / 3-degree Gauss-Kruger zone 15',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16275','EPSG','2755',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2650','Pulkovo 1995 / 3-degree Gauss-Kruger zone 16',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16276','EPSG','2756',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2651','Pulkovo 1995 / 3-degree Gauss-Kruger zone 17',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16277','EPSG','2757',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2652','Pulkovo 1995 / 3-degree Gauss-Kruger zone 18',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16278','EPSG','2758',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2653','Pulkovo 1995 / 3-degree Gauss-Kruger zone 19',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16279','EPSG','2759',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2654','Pulkovo 1995 / 3-degree Gauss-Kruger zone 20',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16280','EPSG','2760',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2655','Pulkovo 1995 / 3-degree Gauss-Kruger zone 21',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16281','EPSG','2761',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2656','Pulkovo 1995 / 3-degree Gauss-Kruger zone 22',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16282','EPSG','2762',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2657','Pulkovo 1995 / 3-degree Gauss-Kruger zone 23',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16283','EPSG','2763',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2658','Pulkovo 1995 / 3-degree Gauss-Kruger zone 24',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16284','EPSG','2764',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2659','Pulkovo 1995 / 3-degree Gauss-Kruger zone 25',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16285','EPSG','2765',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2660','Pulkovo 1995 / 3-degree Gauss-Kruger zone 26',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16286','EPSG','2766',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2661','Pulkovo 1995 / 3-degree Gauss-Kruger zone 27',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16287','EPSG','2767',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2662','Pulkovo 1995 / 3-degree Gauss-Kruger zone 28',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16288','EPSG','2768',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2663','Pulkovo 1995 / 3-degree Gauss-Kruger zone 29',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16289','EPSG','2769',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2664','Pulkovo 1995 / 3-degree Gauss-Kruger zone 30',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16290','EPSG','2676',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2665','Pulkovo 1995 / 3-degree Gauss-Kruger zone 31',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16291','EPSG','2677',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2666','Pulkovo 1995 / 3-degree Gauss-Kruger zone 32',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16292','EPSG','2678',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2667','Pulkovo 1995 / 3-degree Gauss-Kruger zone 33',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16293','EPSG','2679',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2668','Pulkovo 1995 / 3-degree Gauss-Kruger zone 34',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16294','EPSG','2680',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2669','Pulkovo 1995 / 3-degree Gauss-Kruger zone 35',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16295','EPSG','2681',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2670','Pulkovo 1995 / 3-degree Gauss-Kruger zone 36',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16296','EPSG','2682',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2671','Pulkovo 1995 / 3-degree Gauss-Kruger zone 37',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16297','EPSG','2683',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2672','Pulkovo 1995 / 3-degree Gauss-Kruger zone 38',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16298','EPSG','2684',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2673','Pulkovo 1995 / 3-degree Gauss-Kruger zone 39',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16299','EPSG','2685',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2674','Pulkovo 1995 / 3-degree Gauss-Kruger zone 40',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16070','EPSG','2686',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2675','Pulkovo 1995 / 3-degree Gauss-Kruger zone 41',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16071','EPSG','2687',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2676','Pulkovo 1995 / 3-degree Gauss-Kruger zone 42',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16072','EPSG','2688',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2677','Pulkovo 1995 / 3-degree Gauss-Kruger zone 43',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16073','EPSG','2689',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2678','Pulkovo 1995 / 3-degree Gauss-Kruger zone 44',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16074','EPSG','2690',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2679','Pulkovo 1995 / 3-degree Gauss-Kruger zone 45',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16075','EPSG','2691',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2680','Pulkovo 1995 / 3-degree Gauss-Kruger zone 46',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16076','EPSG','2692',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2681','Pulkovo 1995 / 3-degree Gauss-Kruger zone 47',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16077','EPSG','2693',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2682','Pulkovo 1995 / 3-degree Gauss-Kruger zone 48',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16078','EPSG','2694',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2683','Pulkovo 1995 / 3-degree Gauss-Kruger zone 49',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16079','EPSG','2695',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2684','Pulkovo 1995 / 3-degree Gauss-Kruger zone 50',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16080','EPSG','2696',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2685','Pulkovo 1995 / 3-degree Gauss-Kruger zone 51',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16081','EPSG','2697',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2686','Pulkovo 1995 / 3-degree Gauss-Kruger zone 52',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16082','EPSG','2698',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2687','Pulkovo 1995 / 3-degree Gauss-Kruger zone 53',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16083','EPSG','2699',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2688','Pulkovo 1995 / 3-degree Gauss-Kruger zone 54',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16084','EPSG','2700',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2689','Pulkovo 1995 / 3-degree Gauss-Kruger zone 55',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16085','EPSG','2701',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2690','Pulkovo 1995 / 3-degree Gauss-Kruger zone 56',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16086','EPSG','2702',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2691','Pulkovo 1995 / 3-degree Gauss-Kruger zone 57',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16087','EPSG','2703',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2692','Pulkovo 1995 / 3-degree Gauss-Kruger zone 58',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16088','EPSG','2704',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2693','Pulkovo 1995 / 3-degree Gauss-Kruger zone 59',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16089','EPSG','2705',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2694','Pulkovo 1995 / 3-degree Gauss-Kruger zone 60',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16090','EPSG','2706',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2695','Pulkovo 1995 / 3-degree Gauss-Kruger zone 61',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16091','EPSG','2707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2696','Pulkovo 1995 / 3-degree Gauss-Kruger zone 62',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16092','EPSG','2708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2697','Pulkovo 1995 / 3-degree Gauss-Kruger zone 63',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16093','EPSG','2709',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2698','Pulkovo 1995 / 3-degree Gauss-Kruger zone 64',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16094','EPSG','2710',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2699','Pulkovo 1995 / 3-degree Gauss-Kruger CM 21E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16304','EPSG','2747',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2700','Pulkovo 1995 / 3-degree Gauss-Kruger CM 24E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16368','EPSG','2748',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2701','Pulkovo 1995 / 3-degree Gauss-Kruger CM 27E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16305','EPSG','2749',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2702','Pulkovo 1995 / 3-degree Gauss-Kruger CM 30E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16370','EPSG','2750',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2703','Pulkovo 1995 / 3-degree Gauss-Kruger CM 33E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16306','EPSG','2751',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2704','Pulkovo 1995 / 3-degree Gauss-Kruger CM 36E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16372','EPSG','2752',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2705','Pulkovo 1995 / 3-degree Gauss-Kruger CM 39E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16307','EPSG','2753',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2706','Pulkovo 1995 / 3-degree Gauss-Kruger CM 42E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16374','EPSG','2754',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2707','Pulkovo 1995 / 3-degree Gauss-Kruger CM 45E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16308','EPSG','2755',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2708','Pulkovo 1995 / 3-degree Gauss-Kruger CM 48E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16376','EPSG','2756',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2709','Pulkovo 1995 / 3-degree Gauss-Kruger CM 51E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16309','EPSG','2757',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2710','Pulkovo 1995 / 3-degree Gauss-Kruger CM 54E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16378','EPSG','2758',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2711','Pulkovo 1995 / 3-degree Gauss-Kruger CM 57E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16310','EPSG','2759',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2712','Pulkovo 1995 / 3-degree Gauss-Kruger CM 60E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16380','EPSG','2760',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2713','Pulkovo 1995 / 3-degree Gauss-Kruger CM 63E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16311','EPSG','2761',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2714','Pulkovo 1995 / 3-degree Gauss-Kruger CM 66E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16382','EPSG','2762',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2715','Pulkovo 1995 / 3-degree Gauss-Kruger CM 69E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16312','EPSG','2763',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2716','Pulkovo 1995 / 3-degree Gauss-Kruger CM 72E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16384','EPSG','2764',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2717','Pulkovo 1995 / 3-degree Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16313','EPSG','2765',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2718','Pulkovo 1995 / 3-degree Gauss-Kruger CM 78E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16386','EPSG','2766',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2719','Pulkovo 1995 / 3-degree Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16314','EPSG','2767',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2720','Pulkovo 1995 / 3-degree Gauss-Kruger CM 84E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16388','EPSG','2768',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2721','Pulkovo 1995 / 3-degree Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16315','EPSG','2769',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2722','Pulkovo 1995 / 3-degree Gauss-Kruger CM 90E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16390','EPSG','2676',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2723','Pulkovo 1995 / 3-degree Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16316','EPSG','2677',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2724','Pulkovo 1995 / 3-degree Gauss-Kruger CM 96E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16392','EPSG','2678',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2725','Pulkovo 1995 / 3-degree Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16317','EPSG','2679',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2726','Pulkovo 1995 / 3-degree Gauss-Kruger CM 102E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16394','EPSG','2680',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2727','Pulkovo 1995 / 3-degree Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16318','EPSG','2681',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2728','Pulkovo 1995 / 3-degree Gauss-Kruger CM 108E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16396','EPSG','2682',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2729','Pulkovo 1995 / 3-degree Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16319','EPSG','2683',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2730','Pulkovo 1995 / 3-degree Gauss-Kruger CM 114E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16398','EPSG','2684',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2731','Pulkovo 1995 / 3-degree Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16320','EPSG','2685',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2732','Pulkovo 1995 / 3-degree Gauss-Kruger CM 120E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16170','EPSG','2686',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2733','Pulkovo 1995 / 3-degree Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16321','EPSG','2687',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2734','Pulkovo 1995 / 3-degree Gauss-Kruger CM 126E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16172','EPSG','2688',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2735','Pulkovo 1995 / 3-degree Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16322','EPSG','2689',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2736','Tete / UTM zone 36S',NULL,NULL,'EPSG','4400','EPSG','4127','EPSG','16136','EPSG','1540',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2737','Tete / UTM zone 37S',NULL,NULL,'EPSG','4400','EPSG','4127','EPSG','16137','EPSG','1541',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2738','Pulkovo 1995 / 3-degree Gauss-Kruger CM 132E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16174','EPSG','2690',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2739','Pulkovo 1995 / 3-degree Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16323','EPSG','2691',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2740','Pulkovo 1995 / 3-degree Gauss-Kruger CM 138E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16176','EPSG','2692',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2741','Pulkovo 1995 / 3-degree Gauss-Kruger CM 141E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16324','EPSG','2693',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2742','Pulkovo 1995 / 3-degree Gauss-Kruger CM 144E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16178','EPSG','2694',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2743','Pulkovo 1995 / 3-degree Gauss-Kruger CM 147E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16325','EPSG','2695',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2744','Pulkovo 1995 / 3-degree Gauss-Kruger CM 150E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16180','EPSG','2696',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2745','Pulkovo 1995 / 3-degree Gauss-Kruger CM 153E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16326','EPSG','2697',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2746','Pulkovo 1995 / 3-degree Gauss-Kruger CM 156E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16182','EPSG','2698',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2747','Pulkovo 1995 / 3-degree Gauss-Kruger CM 159E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16327','EPSG','2699',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2748','Pulkovo 1995 / 3-degree Gauss-Kruger CM 162E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16184','EPSG','2700',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2749','Pulkovo 1995 / 3-degree Gauss-Kruger CM 165E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16328','EPSG','2701',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2750','Pulkovo 1995 / 3-degree Gauss-Kruger CM 168E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16186','EPSG','2702',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2751','Pulkovo 1995 / 3-degree Gauss-Kruger CM 171E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16329','EPSG','2703',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2752','Pulkovo 1995 / 3-degree Gauss-Kruger CM 174E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16188','EPSG','2704',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2753','Pulkovo 1995 / 3-degree Gauss-Kruger CM 177E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16330','EPSG','2705',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2754','Pulkovo 1995 / 3-degree Gauss-Kruger CM 180E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16190','EPSG','2706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2755','Pulkovo 1995 / 3-degree Gauss-Kruger CM 177W',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16331','EPSG','2707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2756','Pulkovo 1995 / 3-degree Gauss-Kruger CM 174W',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16192','EPSG','2708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2757','Pulkovo 1995 / 3-degree Gauss-Kruger CM 171W',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16332','EPSG','2709',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2758','Pulkovo 1995 / 3-degree Gauss-Kruger CM 168W',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16194','EPSG','2710',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2759','NAD83(HARN) / Alabama East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10131','EPSG','2154',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2760','NAD83(HARN) / Alabama West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10132','EPSG','2155',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2761','NAD83(HARN) / Arizona East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10231','EPSG','2167',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2762','NAD83(HARN) / Arizona Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10232','EPSG','2166',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2763','NAD83(HARN) / Arizona West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10233','EPSG','2168',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2764','NAD83(HARN) / Arkansas North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10331','EPSG','2169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2765','NAD83(HARN) / Arkansas South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10332','EPSG','2170',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2766','NAD83(HARN) / California zone 1',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10431','EPSG','2175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2767','NAD83(HARN) / California zone 2',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10432','EPSG','2176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2768','NAD83(HARN) / California zone 3',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10433','EPSG','2177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2769','NAD83(HARN) / California zone 4',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10434','EPSG','2178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2770','NAD83(HARN) / California zone 5',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10435','EPSG','2182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2771','NAD83(HARN) / California zone 6',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10436','EPSG','2180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2772','NAD83(HARN) / Colorado North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10531','EPSG','2184',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2773','NAD83(HARN) / Colorado Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10532','EPSG','2183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2774','NAD83(HARN) / Colorado South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10533','EPSG','2185',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2775','NAD83(HARN) / Connecticut',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10630','EPSG','1377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2776','NAD83(HARN) / Delaware',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10730','EPSG','1378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2777','NAD83(HARN) / Florida East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10931','EPSG','2186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2778','NAD83(HARN) / Florida West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10932','EPSG','2188',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2779','NAD83(HARN) / Florida North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10933','EPSG','2187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2780','NAD83(HARN) / Georgia East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11031','EPSG','2189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2781','NAD83(HARN) / Georgia West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11032','EPSG','2190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2782','NAD83(HARN) / Hawaii zone 1',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','15131','EPSG','1546',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2783','NAD83(HARN) / Hawaii zone 2',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','15132','EPSG','1547',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2784','NAD83(HARN) / Hawaii zone 3',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','15133','EPSG','1548',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2785','NAD83(HARN) / Hawaii zone 4',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','15134','EPSG','1549',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2786','NAD83(HARN) / Hawaii zone 5',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','15135','EPSG','1550',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2787','NAD83(HARN) / Idaho East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11131','EPSG','2192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2788','NAD83(HARN) / Idaho Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11132','EPSG','2191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2789','NAD83(HARN) / Idaho West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11133','EPSG','2193',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2790','NAD83(HARN) / Illinois East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11231','EPSG','2194',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2791','NAD83(HARN) / Illinois West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11232','EPSG','2195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2792','NAD83(HARN) / Indiana East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11331','EPSG','2196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2793','NAD83(HARN) / Indiana West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11332','EPSG','2197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2794','NAD83(HARN) / Iowa North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11431','EPSG','2198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2795','NAD83(HARN) / Iowa South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11432','EPSG','2199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2796','NAD83(HARN) / Kansas North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11531','EPSG','2200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2797','NAD83(HARN) / Kansas South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11532','EPSG','2201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2798','NAD83(HARN) / Kentucky North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','15303','EPSG','2202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2799','NAD83(HARN) / Kentucky South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11632','EPSG','2203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2800','NAD83(HARN) / Louisiana North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11731','EPSG','2204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2801','NAD83(HARN) / Louisiana South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11732','EPSG','2529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2802','NAD83(HARN) / Maine East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11831','EPSG','2206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2803','NAD83(HARN) / Maine West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11832','EPSG','2207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2804','NAD83(HARN) / Maryland',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11930','EPSG','1389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2805','NAD83(HARN) / Massachusetts Mainland',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12031','EPSG','2209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2806','NAD83(HARN) / Massachusetts Island',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12032','EPSG','2208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2807','NAD83(HARN) / Michigan North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12141','EPSG','1723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2808','NAD83(HARN) / Michigan Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12142','EPSG','1724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2809','NAD83(HARN) / Michigan South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12143','EPSG','1725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2810','NAD83(HARN) / Minnesota North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12231','EPSG','2214',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2811','NAD83(HARN) / Minnesota Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12232','EPSG','2213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2812','NAD83(HARN) / Minnesota South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12233','EPSG','2215',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2813','NAD83(HARN) / Mississippi East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12331','EPSG','2216',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2814','NAD83(HARN) / Mississippi West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12332','EPSG','2217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2815','NAD83(HARN) / Missouri East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12431','EPSG','2219',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2816','NAD83(HARN) / Missouri Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12432','EPSG','2218',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2817','NAD83(HARN) / Missouri West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12433','EPSG','2220',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2818','NAD83(HARN) / Montana',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12530','EPSG','1395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2819','NAD83(HARN) / Nebraska',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12630','EPSG','1396',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2820','NAD83(HARN) / Nevada East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12731','EPSG','2224',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2821','NAD83(HARN) / Nevada Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12732','EPSG','2223',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2822','NAD83(HARN) / Nevada West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12733','EPSG','2225',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2823','NAD83(HARN) / New Hampshire',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12830','EPSG','1398',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2824','NAD83(HARN) / New Jersey',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12930','EPSG','1399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2825','NAD83(HARN) / New Mexico East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13031','EPSG','2228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2826','NAD83(HARN) / New Mexico Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13032','EPSG','2231',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2827','NAD83(HARN) / New Mexico West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13033','EPSG','2232',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2828','NAD83(HARN) / New York East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13131','EPSG','2234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2829','NAD83(HARN) / New York Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13132','EPSG','2233',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2830','NAD83(HARN) / New York West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13133','EPSG','2236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2831','NAD83(HARN) / New York Long Island',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13134','EPSG','2235',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2832','NAD83(HARN) / North Dakota North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13331','EPSG','2237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2833','NAD83(HARN) / North Dakota South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13332','EPSG','2238',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2834','NAD83(HARN) / Ohio North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13431','EPSG','2239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2835','NAD83(HARN) / Ohio South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13432','EPSG','2240',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2836','NAD83(HARN) / Oklahoma North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13531','EPSG','2241',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2837','NAD83(HARN) / Oklahoma South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13532','EPSG','2242',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2838','NAD83(HARN) / Oregon North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13631','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2839','NAD83(HARN) / Oregon South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13632','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2840','NAD83(HARN) / Rhode Island',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13830','EPSG','1408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2841','NAD83(HARN) / South Dakota North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14031','EPSG','2249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2842','NAD83(HARN) / South Dakota South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14032','EPSG','2250',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2843','NAD83(HARN) / Tennessee',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14130','EPSG','1411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2844','NAD83(HARN) / Texas North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14231','EPSG','2253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2845','NAD83(HARN) / Texas North Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14232','EPSG','2254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2846','NAD83(HARN) / Texas Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14233','EPSG','2252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2847','NAD83(HARN) / Texas South Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14234','EPSG','2527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2848','NAD83(HARN) / Texas South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14235','EPSG','2528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2849','NAD83(HARN) / Utah North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14331','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2850','NAD83(HARN) / Utah Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14332','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2851','NAD83(HARN) / Utah South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14333','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2852','NAD83(HARN) / Vermont',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14430','EPSG','1414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2853','NAD83(HARN) / Virginia North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14531','EPSG','2260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2854','NAD83(HARN) / Virginia South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14532','EPSG','2261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2855','NAD83(HARN) / Washington North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14631','EPSG','2273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2856','NAD83(HARN) / Washington South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14632','EPSG','2274',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2857','NAD83(HARN) / West Virginia North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14731','EPSG','2264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2858','NAD83(HARN) / West Virginia South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14732','EPSG','2265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2859','NAD83(HARN) / Wisconsin North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14831','EPSG','2267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2860','NAD83(HARN) / Wisconsin Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14832','EPSG','2266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2861','NAD83(HARN) / Wisconsin South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14833','EPSG','2268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2862','NAD83(HARN) / Wyoming East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14931','EPSG','2269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2863','NAD83(HARN) / Wyoming East Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14932','EPSG','2270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2864','NAD83(HARN) / Wyoming West Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14933','EPSG','2272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2865','NAD83(HARN) / Wyoming West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14934','EPSG','2271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2866','NAD83(HARN) / Puerto Rico and Virgin Is.',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','15230','EPSG','3634',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2867','NAD83(HARN) / Arizona East (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15304','EPSG','2167',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2868','NAD83(HARN) / Arizona Central (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15305','EPSG','2166',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2869','NAD83(HARN) / Arizona West (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15306','EPSG','2168',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2870','NAD83(HARN) / California zone 1 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15307','EPSG','2175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2871','NAD83(HARN) / California zone 2 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15308','EPSG','2176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2872','NAD83(HARN) / California zone 3 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15309','EPSG','2177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2873','NAD83(HARN) / California zone 4 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15310','EPSG','2178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2874','NAD83(HARN) / California zone 5 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15311','EPSG','2182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2875','NAD83(HARN) / California zone 6 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15312','EPSG','2180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2876','NAD83(HARN) / Colorado North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15313','EPSG','2184',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2877','NAD83(HARN) / Colorado Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15314','EPSG','2183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2878','NAD83(HARN) / Colorado South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15315','EPSG','2185',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2879','NAD83(HARN) / Connecticut (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15316','EPSG','1377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2880','NAD83(HARN) / Delaware (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15317','EPSG','1378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2881','NAD83(HARN) / Florida East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15318','EPSG','2186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2882','NAD83(HARN) / Florida West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15319','EPSG','2188',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2883','NAD83(HARN) / Florida North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15320','EPSG','2187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2884','NAD83(HARN) / Georgia East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15321','EPSG','2189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2885','NAD83(HARN) / Georgia West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15322','EPSG','2190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2886','NAD83(HARN) / Idaho East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15323','EPSG','2192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2887','NAD83(HARN) / Idaho Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15324','EPSG','2191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2888','NAD83(HARN) / Idaho West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15325','EPSG','2193',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2889','NAD83(HARN) / Indiana East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15326','EPSG','2196',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2890','NAD83(HARN) / Indiana West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15327','EPSG','2197',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2891','NAD83(HARN) / Kentucky North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15328','EPSG','2202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2892','NAD83(HARN) / Kentucky South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15329','EPSG','2203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2893','NAD83(HARN) / Maryland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15330','EPSG','1389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2894','NAD83(HARN) / Massachusetts Mainland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15331','EPSG','2209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2895','NAD83(HARN) / Massachusetts Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15332','EPSG','2208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2896','NAD83(HARN) / Michigan North (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15333','EPSG','1723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2897','NAD83(HARN) / Michigan Central (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15334','EPSG','1724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2898','NAD83(HARN) / Michigan South (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15335','EPSG','1725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2899','NAD83(HARN) / Mississippi East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15336','EPSG','2216',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2900','NAD83(HARN) / Mississippi West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15337','EPSG','2217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2901','NAD83(HARN) / Montana (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15338','EPSG','1395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2902','NAD83(HARN) / New Mexico East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15339','EPSG','2228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2903','NAD83(HARN) / New Mexico Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15340','EPSG','2231',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2904','NAD83(HARN) / New Mexico West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15341','EPSG','2232',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2905','NAD83(HARN) / New York East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15342','EPSG','2234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2906','NAD83(HARN) / New York Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15343','EPSG','2233',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2907','NAD83(HARN) / New York West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15344','EPSG','2236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2908','NAD83(HARN) / New York Long Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15345','EPSG','2235',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2909','NAD83(HARN) / North Dakota North (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15347','EPSG','2237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2910','NAD83(HARN) / North Dakota South (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15348','EPSG','2238',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2911','NAD83(HARN) / Oklahoma North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15349','EPSG','2241',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2912','NAD83(HARN) / Oklahoma South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15350','EPSG','2242',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2913','NAD83(HARN) / Oregon North (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15351','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2914','NAD83(HARN) / Oregon South (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15352','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2915','NAD83(HARN) / Tennessee (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15356','EPSG','1411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2916','NAD83(HARN) / Texas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15357','EPSG','2253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2917','NAD83(HARN) / Texas North Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15358','EPSG','2254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2918','NAD83(HARN) / Texas Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15359','EPSG','2252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2919','NAD83(HARN) / Texas South Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15360','EPSG','2527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2920','NAD83(HARN) / Texas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15361','EPSG','2528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2921','NAD83(HARN) / Utah North (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15362','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2922','NAD83(HARN) / Utah Central (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15363','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2923','NAD83(HARN) / Utah South (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15364','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2924','NAD83(HARN) / Virginia North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15365','EPSG','2260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2925','NAD83(HARN) / Virginia South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15366','EPSG','2261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2926','NAD83(HARN) / Washington North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15367','EPSG','2273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2927','NAD83(HARN) / Washington South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15368','EPSG','2274',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2928','NAD83(HARN) / Wisconsin North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15369','EPSG','2267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2929','NAD83(HARN) / Wisconsin Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15370','EPSG','2266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2930','NAD83(HARN) / Wisconsin South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15371','EPSG','2268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2931','Beduaram / TM 13 NE',NULL,NULL,'EPSG','4499','EPSG','4213','EPSG','16413','EPSG','2771',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2932','QND95 / Qatar National Grid',NULL,NULL,'EPSG','4400','EPSG','4614','EPSG','19919','EPSG','1346',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2933','Segara / UTM zone 50S',NULL,NULL,'EPSG','4400','EPSG','4613','EPSG','16150','EPSG','1328',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2934','Segara (Jakarta) / NEIEZ',NULL,NULL,'EPSG','4499','EPSG','4820','EPSG','19905','EPSG','1360',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2935','Pulkovo 1942 / CS63 zone A1',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','18441','EPSG','2772',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2936','Pulkovo 1942 / CS63 zone A2',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','18442','EPSG','2773',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2937','Pulkovo 1942 / CS63 zone A3',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','18443','EPSG','2774',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2938','Pulkovo 1942 / CS63 zone A4',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','18444','EPSG','2775',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2939','Pulkovo 1942 / CS63 zone K2',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','18446','EPSG','2776',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2940','Pulkovo 1942 / CS63 zone K3',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','18447','EPSG','2777',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2941','Pulkovo 1942 / CS63 zone K4',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','18448','EPSG','2778',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2942','Porto Santo / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4615','EPSG','16028','EPSG','1314',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2943','Selvagem Grande / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4616','EPSG','16028','EPSG','2779',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2944','NAD83(CSRS) / SCoPQ zone 2',NULL,NULL,'EPSG','4499','EPSG','4617','EPSG','17700','EPSG','1420',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2945','NAD83(CSRS) / MTM zone 3',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','17703','EPSG','2290',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2946','NAD83(CSRS) / MTM zone 4',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','17704','EPSG','2276',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2947','NAD83(CSRS) / MTM zone 5',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','17705','EPSG','2277',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2948','NAD83(CSRS) / MTM zone 6',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','17706','EPSG','2278',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2949','NAD83(CSRS) / MTM zone 7',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','17707','EPSG','1425',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2950','NAD83(CSRS) / MTM zone 8',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','17708','EPSG','2279',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2951','NAD83(CSRS) / MTM zone 9',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','17709','EPSG','2280',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2952','NAD83(CSRS) / MTM zone 10',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','17710','EPSG','2281',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2953','NAD83(CSRS) / New Brunswick Stereographic',NULL,NULL,'EPSG','4500','EPSG','4617','EPSG','19946','EPSG','1447',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2954','NAD83(CSRS) / Prince Edward Isl. Stereographic (NAD83)',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','19960','EPSG','1533',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2955','NAD83(CSRS) / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16011','EPSG','3528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2956','NAD83(CSRS) / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16012','EPSG','3527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2957','NAD83(CSRS) / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16013','EPSG','3526',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2958','NAD83(CSRS) / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16017','EPSG','3416',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2959','NAD83(CSRS) / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16018','EPSG','3417',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2960','NAD83(CSRS) / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16019','EPSG','3524',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2961','NAD83(CSRS) / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16020','EPSG','3525',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2962','NAD83(CSRS) / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16021','EPSG','2151',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2963','Lisbon 1890 (Lisbon) / Portugal Bonne',NULL,NULL,'EPSG','6509','EPSG','4904','EPSG','19979','EPSG','1294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2964','NAD27 / Alaska Albers',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15020','EPSG','1330',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2965','NAD83 / Indiana East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15372','EPSG','2196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2966','NAD83 / Indiana West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15373','EPSG','2197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2967','NAD83(HARN) / Indiana East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15372','EPSG','2196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2968','NAD83(HARN) / Indiana West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15373','EPSG','2197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2969','Fort Marigot / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4621','EPSG','16020','EPSG','2828',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2970','Guadeloupe 1948 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4622','EPSG','16020','EPSG','2829',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2971','CSG67 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4623','EPSG','16022','EPSG','3766',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2972','RGFG95 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4624','EPSG','16022','EPSG','3144',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2973','Martinique 1938 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4625','EPSG','16020','EPSG','3276',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2975','RGR92 / UTM zone 40S',NULL,NULL,'EPSG','4400','EPSG','4627','EPSG','16140','EPSG','3911',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2976','Tahiti 52 / UTM zone 6S',NULL,NULL,'EPSG','4400','EPSG','4628','EPSG','16106','EPSG','2811',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2977','Tahaa 54 / UTM zone 5S',NULL,NULL,'EPSG','4400','EPSG','4629','EPSG','16105','EPSG','2812',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2978','IGN72 Nuku Hiva / UTM zone 7S',NULL,NULL,'EPSG','4400','EPSG','4630','EPSG','16107','EPSG','3129',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2979','K0 1949 / UTM zone 42S',NULL,NULL,'EPSG','4400','EPSG','4631','EPSG','16142','EPSG','2816',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2980','Combani 1950 / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','4632','EPSG','16138','EPSG','3340',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2981','IGN56 Lifou / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4633','EPSG','16158','EPSG','2814',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2982','IGN72 Grand Terre / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4634','EPSG','16158','EPSG','2822',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2983','ST87 Ouvea / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4635','EPSG','16158','EPSG','2813',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2984','RGNC 1991 / Lambert New Caledonia',NULL,NULL,'EPSG','4499','EPSG','4645','EPSG','19981','EPSG','1174',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2985','Petrels 1972 / Terre Adelie Polar Stereographic',NULL,NULL,'EPSG','1025','EPSG','4636','EPSG','19983','EPSG','2817',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2986','Perroud 1950 / Terre Adelie Polar Stereographic',NULL,NULL,'EPSG','1025','EPSG','4637','EPSG','19983','EPSG','2818',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2987','Saint Pierre et Miquelon 1950 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4638','EPSG','16021','EPSG','3299',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2988','MOP78 / UTM zone 1S',NULL,NULL,'EPSG','4400','EPSG','4639','EPSG','16101','EPSG','2815',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2989','RRAF 1991 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4640','EPSG','16020','EPSG','2824',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2990','Reunion 1947 / TM Reunion',NULL,NULL,'EPSG','4499','EPSG','4626','EPSG','19982','EPSG','3337',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','2991','NAD83 / Oregon LCC (m)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13633','EPSG','1406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2992','NAD83 / Oregon GIC Lambert (ft)',NULL,NULL,'EPSG','4495','EPSG','4269','EPSG','15374','EPSG','1406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2993','NAD83(HARN) / Oregon LCC (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13633','EPSG','1406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2994','NAD83(HARN) / Oregon GIC Lambert (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15374','EPSG','1406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2995','IGN53 Mare / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4641','EPSG','16158','EPSG','3434',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2996','ST84 Ile des Pins / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4642','EPSG','16158','EPSG','2820',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2997','ST71 Belep / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4643','EPSG','16158','EPSG','2821',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2998','NEA74 Noumea / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4644','EPSG','16158','EPSG','2823',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','2999','Grand Comoros / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','4646','EPSG','16138','EPSG','2807',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3000','Segara / NEIEZ',NULL,NULL,'EPSG','4499','EPSG','4613','EPSG','19905','EPSG','1360',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3001','Batavia / NEIEZ',NULL,NULL,'EPSG','4499','EPSG','4211','EPSG','19905','EPSG','1285',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3002','Makassar / NEIEZ',NULL,NULL,'EPSG','4499','EPSG','4257','EPSG','19905','EPSG','1316',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3003','Monte Mario / Italy zone 1',NULL,NULL,'EPSG','4499','EPSG','4265','EPSG','18121','EPSG','1718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3004','Monte Mario / Italy zone 2',NULL,NULL,'EPSG','4499','EPSG','4265','EPSG','18122','EPSG','1719',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3005','NAD83 / BC Albers',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','19984','EPSG','2832',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3006','SWEREF99 TM',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17333','EPSG','1225',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3007','SWEREF99 12 00',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17321','EPSG','2833',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3008','SWEREF99 13 30',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17322','EPSG','2834',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3009','SWEREF99 15 00',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17323','EPSG','2835',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3010','SWEREF99 16 30',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17324','EPSG','2836',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3011','SWEREF99 18 00',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17325','EPSG','2837',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3012','SWEREF99 14 15',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17326','EPSG','2838',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3013','SWEREF99 15 45',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17327','EPSG','2839',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3014','SWEREF99 17 15',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17328','EPSG','2840',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3015','SWEREF99 18 45',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17329','EPSG','2841',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3016','SWEREF99 20 15',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17330','EPSG','2842',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3017','SWEREF99 21 45',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17331','EPSG','2843',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3018','SWEREF99 23 15',NULL,NULL,'EPSG','4500','EPSG','4619','EPSG','17332','EPSG','2844',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3019','RT90 7.5 gon V',NULL,NULL,'EPSG','4530','EPSG','4124','EPSG','17334','EPSG','2845',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3020','RT90 5 gon V',NULL,NULL,'EPSG','4530','EPSG','4124','EPSG','17335','EPSG','2846',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3021','RT90 2.5 gon V',NULL,NULL,'EPSG','4530','EPSG','4124','EPSG','19929','EPSG','2847',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3022','RT90 0 gon',NULL,NULL,'EPSG','4530','EPSG','4124','EPSG','17336','EPSG','2848',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3023','RT90 2.5 gon O',NULL,NULL,'EPSG','4530','EPSG','4124','EPSG','17337','EPSG','2849',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3024','RT90 5 gon O',NULL,NULL,'EPSG','4530','EPSG','4124','EPSG','17338','EPSG','2850',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3025','RT38 7.5 gon V',NULL,NULL,'EPSG','4530','EPSG','4308','EPSG','17334','EPSG','2845',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3026','RT38 5 gon V',NULL,NULL,'EPSG','4530','EPSG','4308','EPSG','17335','EPSG','2846',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3027','RT38 2.5 gon V',NULL,NULL,'EPSG','4530','EPSG','4308','EPSG','19929','EPSG','2847',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3028','RT38 0 gon',NULL,NULL,'EPSG','4530','EPSG','4308','EPSG','17336','EPSG','2848',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3029','RT38 2.5 gon O',NULL,NULL,'EPSG','4530','EPSG','4308','EPSG','17337','EPSG','2849',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3030','RT38 5 gon O',NULL,NULL,'EPSG','4530','EPSG','4308','EPSG','17338','EPSG','2850',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3031','WGS 84 / Antarctic Polar Stereographic',NULL,NULL,'EPSG','4490','EPSG','4326','EPSG','19992','EPSG','1031',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3032','WGS 84 / Australian Antarctic Polar Stereographic',NULL,NULL,'EPSG','4489','EPSG','4326','EPSG','19993','EPSG','1278',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3033','WGS 84 / Australian Antarctic Lambert',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','19994','EPSG','2880',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3034','ETRS89-extended / LCC Europe',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','19985','EPSG','2881',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3035','ETRS89-extended / LAEA Europe',NULL,NULL,'EPSG','4532','EPSG','4258','EPSG','19986','EPSG','2881',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3036','Moznet / UTM zone 36S',NULL,NULL,'EPSG','4400','EPSG','4130','EPSG','16136','EPSG','3929',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3037','Moznet / UTM zone 37S',NULL,NULL,'EPSG','4400','EPSG','4130','EPSG','16137','EPSG','3931',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3038','ETRS89 / TM26',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16026','EPSG','2855',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3039','ETRS89 / TM27',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16027','EPSG','2856',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3040','ETRS89 / UTM zone 28N (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16028','EPSG','2122',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3041','ETRS89 / UTM zone 29N (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16029','EPSG','2123',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3042','ETRS89 / UTM zone 30N (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16030','EPSG','2124',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3043','ETRS89 / UTM zone 31N (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16031','EPSG','2125',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3044','ETRS89 / UTM zone 32N (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16032','EPSG','2126',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3045','ETRS89 / UTM zone 33N (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16033','EPSG','2127',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3046','ETRS89 / UTM zone 34N (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16034','EPSG','2128',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3047','ETRS89 / UTM zone 35N (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16035','EPSG','2129',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3048','ETRS89 / UTM zone 36N (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16036','EPSG','2130',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3049','ETRS89 / UTM zone 37N (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16037','EPSG','2131',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3050','ETRS89 / TM38',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16038','EPSG','2867',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3051','ETRS89 / TM39',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16039','EPSG','2868',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3052','Reykjavik 1900 / Lambert 1900',NULL,NULL,'EPSG','4491','EPSG','4657','EPSG','19987','EPSG','3262',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3053','Hjorsey 1955 / Lambert 1955',NULL,NULL,'EPSG','4491','EPSG','4658','EPSG','19988','EPSG','3262',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3054','Hjorsey 1955 / UTM zone 26N',NULL,NULL,'EPSG','4400','EPSG','4658','EPSG','16026','EPSG','2851',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3055','Hjorsey 1955 / UTM zone 27N',NULL,NULL,'EPSG','4400','EPSG','4658','EPSG','16027','EPSG','2852',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3056','Hjorsey 1955 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4658','EPSG','16028','EPSG','2853',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3057','ISN93 / Lambert 1993',NULL,NULL,'EPSG','4499','EPSG','4659','EPSG','19989','EPSG','1120',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3058','Helle 1954 / Jan Mayen Grid',NULL,NULL,'EPSG','4531','EPSG','4660','EPSG','19991','EPSG','2869',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3059','LKS92 / Latvia TM',NULL,NULL,'EPSG','4530','EPSG','4661','EPSG','19990','EPSG','1139',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3060','IGN72 Grande Terre / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4662','EPSG','16158','EPSG','2822',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3061','Porto Santo 1995 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4663','EPSG','16028','EPSG','1314',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3062','Azores Oriental 1995 / UTM zone 26N',NULL,NULL,'EPSG','4400','EPSG','4664','EPSG','16026','EPSG','1345',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3063','Azores Central 1995 / UTM zone 26N',NULL,NULL,'EPSG','4400','EPSG','4665','EPSG','16026','EPSG','1301',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3064','IGM95 / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4670','EPSG','16032','EPSG','1718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3065','IGM95 / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4670','EPSG','16033','EPSG','1719',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3066','ED50 / Jordan TM',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','19995','EPSG','1130',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3067','ETRS89 / TM35FIN(E,N)',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16065','EPSG','1095',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3068','DHDN / Soldner Berlin',NULL,NULL,'EPSG','4531','EPSG','4314','EPSG','19996','EPSG','2898',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3069','NAD27 / Wisconsin Transverse Mercator',NULL,NULL,'EPSG','4499','EPSG','4267','EPSG','14811','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3070','NAD83 / Wisconsin Transverse Mercator',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14841','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3071','NAD83(HARN) / Wisconsin Transverse Mercator',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14841','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3072','NAD83 / Maine CS2000 East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11851','EPSG','2960',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3073','NAD83 / Maine CS2000 Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11852','EPSG','2959',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3074','NAD83 / Maine CS2000 West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11853','EPSG','2958',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3075','NAD83(HARN) / Maine CS2000 East',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11851','EPSG','2960',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3076','NAD83(HARN) / Maine CS2000 Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11852','EPSG','2959',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3077','NAD83(HARN) / Maine CS2000 West',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11853','EPSG','2958',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3078','NAD83 / Michigan Oblique Mercator',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12150','EPSG','1391',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3079','NAD83(HARN) / Michigan Oblique Mercator',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12150','EPSG','1391',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3080','NAD27 / Shackleford',NULL,NULL,'EPSG','4495','EPSG','4267','EPSG','14252','EPSG','1412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3081','NAD83 / Texas State Mapping System',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14251','EPSG','1412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3082','NAD83 / Texas Centric Lambert Conformal',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14253','EPSG','1412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3083','NAD83 / Texas Centric Albers Equal Area',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14254','EPSG','1412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3084','NAD83(HARN) / Texas Centric Lambert Conformal',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14253','EPSG','1412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3085','NAD83(HARN) / Texas Centric Albers Equal Area',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14254','EPSG','1412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3086','NAD83 / Florida GDL Albers',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10934','EPSG','1379',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3087','NAD83(HARN) / Florida GDL Albers',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10934','EPSG','1379',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3088','NAD83 / Kentucky Single Zone',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11630','EPSG','1386',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3089','NAD83 / Kentucky Single Zone (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15375','EPSG','1386',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3090','NAD83(HARN) / Kentucky Single Zone',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11630','EPSG','1386',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3091','NAD83(HARN) / Kentucky Single Zone (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15375','EPSG','1386',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3092','Tokyo / UTM zone 51N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16051','EPSG','2951',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3093','Tokyo / UTM zone 52N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16052','EPSG','2952',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3094','Tokyo / UTM zone 53N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16053','EPSG','2953',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3095','Tokyo / UTM zone 54N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16054','EPSG','2954',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3096','Tokyo / UTM zone 55N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16055','EPSG','2955',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3097','JGD2000 / UTM zone 51N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16051','EPSG','3959',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3098','JGD2000 / UTM zone 52N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16052','EPSG','3960',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3099','JGD2000 / UTM zone 53N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16053','EPSG','3961',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3100','JGD2000 / UTM zone 54N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16054','EPSG','3962',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3101','JGD2000 / UTM zone 55N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16055','EPSG','3963',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3102','American Samoa 1962 / American Samoa Lambert',NULL,NULL,'EPSG','4497','EPSG','4169','EPSG','15376','EPSG','3109',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3103','Mauritania 1999 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4681','EPSG','16028','EPSG','2971',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3104','Mauritania 1999 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4681','EPSG','16029','EPSG','2970',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3105','Mauritania 1999 / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4681','EPSG','16030','EPSG','2969',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3106','Gulshan 303 / Bangladesh Transverse Mercator',NULL,NULL,'EPSG','4400','EPSG','4682','EPSG','16490','EPSG','1041',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3107','GDA94 / SA Lambert',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17359','EPSG','2986',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3108','ETRS89 / Guernsey Grid',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','19998','EPSG','2989',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3109','ETRS89 / Jersey Transverse Mercator',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','19999','EPSG','2988',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3110','AGD66 / Vicgrid66',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17360','EPSG','2285',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3111','GDA94 / Vicgrid',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17361','EPSG','2285',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3112','GDA94 / Geoscience Australia Lambert',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17362','EPSG','2575',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3113','GDA94 / BCSG02',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17363','EPSG','2990',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3114','MAGNA-SIRGAS / Colombia Far West zone',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','18055','EPSG','3091',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3115','MAGNA-SIRGAS / Colombia West zone',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','18056','EPSG','3090',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3116','MAGNA-SIRGAS / Colombia Bogota zone',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','18057','EPSG','1599',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3117','MAGNA-SIRGAS / Colombia East Central zone',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','18058','EPSG','1600',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3118','MAGNA-SIRGAS / Colombia East zone',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','18059','EPSG','1601',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3119','Douala 1948 / AEF west',NULL,NULL,'EPSG','4400','EPSG','4192','EPSG','18415','EPSG','2555',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3120','Pulkovo 1942(58) / Poland zone I',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','18280','EPSG','1515',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3121','PRS92 / Philippines zone 1',NULL,NULL,'EPSG','4499','EPSG','4683','EPSG','18171','EPSG','1698',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3122','PRS92 / Philippines zone 2',NULL,NULL,'EPSG','4499','EPSG','4683','EPSG','18172','EPSG','1699',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3123','PRS92 / Philippines zone 3',NULL,NULL,'EPSG','4499','EPSG','4683','EPSG','18173','EPSG','1700',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3124','PRS92 / Philippines zone 4',NULL,NULL,'EPSG','4499','EPSG','4683','EPSG','18174','EPSG','1701',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3125','PRS92 / Philippines zone 5',NULL,NULL,'EPSG','4499','EPSG','4683','EPSG','18175','EPSG','1702',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3126','ETRS89 / ETRS-GK19FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18183','EPSG','3092',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3127','ETRS89 / ETRS-GK20FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18184','EPSG','3093',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3128','ETRS89 / ETRS-GK21FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18185','EPSG','3094',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3129','ETRS89 / ETRS-GK22FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18186','EPSG','3095',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3130','ETRS89 / ETRS-GK23FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18187','EPSG','3096',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3131','ETRS89 / ETRS-GK24FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18188','EPSG','3097',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3132','ETRS89 / ETRS-GK25FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18189','EPSG','3098',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3133','ETRS89 / ETRS-GK26FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18190','EPSG','3099',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3134','ETRS89 / ETRS-GK27FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18195','EPSG','3100',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3135','ETRS89 / ETRS-GK28FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18196','EPSG','3101',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3136','ETRS89 / ETRS-GK29FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18197','EPSG','3102',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3137','ETRS89 / ETRS-GK30FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18198','EPSG','3103',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3138','ETRS89 / ETRS-GK31FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','18199','EPSG','3104',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3139','Vanua Levu 1915 / Vanua Levu Grid',NULL,NULL,'EPSG','4533','EPSG','4748','EPSG','19878','EPSG','3401',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3140','Viti Levu 1912 / Viti Levu Grid',NULL,NULL,'EPSG','4533','EPSG','4752','EPSG','19879','EPSG','3195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3141','Fiji 1956 / UTM zone 60S',NULL,NULL,'EPSG','4400','EPSG','4721','EPSG','16160','EPSG','3399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3142','Fiji 1956 / UTM zone 1S',NULL,NULL,'EPSG','4400','EPSG','4721','EPSG','16101','EPSG','3400',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3143','Fiji 1986 / Fiji Map Grid',NULL,NULL,'EPSG','4400','EPSG','4720','EPSG','19880','EPSG','1094',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3144','FD54 / Faroe Lambert',NULL,NULL,'EPSG','1031','EPSG','4741','EPSG','19870','EPSG','3248',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3145','ETRS89 / Faroe Lambert',NULL,NULL,'EPSG','1031','EPSG','4258','EPSG','19870','EPSG','3248',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3146','Pulkovo 1942 / 3-degree Gauss-Kruger zone 6',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16266','EPSG','3403',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3147','Pulkovo 1942 / 3-degree Gauss-Kruger CM 18E',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16366','EPSG','3403',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3148','Indian 1960 / UTM zone 48N',NULL,NULL,'EPSG','4400','EPSG','4131','EPSG','16048','EPSG','1542',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3149','Indian 1960 / UTM zone 49N',NULL,NULL,'EPSG','4400','EPSG','4131','EPSG','16049','EPSG','1453',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3150','Pulkovo 1995 / 3-degree Gauss-Kruger zone 6',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16266','EPSG','3403',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3151','Pulkovo 1995 / 3-degree Gauss-Kruger CM 18E',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16366','EPSG','3403',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3152','ST74',NULL,NULL,'EPSG','4531','EPSG','4619','EPSG','19876','EPSG','3408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3153','NAD83(CSRS) / BC Albers',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','19984','EPSG','2832',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3154','NAD83(CSRS) / UTM zone 7N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16007','EPSG','3409',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3155','NAD83(CSRS) / UTM zone 8N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16008','EPSG','3410',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3156','NAD83(CSRS) / UTM zone 9N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16009','EPSG','3411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3157','NAD83(CSRS) / UTM zone 10N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16010','EPSG','3412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3158','NAD83(CSRS) / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16014','EPSG','3413',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3159','NAD83(CSRS) / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16015','EPSG','3414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3160','NAD83(CSRS) / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16016','EPSG','3415',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3161','NAD83 / Ontario MNR Lambert',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','19875','EPSG','1367',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3162','NAD83(CSRS) / Ontario MNR Lambert',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','19875','EPSG','1367',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3163','RGNC91-93 / Lambert New Caledonia',NULL,NULL,'EPSG','4499','EPSG','4749','EPSG','19981','EPSG','3430',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3164','ST87 Ouvea / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4750','EPSG','16158','EPSG','2813',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3165','NEA74 Noumea / Noumea Lambert',NULL,NULL,'EPSG','4499','EPSG','4644','EPSG','19873','EPSG','2823',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3166','NEA74 Noumea / Noumea Lambert 2',NULL,NULL,'EPSG','4499','EPSG','4644','EPSG','19874','EPSG','2823',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3167','Kertau (RSO) / RSO Malaya (ch)',NULL,NULL,'EPSG','4410','EPSG','4751','EPSG','19871','EPSG','1690',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3168','Kertau (RSO) / RSO Malaya (m)',NULL,NULL,'EPSG','4400','EPSG','4751','EPSG','19872','EPSG','1690',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3169','RGNC91-93 / UTM zone 57S',NULL,NULL,'EPSG','4400','EPSG','4749','EPSG','16157','EPSG','3431',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3170','RGNC91-93 / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4749','EPSG','16158','EPSG','3432',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3171','RGNC91-93 / UTM zone 59S',NULL,NULL,'EPSG','4400','EPSG','4749','EPSG','16159','EPSG','3433',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3172','IGN53 Mare / UTM zone 59S',NULL,NULL,'EPSG','4400','EPSG','4641','EPSG','16159','EPSG','3435',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3173','fk89 / Faroe Lambert FK89',NULL,NULL,'EPSG','1031','EPSG','4753','EPSG','19877','EPSG','3248',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3174','NAD83 / Great Lakes Albers',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15397','EPSG','3467',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3175','NAD83 / Great Lakes and St Lawrence Albers',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15398','EPSG','3468',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3176','Indian 1960 / TM 106 NE',NULL,NULL,'EPSG','4400','EPSG','4131','EPSG','16506','EPSG','1495',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3177','LGD2006 / Libya TM',NULL,NULL,'EPSG','4499','EPSG','4754','EPSG','18319','EPSG','1143',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3178','GR96 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16018','EPSG','3449',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3179','GR96 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16019','EPSG','3450',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3180','GR96 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16020','EPSG','3451',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3181','GR96 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16021','EPSG','3452',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3182','GR96 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16022','EPSG','3453',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3183','GR96 / UTM zone 23N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16023','EPSG','3454',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3184','GR96 / UTM zone 24N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16024','EPSG','3455',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3185','GR96 / UTM zone 25N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16025','EPSG','3456',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3186','GR96 / UTM zone 26N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16026','EPSG','3457',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3187','GR96 / UTM zone 27N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16027','EPSG','3458',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3188','GR96 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16028','EPSG','3459',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3189','GR96 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','16029','EPSG','3460',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3190','LGD2006 / Libya TM zone 5',NULL,NULL,'EPSG','4499','EPSG','4754','EPSG','18310','EPSG','1470',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3191','LGD2006 / Libya TM zone 6',NULL,NULL,'EPSG','4499','EPSG','4754','EPSG','18311','EPSG','1471',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3192','LGD2006 / Libya TM zone 7',NULL,NULL,'EPSG','4499','EPSG','4754','EPSG','18312','EPSG','1472',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3193','LGD2006 / Libya TM zone 8',NULL,NULL,'EPSG','4499','EPSG','4754','EPSG','18313','EPSG','1473',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3194','LGD2006 / Libya TM zone 9',NULL,NULL,'EPSG','4499','EPSG','4754','EPSG','18314','EPSG','1474',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3195','LGD2006 / Libya TM zone 10',NULL,NULL,'EPSG','4499','EPSG','4754','EPSG','18315','EPSG','1475',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3196','LGD2006 / Libya TM zone 11',NULL,NULL,'EPSG','4499','EPSG','4754','EPSG','18316','EPSG','1476',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3197','LGD2006 / Libya TM zone 12',NULL,NULL,'EPSG','4499','EPSG','4754','EPSG','18317','EPSG','1477',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3198','LGD2006 / Libya TM zone 13',NULL,NULL,'EPSG','4499','EPSG','4754','EPSG','18318','EPSG','1478',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3199','LGD2006 / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4754','EPSG','16032','EPSG','3949',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3200','FD58 / Iraq zone',NULL,NULL,'EPSG','4400','EPSG','4132','EPSG','19906','EPSG','1300',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3201','LGD2006 / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4754','EPSG','16033','EPSG','3950',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3202','LGD2006 / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','4754','EPSG','16034','EPSG','3951',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3203','LGD2006 / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','4754','EPSG','16035','EPSG','3941',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3204','WGS 84 / SCAR IMW SP19-20',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17204','EPSG','2991',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3205','WGS 84 / SCAR IMW SP21-22',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17205','EPSG','2992',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3206','WGS 84 / SCAR IMW SP23-24',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17206','EPSG','2993',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3207','WGS 84 / SCAR IMW SQ01-02',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17207','EPSG','2994',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3208','WGS 84 / SCAR IMW SQ19-20',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17208','EPSG','2995',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3209','WGS 84 / SCAR IMW SQ21-22',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17209','EPSG','2996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3210','WGS 84 / SCAR IMW SQ37-38',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17210','EPSG','2997',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3211','WGS 84 / SCAR IMW SQ39-40',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17211','EPSG','2998',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3212','WGS 84 / SCAR IMW SQ41-42',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17212','EPSG','2999',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3213','WGS 84 / SCAR IMW SQ43-44',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17213','EPSG','3000',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3214','WGS 84 / SCAR IMW SQ45-46',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17214','EPSG','3001',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3215','WGS 84 / SCAR IMW SQ47-48',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17215','EPSG','3002',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3216','WGS 84 / SCAR IMW SQ49-50',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17216','EPSG','3003',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3217','WGS 84 / SCAR IMW SQ51-52',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17217','EPSG','3004',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3218','WGS 84 / SCAR IMW SQ53-54',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17218','EPSG','3005',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3219','WGS 84 / SCAR IMW SQ55-56',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17219','EPSG','3006',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3220','WGS 84 / SCAR IMW SQ57-58',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17220','EPSG','3007',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3221','WGS 84 / SCAR IMW SR13-14',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17221','EPSG','3008',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3222','WGS 84 / SCAR IMW SR15-16',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17222','EPSG','3009',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3223','WGS 84 / SCAR IMW SR17-18',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17223','EPSG','3010',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3224','WGS 84 / SCAR IMW SR19-20',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17224','EPSG','3011',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3225','WGS 84 / SCAR IMW SR27-28',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17225','EPSG','3012',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3226','WGS 84 / SCAR IMW SR29-30',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17226','EPSG','3013',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3227','WGS 84 / SCAR IMW SR31-32',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17227','EPSG','3014',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3228','WGS 84 / SCAR IMW SR33-34',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17228','EPSG','3015',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3229','WGS 84 / SCAR IMW SR35-36',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17229','EPSG','3016',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3230','WGS 84 / SCAR IMW SR37-38',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17230','EPSG','3017',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3231','WGS 84 / SCAR IMW SR39-40',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17231','EPSG','3018',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3232','WGS 84 / SCAR IMW SR41-42',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17232','EPSG','3019',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3233','WGS 84 / SCAR IMW SR43-44',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17233','EPSG','3020',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3234','WGS 84 / SCAR IMW SR45-46',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17234','EPSG','3021',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3235','WGS 84 / SCAR IMW SR47-48',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17235','EPSG','3022',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3236','WGS 84 / SCAR IMW SR49-50',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17236','EPSG','3023',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3237','WGS 84 / SCAR IMW SR51-52',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17237','EPSG','3024',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3238','WGS 84 / SCAR IMW SR53-54',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17238','EPSG','3025',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3239','WGS 84 / SCAR IMW SR55-56',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17239','EPSG','3026',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3240','WGS 84 / SCAR IMW SR57-58',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17240','EPSG','3027',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3241','WGS 84 / SCAR IMW SR59-60',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17241','EPSG','3028',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3242','WGS 84 / SCAR IMW SS04-06',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17242','EPSG','3029',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3243','WGS 84 / SCAR IMW SS07-09',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17243','EPSG','3030',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3244','WGS 84 / SCAR IMW SS10-12',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17244','EPSG','3031',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3245','WGS 84 / SCAR IMW SS13-15',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17245','EPSG','3032',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3246','WGS 84 / SCAR IMW SS16-18',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17246','EPSG','3033',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3247','WGS 84 / SCAR IMW SS19-21',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17247','EPSG','3034',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3248','WGS 84 / SCAR IMW SS25-27',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17248','EPSG','3035',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3249','WGS 84 / SCAR IMW SS28-30',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17249','EPSG','3036',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3250','WGS 84 / SCAR IMW SS31-33',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17250','EPSG','3037',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3251','WGS 84 / SCAR IMW SS34-36',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17251','EPSG','3038',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3252','WGS 84 / SCAR IMW SS37-39',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17252','EPSG','3039',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3253','WGS 84 / SCAR IMW SS40-42',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17253','EPSG','3040',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3254','WGS 84 / SCAR IMW SS43-45',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17254','EPSG','3041',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3255','WGS 84 / SCAR IMW SS46-48',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17255','EPSG','3042',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3256','WGS 84 / SCAR IMW SS49-51',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17256','EPSG','3043',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3257','WGS 84 / SCAR IMW SS52-54',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17257','EPSG','3044',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3258','WGS 84 / SCAR IMW SS55-57',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17258','EPSG','3045',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3259','WGS 84 / SCAR IMW SS58-60',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17259','EPSG','3046',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3260','WGS 84 / SCAR IMW ST01-04',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17260','EPSG','3047',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3261','WGS 84 / SCAR IMW ST05-08',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17261','EPSG','3048',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3262','WGS 84 / SCAR IMW ST09-12',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17262','EPSG','3049',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3263','WGS 84 / SCAR IMW ST13-16',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17263','EPSG','3050',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3264','WGS 84 / SCAR IMW ST17-20',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17264','EPSG','3051',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3265','WGS 84 / SCAR IMW ST21-24',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17265','EPSG','3052',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3266','WGS 84 / SCAR IMW ST25-28',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17266','EPSG','3053',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3267','WGS 84 / SCAR IMW ST29-32',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17267','EPSG','3054',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3268','WGS 84 / SCAR IMW ST33-36',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17268','EPSG','3055',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3269','WGS 84 / SCAR IMW ST37-40',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17269','EPSG','3056',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3270','WGS 84 / SCAR IMW ST41-44',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17270','EPSG','3057',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3271','WGS 84 / SCAR IMW ST45-48',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17271','EPSG','3058',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3272','WGS 84 / SCAR IMW ST49-52',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17272','EPSG','3059',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3273','WGS 84 / SCAR IMW ST53-56',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17273','EPSG','3060',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3274','WGS 84 / SCAR IMW ST57-60',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17274','EPSG','3061',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3275','WGS 84 / SCAR IMW SU01-05',NULL,NULL,'EPSG','4471','EPSG','4326','EPSG','17275','EPSG','3062',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3276','WGS 84 / SCAR IMW SU06-10',NULL,NULL,'EPSG','4473','EPSG','4326','EPSG','17276','EPSG','3063',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3277','WGS 84 / SCAR IMW SU11-15',NULL,NULL,'EPSG','4474','EPSG','4326','EPSG','17277','EPSG','3064',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3278','WGS 84 / SCAR IMW SU16-20',NULL,NULL,'EPSG','4476','EPSG','4326','EPSG','17278','EPSG','3065',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3279','WGS 84 / SCAR IMW SU21-25',NULL,NULL,'EPSG','4477','EPSG','4326','EPSG','17279','EPSG','3066',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3280','WGS 84 / SCAR IMW SU26-30',NULL,NULL,'EPSG','4479','EPSG','4326','EPSG','17280','EPSG','3067',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3281','WGS 84 / SCAR IMW SU31-35',NULL,NULL,'EPSG','4480','EPSG','4326','EPSG','17281','EPSG','3068',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3282','WGS 84 / SCAR IMW SU36-40',NULL,NULL,'EPSG','4482','EPSG','4326','EPSG','17282','EPSG','3069',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3283','WGS 84 / SCAR IMW SU41-45',NULL,NULL,'EPSG','4483','EPSG','4326','EPSG','17283','EPSG','3070',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3284','WGS 84 / SCAR IMW SU46-50',NULL,NULL,'EPSG','4485','EPSG','4326','EPSG','17284','EPSG','3071',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3285','WGS 84 / SCAR IMW SU51-55',NULL,NULL,'EPSG','4486','EPSG','4326','EPSG','17285','EPSG','3072',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3286','WGS 84 / SCAR IMW SU56-60',NULL,NULL,'EPSG','4488','EPSG','4326','EPSG','17286','EPSG','3073',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3287','WGS 84 / SCAR IMW SV01-10',NULL,NULL,'EPSG','4472','EPSG','4326','EPSG','17287','EPSG','3074',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3288','WGS 84 / SCAR IMW SV11-20',NULL,NULL,'EPSG','4475','EPSG','4326','EPSG','17288','EPSG','3075',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3289','WGS 84 / SCAR IMW SV21-30',NULL,NULL,'EPSG','4478','EPSG','4326','EPSG','17289','EPSG','3076',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3290','WGS 84 / SCAR IMW SV31-40',NULL,NULL,'EPSG','4481','EPSG','4326','EPSG','17290','EPSG','3077',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3291','WGS 84 / SCAR IMW SV41-50',NULL,NULL,'EPSG','4484','EPSG','4326','EPSG','17291','EPSG','3078',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3292','WGS 84 / SCAR IMW SV51-60',NULL,NULL,'EPSG','4487','EPSG','4326','EPSG','17292','EPSG','3079',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3293','WGS 84 / SCAR IMW SW01-60',NULL,NULL,'EPSG','4490','EPSG','4326','EPSG','17293','EPSG','3080',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3294','WGS 84 / USGS Transantarctic Mountains',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','17294','EPSG','3081',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3295','Guam 1963 / Yap Islands',NULL,NULL,'EPSG','4499','EPSG','4675','EPSG','15399','EPSG','3108',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3296','RGPF / UTM zone 5S',NULL,NULL,'EPSG','4400','EPSG','4687','EPSG','16105','EPSG','3120',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3297','RGPF / UTM zone 6S',NULL,NULL,'EPSG','4400','EPSG','4687','EPSG','16106','EPSG','3121',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3298','RGPF / UTM zone 7S',NULL,NULL,'EPSG','4400','EPSG','4687','EPSG','16107','EPSG','3122',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3299','RGPF / UTM zone 8S',NULL,NULL,'EPSG','4400','EPSG','4687','EPSG','16108','EPSG','3123',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3300','Estonian Coordinate System of 1992',NULL,NULL,'EPSG','4530','EPSG','4133','EPSG','19938','EPSG','3246',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3301','Estonian Coordinate System of 1997',NULL,NULL,'EPSG','4530','EPSG','4180','EPSG','19938','EPSG','1090',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3302','IGN63 Hiva Oa / UTM zone 7S',NULL,NULL,'EPSG','4400','EPSG','4689','EPSG','16107','EPSG','3130',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3303','Fatu Iva 72 / UTM zone 7S',NULL,NULL,'EPSG','4400','EPSG','4688','EPSG','16107','EPSG','3133',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3304','Tahiti 79 / UTM zone 6S',NULL,NULL,'EPSG','4400','EPSG','4690','EPSG','16106','EPSG','3124',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3305','Moorea 87 / UTM zone 6S',NULL,NULL,'EPSG','4400','EPSG','4691','EPSG','16106','EPSG','3125',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3306','Maupiti 83 / UTM zone 5S',NULL,NULL,'EPSG','4400','EPSG','4692','EPSG','16105','EPSG','3126',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3307','Nakhl-e Ghanem / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4693','EPSG','16039','EPSG','2362',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3308','GDA94 / NSW Lambert',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17364','EPSG','3139',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3309','NAD27 / California Albers',NULL,NULL,'EPSG','4499','EPSG','4267','EPSG','10420','EPSG','1375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3310','NAD83 / California Albers',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10420','EPSG','1375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3311','NAD83(HARN) / California Albers',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','10420','EPSG','1375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3312','CSG67 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4623','EPSG','16021','EPSG','3765',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3313','RGFG95 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4624','EPSG','16021','EPSG','3145',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3314','Katanga 1955 / Katanga Lambert',NULL,NULL,'EPSG','4400','EPSG','4695','EPSG','17401','EPSG','3147',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3315','Katanga 1955 / Katanga TM',NULL,NULL,'EPSG','4400','EPSG','4695','EPSG','17402','EPSG','3147',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3316','Kasai 1953 / Congo TM zone 22',NULL,NULL,'EPSG','4400','EPSG','4696','EPSG','17422','EPSG','3163',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3317','Kasai 1953 / Congo TM zone 24',NULL,NULL,'EPSG','4400','EPSG','4696','EPSG','17424','EPSG','3164',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3318','IGC 1962 / Congo TM zone 12',NULL,NULL,'EPSG','4400','EPSG','4697','EPSG','17412','EPSG','3150',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3319','IGC 1962 / Congo TM zone 14',NULL,NULL,'EPSG','4400','EPSG','4697','EPSG','17414','EPSG','3151',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3320','IGC 1962 / Congo TM zone 16',NULL,NULL,'EPSG','4400','EPSG','4697','EPSG','17416','EPSG','3160',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3321','IGC 1962 / Congo TM zone 18',NULL,NULL,'EPSG','4400','EPSG','4697','EPSG','17418','EPSG','3161',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3322','IGC 1962 / Congo TM zone 20',NULL,NULL,'EPSG','4400','EPSG','4697','EPSG','17420','EPSG','3162',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3323','IGC 1962 / Congo TM zone 22',NULL,NULL,'EPSG','4400','EPSG','4697','EPSG','17422','EPSG','3163',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3324','IGC 1962 / Congo TM zone 24',NULL,NULL,'EPSG','4400','EPSG','4697','EPSG','17424','EPSG','3164',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3325','IGC 1962 / Congo TM zone 26',NULL,NULL,'EPSG','4400','EPSG','4697','EPSG','17426','EPSG','3165',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3326','IGC 1962 / Congo TM zone 28',NULL,NULL,'EPSG','4400','EPSG','4697','EPSG','17428','EPSG','3166',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3327','IGC 1962 / Congo TM zone 30',NULL,NULL,'EPSG','4400','EPSG','4697','EPSG','17430','EPSG','3167',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3328','Pulkovo 1942(58) / GUGiK-80',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','18286','EPSG','3293',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3329','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 5',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16265','EPSG','3580',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3330','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 6',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16266','EPSG','3581',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3331','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 7',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16267','EPSG','3583',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3332','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 8',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16268','EPSG','3585',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3333','Pulkovo 1942(58) / Gauss-Kruger zone 3',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16203','EPSG','1792',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3334','Pulkovo 1942(58) / Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16204','EPSG','3577',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3335','Pulkovo 1942(58) / Gauss-Kruger zone 5',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16205','EPSG','3579',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3336','IGN 1962 Kerguelen / UTM zone 42S',NULL,NULL,'EPSG','4400','EPSG','4698','EPSG','16142','EPSG','2816',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3337','Le Pouce 1934 / Mauritius Grid',NULL,NULL,'EPSG','4400','EPSG','4699','EPSG','19899','EPSG','3209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3338','NAD83 / Alaska Albers',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15021','EPSG','1330',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3339','IGCB 1955 / Congo TM zone 12',NULL,NULL,'EPSG','4400','EPSG','4701','EPSG','17412','EPSG','3150',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3340','IGCB 1955 / Congo TM zone 14',NULL,NULL,'EPSG','4400','EPSG','4701','EPSG','17414','EPSG','3151',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3341','IGCB 1955 / Congo TM zone 16',NULL,NULL,'EPSG','4400','EPSG','4701','EPSG','17416','EPSG','4012',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3342','IGCB 1955 / UTM zone 33S',NULL,NULL,'EPSG','4400','EPSG','4701','EPSG','16133','EPSG','3171',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3343','Mauritania 1999 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4702','EPSG','16028','EPSG','3938',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3344','Mauritania 1999 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4702','EPSG','16029','EPSG','2970',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3345','Mauritania 1999 / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4702','EPSG','16030','EPSG','2969',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3346','LKS94 / Lithuania TM',NULL,NULL,'EPSG','4530','EPSG','4669','EPSG','19934','EPSG','1145',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3347','NAD83 / Statistics Canada Lambert',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','19897','EPSG','1061',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3348','NAD83(CSRS) / Statistics Canada Lambert',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','19897','EPSG','1061',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3349','WGS 84 / PDC Mercator',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','19898','EPSG','3172',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3350','Pulkovo 1942 / CS63 zone C0',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','18450','EPSG','3173',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3351','Pulkovo 1942 / CS63 zone C1',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','18451','EPSG','3174',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3352','Pulkovo 1942 / CS63 zone C2',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','18452','EPSG','3175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3353','Mhast (onshore) / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','4704','EPSG','16132','EPSG','3179',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3354','Mhast (offshore) / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','4705','EPSG','16132','EPSG','3180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3355','Egypt Gulf of Suez S-650 TL / Red Belt',NULL,NULL,'EPSG','4400','EPSG','4706','EPSG','18072','EPSG','2341',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3356','Grand Cayman 1959 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4723','EPSG','16017','EPSG','3185',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3357','Little Cayman 1961 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4726','EPSG','16017','EPSG','3186',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3358','NAD83(HARN) / North Carolina',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13230','EPSG','1402',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3359','NAD83(HARN) / North Carolina (ftUS)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15346','EPSG','1402',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3360','NAD83(HARN) / South Carolina',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13930','EPSG','1409',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3361','NAD83(HARN) / South Carolina (ft)',NULL,NULL,'EPSG','4495','EPSG','4152','EPSG','15355','EPSG','1409',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3362','NAD83(HARN) / Pennsylvania North',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13731','EPSG','2245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3363','NAD83(HARN) / Pennsylvania North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15353','EPSG','2245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3364','NAD83(HARN) / Pennsylvania South',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','13732','EPSG','2246',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3365','NAD83(HARN) / Pennsylvania South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15354','EPSG','2246',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3366','Hong Kong 1963 Grid System',NULL,NULL,'EPSG','4500','EPSG','4738','EPSG','19896','EPSG','1118',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3367','IGN Astro 1960 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4700','EPSG','16028','EPSG','2971',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3368','IGN Astro 1960 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4700','EPSG','16029','EPSG','2970',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3369','IGN Astro 1960 / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4700','EPSG','16030','EPSG','2969',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3370','NAD27 / UTM zone 59N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16059','EPSG','3372',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3371','NAD27 / UTM zone 60N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16060','EPSG','3373',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3372','NAD83 / UTM zone 59N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16059','EPSG','3372',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3373','NAD83 / UTM zone 60N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16060','EPSG','3373',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3374','FD54 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4741','EPSG','16029','EPSG','3248',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3375','GDM2000 / Peninsula RSO',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19895','EPSG','3955',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3376','GDM2000 / East Malaysia BRSO',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19894','EPSG','3977',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3377','GDM2000 / Johor Grid',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19893','EPSG','3376',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3378','GDM2000 / Sembilan and Melaka Grid',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19892','EPSG','3377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3379','GDM2000 / Pahang Grid',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19891','EPSG','3378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3380','GDM2000 / Selangor Grid',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19890','EPSG','3379',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3381','GDM2000 / Terengganu Grid',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19889','EPSG','3380',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3382','GDM2000 / Pinang Grid',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19888','EPSG','3381',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3383','GDM2000 / Kedah and Perlis Grid',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19887','EPSG','3382',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3384','GDM2000 / Perak Grid',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19886','EPSG','3383',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3385','GDM2000 / Kelantan Grid',NULL,NULL,'EPSG','4400','EPSG','4742','EPSG','19885','EPSG','3384',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3386','KKJ / Finland zone 0',NULL,NULL,'EPSG','4530','EPSG','4123','EPSG','18180','EPSG','3092',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3387','KKJ / Finland zone 5',NULL,NULL,'EPSG','4530','EPSG','4123','EPSG','18205','EPSG','3385',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3388','Pulkovo 1942 / Caspian Sea Mercator',NULL,NULL,'EPSG','4534','EPSG','4284','EPSG','19884','EPSG','1291',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3389','Pulkovo 1942 / 3-degree Gauss-Kruger zone 60',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16099','EPSG','2706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3390','Pulkovo 1995 / 3-degree Gauss-Kruger zone 60',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16099','EPSG','2706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3391','Karbala 1979 / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4743','EPSG','16037','EPSG','3387',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3392','Karbala 1979 / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4743','EPSG','16038','EPSG','3388',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3393','Karbala 1979 / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4743','EPSG','16039','EPSG','3389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3394','Nahrwan 1934 / Iraq zone',NULL,NULL,'EPSG','4400','EPSG','4744','EPSG','19906','EPSG','4238',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3395','WGS 84 / World Mercator',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','19883','EPSG','3391',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3396','PD/83 / 3-degree Gauss-Kruger zone 3',NULL,NULL,'EPSG','4530','EPSG','4746','EPSG','16263','EPSG','3392',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3397','PD/83 / 3-degree Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4746','EPSG','16264','EPSG','3393',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3398','RD/83 / 3-degree Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4745','EPSG','16264','EPSG','3395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3399','RD/83 / 3-degree Gauss-Kruger zone 5',NULL,NULL,'EPSG','4530','EPSG','4745','EPSG','16265','EPSG','3394',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3400','NAD83 / Alberta 10-TM (Forest)',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','19881','EPSG','2376',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3401','NAD83 / Alberta 10-TM (Resource)',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','19882','EPSG','2376',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3402','NAD83(CSRS) / Alberta 10-TM (Forest)',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','19881','EPSG','2376',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3403','NAD83(CSRS) / Alberta 10-TM (Resource)',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','19882','EPSG','2376',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3404','NAD83(HARN) / North Carolina (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15346','EPSG','1402',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3405','VN-2000 / UTM zone 48N',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','16048','EPSG','1452',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3406','VN-2000 / UTM zone 49N',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','16049','EPSG','1453',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3407','Hong Kong 1963 Grid System',NULL,NULL,'EPSG','4502','EPSG','4738','EPSG','19896','EPSG','1118',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3408','NSIDC EASE-Grid North',NULL,NULL,'EPSG','4469','EPSG','4053','EPSG','3897','EPSG','3475',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3409','NSIDC EASE-Grid South',NULL,NULL,'EPSG','4470','EPSG','4053','EPSG','3898','EPSG','3474',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3410','NSIDC EASE-Grid Global',NULL,NULL,'EPSG','4499','EPSG','4053','EPSG','19869','EPSG','3463',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3411','NSIDC Sea Ice Polar Stereographic North',NULL,NULL,'EPSG','4468','EPSG','4054','EPSG','19865','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3412','NSIDC Sea Ice Polar Stereographic South',NULL,NULL,'EPSG','4470','EPSG','4054','EPSG','19866','EPSG','1997',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3413','WGS 84 / NSIDC Sea Ice Polar Stereographic North',NULL,NULL,'EPSG','4468','EPSG','4326','EPSG','19865','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3414','SVY21 / Singapore TM',NULL,NULL,'EPSG','4500','EPSG','4757','EPSG','19864','EPSG','1210',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3415','WGS 72BE / South China Sea Lambert',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','19863','EPSG','3470',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3416','ETRS89 / Austria Lambert',NULL,NULL,'EPSG','4530','EPSG','4258','EPSG','19947','EPSG','1037',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3417','NAD83 / Iowa North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15377','EPSG','2198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3418','NAD83 / Iowa South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15378','EPSG','2199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3419','NAD83 / Kansas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15379','EPSG','2200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3420','NAD83 / Kansas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15380','EPSG','2201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3421','NAD83 / Nevada East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15381','EPSG','2224',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3422','NAD83 / Nevada Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15382','EPSG','2223',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3423','NAD83 / Nevada West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15383','EPSG','2225',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3424','NAD83 / New Jersey (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15384','EPSG','1399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3425','NAD83(HARN) / Iowa North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15377','EPSG','2198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3426','NAD83(HARN) / Iowa South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15378','EPSG','2199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3427','NAD83(HARN) / Kansas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15379','EPSG','2200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3428','NAD83(HARN) / Kansas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15380','EPSG','2201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3429','NAD83(HARN) / Nevada East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15381','EPSG','2224',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3430','NAD83(HARN) / Nevada Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15382','EPSG','2223',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3431','NAD83(HARN) / Nevada West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15383','EPSG','2225',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3432','NAD83(HARN) / New Jersey (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15384','EPSG','1399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3433','NAD83 / Arkansas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15385','EPSG','2169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3434','NAD83 / Arkansas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15386','EPSG','2170',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3435','NAD83 / Illinois East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15387','EPSG','2194',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3436','NAD83 / Illinois West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15388','EPSG','2195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3437','NAD83 / New Hampshire (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15389','EPSG','1398',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3438','NAD83 / Rhode Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15390','EPSG','1408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3439','PSD93 / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4134','EPSG','16039','EPSG','1544',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3440','PSD93 / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','4134','EPSG','16040','EPSG','1545',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3441','NAD83(HARN) / Arkansas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15385','EPSG','2169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3442','NAD83(HARN) / Arkansas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15386','EPSG','2170',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3443','NAD83(HARN) / Illinois East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15387','EPSG','2194',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3444','NAD83(HARN) / Illinois West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15388','EPSG','2195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3445','NAD83(HARN) / New Hampshire (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15389','EPSG','1398',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3446','NAD83(HARN) / Rhode Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15390','EPSG','1408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3447','ETRS89 / Belgian Lambert 2005',NULL,NULL,'EPSG','4499','EPSG','4258','EPSG','19862','EPSG','1347',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3448','JAD2001 / Jamaica Metric Grid',NULL,NULL,'EPSG','4400','EPSG','4758','EPSG','19860','EPSG','3342',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3449','JAD2001 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4758','EPSG','16017','EPSG','3478',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3450','JAD2001 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4758','EPSG','16018','EPSG','3479',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3451','NAD83 / Louisiana North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15391','EPSG','2204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3452','NAD83 / Louisiana South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15392','EPSG','2529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3453','NAD83 / Louisiana Offshore (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15393','EPSG','1387',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3454','NAD83 / South Dakota North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15395','EPSG','2249',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3455','NAD83 / South Dakota South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15395','EPSG','2250',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3456','NAD83(HARN) / Louisiana North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15391','EPSG','2204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3457','NAD83(HARN) / Louisiana South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15392','EPSG','2529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3458','NAD83(HARN) / South Dakota North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15394','EPSG','2249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3459','NAD83(HARN) / South Dakota South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15395','EPSG','2250',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3460','Fiji 1986 / Fiji Map Grid',NULL,NULL,'EPSG','4400','EPSG','4720','EPSG','19859','EPSG','1094',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3461','Dabola 1981 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4155','EPSG','16028','EPSG','1468',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3462','Dabola 1981 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4155','EPSG','16029','EPSG','1469',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3463','NAD83 / Maine CS2000 Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11854','EPSG','2959',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3464','NAD83(HARN) / Maine CS2000 Central',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11854','EPSG','2959',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3465','NAD83(NSRS2007) / Alabama East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10131','EPSG','2154',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3466','NAD83(NSRS2007) / Alabama West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10132','EPSG','2155',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3467','NAD83(NSRS2007) / Alaska Albers',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15021','EPSG','1330',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3468','NAD83(NSRS2007) / Alaska zone 1',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15031','EPSG','2156',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3469','NAD83(NSRS2007) / Alaska zone 2',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15032','EPSG','2158',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3470','NAD83(NSRS2007) / Alaska zone 3',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15033','EPSG','2159',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3471','NAD83(NSRS2007) / Alaska zone 4',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15034','EPSG','2160',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3472','NAD83(NSRS2007) / Alaska zone 5',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15035','EPSG','2161',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3473','NAD83(NSRS2007) / Alaska zone 6',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15036','EPSG','2162',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3474','NAD83(NSRS2007) / Alaska zone 7',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15037','EPSG','2163',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3475','NAD83(NSRS2007) / Alaska zone 8',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15038','EPSG','2164',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3476','NAD83(NSRS2007) / Alaska zone 9',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15039','EPSG','2165',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3477','NAD83(NSRS2007) / Alaska zone 10',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15040','EPSG','2157',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3478','NAD83(NSRS2007) / Arizona Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10232','EPSG','2166',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3479','NAD83(NSRS2007) / Arizona Central (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15305','EPSG','2166',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3480','NAD83(NSRS2007) / Arizona East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10231','EPSG','2167',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3481','NAD83(NSRS2007) / Arizona East (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15304','EPSG','2167',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3482','NAD83(NSRS2007) / Arizona West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10233','EPSG','2168',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3483','NAD83(NSRS2007) / Arizona West (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15306','EPSG','2168',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3484','NAD83(NSRS2007) / Arkansas North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10331','EPSG','2169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3485','NAD83(NSRS2007) / Arkansas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15385','EPSG','2169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3486','NAD83(NSRS2007) / Arkansas South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10332','EPSG','2170',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3487','NAD83(NSRS2007) / Arkansas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15386','EPSG','2170',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3488','NAD83(NSRS2007) / California Albers',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10420','EPSG','1375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3489','NAD83(NSRS2007) / California zone 1',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10431','EPSG','2175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3490','NAD83(NSRS2007) / California zone 1 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15307','EPSG','2175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3491','NAD83(NSRS2007) / California zone 2',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10432','EPSG','2176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3492','NAD83(NSRS2007) / California zone 2 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15308','EPSG','2176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3493','NAD83(NSRS2007) / California zone 3',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10433','EPSG','2177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3494','NAD83(NSRS2007) / California zone 3 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15309','EPSG','2177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3495','NAD83(NSRS2007) / California zone 4',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10434','EPSG','2178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3496','NAD83(NSRS2007) / California zone 4 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15310','EPSG','2178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3497','NAD83(NSRS2007) / California zone 5',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10435','EPSG','2182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3498','NAD83(NSRS2007) / California zone 5 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15311','EPSG','2182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3499','NAD83(NSRS2007) / California zone 6',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10436','EPSG','2180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3500','NAD83(NSRS2007) / California zone 6 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15312','EPSG','2180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3501','NAD83(NSRS2007) / Colorado Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10532','EPSG','2183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3502','NAD83(NSRS2007) / Colorado Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15314','EPSG','2183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3503','NAD83(NSRS2007) / Colorado North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10531','EPSG','2184',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3504','NAD83(NSRS2007) / Colorado North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15313','EPSG','2184',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3505','NAD83(NSRS2007) / Colorado South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10533','EPSG','2185',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3506','NAD83(NSRS2007) / Colorado South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15315','EPSG','2185',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3507','NAD83(NSRS2007) / Connecticut',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10630','EPSG','1377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3508','NAD83(NSRS2007) / Connecticut (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15316','EPSG','1377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3509','NAD83(NSRS2007) / Delaware',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10730','EPSG','1378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3510','NAD83(NSRS2007) / Delaware (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15317','EPSG','1378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3511','NAD83(NSRS2007) / Florida East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10931','EPSG','2186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3512','NAD83(NSRS2007) / Florida East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15318','EPSG','2186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3513','NAD83(NSRS2007) / Florida GDL Albers',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10934','EPSG','1379',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3514','NAD83(NSRS2007) / Florida North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10933','EPSG','2187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3515','NAD83(NSRS2007) / Florida North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15320','EPSG','2187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3516','NAD83(NSRS2007) / Florida West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','10932','EPSG','2188',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3517','NAD83(NSRS2007) / Florida West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15319','EPSG','2188',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3518','NAD83(NSRS2007) / Georgia East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11031','EPSG','2189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3519','NAD83(NSRS2007) / Georgia East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15321','EPSG','2189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3520','NAD83(NSRS2007) / Georgia West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11032','EPSG','2190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3521','NAD83(NSRS2007) / Georgia West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15322','EPSG','2190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3522','NAD83(NSRS2007) / Idaho Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11132','EPSG','2191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3523','NAD83(NSRS2007) / Idaho Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15324','EPSG','2191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3524','NAD83(NSRS2007) / Idaho East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11131','EPSG','2192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3525','NAD83(NSRS2007) / Idaho East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15323','EPSG','2192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3526','NAD83(NSRS2007) / Idaho West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11133','EPSG','2193',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3527','NAD83(NSRS2007) / Idaho West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15325','EPSG','2193',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3528','NAD83(NSRS2007) / Illinois East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11231','EPSG','2194',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3529','NAD83(NSRS2007) / Illinois East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15387','EPSG','2194',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3530','NAD83(NSRS2007) / Illinois West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11232','EPSG','2195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3531','NAD83(NSRS2007) / Illinois West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15388','EPSG','2195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3532','NAD83(NSRS2007) / Indiana East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11331','EPSG','2196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3533','NAD83(NSRS2007) / Indiana East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15372','EPSG','2196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3534','NAD83(NSRS2007) / Indiana West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11332','EPSG','2197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3535','NAD83(NSRS2007) / Indiana West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15373','EPSG','2197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3536','NAD83(NSRS2007) / Iowa North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11431','EPSG','2198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3537','NAD83(NSRS2007) / Iowa North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15377','EPSG','2198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3538','NAD83(NSRS2007) / Iowa South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11432','EPSG','2199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3539','NAD83(NSRS2007) / Iowa South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15378','EPSG','2199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3540','NAD83(NSRS2007) / Kansas North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11531','EPSG','2200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3541','NAD83(NSRS2007) / Kansas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15379','EPSG','2200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3542','NAD83(NSRS2007) / Kansas South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11532','EPSG','2201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3543','NAD83(NSRS2007) / Kansas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15380','EPSG','2201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3544','NAD83(NSRS2007) / Kentucky North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15303','EPSG','2202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3545','NAD83(NSRS2007) / Kentucky North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15328','EPSG','2202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3546','NAD83(NSRS2007) / Kentucky Single Zone',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11630','EPSG','1386',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3547','NAD83(NSRS2007) / Kentucky Single Zone (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15375','EPSG','1386',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3548','NAD83(NSRS2007) / Kentucky South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11632','EPSG','2203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3549','NAD83(NSRS2007) / Kentucky South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15329','EPSG','2203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3550','NAD83(NSRS2007) / Louisiana North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11731','EPSG','2204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3551','NAD83(NSRS2007) / Louisiana North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15391','EPSG','2204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3552','NAD83(NSRS2007) / Louisiana South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11732','EPSG','2529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3553','NAD83(NSRS2007) / Louisiana South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15392','EPSG','2529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3554','NAD83(NSRS2007) / Maine CS2000 Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11854','EPSG','2959',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3555','NAD83(NSRS2007) / Maine CS2000 East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11851','EPSG','2960',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3556','NAD83(NSRS2007) / Maine CS2000 West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11853','EPSG','2958',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3557','NAD83(NSRS2007) / Maine East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11831','EPSG','2206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3558','NAD83(NSRS2007) / Maine West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11832','EPSG','2207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3559','NAD83(NSRS2007) / Maryland',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11930','EPSG','1389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3560','NAD83 / Utah North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15297','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3561','Old Hawaiian / Hawaii zone 1',NULL,NULL,'EPSG','4497','EPSG','4135','EPSG','15101','EPSG','1546',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3562','Old Hawaiian / Hawaii zone 2',NULL,NULL,'EPSG','4497','EPSG','4135','EPSG','15102','EPSG','1547',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3563','Old Hawaiian / Hawaii zone 3',NULL,NULL,'EPSG','4497','EPSG','4135','EPSG','15103','EPSG','1548',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3564','Old Hawaiian / Hawaii zone 4',NULL,NULL,'EPSG','4497','EPSG','4135','EPSG','15104','EPSG','1549',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3565','Old Hawaiian / Hawaii zone 5',NULL,NULL,'EPSG','4497','EPSG','4135','EPSG','15105','EPSG','1550',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3566','NAD83 / Utah Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15298','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3567','NAD83 / Utah South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15299','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3568','NAD83(HARN) / Utah North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15297','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3569','NAD83(HARN) / Utah Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15298','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3570','NAD83(HARN) / Utah South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15299','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3571','WGS 84 / North Pole LAEA Bering Sea',NULL,NULL,'EPSG','4464','EPSG','4326','EPSG','17295','EPSG','3480',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3572','WGS 84 / North Pole LAEA Alaska',NULL,NULL,'EPSG','4467','EPSG','4326','EPSG','17296','EPSG','3480',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3573','WGS 84 / North Pole LAEA Canada',NULL,NULL,'EPSG','4466','EPSG','4326','EPSG','17297','EPSG','3480',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3574','WGS 84 / North Pole LAEA Atlantic',NULL,NULL,'EPSG','4465','EPSG','4326','EPSG','17298','EPSG','3480',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3575','WGS 84 / North Pole LAEA Europe',NULL,NULL,'EPSG','4463','EPSG','4326','EPSG','17299','EPSG','3480',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3576','WGS 84 / North Pole LAEA Russia',NULL,NULL,'EPSG','1035','EPSG','4326','EPSG','17300','EPSG','3480',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3577','GDA94 / Australian Albers',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17365','EPSG','2575',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3578','NAD83 / Yukon Albers',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','19858','EPSG','2417',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3579','NAD83(CSRS) / Yukon Albers',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','19858','EPSG','2417',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3580','NAD83 / NWT Lambert',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','19857','EPSG','3481',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3581','NAD83(CSRS) / NWT Lambert',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','19857','EPSG','3481',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3582','NAD83(NSRS2007) / Maryland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15330','EPSG','1389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3583','NAD83(NSRS2007) / Massachusetts Island',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12032','EPSG','2208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3584','NAD83(NSRS2007) / Massachusetts Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15332','EPSG','2208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3585','NAD83(NSRS2007) / Massachusetts Mainland',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12031','EPSG','2209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3586','NAD83(NSRS2007) / Massachusetts Mainland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15331','EPSG','2209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3587','NAD83(NSRS2007) / Michigan Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12142','EPSG','1724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3588','NAD83(NSRS2007) / Michigan Central (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15334','EPSG','1724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3589','NAD83(NSRS2007) / Michigan North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12141','EPSG','1723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3590','NAD83(NSRS2007) / Michigan North (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15333','EPSG','1723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3591','NAD83(NSRS2007) / Michigan Oblique Mercator',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12150','EPSG','1391',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3592','NAD83(NSRS2007) / Michigan South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12143','EPSG','1725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3593','NAD83(NSRS2007) / Michigan South (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15335','EPSG','1725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3594','NAD83(NSRS2007) / Minnesota Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12232','EPSG','2213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3595','NAD83(NSRS2007) / Minnesota North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12231','EPSG','2214',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3596','NAD83(NSRS2007) / Minnesota South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12233','EPSG','2215',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3597','NAD83(NSRS2007) / Mississippi East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12331','EPSG','2216',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3598','NAD83(NSRS2007) / Mississippi East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15336','EPSG','2216',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3599','NAD83(NSRS2007) / Mississippi West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12332','EPSG','2217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3600','NAD83(NSRS2007) / Mississippi West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15337','EPSG','2217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3601','NAD83(NSRS2007) / Missouri Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12432','EPSG','2218',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3602','NAD83(NSRS2007) / Missouri East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12431','EPSG','2219',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3603','NAD83(NSRS2007) / Missouri West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12433','EPSG','2220',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3604','NAD83(NSRS2007) / Montana',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12530','EPSG','1395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3605','NAD83(NSRS2007) / Montana (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15338','EPSG','1395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3606','NAD83(NSRS2007) / Nebraska',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12630','EPSG','1396',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3607','NAD83(NSRS2007) / Nevada Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12732','EPSG','2223',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3608','NAD83(NSRS2007) / Nevada Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15382','EPSG','2223',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3609','NAD83(NSRS2007) / Nevada East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12731','EPSG','2224',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3610','NAD83(NSRS2007) / Nevada East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15381','EPSG','2224',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3611','NAD83(NSRS2007) / Nevada West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12733','EPSG','2225',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3612','NAD83(NSRS2007) / Nevada West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15383','EPSG','2225',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3613','NAD83(NSRS2007) / New Hampshire',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12830','EPSG','1398',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3614','NAD83(NSRS2007) / New Hampshire (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15389','EPSG','1398',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3615','NAD83(NSRS2007) / New Jersey',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12930','EPSG','1399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3616','NAD83(NSRS2007) / New Jersey (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15384','EPSG','1399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3617','NAD83(NSRS2007) / New Mexico Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13032','EPSG','2231',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3618','NAD83(NSRS2007) / New Mexico Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15340','EPSG','2231',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3619','NAD83(NSRS2007) / New Mexico East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13031','EPSG','2228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3620','NAD83(NSRS2007) / New Mexico East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15339','EPSG','2228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3621','NAD83(NSRS2007) / New Mexico West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13033','EPSG','2232',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3622','NAD83(NSRS2007) / New Mexico West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15341','EPSG','2232',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3623','NAD83(NSRS2007) / New York Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13132','EPSG','2233',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3624','NAD83(NSRS2007) / New York Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15343','EPSG','2233',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3625','NAD83(NSRS2007) / New York East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13131','EPSG','2234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3626','NAD83(NSRS2007) / New York East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15342','EPSG','2234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3627','NAD83(NSRS2007) / New York Long Island',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13134','EPSG','2235',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3628','NAD83(NSRS2007) / New York Long Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15345','EPSG','2235',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3629','NAD83(NSRS2007) / New York West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13133','EPSG','2236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3630','NAD83(NSRS2007) / New York West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15344','EPSG','2236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3631','NAD83(NSRS2007) / North Carolina',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13230','EPSG','1402',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3632','NAD83(NSRS2007) / North Carolina (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15346','EPSG','1402',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3633','NAD83(NSRS2007) / North Dakota North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13331','EPSG','2237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3634','NAD83(NSRS2007) / North Dakota North (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15347','EPSG','2237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3635','NAD83(NSRS2007) / North Dakota South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13332','EPSG','2238',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3636','NAD83(NSRS2007) / North Dakota South (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15348','EPSG','2238',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3637','NAD83(NSRS2007) / Ohio North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13431','EPSG','2239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3638','NAD83(NSRS2007) / Ohio South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13432','EPSG','2240',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3639','NAD83(NSRS2007) / Oklahoma North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13531','EPSG','2241',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3640','NAD83(NSRS2007) / Oklahoma North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15349','EPSG','2241',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3641','NAD83(NSRS2007) / Oklahoma South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13532','EPSG','2242',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3642','NAD83(NSRS2007) / Oklahoma South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15350','EPSG','2242',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3643','NAD83(NSRS2007) / Oregon LCC (m)',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13633','EPSG','1406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3644','NAD83(NSRS2007) / Oregon GIC Lambert (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15374','EPSG','1406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3645','NAD83(NSRS2007) / Oregon North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13631','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3646','NAD83(NSRS2007) / Oregon North (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15351','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3647','NAD83(NSRS2007) / Oregon South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13632','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3648','NAD83(NSRS2007) / Oregon South (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15352','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3649','NAD83(NSRS2007) / Pennsylvania North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13731','EPSG','2245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3650','NAD83(NSRS2007) / Pennsylvania North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15353','EPSG','2245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3651','NAD83(NSRS2007) / Pennsylvania South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13732','EPSG','2246',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3652','NAD83(NSRS2007) / Pennsylvania South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15354','EPSG','2246',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3653','NAD83(NSRS2007) / Rhode Island',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13830','EPSG','1408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3654','NAD83(NSRS2007) / Rhode Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15390','EPSG','1408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3655','NAD83(NSRS2007) / South Carolina',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','13930','EPSG','1409',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3656','NAD83(NSRS2007) / South Carolina (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15355','EPSG','1409',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3657','NAD83(NSRS2007) / South Dakota North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14031','EPSG','2249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3658','NAD83(NSRS2007) / South Dakota North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15394','EPSG','2249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3659','NAD83(NSRS2007) / South Dakota South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14032','EPSG','2250',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3660','NAD83(NSRS2007) / South Dakota South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15395','EPSG','2250',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3661','NAD83(NSRS2007) / Tennessee',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14130','EPSG','1411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3662','NAD83(NSRS2007) / Tennessee (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15356','EPSG','1411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3663','NAD83(NSRS2007) / Texas Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14233','EPSG','2252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3664','NAD83(NSRS2007) / Texas Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15359','EPSG','2252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3665','NAD83(NSRS2007) / Texas Centric Albers Equal Area',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14254','EPSG','1412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3666','NAD83(NSRS2007) / Texas Centric Lambert Conformal',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14253','EPSG','1412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3667','NAD83(NSRS2007) / Texas North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14231','EPSG','2253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3668','NAD83(NSRS2007) / Texas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15357','EPSG','2253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3669','NAD83(NSRS2007) / Texas North Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14232','EPSG','2254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3670','NAD83(NSRS2007) / Texas North Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15358','EPSG','2254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3671','NAD83(NSRS2007) / Texas South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14235','EPSG','2528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3672','NAD83(NSRS2007) / Texas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15361','EPSG','2528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3673','NAD83(NSRS2007) / Texas South Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14234','EPSG','2527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3674','NAD83(NSRS2007) / Texas South Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15360','EPSG','2527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3675','NAD83(NSRS2007) / Utah Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14332','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3676','NAD83(NSRS2007) / Utah Central (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15363','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3677','NAD83(NSRS2007) / Utah Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15298','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3678','NAD83(NSRS2007) / Utah North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14331','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3679','NAD83(NSRS2007) / Utah North (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15362','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3680','NAD83(NSRS2007) / Utah North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15297','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3681','NAD83(NSRS2007) / Utah South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14333','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3682','NAD83(NSRS2007) / Utah South (ft)',NULL,NULL,'EPSG','4495','EPSG','4759','EPSG','15364','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3683','NAD83(NSRS2007) / Utah South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15299','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3684','NAD83(NSRS2007) / Vermont',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14430','EPSG','1414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3685','NAD83(NSRS2007) / Virginia North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14531','EPSG','2260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3686','NAD83(NSRS2007) / Virginia North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15365','EPSG','2260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3687','NAD83(NSRS2007) / Virginia South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14532','EPSG','2261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3688','NAD83(NSRS2007) / Virginia South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15366','EPSG','2261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3689','NAD83(NSRS2007) / Washington North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14631','EPSG','2273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3690','NAD83(NSRS2007) / Washington North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15367','EPSG','2273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3691','NAD83(NSRS2007) / Washington South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14632','EPSG','2274',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3692','NAD83(NSRS2007) / Washington South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15368','EPSG','2274',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3693','NAD83(NSRS2007) / West Virginia North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14731','EPSG','2264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3694','NAD83(NSRS2007) / West Virginia South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14732','EPSG','2265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3695','NAD83(NSRS2007) / Wisconsin Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14832','EPSG','2266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3696','NAD83(NSRS2007) / Wisconsin Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15370','EPSG','2266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3697','NAD83(NSRS2007) / Wisconsin North',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14831','EPSG','2267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3698','NAD83(NSRS2007) / Wisconsin North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15369','EPSG','2267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3699','NAD83(NSRS2007) / Wisconsin South',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14833','EPSG','2268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3700','NAD83(NSRS2007) / Wisconsin South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15371','EPSG','2268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3701','NAD83(NSRS2007) / Wisconsin Transverse Mercator',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14841','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3702','NAD83(NSRS2007) / Wyoming East',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14931','EPSG','2269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3703','NAD83(NSRS2007) / Wyoming East Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14932','EPSG','2270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3704','NAD83(NSRS2007) / Wyoming West Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14933','EPSG','2272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3705','NAD83(NSRS2007) / Wyoming West',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14934','EPSG','2271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3706','NAD83(NSRS2007) / UTM zone 59N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16059','EPSG','3372',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3707','NAD83(NSRS2007) / UTM zone 60N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16060','EPSG','3373',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3708','NAD83(NSRS2007) / UTM zone 1N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16001','EPSG','3374',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3709','NAD83(NSRS2007) / UTM zone 2N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16002','EPSG','3375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3710','NAD83(NSRS2007) / UTM zone 3N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16003','EPSG','2133',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3711','NAD83(NSRS2007) / UTM zone 4N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16004','EPSG','2134',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3712','NAD83(NSRS2007) / UTM zone 5N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16005','EPSG','2135',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3713','NAD83(NSRS2007) / UTM zone 6N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16006','EPSG','2136',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3714','NAD83(NSRS2007) / UTM zone 7N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16007','EPSG','3494',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3715','NAD83(NSRS2007) / UTM zone 8N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16008','EPSG','3495',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3716','NAD83(NSRS2007) / UTM zone 9N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16009','EPSG','3496',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3717','NAD83(NSRS2007) / UTM zone 10N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16010','EPSG','3497',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3718','NAD83(NSRS2007) / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16011','EPSG','3498',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3719','NAD83(NSRS2007) / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16012','EPSG','3499',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3720','NAD83(NSRS2007) / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16013','EPSG','3500',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3721','NAD83(NSRS2007) / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16014','EPSG','3501',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3722','NAD83(NSRS2007) / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16015','EPSG','3502',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3723','NAD83(NSRS2007) / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16016','EPSG','3503',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3724','NAD83(NSRS2007) / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16017','EPSG','3504',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3725','NAD83(NSRS2007) / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16018','EPSG','3505',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3726','NAD83(NSRS2007) / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16019','EPSG','3506',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3727','Reunion 1947 / TM Reunion',NULL,NULL,'EPSG','4499','EPSG','4626','EPSG','19856','EPSG','3337',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3728','NAD83(NSRS2007) / Ohio North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','13433','EPSG','2239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3729','NAD83(NSRS2007) / Ohio South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','13434','EPSG','2240',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3730','NAD83(NSRS2007) / Wyoming East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','14935','EPSG','2269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3731','NAD83(NSRS2007) / Wyoming East Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','14936','EPSG','2270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3732','NAD83(NSRS2007) / Wyoming West Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','14937','EPSG','2272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3733','NAD83(NSRS2007) / Wyoming West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','14938','EPSG','2271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3734','NAD83 / Ohio North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','13433','EPSG','2239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3735','NAD83 / Ohio South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','13434','EPSG','2240',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3736','NAD83 / Wyoming East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','14935','EPSG','2269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3737','NAD83 / Wyoming East Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','14936','EPSG','2270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3738','NAD83 / Wyoming West Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','14937','EPSG','2272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3739','NAD83 / Wyoming West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','14938','EPSG','2271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3740','NAD83(HARN) / UTM zone 10N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16010','EPSG','3857',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3741','NAD83(HARN) / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16011','EPSG','3852',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3742','NAD83(HARN) / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16012','EPSG','3499',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3743','NAD83(HARN) / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16013','EPSG','3500',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3744','NAD83(HARN) / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16014','EPSG','3860',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3745','NAD83(HARN) / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16015','EPSG','3861',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3746','NAD83(HARN) / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16016','EPSG','3862',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3747','NAD83(HARN) / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16017','EPSG','3863',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3748','NAD83(HARN) / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16018','EPSG','3868',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3749','NAD83(HARN) / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16019','EPSG','3871',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3750','NAD83(HARN) / UTM zone 4N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16004','EPSG','3488',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3751','NAD83(HARN) / UTM zone 5N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16005','EPSG','3491',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3752','WGS 84 / Mercator 41',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','19855','EPSG','3508',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3753','NAD83(HARN) / Ohio North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','13433','EPSG','2239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3754','NAD83(HARN) / Ohio South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','13434','EPSG','2240',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3755','NAD83(HARN) / Wyoming East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','14935','EPSG','2269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3756','NAD83(HARN) / Wyoming East Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','14936','EPSG','2270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3757','NAD83(HARN) / Wyoming West Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','14937','EPSG','2272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3758','NAD83(HARN) / Wyoming West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','14938','EPSG','2271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3759','NAD83 / Hawaii zone 3 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15138','EPSG','1548',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3760','NAD83(HARN) / Hawaii zone 3 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15138','EPSG','1548',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3761','NAD83(CSRS) / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16022','EPSG','2152',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3762','WGS 84 / South Georgia Lambert',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','19854','EPSG','3529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3763','ETRS89 / Portugal TM06',NULL,NULL,'EPSG','4499','EPSG','4258','EPSG','19853','EPSG','1294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3764','NZGD2000 / Chatham Island Circuit 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17959','EPSG','2889',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3765','HTRS96 / Croatia TM',NULL,NULL,'EPSG','4400','EPSG','4761','EPSG','19851','EPSG','3234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3766','HTRS96 / Croatia LCC',NULL,NULL,'EPSG','4400','EPSG','4761','EPSG','19852','EPSG','1076',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3767','HTRS96 / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4761','EPSG','16033','EPSG','3539',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3768','HTRS96 / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','4761','EPSG','16034','EPSG','3538',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3769','Bermuda 1957 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4216','EPSG','16020','EPSG','3221',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3770','BDA2000 / Bermuda 2000 National Grid',NULL,NULL,'EPSG','4400','EPSG','4762','EPSG','19849','EPSG','1047',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3771','NAD27 / Alberta 3TM ref merid 111 W',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17722','EPSG','3543',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3772','NAD27 / Alberta 3TM ref merid 114 W',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17723','EPSG','3542',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3773','NAD27 / Alberta 3TM ref merid 117 W',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17724','EPSG','3541',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3774','NAD27 / Alberta 3TM ref merid 120 W',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17725','EPSG','3540',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3775','NAD83 / Alberta 3TM ref merid 111 W',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17722','EPSG','3543',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3776','NAD83 / Alberta 3TM ref merid 114 W',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17723','EPSG','3542',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3777','NAD83 / Alberta 3TM ref merid 117 W',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17724','EPSG','3541',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3778','NAD83 / Alberta 3TM ref merid 120 W',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17725','EPSG','3540',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3779','NAD83(CSRS) / Alberta 3TM ref merid 111 W',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17722','EPSG','3543',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3780','NAD83(CSRS) / Alberta 3TM ref merid 114 W',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17723','EPSG','3542',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3781','NAD83(CSRS) / Alberta 3TM ref merid 117 W',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17724','EPSG','3541',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3782','NAD83(CSRS) / Alberta 3TM ref merid 120 W',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17725','EPSG','3540',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3783','Pitcairn 2006 / Pitcairn TM 2006',NULL,NULL,'EPSG','4400','EPSG','4763','EPSG','19848','EPSG','3208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3784','Pitcairn 1967 / UTM zone 9S',NULL,NULL,'EPSG','4400','EPSG','4729','EPSG','16109','EPSG','3208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3785','Popular Visualisation CRS / Mercator',NULL,NULL,'EPSG','4499','EPSG','4055','EPSG','19847','EPSG','3544',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3786','World Equidistant Cylindrical (Sphere)',NULL,NULL,'EPSG','4499','EPSG','4047','EPSG','19968','EPSG','1262',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3787','MGI / Slovene National Grid',NULL,NULL,'EPSG','4498','EPSG','4312','EPSG','19845','EPSG','1212',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3788','NZGD2000 / Auckland Islands TM 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17960','EPSG','3554',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3789','NZGD2000 / Campbell Island TM 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17961','EPSG','3555',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3790','NZGD2000 / Antipodes Islands TM 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17962','EPSG','3556',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3791','NZGD2000 / Raoul Island TM 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17963','EPSG','3557',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3793','NZGD2000 / Chatham Islands TM 2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17965','EPSG','2889',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3794','Slovenia 1996 / Slovene National Grid',NULL,NULL,'EPSG','4400','EPSG','4765','EPSG','19845','EPSG','1212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3795','NAD27 / Cuba Norte',NULL,NULL,'EPSG','4532','EPSG','4267','EPSG','18063','EPSG','1487',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3796','NAD27 / Cuba Sur',NULL,NULL,'EPSG','4532','EPSG','4267','EPSG','18064','EPSG','1488',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3797','NAD27 / MTQ Lambert',NULL,NULL,'EPSG','4499','EPSG','4267','EPSG','19844','EPSG','1368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3798','NAD83 / MTQ Lambert',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','19844','EPSG','1368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3799','NAD83(CSRS) / MTQ Lambert',NULL,NULL,'EPSG','4499','EPSG','4617','EPSG','19844','EPSG','1368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3800','NAD27 / Alberta 3TM ref merid 120 W',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17726','EPSG','3540',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3801','NAD83 / Alberta 3TM ref merid 120 W',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17726','EPSG','3540',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3802','NAD83(CSRS) / Alberta 3TM ref merid 120 W',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17726','EPSG','3540',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3812','ETRS89 / Belgian Lambert 2008',NULL,NULL,'EPSG','4499','EPSG','4258','EPSG','3811','EPSG','1347',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3814','NAD83 / Mississippi TM',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','3813','EPSG','1393',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3815','NAD83(HARN) / Mississippi TM',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','3813','EPSG','1393',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3816','NAD83(NSRS2007) / Mississippi TM',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','3813','EPSG','1393',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3825','TWD97 / TM2 zone 119',NULL,NULL,'EPSG','4499','EPSG','3824','EPSG','3818','EPSG','3563',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3826','TWD97 / TM2 zone 121',NULL,NULL,'EPSG','4499','EPSG','3824','EPSG','3820','EPSG','3562',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3827','TWD67 / TM2 zone 119',NULL,NULL,'EPSG','4499','EPSG','3821','EPSG','3818','EPSG','3591',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3828','TWD67 / TM2 zone 121',NULL,NULL,'EPSG','4499','EPSG','3821','EPSG','3820','EPSG','3982',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3829','Hu Tzu Shan 1950 / UTM zone 51N',NULL,NULL,'EPSG','4400','EPSG','4236','EPSG','16051','EPSG','3315',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3832','WGS 84 / PDC Mercator',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','3831','EPSG','3172',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3833','Pulkovo 1942(58) / Gauss-Kruger zone 2',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16202','EPSG','3575',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3834','Pulkovo 1942(83) / Gauss-Kruger zone 2',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16202','EPSG','3575',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3835','Pulkovo 1942(83) / Gauss-Kruger zone 3',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16203','EPSG','3576',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3836','Pulkovo 1942(83) / Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16204','EPSG','3578',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3837','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 3',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16263','EPSG','1512',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3838','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16264','EPSG','1513',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3839','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 9',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16269','EPSG','3587',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3840','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 10',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','16270','EPSG','3588',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3841','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 6',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16266','EPSG','3582',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3842','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 7',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16266','EPSG','3584',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3843','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 8',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16266','EPSG','3586',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3844','Pulkovo 1942(58) / Stereo70',NULL,NULL,'EPSG','4530','EPSG','4179','EPSG','19926','EPSG','1197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3845','SWEREF99 / RT90 7.5 gon V emulation',NULL,NULL,'EPSG','4530','EPSG','4619','EPSG','17339','EPSG','2845',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3846','SWEREF99 / RT90 5 gon V emulation',NULL,NULL,'EPSG','4530','EPSG','4619','EPSG','17340','EPSG','2846',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3847','SWEREF99 / RT90 2.5 gon V emulation',NULL,NULL,'EPSG','4530','EPSG','4619','EPSG','17341','EPSG','2847',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3848','SWEREF99 / RT90 0 gon emulation',NULL,NULL,'EPSG','4530','EPSG','4619','EPSG','17342','EPSG','2848',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3849','SWEREF99 / RT90 2.5 gon O emulation',NULL,NULL,'EPSG','4530','EPSG','4619','EPSG','17343','EPSG','2849',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3850','SWEREF99 / RT90 5 gon O emulation',NULL,NULL,'EPSG','4530','EPSG','4619','EPSG','17344','EPSG','2850',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3851','NZGD2000 / NZCS2000',NULL,NULL,'EPSG','4500','EPSG','4167','EPSG','17964','EPSG','3593',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3852','RSRGD2000 / DGLC2000',NULL,NULL,'EPSG','4500','EPSG','4764','EPSG','17966','EPSG','3592',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3854','County ST74',NULL,NULL,'EPSG','4531','EPSG','4619','EPSG','3853','EPSG','3608',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3857','WGS 84 / Pseudo-Mercator',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','3856','EPSG','3544',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3873','ETRS89 / GK19FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3860','EPSG','3595',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3874','ETRS89 / GK20FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3861','EPSG','3596',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3875','ETRS89 / GK21FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3862','EPSG','3597',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3876','ETRS89 / GK22FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3863','EPSG','3598',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3877','ETRS89 / GK23FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3864','EPSG','3599',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3878','ETRS89 / GK24FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3865','EPSG','3600',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3879','ETRS89 / GK25FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3866','EPSG','3601',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3880','ETRS89 / GK26FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3867','EPSG','3602',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3881','ETRS89 / GK27FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3868','EPSG','3603',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3882','ETRS89 / GK28FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3869','EPSG','3604',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3883','ETRS89 / GK29FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3870','EPSG','3605',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3884','ETRS89 / GK30FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3871','EPSG','3606',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3885','ETRS89 / GK31FIN',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','3872','EPSG','3607',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3890','IGRS / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','3889','EPSG','16037','EPSG','3387',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3891','IGRS / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','3889','EPSG','16038','EPSG','3388',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3892','IGRS / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','3889','EPSG','16039','EPSG','3956',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3893','ED50 / Iraq National Grid',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','19907','EPSG','3625',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3907','MGI 1901 / Balkans zone 5',NULL,NULL,'EPSG','4530','EPSG','3906','EPSG','18275','EPSG','1709',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3908','MGI 1901 / Balkans zone 6',NULL,NULL,'EPSG','4530','EPSG','3906','EPSG','18276','EPSG','1710',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3909','MGI 1901 / Balkans zone 7',NULL,NULL,'EPSG','4530','EPSG','3906','EPSG','18277','EPSG','1711',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3910','MGI 1901 / Balkans zone 8',NULL,NULL,'EPSG','4530','EPSG','3906','EPSG','18278','EPSG','1712',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3911','MGI 1901 / Slovenia Grid',NULL,NULL,'EPSG','4530','EPSG','3906','EPSG','19967','EPSG','1212',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3912','MGI 1901 / Slovene National Grid',NULL,NULL,'EPSG','4498','EPSG','3906','EPSG','19845','EPSG','1212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3920','Puerto Rico / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4139','EPSG','16020','EPSG','3329',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3942','RGF93 / CC42',NULL,NULL,'EPSG','4499','EPSG','4171','EPSG','18101','EPSG','3545',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3943','RGF93 / CC43',NULL,NULL,'EPSG','4499','EPSG','4171','EPSG','18102','EPSG','3546',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3944','RGF93 / CC44',NULL,NULL,'EPSG','4499','EPSG','4171','EPSG','18103','EPSG','3547',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3945','RGF93 / CC45',NULL,NULL,'EPSG','4499','EPSG','4171','EPSG','18104','EPSG','3548',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3946','RGF93 / CC46',NULL,NULL,'EPSG','4499','EPSG','4171','EPSG','18105','EPSG','3549',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3947','RGF93 / CC47',NULL,NULL,'EPSG','4499','EPSG','4171','EPSG','18106','EPSG','3550',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3948','RGF93 / CC48',NULL,NULL,'EPSG','4499','EPSG','4171','EPSG','18107','EPSG','3551',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3949','RGF93 / CC49',NULL,NULL,'EPSG','4499','EPSG','4171','EPSG','18108','EPSG','3552',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3950','RGF93 / CC50',NULL,NULL,'EPSG','4499','EPSG','4171','EPSG','18109','EPSG','3553',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3968','NAD83 / Virginia Lambert',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','3967','EPSG','1415',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3969','NAD83(HARN) / Virginia Lambert',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','3967','EPSG','1415',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3970','NAD83(NSRS2007) / Virginia Lambert',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','3967','EPSG','1415',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3973','WGS 84 / NSIDC EASE-Grid North',NULL,NULL,'EPSG','4469','EPSG','4326','EPSG','3897','EPSG','3475',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3974','WGS 84 / NSIDC EASE-Grid South',NULL,NULL,'EPSG','4470','EPSG','4326','EPSG','3898','EPSG','3474',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3975','WGS 84 / NSIDC EASE-Grid Global',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','19869','EPSG','3463',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3976','WGS 84 / NSIDC Sea Ice Polar Stereographic South',NULL,NULL,'EPSG','4470','EPSG','4326','EPSG','19866','EPSG','1997',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3978','NAD83 / Canada Atlas Lambert',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','3977','EPSG','1061',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3979','NAD83(CSRS) / Canada Atlas Lambert',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','3977','EPSG','1061',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3985','Katanga 1955 / Katanga Lambert',NULL,NULL,'EPSG','4499','EPSG','4695','EPSG','3980','EPSG','3147',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','3986','Katanga 1955 / Katanga Gauss zone A',NULL,NULL,'EPSG','4499','EPSG','4695','EPSG','3981','EPSG','3612',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3987','Katanga 1955 / Katanga Gauss zone B',NULL,NULL,'EPSG','4499','EPSG','4695','EPSG','3982','EPSG','3611',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3988','Katanga 1955 / Katanga Gauss zone C',NULL,NULL,'EPSG','4499','EPSG','4695','EPSG','3983','EPSG','3610',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3989','Katanga 1955 / Katanga Gauss zone D',NULL,NULL,'EPSG','4499','EPSG','4695','EPSG','3984','EPSG','3609',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3991','Puerto Rico State Plane CS of 1927',NULL,NULL,'EPSG','4497','EPSG','4139','EPSG','15201','EPSG','3294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3992','Puerto Rico / St. Croix',NULL,NULL,'EPSG','4497','EPSG','4139','EPSG','15202','EPSG','3330',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3993','Guam 1963 / Guam SPCS',NULL,NULL,'EPSG','4499','EPSG','4675','EPSG','15400','EPSG','3255',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3994','WGS 84 / Mercator 41',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','19843','EPSG','3508',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3995','WGS 84 / Arctic Polar Stereographic',NULL,NULL,'EPSG','4469','EPSG','4326','EPSG','19842','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3996','WGS 84 / IBCAO Polar Stereographic',NULL,NULL,'EPSG','4469','EPSG','4326','EPSG','19840','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','3997','WGS 84 / Dubai Local TM',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','19839','EPSG','3531',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4026','MOLDREF99 / Moldova TM',NULL,NULL,'EPSG','4530','EPSG','4023','EPSG','3999','EPSG','1162',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4037','WGS 84 / TMzn35N',NULL,NULL,'EPSG','4500','EPSG','4326','EPSG','16035','EPSG','3615',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4038','WGS 84 / TMzn36N',NULL,NULL,'EPSG','4500','EPSG','4326','EPSG','16036','EPSG','3616',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4048','RGRDC 2005 / Congo TM zone 12',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','17412','EPSG','3937',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4049','RGRDC 2005 / Congo TM zone 14',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','17414','EPSG','3151',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4050','RGRDC 2005 / Congo TM zone 16',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','17416','EPSG','3617',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4051','RGRDC 2005 / Congo TM zone 18',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','17418','EPSG','3618',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4056','RGRDC 2005 / Congo TM zone 20',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','17420','EPSG','3620',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4057','RGRDC 2005 / Congo TM zone 22',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','17422','EPSG','3621',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4058','RGRDC 2005 / Congo TM zone 24',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','17424','EPSG','3622',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4059','RGRDC 2005 / Congo TM zone 26',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','17426','EPSG','3623',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4060','RGRDC 2005 / Congo TM zone 28',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','17428','EPSG','3624',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4061','RGRDC 2005 / UTM zone 33S',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','16133','EPSG','3626',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4062','RGRDC 2005 / UTM zone 34S',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','16134','EPSG','3627',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4063','RGRDC 2005 / UTM zone 35S',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','16135','EPSG','3628',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4071','Chua / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','4224','EPSG','16123','EPSG','3619',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4082','REGCAN95 / UTM zone 27N',NULL,NULL,'EPSG','4400','EPSG','4081','EPSG','16027','EPSG','3629',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4083','REGCAN95 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4081','EPSG','16028','EPSG','3630',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4087','WGS 84 / World Equidistant Cylindrical',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','4085','EPSG','1262',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4088','World Equidistant Cylindrical (Sphere)',NULL,NULL,'EPSG','4499','EPSG','4047','EPSG','4086','EPSG','1262',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4093','ETRS89 / DKTM1',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4089','EPSG','3631',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4094','ETRS89 / DKTM2',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4090','EPSG','3632',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4095','ETRS89 / DKTM3',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4091','EPSG','2532',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4096','ETRS89 / DKTM4',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4092','EPSG','2533',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4217','NAD83 / BLM 59N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4186','EPSG','3372',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4390','Kertau 1968 / Johor Grid',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','4114','EPSG','3376',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4391','Kertau 1968 / Sembilan and Melaka Grid',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','4115','EPSG','3377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4392','Kertau 1968 / Pahang Grid',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','4116','EPSG','3378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4393','Kertau 1968 / Selangor Grid',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','4117','EPSG','3379',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4394','Kertau 1968 / Terengganu Grid',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','4177','EPSG','3380',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4395','Kertau 1968 / Pinang Grid',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','4305','EPSG','3381',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4396','Kertau 1968 / Kedah and Perlis Grid',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','4320','EPSG','3382',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4397','Kertau 1968 / Perak Revised Grid',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','4321','EPSG','3383',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4398','Kertau 1968 / Kelantan Grid',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','4323','EPSG','3384',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4399','NAD27 / BLM 59N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4186','EPSG','3372',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4400','NAD27 / BLM 60N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4187','EPSG','3373',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4401','NAD27 / BLM 1N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4101','EPSG','3374',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4402','NAD27 / BLM 2N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4102','EPSG','3375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4403','NAD27 / BLM 3N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4103','EPSG','2133',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4404','NAD27 / BLM 4N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4104','EPSG','2134',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4405','NAD27 / BLM 5N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4105','EPSG','2135',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4406','NAD27 / BLM 6N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4106','EPSG','2136',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4407','NAD27 / BLM 7N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4107','EPSG','3494',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4408','NAD27 / BLM 8N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4108','EPSG','3495',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4409','NAD27 / BLM 9N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4109','EPSG','3496',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4410','NAD27 / BLM 10N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4110','EPSG','3497',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4411','NAD27 / BLM 11N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4111','EPSG','3498',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4412','NAD27 / BLM 12N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4112','EPSG','3499',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4413','NAD27 / BLM 13N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4113','EPSG','3500',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4414','NAD83(HARN) / Guam Map Grid',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','4325','EPSG','3255',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4415','Katanga 1955 / Katanga Lambert',NULL,NULL,'EPSG','4499','EPSG','4695','EPSG','4416','EPSG','3147',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4417','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 7',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16267','EPSG','3584',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4418','NAD27 / BLM 18N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4118','EPSG','3505',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4419','NAD27 / BLM 19N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4119','EPSG','3506',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4420','NAD83 / BLM 60N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4187','EPSG','3373',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4421','NAD83 / BLM 1N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4101','EPSG','3374',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4422','NAD83 / BLM 2N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4102','EPSG','3375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4423','NAD83 / BLM 3N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4103','EPSG','2133',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4424','NAD83 / BLM 4N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4104','EPSG','2134',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4425','NAD83 / BLM 5N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4105','EPSG','2135',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4426','NAD83 / BLM 6N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4106','EPSG','2136',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4427','NAD83 / BLM 7N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4107','EPSG','3494',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4428','NAD83 / BLM 8N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4108','EPSG','3495',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4429','NAD83 / BLM 9N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4109','EPSG','3496',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4430','NAD83 / BLM 10N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4110','EPSG','3497',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4431','NAD83 / BLM 11N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4111','EPSG','3498',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4432','NAD83 / BLM 12N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4112','EPSG','3499',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4433','NAD83 / BLM 13N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4113','EPSG','3500',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4434','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 8',NULL,NULL,'EPSG','4530','EPSG','4178','EPSG','16268','EPSG','3586',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4437','NAD83(NSRS2007) / Puerto Rico and Virgin Is.',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15230','EPSG','3634',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4438','NAD83 / BLM 18N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4118','EPSG','3505',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4439','NAD83 / BLM 19N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','4119','EPSG','3506',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4455','NAD27 / Pennsylvania South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4436','EPSG','2246',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4456','NAD27 / New York Long Island',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','4454','EPSG','2235',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4457','NAD83 / South Dakota North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15394','EPSG','2249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4462','WGS 84 / Australian Centre for Remote Sensing Lambert',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','4460','EPSG','2575',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4467','RGSPM06 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4463','EPSG','16021','EPSG','1220',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4471','RGM04 / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','4470','EPSG','16138','EPSG','1159',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4474','Cadastre 1997 / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','4632','EPSG','16138','EPSG','3340',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4484','Mexico ITRF92 / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16011','EPSG','3423',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4485','Mexico ITRF92 / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16012','EPSG','3424',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4486','Mexico ITRF92 / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16013','EPSG','3425',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4487','Mexico ITRF92 / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16014','EPSG','3426',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4488','Mexico ITRF92 / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16015','EPSG','3633',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4489','Mexico ITRF92 / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16016','EPSG','3635',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4491','CGCS2000 / Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16213','EPSG','1587',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4492','CGCS2000 / Gauss-Kruger zone 14',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16214','EPSG','1588',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4493','CGCS2000 / Gauss-Kruger zone 15',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16215','EPSG','1589',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4494','CGCS2000 / Gauss-Kruger zone 16',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16216','EPSG','1590',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4495','CGCS2000 / Gauss-Kruger zone 17',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16217','EPSG','1591',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4496','CGCS2000 / Gauss-Kruger zone 18',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16218','EPSG','3944',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4497','CGCS2000 / Gauss-Kruger zone 19',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16219','EPSG','3945',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4498','CGCS2000 / Gauss-Kruger zone 20',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16220','EPSG','3946',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4499','CGCS2000 / Gauss-Kruger zone 21',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16221','EPSG','3947',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4500','CGCS2000 / Gauss-Kruger zone 22',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16222','EPSG','3948',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4501','CGCS2000 / Gauss-Kruger zone 23',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16223','EPSG','1597',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4502','CGCS2000 / Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16313','EPSG','1587',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4503','CGCS2000 / Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16314','EPSG','1588',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4504','CGCS2000 / Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16315','EPSG','1589',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4505','CGCS2000 / Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16316','EPSG','1590',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4506','CGCS2000 / Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16317','EPSG','1591',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4507','CGCS2000 / Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16318','EPSG','3944',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4508','CGCS2000 / Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16319','EPSG','3945',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4509','CGCS2000 / Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16320','EPSG','3946',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4510','CGCS2000 / Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16321','EPSG','3947',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4511','CGCS2000 / Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16322','EPSG','3948',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4512','CGCS2000 / Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16323','EPSG','1597',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4513','CGCS2000 / 3-degree Gauss-Kruger zone 25',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16285','EPSG','2711',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4514','CGCS2000 / 3-degree Gauss-Kruger zone 26',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16286','EPSG','2712',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4515','CGCS2000 / 3-degree Gauss-Kruger zone 27',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16287','EPSG','2713',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4516','CGCS2000 / 3-degree Gauss-Kruger zone 28',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16288','EPSG','2714',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4517','CGCS2000 / 3-degree Gauss-Kruger zone 29',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16289','EPSG','2715',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4518','CGCS2000 / 3-degree Gauss-Kruger zone 30',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16290','EPSG','2716',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4519','CGCS2000 / 3-degree Gauss-Kruger zone 31',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16291','EPSG','2717',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4520','CGCS2000 / 3-degree Gauss-Kruger zone 32',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16292','EPSG','2718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4521','CGCS2000 / 3-degree Gauss-Kruger zone 33',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16293','EPSG','2719',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4522','CGCS2000 / 3-degree Gauss-Kruger zone 34',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16294','EPSG','2720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4523','CGCS2000 / 3-degree Gauss-Kruger zone 35',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16295','EPSG','2721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4524','CGCS2000 / 3-degree Gauss-Kruger zone 36',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16296','EPSG','2722',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4525','CGCS2000 / 3-degree Gauss-Kruger zone 37',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16297','EPSG','2723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4526','CGCS2000 / 3-degree Gauss-Kruger zone 38',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16298','EPSG','2724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4527','CGCS2000 / 3-degree Gauss-Kruger zone 39',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16299','EPSG','2725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4528','CGCS2000 / 3-degree Gauss-Kruger zone 40',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16070','EPSG','2726',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4529','CGCS2000 / 3-degree Gauss-Kruger zone 41',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16071','EPSG','2727',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4530','CGCS2000 / 3-degree Gauss-Kruger zone 42',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16072','EPSG','2728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4531','CGCS2000 / 3-degree Gauss-Kruger zone 43',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16073','EPSG','2729',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4532','CGCS2000 / 3-degree Gauss-Kruger zone 44',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16074','EPSG','2730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4533','CGCS2000 / 3-degree Gauss-Kruger zone 45',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16075','EPSG','2731',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4534','CGCS2000 / 3-degree Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16313','EPSG','2711',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4535','CGCS2000 / 3-degree Gauss-Kruger CM 78E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16386','EPSG','2712',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4536','CGCS2000 / 3-degree Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16314','EPSG','2713',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4537','CGCS2000 / 3-degree Gauss-Kruger CM 84E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16388','EPSG','2714',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4538','CGCS2000 / 3-degree Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16315','EPSG','2715',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4539','CGCS2000 / 3-degree Gauss-Kruger CM 90E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16390','EPSG','2716',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4540','CGCS2000 / 3-degree Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16316','EPSG','2717',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4541','CGCS2000 / 3-degree Gauss-Kruger CM 96E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16392','EPSG','2718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4542','CGCS2000 / 3-degree Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16317','EPSG','2719',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4543','CGCS2000 / 3-degree Gauss-Kruger CM 102E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16394','EPSG','2720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4544','CGCS2000 / 3-degree Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16318','EPSG','2721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4545','CGCS2000 / 3-degree Gauss-Kruger CM 108E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16396','EPSG','2722',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4546','CGCS2000 / 3-degree Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16319','EPSG','2723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4547','CGCS2000 / 3-degree Gauss-Kruger CM 114E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16398','EPSG','2724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4548','CGCS2000 / 3-degree Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16320','EPSG','2725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4549','CGCS2000 / 3-degree Gauss-Kruger CM 120E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16170','EPSG','2726',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4550','CGCS2000 / 3-degree Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16321','EPSG','2727',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4551','CGCS2000 / 3-degree Gauss-Kruger CM 126E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16172','EPSG','2728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4552','CGCS2000 / 3-degree Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16322','EPSG','2729',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4553','CGCS2000 / 3-degree Gauss-Kruger CM 132E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16174','EPSG','2730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4554','CGCS2000 / 3-degree Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4490','EPSG','16323','EPSG','2731',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4559','RRAF 1991 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4558','EPSG','16020','EPSG','3825',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4568','New Beijing / Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16213','EPSG','1587',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4569','New Beijing / Gauss-Kruger zone 14',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16214','EPSG','1588',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4570','New Beijing / Gauss-Kruger zone 15',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16215','EPSG','1589',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4571','New Beijing / Gauss-Kruger zone 16',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16216','EPSG','1590',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4572','New Beijing / Gauss-Kruger zone 17',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16217','EPSG','1591',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4573','New Beijing / Gauss-Kruger zone 18',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16218','EPSG','1592',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4574','New Beijing / Gauss-Kruger zone 19',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16219','EPSG','1593',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4575','New Beijing / Gauss-Kruger zone 20',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16220','EPSG','1594',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4576','New Beijing / Gauss-Kruger zone 21',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16221','EPSG','1595',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4577','New Beijing / Gauss-Kruger zone 22',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16222','EPSG','1596',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4578','New Beijing / Gauss-Kruger zone 23',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16223','EPSG','1597',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4579','New Beijing / Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16313','EPSG','1587',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4580','New Beijing / Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16314','EPSG','1588',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4581','New Beijing / Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16315','EPSG','1589',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4582','New Beijing / Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16316','EPSG','1590',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4583','New Beijing / Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16317','EPSG','1591',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4584','New Beijing / Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16318','EPSG','1592',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4585','New Beijing / Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16319','EPSG','1593',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4586','New Beijing / Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16320','EPSG','1594',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4587','New Beijing / Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16321','EPSG','1595',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4588','New Beijing / Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16322','EPSG','1596',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4589','New Beijing / Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16323','EPSG','1597',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4647','ETRS89 / UTM zone 32N (zE-N)',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4648','EPSG','2861',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4652','New Beijing / 3-degree Gauss-Kruger zone 25',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16285','EPSG','2711',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4653','New Beijing / 3-degree Gauss-Kruger zone 26',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16286','EPSG','2712',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4654','New Beijing / 3-degree Gauss-Kruger zone 27',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16287','EPSG','2713',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4655','New Beijing / 3-degree Gauss-Kruger zone 28',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16288','EPSG','2714',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4656','New Beijing / 3-degree Gauss-Kruger zone 29',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16289','EPSG','2715',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4766','New Beijing / 3-degree Gauss-Kruger zone 30',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16290','EPSG','2716',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4767','New Beijing / 3-degree Gauss-Kruger zone 31',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16291','EPSG','2717',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4768','New Beijing / 3-degree Gauss-Kruger zone 32',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16292','EPSG','2718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4769','New Beijing / 3-degree Gauss-Kruger zone 33',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16293','EPSG','2719',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4770','New Beijing / 3-degree Gauss-Kruger zone 34',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16294','EPSG','2720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4771','New Beijing / 3-degree Gauss-Kruger zone 35',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16295','EPSG','2721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4772','New Beijing / 3-degree Gauss-Kruger zone 36',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16296','EPSG','2722',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4773','New Beijing / 3-degree Gauss-Kruger zone 37',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16297','EPSG','2723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4774','New Beijing / 3-degree Gauss-Kruger zone 38',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16298','EPSG','2724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4775','New Beijing / 3-degree Gauss-Kruger zone 39',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16299','EPSG','2725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4776','New Beijing / 3-degree Gauss-Kruger zone 40',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16070','EPSG','2726',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4777','New Beijing / 3-degree Gauss-Kruger zone 41',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16071','EPSG','2727',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4778','New Beijing / 3-degree Gauss-Kruger zone 42',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16072','EPSG','2728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4779','New Beijing / 3-degree Gauss-Kruger zone 43',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16073','EPSG','2729',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4780','New Beijing / 3-degree Gauss-Kruger zone 44',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16074','EPSG','2730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4781','New Beijing / 3-degree Gauss-Kruger zone 45',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16075','EPSG','2731',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4782','New Beijing / 3-degree Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16313','EPSG','2711',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4783','New Beijing / 3-degree Gauss-Kruger CM 78E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16386','EPSG','2712',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4784','New Beijing / 3-degree Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16314','EPSG','2713',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4785','New Beijing / 3-degree Gauss-Kruger CM 84E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16388','EPSG','2714',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4786','New Beijing / 3-degree Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16315','EPSG','2715',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4787','New Beijing / 3-degree Gauss-Kruger CM 90E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16390','EPSG','2716',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4788','New Beijing / 3-degree Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16316','EPSG','2717',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4789','New Beijing / 3-degree Gauss-Kruger CM 96E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16392','EPSG','2718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4790','New Beijing / 3-degree Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16317','EPSG','2719',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4791','New Beijing / 3-degree Gauss-Kruger CM 102E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16394','EPSG','2720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4792','New Beijing / 3-degree Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16318','EPSG','2721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4793','New Beijing / 3-degree Gauss-Kruger CM 108E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16396','EPSG','2722',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4794','New Beijing / 3-degree Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16319','EPSG','2723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4795','New Beijing / 3-degree Gauss-Kruger CM 114E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16398','EPSG','2724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4796','New Beijing / 3-degree Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16320','EPSG','2725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4797','New Beijing / 3-degree Gauss-Kruger CM 120E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16170','EPSG','2726',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4798','New Beijing / 3-degree Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16321','EPSG','2727',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4799','New Beijing / 3-degree Gauss-Kruger CM 126E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16172','EPSG','2728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4800','New Beijing / 3-degree Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16322','EPSG','2729',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4812','New Beijing / 3-degree Gauss-Kruger CM 132E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16174','EPSG','2730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4822','New Beijing / 3-degree Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4555','EPSG','16323','EPSG','2731',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4826','WGS 84 / Cape Verde National',NULL,NULL,'EPSG','1024','EPSG','4326','EPSG','4825','EPSG','1062',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4839','ETRS89 / LCC Germany (N-E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4838','EPSG','3339',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','4855','ETRS89 / NTM zone 5',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4845','EPSG','3636',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4856','ETRS89 / NTM zone 6',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4846','EPSG','3639',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4857','ETRS89 / NTM zone 7',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4847','EPSG','3647',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4858','ETRS89 / NTM zone 8',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4848','EPSG','3648',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4859','ETRS89 / NTM zone 9',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4849','EPSG','3649',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4860','ETRS89 / NTM zone 10',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4850','EPSG','3650',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4861','ETRS89 / NTM zone 11',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4851','EPSG','3651',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4862','ETRS89 / NTM zone 12',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4852','EPSG','3653',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4863','ETRS89 / NTM zone 13',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4853','EPSG','3654',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4864','ETRS89 / NTM zone 14',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4854','EPSG','3655',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4865','ETRS89 / NTM zone 15',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4841','EPSG','3656',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4866','ETRS89 / NTM zone 16',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4842','EPSG','3657',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4867','ETRS89 / NTM zone 17',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4843','EPSG','3658',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4868','ETRS89 / NTM zone 18',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4844','EPSG','3660',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4869','ETRS89 / NTM zone 19',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4881','EPSG','3661',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4870','ETRS89 / NTM zone 20',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5000','EPSG','3662',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4871','ETRS89 / NTM zone 21',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5001','EPSG','3663',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4872','ETRS89 / NTM zone 22',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5002','EPSG','3665',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4873','ETRS89 / NTM zone 23',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5003','EPSG','3667',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4874','ETRS89 / NTM zone 24',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5004','EPSG','3668',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4875','ETRS89 / NTM zone 25',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5005','EPSG','3669',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4876','ETRS89 / NTM zone 26',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5006','EPSG','3671',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4877','ETRS89 / NTM zone 27',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5007','EPSG','3672',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4878','ETRS89 / NTM zone 28',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5008','EPSG','3673',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4879','ETRS89 / NTM zone 29',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5009','EPSG','3674',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','4880','ETRS89 / NTM zone 30',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5010','EPSG','3676',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5014','PTRA08 / UTM zone 25N',NULL,NULL,'EPSG','4400','EPSG','5013','EPSG','16025','EPSG','3682',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5015','PTRA08 / UTM zone 26N',NULL,NULL,'EPSG','4400','EPSG','5013','EPSG','16026','EPSG','3677',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5016','PTRA08 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','5013','EPSG','16028','EPSG','3678',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5017','Lisbon 1890 / Portugal Bonne New',NULL,NULL,'EPSG','6509','EPSG','4666','EPSG','5019','EPSG','1294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5018','Lisbon / Portuguese Grid New',NULL,NULL,'EPSG','4499','EPSG','4207','EPSG','5020','EPSG','1294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5041','WGS 84 / UPS North (E,N)',NULL,NULL,'EPSG','1026','EPSG','4326','EPSG','16061','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5042','WGS 84 / UPS South (E,N)',NULL,NULL,'EPSG','1027','EPSG','4326','EPSG','16161','EPSG','1997',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5048','ETRS89 / TM35FIN(N,E)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','16065','EPSG','1095',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5069','NAD27 / Conus Albers',NULL,NULL,'EPSG','4499','EPSG','4267','EPSG','5068','EPSG','1323',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5070','NAD83 / Conus Albers',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','5068','EPSG','1323',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5071','NAD83(HARN) / Conus Albers',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','5068','EPSG','1323',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5072','NAD83(NSRS2007) / Conus Albers',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','5068','EPSG','1323',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5105','ETRS89 / NTM zone 5',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5135','EPSG','3636',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5106','ETRS89 / NTM zone 6',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5136','EPSG','3639',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5107','ETRS89 / NTM zone 7',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5137','EPSG','3647',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5108','ETRS89 / NTM zone 8',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5138','EPSG','3648',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5109','ETRS89 / NTM zone 9',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5139','EPSG','3649',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5110','ETRS89 / NTM zone 10',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5140','EPSG','3650',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5111','ETRS89 / NTM zone 11',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5141','EPSG','3651',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5112','ETRS89 / NTM zone 12',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5142','EPSG','3653',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5113','ETRS89 / NTM zone 13',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5143','EPSG','3654',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5114','ETRS89 / NTM zone 14',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5144','EPSG','3655',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5115','ETRS89 / NTM zone 15',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5145','EPSG','3656',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5116','ETRS89 / NTM zone 16',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5146','EPSG','3657',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5117','ETRS89 / NTM zone 17',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5147','EPSG','3658',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5118','ETRS89 / NTM zone 18',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5148','EPSG','3660',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5119','ETRS89 / NTM zone 19',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5149','EPSG','3661',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5120','ETRS89 / NTM zone 20',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5150','EPSG','3662',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5121','ETRS89 / NTM zone 21',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5151','EPSG','3663',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5122','ETRS89 / NTM zone 22',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5152','EPSG','3665',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5123','ETRS89 / NTM zone 23',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5153','EPSG','3667',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5124','ETRS89 / NTM zone 24',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5154','EPSG','3668',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5125','ETRS89 / NTM zone 25',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5155','EPSG','3669',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5126','ETRS89 / NTM zone 26',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5156','EPSG','3671',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5127','ETRS89 / NTM zone 27',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5157','EPSG','3672',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5128','ETRS89 / NTM zone 28',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5158','EPSG','3673',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5129','ETRS89 / NTM zone 29',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5159','EPSG','3674',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5130','ETRS89 / NTM zone 30',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5160','EPSG','3676',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5167','Korean 1985 / East Sea Belt',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','5049','EPSG','3720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5168','Korean 1985 / Central Belt Jeju',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','5131','EPSG','3721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5169','Tokyo 1892 / Korea West Belt',NULL,NULL,'EPSG','4530','EPSG','5132','EPSG','18253','EPSG','3713',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5170','Tokyo 1892 / Korea Central Belt',NULL,NULL,'EPSG','4530','EPSG','5132','EPSG','18252','EPSG','3716',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5171','Tokyo 1892 / Korea East Belt',NULL,NULL,'EPSG','4530','EPSG','5132','EPSG','18251','EPSG','3726',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5172','Tokyo 1892 / Korea East Sea Belt',NULL,NULL,'EPSG','4530','EPSG','5132','EPSG','5049','EPSG','3727',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5173','Korean 1985 / Modified West Belt',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','5161','EPSG','1498',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5174','Korean 1985 / Modified Central Belt',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','5162','EPSG','3730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5175','Korean 1985 / Modified Central Belt Jeju',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','5163','EPSG','3721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5176','Korean 1985 / Modified East Belt',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','5164','EPSG','1496',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5177','Korean 1985 / Modified East Sea Belt',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','5165','EPSG','3720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5178','Korean 1985 / Unified CS',NULL,NULL,'EPSG','4530','EPSG','4162','EPSG','5100','EPSG','3266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5179','Korea 2000 / Unified CS',NULL,NULL,'EPSG','4530','EPSG','4737','EPSG','5100','EPSG','1135',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5180','Korea 2000 / West Belt',NULL,NULL,'EPSG','4530','EPSG','4737','EPSG','18253','EPSG','1498',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5181','Korea 2000 / Central Belt',NULL,NULL,'EPSG','4530','EPSG','4737','EPSG','18252','EPSG','3730',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5182','Korea 2000 / Central Belt Jeju',NULL,NULL,'EPSG','4530','EPSG','4737','EPSG','5131','EPSG','3721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5183','Korea 2000 / East Belt',NULL,NULL,'EPSG','4530','EPSG','4737','EPSG','18251','EPSG','1496',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5184','Korea 2000 / East Sea Belt',NULL,NULL,'EPSG','4530','EPSG','4737','EPSG','5049','EPSG','3720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5185','Korea 2000 / West Belt 2010',NULL,NULL,'EPSG','4530','EPSG','4737','EPSG','5101','EPSG','1498',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5186','Korea 2000 / Central Belt 2010',NULL,NULL,'EPSG','4530','EPSG','4737','EPSG','5102','EPSG','1497',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5187','Korea 2000 / East Belt 2010',NULL,NULL,'EPSG','4530','EPSG','4737','EPSG','5103','EPSG','1496',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5188','Korea 2000 / East Sea Belt 2010',NULL,NULL,'EPSG','4530','EPSG','4737','EPSG','5104','EPSG','3720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5221','S-JTSK (Ferro) / Krovak East North',NULL,NULL,'EPSG','4499','EPSG','4818','EPSG','5218','EPSG','1306',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5223','WGS 84 / Gabon TM',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','5222','EPSG','3249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5224','S-JTSK/05 (Ferro) / Modified Krovak',NULL,NULL,'EPSG','6501','EPSG','5229','EPSG','5219','EPSG','1079',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5225','S-JTSK/05 (Ferro) / Modified Krovak East North',NULL,NULL,'EPSG','4499','EPSG','5229','EPSG','5220','EPSG','1079',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5234','Kandawala / Sri Lanka Grid',NULL,NULL,'EPSG','4400','EPSG','4244','EPSG','5231','EPSG','3310',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5235','SLD99 / Sri Lanka Grid 1999',NULL,NULL,'EPSG','4400','EPSG','5233','EPSG','5232','EPSG','3310',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5243','ETRS89 / LCC Germany (E-N)',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4838','EPSG','3339',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5247','GDBD2009 / Brunei BRSO',NULL,NULL,'EPSG','4400','EPSG','5246','EPSG','19894','EPSG','1055',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5253','TUREF / TM27',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16305','EPSG','1524',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5254','TUREF / TM30',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16370','EPSG','1525',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5255','TUREF / TM33',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16306','EPSG','1526',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5256','TUREF / TM36',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16372','EPSG','1527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5257','TUREF / TM39',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16307','EPSG','1528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5258','TUREF / TM42',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16374','EPSG','1529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5259','TUREF / TM45',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16308','EPSG','1530',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5266','DRUKREF 03 / Bhutan National Grid',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5265','EPSG','1048',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5269','TUREF / 3-degree Gauss-Kruger zone 9',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16269','EPSG','1524',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5270','TUREF / 3-degree Gauss-Kruger zone 10',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16270','EPSG','1525',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5271','TUREF / 3-degree Gauss-Kruger zone 11',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16271','EPSG','1526',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5272','TUREF / 3-degree Gauss-Kruger zone 12',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16272','EPSG','1527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5273','TUREF / 3-degree Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16273','EPSG','1528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5274','TUREF / 3-degree Gauss-Kruger zone 14',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16274','EPSG','1529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5275','TUREF / 3-degree Gauss-Kruger zone 15',NULL,NULL,'EPSG','4530','EPSG','5252','EPSG','16275','EPSG','1530',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5292','DRUKREF 03 / Bumthang TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5268','EPSG','3734',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5293','DRUKREF 03 / Chhukha TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5276','EPSG','3737',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5294','DRUKREF 03 / Dagana TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5277','EPSG','3738',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5295','DRUKREF 03 / Gasa TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5278','EPSG','3740',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5296','DRUKREF 03 / Ha TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5279','EPSG','3742',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5297','DRUKREF 03 / Lhuentse TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5280','EPSG','3743',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5298','DRUKREF 03 / Mongar TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5281','EPSG','3745',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5299','DRUKREF 03 / Paro TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5282','EPSG','3746',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5300','DRUKREF 03 / Pemagatshel TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5283','EPSG','3747',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5301','DRUKREF 03 / Punakha TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5313','EPSG','3749',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5302','DRUKREF 03 / Samdrup Jongkhar TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5285','EPSG','3750',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5303','DRUKREF 03 / Samtse TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5286','EPSG','3751',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5304','DRUKREF 03 / Sarpang TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5287','EPSG','3752',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5305','DRUKREF 03 / Thimphu TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5312','EPSG','3753',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5306','DRUKREF 03 / Trashigang TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5289','EPSG','3754',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5307','DRUKREF 03 / Trongsa TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5290','EPSG','3755',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5308','DRUKREF 03 / Tsirang TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5284','EPSG','3757',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5309','DRUKREF 03 / Wangdue Phodrang TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5288','EPSG','3758',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5310','DRUKREF 03 / Yangtse TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5314','EPSG','3760',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5311','DRUKREF 03 / Zhemgang TM',NULL,NULL,'EPSG','4400','EPSG','5264','EPSG','5291','EPSG','3761',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5316','ETRS89 / Faroe TM',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','5315','EPSG','1093',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5320','NAD83 / Teranet Ontario Lambert',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','5319','EPSG','1367',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5321','NAD83(CSRS) / Teranet Ontario Lambert',NULL,NULL,'EPSG','4499','EPSG','4617','EPSG','5319','EPSG','1367',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5325','ISN2004 / Lambert 2004',NULL,NULL,'EPSG','4499','EPSG','5324','EPSG','5326','EPSG','1120',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5329','Segara (Jakarta) / NEIEZ',NULL,NULL,'EPSG','4499','EPSG','4820','EPSG','5328','EPSG','1360',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5330','Batavia (Jakarta) / NEIEZ',NULL,NULL,'EPSG','4499','EPSG','4813','EPSG','5328','EPSG','1285',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5331','Makassar (Jakarta) / NEIEZ',NULL,NULL,'EPSG','4499','EPSG','4804','EPSG','5328','EPSG','1316',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5337','Aratu / UTM zone 25S',NULL,NULL,'EPSG','4400','EPSG','4208','EPSG','16125','EPSG','3808',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5343','POSGAR 2007 / Argentina 1',NULL,NULL,'EPSG','4530','EPSG','5340','EPSG','18031','EPSG','1608',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5344','POSGAR 2007 / Argentina 2',NULL,NULL,'EPSG','4530','EPSG','5340','EPSG','18032','EPSG','1609',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5345','POSGAR 2007 / Argentina 3',NULL,NULL,'EPSG','4530','EPSG','5340','EPSG','18033','EPSG','1610',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5346','POSGAR 2007 / Argentina 4',NULL,NULL,'EPSG','4530','EPSG','5340','EPSG','18034','EPSG','1611',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5347','POSGAR 2007 / Argentina 5',NULL,NULL,'EPSG','4530','EPSG','5340','EPSG','18035','EPSG','1612',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5348','POSGAR 2007 / Argentina 6',NULL,NULL,'EPSG','4530','EPSG','5340','EPSG','18036','EPSG','1613',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5349','POSGAR 2007 / Argentina 7',NULL,NULL,'EPSG','4530','EPSG','5340','EPSG','18037','EPSG','1614',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5355','MARGEN / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','5354','EPSG','16120','EPSG','1761',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5356','MARGEN / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','5354','EPSG','16119','EPSG','3827',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5357','MARGEN / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','5354','EPSG','16121','EPSG','3733',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5361','SIRGAS-Chile 2002 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','5360','EPSG','16119','EPSG','3811',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5362','SIRGAS-Chile 2002 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','5360','EPSG','16118','EPSG','3829',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5367','CR05 / CRTM05',NULL,NULL,'EPSG','4500','EPSG','5365','EPSG','5366','EPSG','3849',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5382','SIRGAS-ROU98 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','5381','EPSG','16121','EPSG','3826',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5383','SIRGAS-ROU98 / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','5381','EPSG','16122','EPSG','3828',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5387','Peru96 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','5373','EPSG','16118','EPSG','3838',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5388','Peru96 / UTM zone 17S',NULL,NULL,'EPSG','4400','EPSG','5373','EPSG','16017','EPSG','3837',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5389','Peru96 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','5373','EPSG','16119','EPSG','3836',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5396','SIRGAS 2000 / UTM zone 26S',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16126','EPSG','3842',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5456','Ocotepeque 1935 / Costa Rica Norte',NULL,NULL,'EPSG','4499','EPSG','5451','EPSG','5390','EPSG','3869',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5457','Ocotepeque 1935 / Costa Rica Sur',NULL,NULL,'EPSG','4499','EPSG','5451','EPSG','5394','EPSG','3870',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5458','Ocotepeque 1935 / Guatemala Norte',NULL,NULL,'EPSG','4499','EPSG','4267','EPSG','18211','EPSG','2120',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5459','Ocotepeque 1935 / Guatemala Sur',NULL,NULL,'EPSG','4499','EPSG','5451','EPSG','18212','EPSG','2121',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5460','Ocotepeque 1935 / El Salvador Lambert',NULL,NULL,'EPSG','4499','EPSG','5451','EPSG','5399','EPSG','3243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5461','Ocotepeque 1935 / Nicaragua Norte',NULL,NULL,'EPSG','4499','EPSG','5451','EPSG','5439','EPSG','3844',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5462','Ocotepeque 1935 / Nicaragua Sur',NULL,NULL,'EPSG','4499','EPSG','5451','EPSG','5444','EPSG','3847',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5463','SAD69 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16017','EPSG','3830',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5466','Sibun Gorge 1922 / Colony Grid',NULL,NULL,'EPSG','4499','EPSG','5464','EPSG','5465','EPSG','3219',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5469','Panama-Colon 1911 / Panama Lambert',NULL,NULL,'EPSG','4499','EPSG','5467','EPSG','5468','EPSG','3290',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5472','Panama-Colon 1911 / Panama Polyconic',NULL,NULL,'EPSG','1028','EPSG','5467','EPSG','5471','EPSG','3290',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5479','RSRGD2000 / MSLC2000',NULL,NULL,'EPSG','4500','EPSG','4764','EPSG','5475','EPSG','3853',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5480','RSRGD2000 / BCLC2000',NULL,NULL,'EPSG','4500','EPSG','4764','EPSG','5476','EPSG','3854',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5481','RSRGD2000 / PCLC2000',NULL,NULL,'EPSG','4500','EPSG','4764','EPSG','5477','EPSG','3855',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5482','RSRGD2000 / RSPS2000',NULL,NULL,'EPSG','1044','EPSG','4764','EPSG','5478','EPSG','3856',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5490','RGAF09 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','5489','EPSG','16020','EPSG','3825',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5513','S-JTSK / Krovak',NULL,NULL,'EPSG','6501','EPSG','4156','EPSG','5509','EPSG','1306',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5514','S-JTSK / Krovak East North',NULL,NULL,'EPSG','4499','EPSG','4156','EPSG','5510','EPSG','1306',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5515','S-JTSK/05 / Modified Krovak',NULL,NULL,'EPSG','6501','EPSG','5228','EPSG','5511','EPSG','1079',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5516','S-JTSK/05 / Modified Krovak East North',NULL,NULL,'EPSG','4499','EPSG','5228','EPSG','5512','EPSG','1079',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5518','CI1971 / Chatham Islands Map Grid',NULL,NULL,'EPSG','4500','EPSG','4672','EPSG','5517','EPSG','2889',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5519','CI1979 / Chatham Islands Map Grid',NULL,NULL,'EPSG','4500','EPSG','4673','EPSG','5517','EPSG','2889',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5520','DHDN / 3-degree Gauss-Kruger zone 1',NULL,NULL,'EPSG','4530','EPSG','4314','EPSG','16261','EPSG','3892',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5523','WGS 84 / Gabon TM 2011',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','5522','EPSG','1100',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5530','SAD69(96) / Brazil Polyconic',NULL,NULL,'EPSG','4499','EPSG','5527','EPSG','19941','EPSG','1053',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5531','SAD69(96) / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','5527','EPSG','16121','EPSG','3881',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5532','SAD69(96) / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16122','EPSG','3878',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5533','SAD69(96) / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','5527','EPSG','16123','EPSG','3445',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5534','SAD69(96) / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','5527','EPSG','16124','EPSG','3446',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5535','SAD69(96) / UTM zone 25S',NULL,NULL,'EPSG','4400','EPSG','5527','EPSG','16125','EPSG','3447',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5536','Corrego Alegre 1961 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','5524','EPSG','16121','EPSG','3355',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5537','Corrego Alegre 1961 / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','5524','EPSG','16122','EPSG','3176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5538','Corrego Alegre 1961 / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','5524','EPSG','16123','EPSG','3177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5539','Corrego Alegre 1961 / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','5524','EPSG','16124','EPSG','3877',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5550','PNG94 / PNGMG94 zone 54',NULL,NULL,'EPSG','4400','EPSG','5546','EPSG','5547','EPSG','3882',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5551','PNG94 / PNGMG94 zone 55',NULL,NULL,'EPSG','4400','EPSG','5546','EPSG','5548','EPSG','3885',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5552','PNG94 / PNGMG94 zone 56',NULL,NULL,'EPSG','4400','EPSG','5546','EPSG','5549','EPSG','3888',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5559','Ocotepeque 1935 / Guatemala Norte',NULL,NULL,'EPSG','4499','EPSG','5451','EPSG','18211','EPSG','2120',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5562','UCS-2000 / Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16204','EPSG','3895',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5563','UCS-2000 / Gauss-Kruger zone 5',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16205','EPSG','3898',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5564','UCS-2000 / Gauss-Kruger zone 6',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16206','EPSG','3903',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5565','UCS-2000 / Gauss-Kruger zone 7',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16207','EPSG','3905',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5566','UCS-2000 / Gauss-Kruger CM 21E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16304','EPSG','3895',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5567','UCS-2000 / Gauss-Kruger CM 27E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16305','EPSG','3898',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5568','UCS-2000 / Gauss-Kruger CM 33E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16306','EPSG','3903',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5569','UCS-2000 / Gauss-Kruger CM 39E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16307','EPSG','3905',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5570','UCS-2000 / 3-degree Gauss-Kruger zone 7',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16267','EPSG','3906',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5571','UCS-2000 / 3-degree Gauss-Kruger zone 8',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16268','EPSG','3907',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5572','UCS-2000 / 3-degree Gauss-Kruger zone 9',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16269','EPSG','3908',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5573','UCS-2000 / 3-degree Gauss-Kruger zone 10',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16270','EPSG','3909',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5574','UCS-2000 / 3-degree Gauss-Kruger zone 11',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16271','EPSG','3910',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5575','UCS-2000 / 3-degree Gauss-Kruger zone 12',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16272','EPSG','3912',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5576','UCS-2000 / 3-degree Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16273','EPSG','3913',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5577','UCS-2000 / 3-degree Gauss-Kruger CM 21E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16304','EPSG','3906',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5578','UCS-2000 / 3-degree Gauss-Kruger CM 24E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16368','EPSG','3907',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5579','UCS-2000 / 3-degree Gauss-Kruger CM 27E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16305','EPSG','3908',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5580','UCS-2000 / 3-degree Gauss-Kruger CM 30E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16370','EPSG','3909',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5581','UCS-2000 / 3-degree Gauss-Kruger CM 33E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16306','EPSG','3910',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5582','UCS-2000 / 3-degree Gauss-Kruger CM 36E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16372','EPSG','3912',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5583','UCS-2000 / 3-degree Gauss-Kruger CM 39E',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','16307','EPSG','3913',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','5588','NAD27 / New Brunswick Stereographic (NAD27)',NULL,NULL,'EPSG','1029','EPSG','4267','EPSG','5587','EPSG','1447',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5589','Sibun Gorge 1922 / Colony Grid',NULL,NULL,'EPSG','4403','EPSG','5464','EPSG','5465','EPSG','3219',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5596','FEH2010 / Fehmarnbelt TM',NULL,NULL,'EPSG','4400','EPSG','5593','EPSG','5595','EPSG','3889',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5623','NAD27 / Michigan East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12101','EPSG','1720',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5624','NAD27 / Michigan Old Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12102','EPSG','1721',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5625','NAD27 / Michigan West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12103','EPSG','3652',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5627','ED50 / TM 6 NE',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16406','EPSG','3897',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5629','Moznet / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','4130','EPSG','16138','EPSG','1541',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5631','Pulkovo 1942(58) / Gauss-Kruger zone 2 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4179','EPSG','16202','EPSG','3575',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5632','PTRA08 / LCC Europe',NULL,NULL,'EPSG','4500','EPSG','5013','EPSG','19985','EPSG','3670',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5633','PTRA08 / LAEA Europe',NULL,NULL,'EPSG','4532','EPSG','5013','EPSG','19986','EPSG','3670',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5634','REGCAN95 / LCC Europe',NULL,NULL,'EPSG','4500','EPSG','4081','EPSG','19985','EPSG','3199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5635','REGCAN95 / LAEA Europe',NULL,NULL,'EPSG','4500','EPSG','4081','EPSG','19986','EPSG','3199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5636','TUREF / LAEA Europe',NULL,NULL,'EPSG','4532','EPSG','5252','EPSG','19986','EPSG','1237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5637','TUREF / LCC Europe',NULL,NULL,'EPSG','4500','EPSG','5252','EPSG','19985','EPSG','1237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5638','ISN2004 / LAEA Europe',NULL,NULL,'EPSG','4532','EPSG','5324','EPSG','19986','EPSG','1120',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5639','ISN2004 / LCC Europe',NULL,NULL,'EPSG','4500','EPSG','5324','EPSG','19985','EPSG','1120',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5641','SIRGAS 2000 / Brazil Mercator',NULL,NULL,'EPSG','4499','EPSG','4674','EPSG','5640','EPSG','3896',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5643','ED50 / SPBA LCC',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','5642','EPSG','3899',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5644','RGR92 / UTM zone 39S',NULL,NULL,'EPSG','4400','EPSG','4627','EPSG','16139','EPSG','3915',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5646','NAD83 / Vermont (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','5645','EPSG','1414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5649','ETRS89 / UTM zone 31N (zE-N)',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','5647','EPSG','2860',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5650','ETRS89 / UTM zone 33N (zE-N)',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','5648','EPSG','2862',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5651','ETRS89 / UTM zone 31N (N-zE)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5647','EPSG','2860',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5652','ETRS89 / UTM zone 32N (N-zE)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','4648','EPSG','2861',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5653','ETRS89 / UTM zone 33N (N-zE)',NULL,NULL,'EPSG','4500','EPSG','4258','EPSG','5648','EPSG','2862',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5654','NAD83(HARN) / Vermont (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','5645','EPSG','1414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5655','NAD83(NSRS2007) / Vermont (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','5645','EPSG','1414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5659','Monte Mario / TM Emilia-Romagna',NULL,NULL,'EPSG','4499','EPSG','4265','EPSG','5658','EPSG','4035',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5663','Pulkovo 1942(58) / Gauss-Kruger zone 3 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4179','EPSG','16203','EPSG','1792',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5664','Pulkovo 1942(83) / Gauss-Kruger zone 2 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4178','EPSG','16202','EPSG','3575',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5665','Pulkovo 1942(83) / Gauss-Kruger zone 3 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4178','EPSG','16203','EPSG','3576',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5666','PD/83 / 3-degree Gauss-Kruger zone 3 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4746','EPSG','16263','EPSG','3392',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5667','PD/83 / 3-degree Gauss-Kruger zone 4 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4746','EPSG','16264','EPSG','3393',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5668','RD/83 / 3-degree Gauss-Kruger zone 4 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4745','EPSG','16264','EPSG','3395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5669','RD/83 / 3-degree Gauss-Kruger zone 5 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4745','EPSG','16265','EPSG','3394',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5670','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 3 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4179','EPSG','16263','EPSG','1512',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5671','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 4 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4179','EPSG','16264','EPSG','1513',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5672','Pulkovo 1942(58) / 3-degree Gauss-Kruger zone 5 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4179','EPSG','16265','EPSG','3580',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5673','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 3 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4178','EPSG','16263','EPSG','1512',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5674','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 4 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4178','EPSG','16264','EPSG','1513',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5675','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 5 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4178','EPSG','16265','EPSG','1514',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5676','DHDN / 3-degree Gauss-Kruger zone 2 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4314','EPSG','16262','EPSG','1624',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5677','DHDN / 3-degree Gauss-Kruger zone 3 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4314','EPSG','16263','EPSG','1625',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5678','DHDN / 3-degree Gauss-Kruger zone 4 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4314','EPSG','16264','EPSG','1626',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5679','DHDN / 3-degree Gauss-Kruger zone 5 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4314','EPSG','16265','EPSG','1627',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5680','DHDN / 3-degree Gauss-Kruger zone 1 (E-N)',NULL,NULL,'EPSG','4400','EPSG','4314','EPSG','16261','EPSG','3892',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5682','DB_REF / 3-degree Gauss-Kruger zone 2 (E-N)',NULL,NULL,'EPSG','4400','EPSG','5681','EPSG','16262','EPSG','1624',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5683','DB_REF / 3-degree Gauss-Kruger zone 3 (E-N)',NULL,NULL,'EPSG','4400','EPSG','5681','EPSG','16263','EPSG','3993',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5684','DB_REF / 3-degree Gauss-Kruger zone 4 (E-N)',NULL,NULL,'EPSG','4400','EPSG','5681','EPSG','16264','EPSG','3996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5685','DB_REF / 3-degree Gauss-Kruger zone 5 (E-N)',NULL,NULL,'EPSG','4400','EPSG','5681','EPSG','16265','EPSG','3998',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5700','NZGD2000 / UTM zone 1S',NULL,NULL,'EPSG','4400','EPSG','4167','EPSG','16101','EPSG','3992',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5819','EPSG topocentric example A',NULL,NULL,'EPSG','4461','EPSG','4979','EPSG','15594','EPSG','4393',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5820','EPSG topocentric example B',NULL,NULL,'EPSG','4461','EPSG','4978','EPSG','15595','EPSG','4393',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5825','AGD66 / ACT Standard Grid',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','5824','EPSG','2283',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5836','Yemen NGN96 / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4163','EPSG','16037','EPSG','4006',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5837','Yemen NGN96 / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','4163','EPSG','16040','EPSG','4002',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5839','Peru96 / UTM zone 17S',NULL,NULL,'EPSG','4400','EPSG','5373','EPSG','16117','EPSG','3837',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5842','WGS 84 / TM 12 SE',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16612','EPSG','4025',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5844','RGRDC 2005 / Congo TM zone 30',NULL,NULL,'EPSG','4499','EPSG','4046','EPSG','17430','EPSG','4018',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5858','SAD69(96) / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','5527','EPSG','16122','EPSG','3878',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5875','SAD69(96) / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','5527','EPSG','16118','EPSG','4023',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5876','SAD69(96) / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','5527','EPSG','16119','EPSG','4024',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5877','SAD69(96) / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','5527','EPSG','16120','EPSG','4026',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5879','Cadastre 1997 / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','4475','EPSG','16138','EPSG','3340',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5880','SIRGAS 2000 / Brazil Polyconic',NULL,NULL,'EPSG','4499','EPSG','4674','EPSG','19941','EPSG','1053',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5887','TGD2005 / Tonga Map Grid',NULL,NULL,'EPSG','4400','EPSG','5886','EPSG','5883','EPSG','1234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5890','JAXA Snow Depth Polar Stereographic North',NULL,NULL,'EPSG','1035','EPSG','4054','EPSG','5889','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5896','VN-2000 / TM-3 zone 481',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','5892','EPSG','4193',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5897','VN-2000 / TM-3 zone 482',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','5893','EPSG','4215',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5898','VN-2000 / TM-3 zone 491',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','5894','EPSG','4217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5899','VN-2000 / TM-3 107-45',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','5895','EPSG','4218',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5921','WGS 84 / EPSG Arctic Regional zone A1',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5906','EPSG','4019',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5922','WGS 84 / EPSG Arctic Regional zone A2',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5907','EPSG','4027',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5923','WGS 84 / EPSG Arctic Regional zone A3',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5908','EPSG','4028',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5924','WGS 84 / EPSG Arctic Regional zone A4',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5909','EPSG','4029',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5925','WGS 84 / EPSG Arctic Regional zone A5',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5910','EPSG','4031',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5926','WGS 84 / EPSG Arctic Regional zone B1',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5911','EPSG','4032',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5927','WGS 84 / EPSG Arctic Regional zone B2',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5912','EPSG','4033',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5928','WGS 84 / EPSG Arctic Regional zone B3',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5913','EPSG','4034',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5929','WGS 84 / EPSG Arctic Regional zone B4',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5914','EPSG','4037',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5930','WGS 84 / EPSG Arctic Regional zone B5',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5915','EPSG','4038',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5931','WGS 84 / EPSG Arctic Regional zone C1',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5916','EPSG','4040',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5932','WGS 84 / EPSG Arctic Regional zone C2',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5917','EPSG','4041',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5933','WGS 84 / EPSG Arctic Regional zone C3',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5918','EPSG','4042',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5934','WGS 84 / EPSG Arctic Regional zone C4',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5919','EPSG','4043',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5935','WGS 84 / EPSG Arctic Regional zone C5',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5920','EPSG','4045',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5936','WGS 84 / EPSG Alaska Polar Stereographic',NULL,NULL,'EPSG','4467','EPSG','4326','EPSG','5901','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5937','WGS 84 / EPSG Canada Polar Stereographic',NULL,NULL,'EPSG','4466','EPSG','4326','EPSG','5902','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5938','WGS 84 / EPSG Greenland Polar Stereographic',NULL,NULL,'EPSG','1036','EPSG','4326','EPSG','5903','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5939','WGS 84 / EPSG Norway Polar Stereographic',NULL,NULL,'EPSG','1037','EPSG','4326','EPSG','5904','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','5940','WGS 84 / EPSG Russia Polar Stereographic',NULL,NULL,'EPSG','1038','EPSG','4326','EPSG','5905','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6050','GR96 / EPSG Arctic zone 1-25',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','5979','EPSG','4048',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6051','GR96 / EPSG Arctic zone 2-18',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','5987','EPSG','4039',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6052','GR96 / EPSG Arctic zone 2-20',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','5988','EPSG','4046',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6053','GR96 / EPSG Arctic zone 3-29',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6002','EPSG','4073',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6054','GR96 / EPSG Arctic zone 3-31',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6003','EPSG','4074',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6055','GR96 / EPSG Arctic zone 3-33',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6004','EPSG','4075',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6056','GR96 / EPSG Arctic zone 4-20',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6009','EPSG','4080',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6057','GR96 / EPSG Arctic zone 4-22',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6010','EPSG','4081',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6058','GR96 / EPSG Arctic zone 4-24',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6011','EPSG','4082',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6059','GR96 / EPSG Arctic zone 5-41',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6035','EPSG','4106',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6060','GR96 / EPSG Arctic zone 5-43',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6036','EPSG','4107',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6061','GR96 / EPSG Arctic zone 5-45',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6037','EPSG','4108',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6062','GR96 / EPSG Arctic zone 6-26',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6045','EPSG','4116',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6063','GR96 / EPSG Arctic zone 6-28',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6046','EPSG','4117',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6064','GR96 / EPSG Arctic zone 6-30',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6047','EPSG','4118',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6065','GR96 / EPSG Arctic zone 7-11',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6048','EPSG','4119',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6066','GR96 / EPSG Arctic zone 7-13',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','6049','EPSG','4120',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6067','GR96 / EPSG Arctic zone 8-20',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','5943','EPSG','4123',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6068','GR96 / EPSG Arctic zone 8-22',NULL,NULL,'EPSG','4400','EPSG','4747','EPSG','5944','EPSG','4124',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6069','ETRS89 / EPSG Arctic zone 2-22',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','5989','EPSG','4053',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6070','ETRS89 / EPSG Arctic zone 3-11',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','5993','EPSG','4058',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6071','ETRS89 / EPSG Arctic zone 4-26',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','6012','EPSG','4083',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6072','ETRS89 / EPSG Arctic zone 4-28',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','6013','EPSG','4084',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6073','ETRS89 / EPSG Arctic zone 5-11',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','6020','EPSG','4091',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6074','ETRS89 / EPSG Arctic zone 5-13',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','6021','EPSG','4092',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6075','WGS 84 / EPSG Arctic zone 2-24',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5990','EPSG','4054',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6076','WGS 84 / EPSG Arctic zone 2-26',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5991','EPSG','4055',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6077','WGS 84 / EPSG Arctic zone 3-13',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5994','EPSG','4059',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6078','WGS 84 / EPSG Arctic zone 3-15',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5995','EPSG','4060',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6079','WGS 84 / EPSG Arctic zone 3-17',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5996','EPSG','4061',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6080','WGS 84 / EPSG Arctic zone 3-19',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5997','EPSG','4062',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6081','WGS 84 / EPSG Arctic zone 4-30',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6014','EPSG','4085',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6082','WGS 84 / EPSG Arctic zone 4-32',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6015','EPSG','4086',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6083','WGS 84 / EPSG Arctic zone 4-34',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6016','EPSG','4087',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6084','WGS 84 / EPSG Arctic zone 4-36',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6017','EPSG','4088',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6085','WGS 84 / EPSG Arctic zone 4-38',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6018','EPSG','4089',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6086','WGS 84 / EPSG Arctic zone 4-40',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6019','EPSG','4090',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6087','WGS 84 / EPSG Arctic zone 5-15',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6022','EPSG','4093',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6088','WGS 84 / EPSG Arctic zone 5-17',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6023','EPSG','4094',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6089','WGS 84 / EPSG Arctic zone 5-19',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6024','EPSG','4095',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6090','WGS 84 / EPSG Arctic zone 5-21',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6025','EPSG','4096',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6091','WGS 84 / EPSG Arctic zone 5-23',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6026','EPSG','4097',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6092','WGS 84 / EPSG Arctic zone 5-25',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6027','EPSG','4098',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6093','WGS 84 / EPSG Arctic zone 5-27',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6028','EPSG','4099',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6094','NAD83(NSRS2007) / EPSG Arctic zone 5-29',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','6029','EPSG','4100',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6095','NAD83(NSRS2007) / EPSG Arctic zone 5-31',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','6030','EPSG','4101',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6096','NAD83(NSRS2007) / EPSG Arctic zone 6-14',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','6039','EPSG','4110',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6097','NAD83(NSRS2007) / EPSG Arctic zone 6-16',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','6040','EPSG','4111',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6098','NAD83(CSRS) / EPSG Arctic zone 1-23',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','5978','EPSG','4047',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6099','NAD83(CSRS) / EPSG Arctic zone 2-14',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','5985','EPSG','4030',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6100','NAD83(CSRS) / EPSG Arctic zone 2-16',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','5986','EPSG','4036',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6101','NAD83(CSRS) / EPSG Arctic zone 3-25',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6000','EPSG','4065',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6102','NAD83(CSRS) / EPSG Arctic zone 3-27',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6001','EPSG','4070',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6103','NAD83(CSRS) / EPSG Arctic zone 3-29',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6002','EPSG','4072',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6104','NAD83(CSRS) / EPSG Arctic zone 4-14',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6006','EPSG','4077',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6105','NAD83(CSRS) / EPSG Arctic zone 4-16',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6007','EPSG','4078',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6106','NAD83(CSRS) / EPSG Arctic zone 4-18',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6008','EPSG','4079',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6107','NAD83(CSRS) / EPSG Arctic zone 5-33',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6031','EPSG','4102',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6108','NAD83(CSRS) / EPSG Arctic zone 5-35',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6032','EPSG','4103',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6109','NAD83(CSRS) / EPSG Arctic zone 5-37',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6033','EPSG','4104',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6110','NAD83(CSRS) / EPSG Arctic zone 5-39',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6034','EPSG','4105',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6111','NAD83(CSRS) / EPSG Arctic zone 6-18',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6041','EPSG','4112',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6112','NAD83(CSRS) / EPSG Arctic zone 6-20',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6042','EPSG','4113',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6113','NAD83(CSRS) / EPSG Arctic zone 6-22',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6043','EPSG','4114',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6114','NAD83(CSRS) / EPSG Arctic zone 6-24',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','6044','EPSG','4115',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6115','WGS 84 / EPSG Arctic zone 1-27',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5980','EPSG','4049',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6116','WGS 84 / EPSG Arctic zone 1-29',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5981','EPSG','4050',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6117','WGS 84 / EPSG Arctic zone 1-31',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5982','EPSG','4051',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6118','WGS 84 / EPSG Arctic zone 1-21',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5977','EPSG','4044',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6119','WGS 84 / EPSG Arctic zone 2-28',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5992','EPSG','4056',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6120','WGS 84 / EPSG Arctic zone 2-10',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5983','EPSG','4057',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6121','WGS 84 / EPSG Arctic zone 2-12',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5984','EPSG','4052',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6122','WGS 84 / EPSG Arctic zone 3-21',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5998','EPSG','4063',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6123','WGS 84 / EPSG Arctic zone 3-23',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','5999','EPSG','4064',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6124','WGS 84 / EPSG Arctic zone 4-12',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6005','EPSG','4076',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6125','ETRS89 / EPSG Arctic zone 5-47',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','6038','EPSG','4109',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6128','Grand Cayman National Grid 1959',NULL,NULL,'EPSG','1039','EPSG','4723','EPSG','6127','EPSG','3185',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6129','Sister Islands National Grid 1961',NULL,NULL,'EPSG','1039','EPSG','4726','EPSG','6127','EPSG','3186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6141','Cayman Islands National Grid 2011',NULL,NULL,'EPSG','1039','EPSG','6135','EPSG','6126','EPSG','1063',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6200','NAD27 / Michigan North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','6197','EPSG','1723',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6201','NAD27 / Michigan Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','6198','EPSG','1724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6202','NAD27 / Michigan South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','6199','EPSG','1725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6204','Macedonia State Coordinate System',NULL,NULL,'EPSG','4498','EPSG','3906','EPSG','6203','EPSG','1148',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6210','SIRGAS 2000 / UTM zone 23N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16023','EPSG','4129',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6211','SIRGAS 2000 / UTM zone 24N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16024','EPSG','4133',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6244','MAGNA-SIRGAS / Arauca urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6212','EPSG','4122',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6245','MAGNA-SIRGAS / Armenia urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6213','EPSG','4132',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6246','MAGNA-SIRGAS / Barranquilla urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6214','EPSG','4134',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6247','MAGNA-SIRGAS / Bogota urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6215','EPSG','4135',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6248','MAGNA-SIRGAS / Bucaramanga urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6216','EPSG','4136',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6249','MAGNA-SIRGAS / Cali urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6217','EPSG','4137',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6250','MAGNA-SIRGAS / Cartagena urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6218','EPSG','4138',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6251','MAGNA-SIRGAS / Cucuta urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6219','EPSG','4139',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6252','MAGNA-SIRGAS / Florencia urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6220','EPSG','4140',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6253','MAGNA-SIRGAS / Ibague urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6221','EPSG','4141',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6254','MAGNA-SIRGAS / Inirida urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6222','EPSG','4142',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6255','MAGNA-SIRGAS / Leticia urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6223','EPSG','4143',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6256','MAGNA-SIRGAS / Manizales urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6224','EPSG','4144',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6257','MAGNA-SIRGAS / Medellin urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6225','EPSG','4145',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6258','MAGNA-SIRGAS / Mitu urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6226','EPSG','4146',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6259','MAGNA-SIRGAS / Mocoa urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6227','EPSG','4147',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6260','MAGNA-SIRGAS / Monteria urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6228','EPSG','4148',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6261','MAGNA-SIRGAS / Neiva urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6229','EPSG','4149',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6262','MAGNA-SIRGAS / Pasto urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6230','EPSG','4150',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6263','MAGNA-SIRGAS / Pereira urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6231','EPSG','4151',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6264','MAGNA-SIRGAS / Popayan urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6232','EPSG','4152',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6265','MAGNA-SIRGAS / Puerto Carreno urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6233','EPSG','4153',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6266','MAGNA-SIRGAS / Quibdo urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6234','EPSG','4154',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6267','MAGNA-SIRGAS / Riohacha urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6235','EPSG','4155',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6268','MAGNA-SIRGAS / San Andres urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6236','EPSG','4156',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6269','MAGNA-SIRGAS / San Jose del Guaviare urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6237','EPSG','4157',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6270','MAGNA-SIRGAS / Santa Marta urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6238','EPSG','4128',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6271','MAGNA-SIRGAS / Sucre urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6239','EPSG','4130',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6272','MAGNA-SIRGAS / Tunja urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6240','EPSG','4131',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6273','MAGNA-SIRGAS / Valledupar urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6241','EPSG','4158',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6274','MAGNA-SIRGAS / Villavicencio urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6242','EPSG','4159',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6275','MAGNA-SIRGAS / Yopal urban grid',NULL,NULL,'EPSG','4500','EPSG','4686','EPSG','6243','EPSG','4160',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6307','NAD83(CORS96) / Puerto Rico and Virgin Is.',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','15230','EPSG','3634',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6312','CGRS93 / Cyprus Local Transverse Mercator',NULL,NULL,'EPSG','4400','EPSG','6311','EPSG','6308','EPSG','3236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6316','MGI 1901 / Balkans zone 7',NULL,NULL,'EPSG','4498','EPSG','3906','EPSG','18277','EPSG','1711',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6328','NAD83(2011) / UTM zone 59N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16059','EPSG','3372',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6329','NAD83(2011) / UTM zone 60N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16060','EPSG','3373',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6330','NAD83(2011) / UTM zone 1N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16001','EPSG','3374',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6331','NAD83(2011) / UTM zone 2N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16002','EPSG','3375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6332','NAD83(2011) / UTM zone 3N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16003','EPSG','2133',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6333','NAD83(2011) / UTM zone 4N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16004','EPSG','2134',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6334','NAD83(2011) / UTM zone 5N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16005','EPSG','2135',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6335','NAD83(2011) / UTM zone 6N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16006','EPSG','2136',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6336','NAD83(2011) / UTM zone 7N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16007','EPSG','3494',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6337','NAD83(2011) / UTM zone 8N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16008','EPSG','3495',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6338','NAD83(2011) / UTM zone 9N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16009','EPSG','3496',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6339','NAD83(2011) / UTM zone 10N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16010','EPSG','3497',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6340','NAD83(2011) / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16011','EPSG','3498',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6341','NAD83(2011) / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16012','EPSG','3499',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6342','NAD83(2011) / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16013','EPSG','3500',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6343','NAD83(2011) / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16014','EPSG','3501',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6344','NAD83(2011) / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16015','EPSG','3502',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6345','NAD83(2011) / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16016','EPSG','3503',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6346','NAD83(2011) / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16017','EPSG','3504',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6347','NAD83(2011) / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16018','EPSG','3505',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6348','NAD83(2011) / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16019','EPSG','3506',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6350','NAD83(2011) / Conus Albers',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','5068','EPSG','1323',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6351','NAD83(2011) / EPSG Arctic zone 5-29',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','6029','EPSG','4100',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6352','NAD83(2011) / EPSG Arctic zone 5-31',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','6030','EPSG','4101',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6353','NAD83(2011) / EPSG Arctic zone 6-14',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','6039','EPSG','4110',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6354','NAD83(2011) / EPSG Arctic zone 6-16',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','6040','EPSG','4111',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6355','NAD83(2011) / Alabama East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10131','EPSG','2154',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6356','NAD83(2011) / Alabama West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10132','EPSG','2155',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6362','Mexico ITRF92 / LCC',NULL,NULL,'EPSG','4500','EPSG','4483','EPSG','6361','EPSG','1160',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6366','Mexico ITRF2008 / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','6365','EPSG','16011','EPSG','3423',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6367','Mexico ITRF2008 / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','6365','EPSG','16012','EPSG','3424',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6368','Mexico ITRF2008 / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','6365','EPSG','16013','EPSG','3425',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6369','Mexico ITRF2008 / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','6365','EPSG','16014','EPSG','3426',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6370','Mexico ITRF2008 / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','6365','EPSG','16015','EPSG','3633',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6371','Mexico ITRF2008 / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','6365','EPSG','16016','EPSG','3635',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6372','Mexico ITRF2008 / LCC',NULL,NULL,'EPSG','4500','EPSG','6365','EPSG','6361','EPSG','1160',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6381','UCS-2000 / Ukraine TM zone 7',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','6374','EPSG','3906',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6382','UCS-2000 / Ukraine TM zone 8',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','6375','EPSG','3907',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6383','UCS-2000 / Ukraine TM zone 9',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','6376','EPSG','3908',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6384','UCS-2000 / Ukraine TM zone 10',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','6377','EPSG','3909',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6385','UCS-2000 / Ukraine TM zone 11',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','6378','EPSG','3910',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6386','UCS-2000 / Ukraine TM zone 12',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','6379','EPSG','3912',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6387','UCS-2000 / Ukraine TM zone 13',NULL,NULL,'EPSG','4530','EPSG','5561','EPSG','6380','EPSG','3913',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6391','Cayman Islands National Grid 2011',NULL,NULL,'EPSG','1039','EPSG','6135','EPSG','6390','EPSG','1063',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6393','NAD83(2011) / Alaska Albers',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15021','EPSG','1330',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6394','NAD83(2011) / Alaska zone 1',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15031','EPSG','2156',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6395','NAD83(2011) / Alaska zone 2',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15032','EPSG','2158',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6396','NAD83(2011) / Alaska zone 3',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15033','EPSG','2159',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6397','NAD83(2011) / Alaska zone 4',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15034','EPSG','2160',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6398','NAD83(2011) / Alaska zone 5',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15035','EPSG','2161',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6399','NAD83(2011) / Alaska zone 6',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15036','EPSG','2162',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6400','NAD83(2011) / Alaska zone 7',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15037','EPSG','2163',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6401','NAD83(2011) / Alaska zone 8',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15038','EPSG','2164',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6402','NAD83(2011) / Alaska zone 9',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15039','EPSG','2165',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6403','NAD83(2011) / Alaska zone 10',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15040','EPSG','2157',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6404','NAD83(2011) / Arizona Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10232','EPSG','2166',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6405','NAD83(2011) / Arizona Central (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15305','EPSG','2166',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6406','NAD83(2011) / Arizona East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10231','EPSG','2167',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6407','NAD83(2011) / Arizona East (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15304','EPSG','2167',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6408','NAD83(2011) / Arizona West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10233','EPSG','2168',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6409','NAD83(2011) / Arizona West (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15306','EPSG','2168',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6410','NAD83(2011) / Arkansas North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10331','EPSG','2169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6411','NAD83(2011) / Arkansas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15385','EPSG','2169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6412','NAD83(2011) / Arkansas South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10332','EPSG','2170',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6413','NAD83(2011) / Arkansas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15386','EPSG','2170',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6414','NAD83(2011) / California Albers',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10420','EPSG','1375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6415','NAD83(2011) / California zone 1',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10431','EPSG','2175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6416','NAD83(2011) / California zone 1 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15307','EPSG','2175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6417','NAD83(2011) / California zone 2',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10432','EPSG','2176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6418','NAD83(2011) / California zone 2 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15308','EPSG','2176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6419','NAD83(2011) / California zone 3',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10433','EPSG','2177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6420','NAD83(2011) / California zone 3 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15309','EPSG','2177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6421','NAD83(2011) / California zone 4',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10434','EPSG','2178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6422','NAD83(2011) / California zone 4 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15310','EPSG','2178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6423','NAD83(2011) / California zone 5',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10435','EPSG','2182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6424','NAD83(2011) / California zone 5 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15311','EPSG','2182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6425','NAD83(2011) / California zone 6',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10436','EPSG','2180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6426','NAD83(2011) / California zone 6 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15312','EPSG','2180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6427','NAD83(2011) / Colorado Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10532','EPSG','2183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6428','NAD83(2011) / Colorado Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15314','EPSG','2183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6429','NAD83(2011) / Colorado North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10531','EPSG','2184',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6430','NAD83(2011) / Colorado North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15313','EPSG','2184',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6431','NAD83(2011) / Colorado South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10533','EPSG','2185',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6432','NAD83(2011) / Colorado South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15315','EPSG','2185',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6433','NAD83(2011) / Connecticut',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10630','EPSG','1377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6434','NAD83(2011) / Connecticut (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15316','EPSG','1377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6435','NAD83(2011) / Delaware',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10730','EPSG','1378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6436','NAD83(2011) / Delaware (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15317','EPSG','1378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6437','NAD83(2011) / Florida East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10931','EPSG','2186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6438','NAD83(2011) / Florida East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15318','EPSG','2186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6439','NAD83(2011) / Florida GDL Albers',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10934','EPSG','1379',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6440','NAD83(2011) / Florida North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10933','EPSG','2187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6441','NAD83(2011) / Florida North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15320','EPSG','2187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6442','NAD83(2011) / Florida West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','10932','EPSG','2188',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6443','NAD83(2011) / Florida West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15319','EPSG','2188',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6444','NAD83(2011) / Georgia East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11031','EPSG','2189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6445','NAD83(2011) / Georgia East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15321','EPSG','2189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6446','NAD83(2011) / Georgia West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11032','EPSG','2190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6447','NAD83(2011) / Georgia West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15322','EPSG','2190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6448','NAD83(2011) / Idaho Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11132','EPSG','2191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6449','NAD83(2011) / Idaho Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15324','EPSG','2191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6450','NAD83(2011) / Idaho East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11131','EPSG','2192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6451','NAD83(2011) / Idaho East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15323','EPSG','2192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6452','NAD83(2011) / Idaho West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11133','EPSG','2193',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6453','NAD83(2011) / Idaho West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15325','EPSG','2193',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6454','NAD83(2011) / Illinois East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11231','EPSG','2194',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6455','NAD83(2011) / Illinois East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15387','EPSG','2194',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6456','NAD83(2011) / Illinois West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11232','EPSG','2195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6457','NAD83(2011) / Illinois West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15388','EPSG','2195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6458','NAD83(2011) / Indiana East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11331','EPSG','2196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6459','NAD83(2011) / Indiana East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15372','EPSG','2196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6460','NAD83(2011) / Indiana West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11332','EPSG','2197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6461','NAD83(2011) / Indiana West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15373','EPSG','2197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6462','NAD83(2011) / Iowa North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11431','EPSG','2198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6463','NAD83(2011) / Iowa North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15377','EPSG','2198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6464','NAD83(2011) / Iowa South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11432','EPSG','2199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6465','NAD83(2011) / Iowa South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15378','EPSG','2199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6466','NAD83(2011) / Kansas North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11531','EPSG','2200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6467','NAD83(2011) / Kansas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15379','EPSG','2200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6468','NAD83(2011) / Kansas South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11532','EPSG','2201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6469','NAD83(2011) / Kansas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15380','EPSG','2201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6470','NAD83(2011) / Kentucky North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15303','EPSG','2202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6471','NAD83(2011) / Kentucky North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15328','EPSG','2202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6472','NAD83(2011) / Kentucky Single Zone',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11630','EPSG','1386',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6473','NAD83(2011) / Kentucky Single Zone (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15375','EPSG','1386',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6474','NAD83(2011) / Kentucky South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11632','EPSG','2203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6475','NAD83(2011) / Kentucky South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15329','EPSG','2203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6476','NAD83(2011) / Louisiana North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11731','EPSG','2204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6477','NAD83(2011) / Louisiana North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15391','EPSG','2204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6478','NAD83(2011) / Louisiana South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11732','EPSG','2529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6479','NAD83(2011) / Louisiana South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15392','EPSG','2529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6480','NAD83(2011) / Maine CS2000 Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11854','EPSG','2959',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6481','NAD83(2011) / Maine CS2000 East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11851','EPSG','2960',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6482','NAD83(2011) / Maine CS2000 West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11853','EPSG','2958',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6483','NAD83(2011) / Maine East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11831','EPSG','2206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6484','NAD83(2011) / Maine East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','11833','EPSG','2206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6485','NAD83(2011) / Maine West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11832','EPSG','2207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6486','NAD83(2011) / Maine West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','11834','EPSG','2207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6487','NAD83(2011) / Maryland',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','11930','EPSG','1389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6488','NAD83(2011) / Maryland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15330','EPSG','1389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6489','NAD83(2011) / Massachusetts Island',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12032','EPSG','2208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6490','NAD83(2011) / Massachusetts Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15332','EPSG','2208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6491','NAD83(2011) / Massachusetts Mainland',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12031','EPSG','2209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6492','NAD83(2011) / Massachusetts Mainland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15331','EPSG','2209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6493','NAD83(2011) / Michigan Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12142','EPSG','1724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6494','NAD83(2011) / Michigan Central (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15334','EPSG','1724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6495','NAD83(2011) / Michigan North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12141','EPSG','1723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6496','NAD83(2011) / Michigan North (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15333','EPSG','1723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6497','NAD83(2011) / Michigan Oblique Mercator',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12150','EPSG','1391',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6498','NAD83(2011) / Michigan South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12143','EPSG','1725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6499','NAD83(2011) / Michigan South (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15335','EPSG','1725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6500','NAD83(2011) / Minnesota Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12232','EPSG','2213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6501','NAD83(2011) / Minnesota Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','12235','EPSG','2213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6502','NAD83(2011) / Minnesota North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12231','EPSG','2214',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6503','NAD83(2011) / Minnesota North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','12234','EPSG','2214',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6504','NAD83(2011) / Minnesota South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12233','EPSG','2215',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6505','NAD83(2011) / Minnesota South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','12236','EPSG','2215',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6506','NAD83(2011) / Mississippi East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12331','EPSG','2216',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6507','NAD83(2011) / Mississippi East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15336','EPSG','2216',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6508','NAD83(2011) / Mississippi TM',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','3813','EPSG','1393',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6509','NAD83(2011) / Mississippi West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12332','EPSG','2217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6510','NAD83(2011) / Mississippi West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15337','EPSG','2217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6511','NAD83(2011) / Missouri Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12432','EPSG','2218',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6512','NAD83(2011) / Missouri East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12431','EPSG','2219',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6513','NAD83(2011) / Missouri West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12433','EPSG','2220',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6514','NAD83(2011) / Montana',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12530','EPSG','1395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6515','NAD83(2011) / Montana (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15338','EPSG','1395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6516','NAD83(2011) / Nebraska',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12630','EPSG','1396',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6517','NAD83(2011) / Nebraska (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15396','EPSG','1396',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6518','NAD83(2011) / Nevada Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12732','EPSG','2223',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6519','NAD83(2011) / Nevada Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15382','EPSG','2223',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6520','NAD83(2011) / Nevada East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12731','EPSG','2224',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6521','NAD83(2011) / Nevada East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15381','EPSG','2224',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6522','NAD83(2011) / Nevada West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12733','EPSG','2225',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6523','NAD83(2011) / Nevada West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15383','EPSG','2225',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6524','NAD83(2011) / New Hampshire',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12830','EPSG','1398',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6525','NAD83(2011) / New Hampshire (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15389','EPSG','1398',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6526','NAD83(2011) / New Jersey',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','12930','EPSG','1399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6527','NAD83(2011) / New Jersey (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15384','EPSG','1399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6528','NAD83(2011) / New Mexico Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13032','EPSG','2231',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6529','NAD83(2011) / New Mexico Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15340','EPSG','2231',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6530','NAD83(2011) / New Mexico East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13031','EPSG','2228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6531','NAD83(2011) / New Mexico East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15339','EPSG','2228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6532','NAD83(2011) / New Mexico West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13033','EPSG','2232',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6533','NAD83(2011) / New Mexico West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15341','EPSG','2232',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6534','NAD83(2011) / New York Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13132','EPSG','2233',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6535','NAD83(2011) / New York Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15343','EPSG','2233',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6536','NAD83(2011) / New York East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13131','EPSG','2234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6537','NAD83(2011) / New York East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15342','EPSG','2234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6538','NAD83(2011) / New York Long Island',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13134','EPSG','2235',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6539','NAD83(2011) / New York Long Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15345','EPSG','2235',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6540','NAD83(2011) / New York West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13133','EPSG','2236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6541','NAD83(2011) / New York West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15344','EPSG','2236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6542','NAD83(2011) / North Carolina',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13230','EPSG','1402',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6543','NAD83(2011) / North Carolina (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15346','EPSG','1402',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6544','NAD83(2011) / North Dakota North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13331','EPSG','2237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6545','NAD83(2011) / North Dakota North (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15347','EPSG','2237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6546','NAD83(2011) / North Dakota South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13332','EPSG','2238',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6547','NAD83(2011) / North Dakota South (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15348','EPSG','2238',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6548','NAD83(2011) / Ohio North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13431','EPSG','2239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6549','NAD83(2011) / Ohio North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','13433','EPSG','2239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6550','NAD83(2011) / Ohio South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13432','EPSG','2240',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6551','NAD83(2011) / Ohio South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','13434','EPSG','2240',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6552','NAD83(2011) / Oklahoma North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13531','EPSG','2241',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6553','NAD83(2011) / Oklahoma North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15349','EPSG','2241',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6554','NAD83(2011) / Oklahoma South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13532','EPSG','2242',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6555','NAD83(2011) / Oklahoma South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15350','EPSG','2242',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6556','NAD83(2011) / Oregon LCC (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13633','EPSG','1406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6557','NAD83(2011) / Oregon GIC Lambert (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15374','EPSG','1406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6558','NAD83(2011) / Oregon North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13631','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6559','NAD83(2011) / Oregon North (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15351','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6560','NAD83(2011) / Oregon South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13632','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6561','NAD83(2011) / Oregon South (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15352','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6562','NAD83(2011) / Pennsylvania North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13731','EPSG','2245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6563','NAD83(2011) / Pennsylvania North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15353','EPSG','2245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6564','NAD83(2011) / Pennsylvania South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13732','EPSG','2246',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6565','NAD83(2011) / Pennsylvania South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15354','EPSG','2246',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6566','NAD83(2011) / Puerto Rico and Virgin Is.',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','15230','EPSG','3634',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6567','NAD83(2011) / Rhode Island',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13830','EPSG','1408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6568','NAD83(2011) / Rhode Island (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15390','EPSG','1408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6569','NAD83(2011) / South Carolina',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','13930','EPSG','1409',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6570','NAD83(2011) / South Carolina (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','15355','EPSG','1409',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6571','NAD83(2011) / South Dakota North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14031','EPSG','2249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6572','NAD83(2011) / South Dakota North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15394','EPSG','2249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6573','NAD83(2011) / South Dakota South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14032','EPSG','2250',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6574','NAD83(2011) / South Dakota South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15395','EPSG','2250',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6575','NAD83(2011) / Tennessee',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14130','EPSG','1411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6576','NAD83(2011) / Tennessee (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15356','EPSG','1411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6577','NAD83(2011) / Texas Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14233','EPSG','2252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6578','NAD83(2011) / Texas Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15359','EPSG','2252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6579','NAD83(2011) / Texas Centric Albers Equal Area',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14254','EPSG','1412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6580','NAD83(2011) / Texas Centric Lambert Conformal',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14253','EPSG','1412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6581','NAD83(2011) / Texas North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14231','EPSG','2253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6582','NAD83(2011) / Texas North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15357','EPSG','2253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6583','NAD83(2011) / Texas North Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14232','EPSG','2254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6584','NAD83(2011) / Texas North Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15358','EPSG','2254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6585','NAD83(2011) / Texas South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14235','EPSG','2528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6586','NAD83(2011) / Texas South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15361','EPSG','2528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6587','NAD83(2011) / Texas South Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14234','EPSG','2527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6588','NAD83(2011) / Texas South Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15360','EPSG','2527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6589','NAD83(2011) / Vermont',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14430','EPSG','1414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6590','NAD83(2011) / Vermont (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','5645','EPSG','1414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6591','NAD83(2011) / Virginia Lambert',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','3967','EPSG','1415',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6592','NAD83(2011) / Virginia North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14531','EPSG','2260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6593','NAD83(2011) / Virginia North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15365','EPSG','2260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6594','NAD83(2011) / Virginia South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14532','EPSG','2261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6595','NAD83(2011) / Virginia South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15366','EPSG','2261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6596','NAD83(2011) / Washington North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14631','EPSG','2273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6597','NAD83(2011) / Washington North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15367','EPSG','2273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6598','NAD83(2011) / Washington South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14632','EPSG','2274',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6599','NAD83(2011) / Washington South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15368','EPSG','2274',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6600','NAD83(2011) / West Virginia North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14731','EPSG','2264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6601','NAD83(2011) / West Virginia North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','14735','EPSG','2264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6602','NAD83(2011) / West Virginia South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14732','EPSG','2265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6603','NAD83(2011) / West Virginia South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','14736','EPSG','2265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6604','NAD83(2011) / Wisconsin Central',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14832','EPSG','2266',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6605','NAD83(2011) / Wisconsin Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15370','EPSG','2266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6606','NAD83(2011) / Wisconsin North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14831','EPSG','2267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6607','NAD83(2011) / Wisconsin North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15369','EPSG','2267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6608','NAD83(2011) / Wisconsin South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14833','EPSG','2268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6609','NAD83(2011) / Wisconsin South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15371','EPSG','2268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6610','NAD83(2011) / Wisconsin Transverse Mercator',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14841','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6611','NAD83(2011) / Wyoming East',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14931','EPSG','2269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6612','NAD83(2011) / Wyoming East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','14935','EPSG','2269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6613','NAD83(2011) / Wyoming East Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14932','EPSG','2270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6614','NAD83(2011) / Wyoming East Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','14936','EPSG','2270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6615','NAD83(2011) / Wyoming West',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14934','EPSG','2271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6616','NAD83(2011) / Wyoming West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','14938','EPSG','2271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6617','NAD83(2011) / Wyoming West Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14933','EPSG','2272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6618','NAD83(2011) / Wyoming West Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','14937','EPSG','2272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6619','NAD83(2011) / Utah Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14332','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6620','NAD83(2011) / Utah North',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14331','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6621','NAD83(2011) / Utah South',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14333','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6622','NAD83(CSRS) / Quebec Lambert',NULL,NULL,'EPSG','4499','EPSG','4617','EPSG','19944','EPSG','1368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6623','NAD83 / Quebec Albers',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','6645','EPSG','1368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6624','NAD83(CSRS) / Quebec Albers',NULL,NULL,'EPSG','4499','EPSG','4617','EPSG','6645','EPSG','1368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6625','NAD83(2011) / Utah Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15298','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6626','NAD83(2011) / Utah North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15297','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6627','NAD83(2011) / Utah South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15299','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6628','NAD83(PA11) / Hawaii zone 1',NULL,NULL,'EPSG','4499','EPSG','6322','EPSG','15131','EPSG','1546',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6629','NAD83(PA11) / Hawaii zone 2',NULL,NULL,'EPSG','4499','EPSG','6322','EPSG','15132','EPSG','1547',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6630','NAD83(PA11) / Hawaii zone 3',NULL,NULL,'EPSG','4499','EPSG','6322','EPSG','15133','EPSG','1548',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6631','NAD83(PA11) / Hawaii zone 4',NULL,NULL,'EPSG','4499','EPSG','6322','EPSG','15134','EPSG','1549',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6632','NAD83(PA11) / Hawaii zone 5',NULL,NULL,'EPSG','4499','EPSG','6322','EPSG','15135','EPSG','1550',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6633','NAD83(PA11) / Hawaii zone 3 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6322','EPSG','15138','EPSG','1548',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6634','NAD83(PA11) / UTM zone 4N',NULL,NULL,'EPSG','4400','EPSG','6322','EPSG','16004','EPSG','3488',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6635','NAD83(PA11) / UTM zone 5N',NULL,NULL,'EPSG','4400','EPSG','6322','EPSG','16005','EPSG','3491',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6636','NAD83(PA11) / UTM zone 2S',NULL,NULL,'EPSG','4400','EPSG','6322','EPSG','16102','EPSG','3110',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6637','NAD83(MA11) / Guam Map Grid',NULL,NULL,'EPSG','4499','EPSG','6325','EPSG','4325','EPSG','3255',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6646','Karbala 1979 / Iraq National Grid',NULL,NULL,'EPSG','4400','EPSG','4743','EPSG','19907','EPSG','3625',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6669','JGD2011 / Japan Plane Rectangular CS I',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17801','EPSG','1854',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6670','JGD2011 / Japan Plane Rectangular CS II',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17802','EPSG','1855',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6671','JGD2011 / Japan Plane Rectangular CS III',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17803','EPSG','1856',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6672','JGD2011 / Japan Plane Rectangular CS IV',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17804','EPSG','1857',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6673','JGD2011 / Japan Plane Rectangular CS V',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17805','EPSG','1858',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6674','JGD2011 / Japan Plane Rectangular CS VI',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17806','EPSG','1859',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6675','JGD2011 / Japan Plane Rectangular CS VII',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17807','EPSG','1860',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6676','JGD2011 / Japan Plane Rectangular CS VIII',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17808','EPSG','1861',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6677','JGD2011 / Japan Plane Rectangular CS IX',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17809','EPSG','1862',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6678','JGD2011 / Japan Plane Rectangular CS X',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17810','EPSG','1863',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6679','JGD2011 / Japan Plane Rectangular CS XI',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17811','EPSG','1864',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6680','JGD2011 / Japan Plane Rectangular CS XII',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17812','EPSG','1865',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6681','JGD2011 / Japan Plane Rectangular CS XIII',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17813','EPSG','1866',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6682','JGD2011 / Japan Plane Rectangular CS XIV',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17814','EPSG','1867',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6683','JGD2011 / Japan Plane Rectangular CS XV',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17815','EPSG','1868',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6684','JGD2011 / Japan Plane Rectangular CS XVI',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17816','EPSG','1869',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6685','JGD2011 / Japan Plane Rectangular CS XVII',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17817','EPSG','1870',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6686','JGD2011 / Japan Plane Rectangular CS XVIII',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17818','EPSG','1871',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6687','JGD2011 / Japan Plane Rectangular CS XIX',NULL,NULL,'EPSG','4530','EPSG','6668','EPSG','17819','EPSG','1872',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6688','JGD2011 / UTM zone 51N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16051','EPSG','3959',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6689','JGD2011 / UTM zone 52N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16052','EPSG','3960',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6690','JGD2011 / UTM zone 53N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16053','EPSG','3961',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6691','JGD2011 / UTM zone 54N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16054','EPSG','3962',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6692','JGD2011 / UTM zone 55N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16055','EPSG','3963',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6703','WGS 84 / TM 60 SW',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6702','EPSG','4172',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6707','RDN2008 / UTM zone 32N (N-E)',NULL,NULL,'EPSG','4500','EPSG','6706','EPSG','16032','EPSG','1718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6708','RDN2008 / UTM zone 33N (N-E)',NULL,NULL,'EPSG','4500','EPSG','6706','EPSG','16033','EPSG','4186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6709','RDN2008 / UTM zone 34N (N-E)',NULL,NULL,'EPSG','4500','EPSG','6706','EPSG','16034','EPSG','4187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6720','WGS 84 / CIG92',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6716','EPSG','4169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6721','GDA94 / CIG94',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','6717','EPSG','4169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6722','WGS 84 / CKIG92',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','6718','EPSG','1069',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6723','GDA94 / CKIG94',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','6719','EPSG','1069',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6732','GDA94 / MGA zone 41',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','6725','EPSG','4173',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6733','GDA94 / MGA zone 42',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','6726','EPSG','4181',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6734','GDA94 / MGA zone 43',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','6727','EPSG','4184',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6735','GDA94 / MGA zone 44',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','6728','EPSG','4185',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6736','GDA94 / MGA zone 46',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','6729','EPSG','4189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6737','GDA94 / MGA zone 47',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','6730','EPSG','4190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6738','GDA94 / MGA zone 59',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','6731','EPSG','4179',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6784','NAD83(CORS96) / Oregon Baker zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6741','EPSG','4180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6785','NAD83(CORS96) / Oregon Baker zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6742','EPSG','4180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6786','NAD83(2011) / Oregon Baker zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6741','EPSG','4180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6787','NAD83(2011) / Oregon Baker zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6742','EPSG','4180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6788','NAD83(CORS96) / Oregon Bend-Klamath Falls zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6743','EPSG','4192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6789','NAD83(CORS96) / Oregon Bend-Klamath Falls zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6744','EPSG','4192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6790','NAD83(2011) / Oregon Bend-Klamath Falls zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6743','EPSG','4192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6791','NAD83(2011) / Oregon Bend-Klamath Falls zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6744','EPSG','4192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6792','NAD83(CORS96) / Oregon Bend-Redmond-Prineville zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6745','EPSG','4195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6793','NAD83(CORS96) / Oregon Bend-Redmond-Prineville zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6746','EPSG','4195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6794','NAD83(2011) / Oregon Bend-Redmond-Prineville zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6745','EPSG','4195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6795','NAD83(2011) / Oregon Bend-Redmond-Prineville zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6746','EPSG','4195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6796','NAD83(CORS96) / Oregon Bend-Burns zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6747','EPSG','4182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6797','NAD83(CORS96) / Oregon Bend-Burns zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6748','EPSG','4182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6798','NAD83(2011) / Oregon Bend-Burns zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6747','EPSG','4182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6799','NAD83(2011) / Oregon Bend-Burns zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6748','EPSG','4182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6800','NAD83(CORS96) / Oregon Canyonville-Grants Pass zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6749','EPSG','4199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6801','NAD83(CORS96) / Oregon Canyonville-Grants Pass zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6750','EPSG','4199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6802','NAD83(2011) / Oregon Canyonville-Grants Pass zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6749','EPSG','4199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6803','NAD83(2011) / Oregon Canyonville-Grants Pass zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6750','EPSG','4199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6804','NAD83(CORS96) / Oregon Columbia River East zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6751','EPSG','4200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6805','NAD83(CORS96) / Oregon Columbia River East zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6752','EPSG','4200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6806','NAD83(2011) / Oregon Columbia River East zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6751','EPSG','4200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6807','NAD83(2011) / Oregon Columbia River East zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6752','EPSG','4200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6808','NAD83(CORS96) / Oregon Columbia River West zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6753','EPSG','4202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6809','NAD83(CORS96) / Oregon Columbia River West zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6754','EPSG','4202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6810','NAD83(2011) / Oregon Columbia River West zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6753','EPSG','4202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6811','NAD83(2011) / Oregon Columbia River West zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6754','EPSG','4202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6812','NAD83(CORS96) / Oregon Cottage Grove-Canyonville zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6755','EPSG','4203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6813','NAD83(CORS96) / Oregon Cottage Grove-Canyonville zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6756','EPSG','4203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6814','NAD83(2011) / Oregon Cottage Grove-Canyonville zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6755','EPSG','4203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6815','NAD83(2011) / Oregon Cottage Grove-Canyonville zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6756','EPSG','4203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6816','NAD83(CORS96) / Oregon Dufur-Madras zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6757','EPSG','4204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6817','NAD83(CORS96) / Oregon Dufur-Madras zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6758','EPSG','4204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6818','NAD83(2011) / Oregon Dufur-Madras zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6757','EPSG','4204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6819','NAD83(2011) / Oregon Dufur-Madras zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6758','EPSG','4204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6820','NAD83(CORS96) / Oregon Eugene zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6759','EPSG','4197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6821','NAD83(CORS96) / Oregon Eugene zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6760','EPSG','4197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6822','NAD83(2011) / Oregon Eugene zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6759','EPSG','4197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6823','NAD83(2011) / Oregon Eugene zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6760','EPSG','4197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6824','NAD83(CORS96) / Oregon Grants Pass-Ashland zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6761','EPSG','4198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6825','NAD83(CORS96) / Oregon Grants Pass-Ashland zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6762','EPSG','4198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6826','NAD83(2011) / Oregon Grants Pass-Ashland zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6761','EPSG','4198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6827','NAD83(2011) / Oregon Grants Pass-Ashland zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6762','EPSG','4198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6828','NAD83(CORS96) / Oregon Gresham-Warm Springs zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6763','EPSG','4201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6829','NAD83(CORS96) / Oregon Gresham-Warm Springs zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6764','EPSG','4201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6830','NAD83(2011) / Oregon Gresham-Warm Springs zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6763','EPSG','4201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6831','NAD83(2011) / Oregon Gresham-Warm Springs zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6764','EPSG','4201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6832','NAD83(CORS96) / Oregon La Grande zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6765','EPSG','4206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6833','NAD83(CORS96) / Oregon La Grande zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6766','EPSG','4206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6834','NAD83(2011) / Oregon La Grande zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6765','EPSG','4206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6835','NAD83(2011) / Oregon La Grande zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6766','EPSG','4206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6836','NAD83(CORS96) / Oregon Ontario zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6767','EPSG','4207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6837','NAD83(CORS96) / Oregon Ontario zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6768','EPSG','4207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6838','NAD83(2011) / Oregon Ontario zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6767','EPSG','4207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6839','NAD83(2011) / Oregon Ontario zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6768','EPSG','4207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6840','NAD83(CORS96) / Oregon Coast zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6769','EPSG','4208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6841','NAD83(CORS96) / Oregon Coast zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6770','EPSG','4208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6842','NAD83(2011) / Oregon Coast zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6769','EPSG','4208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6843','NAD83(2011) / Oregon Coast zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6770','EPSG','4208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6844','NAD83(CORS96) / Oregon Pendleton zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6771','EPSG','4209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6845','NAD83(CORS96) / Oregon Pendleton zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6772','EPSG','4209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6846','NAD83(2011) / Oregon Pendleton zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6771','EPSG','4209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6847','NAD83(2011) / Oregon Pendleton zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6772','EPSG','4209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6848','NAD83(CORS96) / Oregon Pendleton-La Grande zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6773','EPSG','4210',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6849','NAD83(CORS96) / Oregon Pendleton-La Grande zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6774','EPSG','4210',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6850','NAD83(2011) / Oregon Pendleton-La Grande zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6773','EPSG','4210',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6851','NAD83(2011) / Oregon Pendleton-La Grande zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6774','EPSG','4210',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6852','NAD83(CORS96) / Oregon Portland zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6775','EPSG','4211',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6853','NAD83(CORS96) / Oregon Portland zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6776','EPSG','4211',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6854','NAD83(2011) / Oregon Portland zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6775','EPSG','4211',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6855','NAD83(2011) / Oregon Portland zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6776','EPSG','4211',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6856','NAD83(CORS96) / Oregon Salem zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6777','EPSG','4212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6857','NAD83(CORS96) / Oregon Salem zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6778','EPSG','4212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6858','NAD83(2011) / Oregon Salem zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6777','EPSG','4212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6859','NAD83(2011) / Oregon Salem zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6778','EPSG','4212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6860','NAD83(CORS96) / Oregon Santiam Pass zone (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','6779','EPSG','4213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6861','NAD83(CORS96) / Oregon Santiam Pass zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','6780','EPSG','4213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6862','NAD83(2011) / Oregon Santiam Pass zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6779','EPSG','4213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6863','NAD83(2011) / Oregon Santiam Pass zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','6780','EPSG','4213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6867','NAD83(CORS96) / Oregon LCC (m)',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','13633','EPSG','1406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6868','NAD83(CORS96) / Oregon GIC Lambert (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','15374','EPSG','1406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6870','ETRS89 / Albania TM 2010',NULL,NULL,'EPSG','4530','EPSG','4258','EPSG','6869','EPSG','3212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6875','RDN2008 / Italy zone (N-E)',NULL,NULL,'EPSG','4500','EPSG','6706','EPSG','6877','EPSG','1127',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6876','RDN2008 / Zone 12 (N-E)',NULL,NULL,'EPSG','4500','EPSG','6706','EPSG','6878','EPSG','1127',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6879','NAD83(2011) / Wisconsin Central',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','14832','EPSG','2266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6880','NAD83(2011) / Nebraska (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','15396','EPSG','1396',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6884','NAD83(CORS96) / Oregon North',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','13631','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6885','NAD83(CORS96) / Oregon North (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','15351','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6886','NAD83(CORS96) / Oregon South',NULL,NULL,'EPSG','4499','EPSG','6783','EPSG','13632','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6887','NAD83(CORS96) / Oregon South (ft)',NULL,NULL,'EPSG','4495','EPSG','6783','EPSG','15352','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6915','South East Island 1943 / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','6892','EPSG','16040','EPSG','4183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6922','NAD83 / Kansas LCC',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','6920','EPSG','1385',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6923','NAD83 / Kansas LCC (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','6921','EPSG','1385',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6924','NAD83(2011) / Kansas LCC',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6920','EPSG','1385',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6925','NAD83(2011) / Kansas LCC (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','6921','EPSG','1385',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6931','WGS 84 / NSIDC EASE-Grid 2.0 North',NULL,NULL,'EPSG','4469','EPSG','4326','EPSG','6929','EPSG','3475',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6932','WGS 84 / NSIDC EASE-Grid 2.0 South',NULL,NULL,'EPSG','4470','EPSG','4326','EPSG','6930','EPSG','3474',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6933','WGS 84 / NSIDC EASE-Grid 2.0 Global',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','6928','EPSG','3463',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6956','VN-2000 / TM-3 zone 481',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','6952','EPSG','4193',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6957','VN-2000 / TM-3 zone 482',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','6953','EPSG','4215',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6958','VN-2000 / TM-3 zone 491',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','6954','EPSG','4217',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6959','VN-2000 / TM-3 Da Nang zone',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','6955','EPSG','4218',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6962','ETRS89 / Albania LCC 2010',NULL,NULL,'EPSG','4530','EPSG','4258','EPSG','6961','EPSG','3212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6966','NAD27 / Michigan North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','6965','EPSG','1723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6984','Israeli Grid 05',NULL,NULL,'EPSG','4400','EPSG','6983','EPSG','18204','EPSG','2603',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6991','Israeli Grid 05/12',NULL,NULL,'EPSG','4400','EPSG','6990','EPSG','18204','EPSG','2603',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','6996','NAD83(2011) / San Francisco CS13',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','6994','EPSG','4228',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','6997','NAD83(2011) / San Francisco CS13 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','6995','EPSG','4228',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','7005','Nahrwan 1934 / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4744','EPSG','16037','EPSG','3387',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7006','Nahrwan 1934 / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4744','EPSG','16038','EPSG','3388',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7007','Nahrwan 1934 / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4744','EPSG','16039','EPSG','3956',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7057','NAD83(2011) / IaRCS zone 1',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7043','EPSG','4164',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7058','NAD83(2011) / IaRCS zone 2',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7044','EPSG','4219',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7059','NAD83(2011) / IaRCS zone 3',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7045','EPSG','4230',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7060','NAD83(2011) / IaRCS zone 4',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7046','EPSG','4233',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7061','NAD83(2011) / IaRCS zone 5',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7047','EPSG','4234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7062','NAD83(2011) / IaRCS zone 6',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7048','EPSG','4235',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7063','NAD83(2011) / IaRCS zone 7',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7049','EPSG','4236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7064','NAD83(2011) / IaRCS zone 8',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7050','EPSG','4237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7065','NAD83(2011) / IaRCS zone 9',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7051','EPSG','4239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7066','NAD83(2011) / IaRCS zone 10',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7052','EPSG','4240',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7067','NAD83(2011) / IaRCS zone 11',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7053','EPSG','4241',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7068','NAD83(2011) / IaRCS zone 12',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7054','EPSG','4242',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7069','NAD83(2011) / IaRCS zone 13',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7055','EPSG','4243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7070','NAD83(2011) / IaRCS zone 14',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7056','EPSG','4244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7074','RGTAAF07 / UTM zone 37S',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','16137','EPSG','3934',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7075','RGTAAF07 / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','16138','EPSG','4245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7076','RGTAAF07 / UTM zone 39S',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','16139','EPSG','4247',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7077','RGTAAF07 / UTM zone 40S',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','16140','EPSG','4248',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7078','RGTAAF07 / UTM zone 41S',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','16141','EPSG','4249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7079','RGTAAF07 / UTM zone 42S',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','16142','EPSG','4250',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7080','RGTAAF07 / UTM zone 43S',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','16143','EPSG','4251',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7081','RGTAAF07 / UTM zone 44S',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','16144','EPSG','4252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7082','RGTAAF07 / Terre Adelie Polar Stereographic',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','19983','EPSG','2818',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','7109','NAD83(2011) / RMTCRS St Mary (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7089','EPSG','4310',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7110','NAD83(2011) / RMTCRS Blackfeet (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7091','EPSG','4311',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7111','NAD83(2011) / RMTCRS Milk River (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7093','EPSG','4312',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7112','NAD83(2011) / RMTCRS Fort Belknap (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7095','EPSG','4313',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7113','NAD83(2011) / RMTCRS Fort Peck Assiniboine (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7097','EPSG','4314',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7114','NAD83(2011) / RMTCRS Fort Peck Sioux (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7099','EPSG','4315',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7115','NAD83(2011) / RMTCRS Crow (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7101','EPSG','4316',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7116','NAD83(2011) / RMTCRS Bobcat (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7103','EPSG','4317',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7117','NAD83(2011) / RMTCRS Billings (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7105','EPSG','4318',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7118','NAD83(2011) / RMTCRS Wind River (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7107','EPSG','4319',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7119','NAD83(2011) / RMTCRS St Mary (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','7090','EPSG','4310',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7120','NAD83(2011) / RMTCRS Blackfeet (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','7092','EPSG','4311',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7121','NAD83(2011) / RMTCRS Milk River (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','7094','EPSG','4312',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7122','NAD83(2011) / RMTCRS Fort Belknap (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','7096','EPSG','4313',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7123','NAD83(2011) / RMTCRS Fort Peck Assiniboine (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','7098','EPSG','4314',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7124','NAD83(2011) / RMTCRS Fort Peck Sioux (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','7100','EPSG','4315',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7125','NAD83(2011) / RMTCRS Crow (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','7102','EPSG','4316',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7126','NAD83(2011) / RMTCRS Bobcat (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','7104','EPSG','4317',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7127','NAD83(2011) / RMTCRS Billings (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','7106','EPSG','4318',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7128','NAD83(2011) / RMTCRS Wind River (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7108','EPSG','4319',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7131','NAD83(2011) / San Francisco CS13',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7129','EPSG','4228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7132','NAD83(2011) / San Francisco CS13 (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7130','EPSG','4228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7142','Palestine 1923 / Palestine Grid modified',NULL,NULL,'EPSG','4400','EPSG','4281','EPSG','7141','EPSG','1356',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7257','NAD83(2011) / InGCS Adams (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7143','EPSG','4289',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7258','NAD83(2011) / InGCS Adams (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7144','EPSG','4289',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7259','NAD83(2011) / InGCS Allen (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7145','EPSG','4285',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7260','NAD83(2011) / InGCS Allen (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7146','EPSG','4285',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7261','NAD83(2011) / InGCS Bartholomew (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7147','EPSG','4302',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7262','NAD83(2011) / InGCS Bartholomew (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7148','EPSG','4302',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7263','NAD83(2011) / InGCS Benton (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7149','EPSG','4256',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7264','NAD83(2011) / InGCS Benton (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7150','EPSG','4256',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7265','NAD83(2011) / InGCS Blackford-Delaware (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7151','EPSG','4291',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7266','NAD83(2011) / InGCS Blackford-Delaware (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7152','EPSG','4291',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7267','NAD83(2011) / InGCS Boone-Hendricks (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7153','EPSG','4263',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7268','NAD83(2011) / InGCS Boone-Hendricks (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7154','EPSG','4263',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7269','NAD83(2011) / InGCS Brown (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7155','EPSG','4301',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7270','NAD83(2011) / InGCS Brown (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7156','EPSG','4301',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7271','NAD83(2011) / InGCS Carroll (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7157','EPSG','4258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7272','NAD83(2011) / InGCS Carroll (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7158','EPSG','4258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7273','NAD83(2011) / InGCS Cass (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7159','EPSG','4286',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7274','NAD83(2011) / InGCS Cass (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7160','EPSG','4286',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7275','NAD83(2011) / InGCS Clark-Floyd-Scott (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7161','EPSG','4308',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7276','NAD83(2011) / InGCS Clark-Floyd-Scott (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7162','EPSG','4308',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7277','NAD83(2011) / InGCS Clay (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7163','EPSG','4265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7278','NAD83(2011) / InGCS Clay (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7164','EPSG','4265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7279','NAD83(2011) / InGCS Clinton (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7165','EPSG','4260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7280','NAD83(2011) / InGCS Clinton (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7166','EPSG','4260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7281','NAD83(2011) / InGCS Crawford-Lawrence-Orange (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7167','EPSG','4272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7282','NAD83(2011) / InGCS Crawford-Lawrence-Orange (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7168','EPSG','4272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7283','NAD83(2011) / InGCS Daviess-Greene (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7169','EPSG','4269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7284','NAD83(2011) / InGCS Daviess-Greene (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7170','EPSG','4269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7285','NAD83(2011) / InGCS Dearborn-Ohio-Switzerland (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7171','EPSG','4306',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7286','NAD83(2011) / InGCS Dearborn-Ohio-Switzerland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7172','EPSG','4306',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7287','NAD83(2011) / InGCS Decatur-Rush (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7173','EPSG','4299',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7288','NAD83(2011) / InGCS Decatur-Rush (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7174','EPSG','4299',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7289','NAD83(2011) / InGCS DeKalb (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7175','EPSG','4283',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7290','NAD83(2011) / InGCS DeKalb (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7176','EPSG','4283',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7291','NAD83(2011) / InGCS Dubois-Martin (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7177','EPSG','4271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7292','NAD83(2011) / InGCS Dubois-Martin (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7178','EPSG','4271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7293','NAD83(2011) / InGCS Elkhart-Kosciusko-Wabash (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7179','EPSG','4280',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7294','NAD83(2011) / InGCS Elkhart-Kosciusko-Wabash (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7180','EPSG','4280',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7295','NAD83(2011) / InGCS Fayette-Franklin-Union (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7181','EPSG','4300',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7296','NAD83(2011) / InGCS Fayette-Franklin-Union (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7182','EPSG','4300',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7297','NAD83(2011) / InGCS Fountain-Warren (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7183','EPSG','4259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7298','NAD83(2011) / InGCS Fountain-Warren (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7184','EPSG','4259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7299','NAD83(2011) / InGCS Fulton-Marshall-St. Joseph (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7185','EPSG','4279',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7300','NAD83(2011) / InGCS Fulton-Marshall-St. Joseph (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7186','EPSG','4279',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7301','NAD83(2011) / InGCS Gibson (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7187','EPSG','4273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7302','NAD83(2011) / InGCS Gibson (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7188','EPSG','4273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7303','NAD83(2011) / InGCS Grant (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7189','EPSG','4290',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7304','NAD83(2011) / InGCS Grant (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7190','EPSG','4290',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7305','NAD83(2011) / InGCS Hamilton-Tipton (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7191','EPSG','4293',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7306','NAD83(2011) / InGCS Hamilton-Tipton (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7192','EPSG','4293',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7307','NAD83(2011) / InGCS Hancock-Madison (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7193','EPSG','4294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7308','NAD83(2011) / InGCS Hancock-Madison (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7194','EPSG','4294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7309','NAD83(2011) / InGCS Harrison-Washington (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7195','EPSG','4307',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7310','NAD83(2011) / InGCS Harrison-Washington (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7196','EPSG','4307',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7311','NAD83(2011) / InGCS Henry (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7197','EPSG','4296',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7312','NAD83(2011) / InGCS Henry (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7198','EPSG','4296',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7313','NAD83(2011) / InGCS Howard-Miami (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7199','EPSG','4287',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7314','NAD83(2011) / InGCS Howard-Miami (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7200','EPSG','4287',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7315','NAD83(2011) / InGCS Huntington-Whitley (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7201','EPSG','4284',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7316','NAD83(2011) / InGCS Huntington-Whitley (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7202','EPSG','4284',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7317','NAD83(2011) / InGCS Jackson (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7203','EPSG','4303',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7318','NAD83(2011) / InGCS Jackson (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7204','EPSG','4303',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7319','NAD83(2011) / InGCS Jasper-Porter (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7205','EPSG','4254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7320','NAD83(2011) / InGCS Jasper-Porter (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7206','EPSG','4254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7321','NAD83(2011) / InGCS Jay (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7207','EPSG','4292',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7322','NAD83(2011) / InGCS Jay (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7208','EPSG','4292',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7323','NAD83(2011) / InGCS Jefferson (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7209','EPSG','4309',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7324','NAD83(2011) / InGCS Jefferson (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7210','EPSG','4309',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7325','NAD83(2011) / InGCS Jennings (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7211','EPSG','4304',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7326','NAD83(2011) / InGCS Jennings (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7212','EPSG','4304',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7327','NAD83(2011) / InGCS Johnson-Marion (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7213','EPSG','4297',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7328','NAD83(2011) / InGCS Johnson-Marion (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7214','EPSG','4297',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7329','NAD83(2011) / InGCS Knox (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7215','EPSG','4270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7330','NAD83(2011) / InGCS Knox (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7216','EPSG','4270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7331','NAD83(2011) / InGCS LaGrange-Noble (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7217','EPSG','4281',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7332','NAD83(2011) / InGCS LaGrange-Noble (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7218','EPSG','4281',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7333','NAD83(2011) / InGCS Lake-Newton (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7219','EPSG','4253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7334','NAD83(2011) / InGCS Lake-Newton (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7220','EPSG','4253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7335','NAD83(2011) / InGCS LaPorte-Pulaski-Starke (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7221','EPSG','4255',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7336','NAD83(2011) / InGCS LaPorte-Pulaski-Starke (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7222','EPSG','4255',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7337','NAD83(2011) / InGCS Monroe-Morgan (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7223','EPSG','4267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7338','NAD83(2011) / InGCS Monroe-Morgan (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7224','EPSG','4267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7339','NAD83(2011) / InGCS Montgomery-Putnam (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7225','EPSG','4262',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7340','NAD83(2011) / InGCS Montgomery-Putnam (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7226','EPSG','4262',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7341','NAD83(2011) / InGCS Owen (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7227','EPSG','4266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7342','NAD83(2011) / InGCS Owen (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7228','EPSG','4266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7343','NAD83(2011) / InGCS Parke-Vermillion (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7229','EPSG','4261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7344','NAD83(2011) / InGCS Parke-Vermillion (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7230','EPSG','4261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7345','NAD83(2011) / InGCS Perry (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7231','EPSG','4278',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7346','NAD83(2011) / InGCS Perry (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7232','EPSG','4278',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7347','NAD83(2011) / InGCS Pike-Warrick (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7233','EPSG','4274',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7348','NAD83(2011) / InGCS Pike-Warrick (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7234','EPSG','4274',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7349','NAD83(2011) / InGCS Posey (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7235','EPSG','4275',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7350','NAD83(2011) / InGCS Posey (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7236','EPSG','4275',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7351','NAD83(2011) / InGCS Randolph-Wayne (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7237','EPSG','4295',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7352','NAD83(2011) / InGCS Randolph-Wayne (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7238','EPSG','4295',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7353','NAD83(2011) / InGCS Ripley (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7239','EPSG','4305',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7354','NAD83(2011) / InGCS Ripley (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7240','EPSG','4305',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7355','NAD83(2011) / InGCS Shelby (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7241','EPSG','4298',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7356','NAD83(2011) / InGCS Shelby (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7242','EPSG','4298',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7357','NAD83(2011) / InGCS Spencer (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7243','EPSG','4277',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7358','NAD83(2011) / InGCS Spencer (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7244','EPSG','4277',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7359','NAD83(2011) / InGCS Steuben (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7245','EPSG','4282',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7360','NAD83(2011) / InGCS Steuben (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7246','EPSG','4282',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7361','NAD83(2011) / InGCS Sullivan (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7247','EPSG','4268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7362','NAD83(2011) / InGCS Sullivan (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7248','EPSG','4268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7363','NAD83(2011) / InGCS Tippecanoe-White (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7249','EPSG','4257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7364','NAD83(2011) / InGCS Tippecanoe-White (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7250','EPSG','4257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7365','NAD83(2011) / InGCS Vanderburgh (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7251','EPSG','4276',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7366','NAD83(2011) / InGCS Vanderburgh (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7252','EPSG','4276',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7367','NAD83(2011) / InGCS Vigo (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7253','EPSG','4264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7368','NAD83(2011) / InGCS Vigo (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7254','EPSG','4264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7369','NAD83(2011) / InGCS Wells (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7255','EPSG','4288',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7370','NAD83(2011) / InGCS Wells (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7256','EPSG','4288',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7374','ONGD14 / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','7373','EPSG','16039','EPSG','4322',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7375','ONGD14 / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','7373','EPSG','16040','EPSG','4323',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7376','ONGD14 / UTM zone 41N',NULL,NULL,'EPSG','4400','EPSG','7373','EPSG','16041','EPSG','4324',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7528','NAD83(2011) / WISCRS Adams and Juneau (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7484','EPSG','4360',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7529','NAD83(2011) / WISCRS Ashland (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7378','EPSG','4320',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7530','NAD83(2011) / WISCRS Barron (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7426','EPSG','4331',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7531','NAD83(2011) / WISCRS Bayfield (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7380','EPSG','4321',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7532','NAD83(2011) / WISCRS Brown (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7428','EPSG','4336',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7533','NAD83(2011) / WISCRS Buffalo (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7430','EPSG','4337',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7534','NAD83(2011) / WISCRS Burnett (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7382','EPSG','4325',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7535','NAD83(2011) / WISCRS Calumet, Fond du Lac, Outagamie and Winnebago (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7486','EPSG','4361',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7536','NAD83(2011) / WISCRS Chippewa (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7432','EPSG','4338',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7537','NAD83(2011) / WISCRS Clark (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7434','EPSG','4339',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7538','NAD83(2011) / WISCRS Columbia (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7488','EPSG','4362',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7539','NAD83(2011) / WISCRS Crawford (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7490','EPSG','4363',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7540','NAD83(2011) / WISCRS Dane (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7492','EPSG','4364',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7541','NAD83(2011) / WISCRS Dodge and Jefferson (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7494','EPSG','4365',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7542','NAD83(2011) / WISCRS Door (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7436','EPSG','4340',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7543','NAD83(2011) / WISCRS Douglas (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7384','EPSG','4326',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7544','NAD83(2011) / WISCRS Dunn (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7438','EPSG','4341',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7545','NAD83(2011) / WISCRS Eau Claire (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7440','EPSG','4342',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7546','NAD83(2011) / WISCRS Florence (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7386','EPSG','4327',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7547','NAD83(2011) / WISCRS Forest (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7388','EPSG','4328',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7548','NAD83(2011) / WISCRS Grant (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7496','EPSG','4366',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7549','NAD83(2011) / WISCRS Green and Lafayette (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7498','EPSG','4367',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7550','NAD83(2011) / WISCRS Green Lake and Marquette (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7500','EPSG','4368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7551','NAD83(2011) / WISCRS Iowa (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7502','EPSG','4369',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7552','NAD83(2011) / WISCRS Iron (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7390','EPSG','4329',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7553','NAD83(2011) / WISCRS Jackson (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7450','EPSG','4343',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7554','NAD83(2011) / WISCRS Kenosha, Milwaukee, Ozaukee and Racine (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7504','EPSG','4370',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7555','NAD83(2011) / WISCRS Kewaunee, Manitowoc and Sheboygan (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7506','EPSG','4371',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7556','NAD83(2011) / WISCRS La Crosse (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7508','EPSG','4372',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7557','NAD83(2011) / WISCRS Langlade (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7452','EPSG','4344',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7558','NAD83(2011) / WISCRS Lincoln (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7454','EPSG','4345',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7559','NAD83(2011) / WISCRS Marathon (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7456','EPSG','4346',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7560','NAD83(2011) / WISCRS Marinette (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7458','EPSG','4347',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7561','NAD83(2011) / WISCRS Menominee (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7460','EPSG','4348',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7562','NAD83(2011) / WISCRS Monroe (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7510','EPSG','4373',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7563','NAD83(2011) / WISCRS Oconto (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7462','EPSG','4349',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7564','NAD83(2011) / WISCRS Oneida (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7392','EPSG','4330',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7565','NAD83(2011) / WISCRS Pepin and Pierce (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7464','EPSG','4350',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7566','NAD83(2011) / WISCRS Polk (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7466','EPSG','4351',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7567','NAD83(2011) / WISCRS Portage (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7468','EPSG','4352',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7568','NAD83(2011) / WISCRS Price (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7394','EPSG','4332',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7569','NAD83(2011) / WISCRS Richland (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7512','EPSG','4374',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7570','NAD83(2011) / WISCRS Rock (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7514','EPSG','4375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7571','NAD83(2011) / WISCRS Rusk (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7470','EPSG','4353',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7572','NAD83(2011) / WISCRS Sauk (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7516','EPSG','4376',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7573','NAD83(2011) / WISCRS Sawyer (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7396','EPSG','4333',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7574','NAD83(2011) / WISCRS Shawano (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7472','EPSG','4354',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7575','NAD83(2011) / WISCRS St. Croix (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7474','EPSG','4355',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7576','NAD83(2011) / WISCRS Taylor (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7476','EPSG','4356',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7577','NAD83(2011) / WISCRS Trempealeau (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7478','EPSG','4357',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7578','NAD83(2011) / WISCRS Vernon (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7518','EPSG','4377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7579','NAD83(2011) / WISCRS Vilas (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7398','EPSG','4334',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7580','NAD83(2011) / WISCRS Walworth (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7520','EPSG','4378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7581','NAD83(2011) / WISCRS Washburn (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7424','EPSG','4335',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7582','NAD83(2011) / WISCRS Washington (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7522','EPSG','4379',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7583','NAD83(2011) / WISCRS Waukesha (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7524','EPSG','4380',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7584','NAD83(2011) / WISCRS Waupaca (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7480','EPSG','4358',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7585','NAD83(2011) / WISCRS Waushara (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7526','EPSG','4381',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7586','NAD83(2011) / WISCRS Wood (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','7482','EPSG','4359',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7587','NAD83(2011) / WISCRS Adams and Juneau (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7485','EPSG','4360',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7588','NAD83(2011) / WISCRS Ashland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7379','EPSG','4320',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7589','NAD83(2011) / WISCRS Barron (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7427','EPSG','4331',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7590','NAD83(2011) / WISCRS Bayfield (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7381','EPSG','4321',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7591','NAD83(2011) / WISCRS Brown (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7429','EPSG','4336',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7592','NAD83(2011) / WISCRS Buffalo (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7431','EPSG','4337',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7593','NAD83(2011) / WISCRS Burnett (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7383','EPSG','4325',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7594','NAD83(2011) / WISCRS Calumet, Fond du Lac, Outagamie and Winnebago (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7487','EPSG','4361',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7595','NAD83(2011) / WISCRS Chippewa (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7433','EPSG','4338',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7596','NAD83(2011) / WISCRS Clark (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7435','EPSG','4339',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7597','NAD83(2011) / WISCRS Columbia (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7489','EPSG','4362',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7598','NAD83(2011) / WISCRS Crawford (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7491','EPSG','4363',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7599','NAD83(2011) / WISCRS Dane (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7493','EPSG','4364',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7600','NAD83(2011) / WISCRS Dodge and Jefferson (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7495','EPSG','4365',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7601','NAD83(2011) / WISCRS Door (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7437','EPSG','4340',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7602','NAD83(2011) / WISCRS Douglas (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7385','EPSG','4326',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7603','NAD83(2011) / WISCRS Dunn (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7439','EPSG','4341',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7604','NAD83(2011) / WISCRS Eau Claire (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7441','EPSG','4342',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7605','NAD83(2011) / WISCRS Florence (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7387','EPSG','4327',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7606','NAD83(2011) / WISCRS Forest (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7389','EPSG','4328',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7607','NAD83(2011) / WISCRS Grant (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7497','EPSG','4366',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7608','NAD83(2011) / WISCRS Green and Lafayette (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7499','EPSG','4367',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7609','NAD83(2011) / WISCRS Green Lake and Marquette (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7501','EPSG','4368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7610','NAD83(2011) / WISCRS Iowa (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7503','EPSG','4369',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7611','NAD83(2011) / WISCRS Iron (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7391','EPSG','4329',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7612','NAD83(2011) / WISCRS Jackson (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7451','EPSG','4343',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7613','NAD83(2011) / WISCRS Kenosha, Milwaukee, Ozaukee and Racine (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7505','EPSG','4370',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7614','NAD83(2011) / WISCRS Kewaunee, Manitowoc and Sheboygan (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7507','EPSG','4371',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7615','NAD83(2011) / WISCRS La Crosse (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7509','EPSG','4372',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7616','NAD83(2011) / WISCRS Langlade (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7453','EPSG','4344',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7617','NAD83(2011) / WISCRS Lincoln (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7455','EPSG','4345',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7618','NAD83(2011) / WISCRS Marathon (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7457','EPSG','4346',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7619','NAD83(2011) / WISCRS Marinette (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7459','EPSG','4347',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7620','NAD83(2011) / WISCRS Menominee (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7461','EPSG','4348',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7621','NAD83(2011) / WISCRS Monroe (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7511','EPSG','4373',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7622','NAD83(2011) / WISCRS Oconto (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7463','EPSG','4349',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7623','NAD83(2011) / WISCRS Oneida (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7393','EPSG','4330',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7624','NAD83(2011) / WISCRS Pepin and Pierce (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7465','EPSG','4350',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7625','NAD83(2011) / WISCRS Polk (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7467','EPSG','4351',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7626','NAD83(2011) / WISCRS Portage (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7469','EPSG','4352',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7627','NAD83(2011) / WISCRS Price (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7395','EPSG','4332',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7628','NAD83(2011) / WISCRS Richland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7513','EPSG','4374',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7629','NAD83(2011) / WISCRS Rock (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7515','EPSG','4375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7630','NAD83(2011) / WISCRS Rusk (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7471','EPSG','4353',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7631','NAD83(2011) / WISCRS Sauk (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7517','EPSG','4376',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7632','NAD83(2011) / WISCRS Sawyer (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7397','EPSG','4333',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7633','NAD83(2011) / WISCRS Shawano (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7473','EPSG','4354',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7634','NAD83(2011) / WISCRS St. Croix (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7475','EPSG','4355',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7635','NAD83(2011) / WISCRS Taylor (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7477','EPSG','4356',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7636','NAD83(2011) / WISCRS Trempealeau (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7479','EPSG','4357',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7637','NAD83(2011) / WISCRS Vernon (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7519','EPSG','4377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7638','NAD83(2011) / WISCRS Vilas (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7399','EPSG','4334',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7639','NAD83(2011) / WISCRS Walworth (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7521','EPSG','4378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7640','NAD83(2011) / WISCRS Washburn (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7425','EPSG','4335',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7641','NAD83(2011) / WISCRS Washington (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7523','EPSG','4379',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7642','NAD83(2011) / WISCRS Waukesha (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7525','EPSG','4380',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7643','NAD83(2011) / WISCRS Waupaca (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7481','EPSG','4358',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7644','NAD83(2011) / WISCRS Waushara (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7527','EPSG','4381',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7645','NAD83(2011) / WISCRS Wood (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','7483','EPSG','4359',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7692','Kyrg-06 / zone 1',NULL,NULL,'EPSG','4400','EPSG','7686','EPSG','7687','EPSG','4385',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7693','Kyrg-06 / zone 2',NULL,NULL,'EPSG','4400','EPSG','7686','EPSG','7688','EPSG','4386',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7694','Kyrg-06 / zone 3',NULL,NULL,'EPSG','4400','EPSG','7686','EPSG','7689','EPSG','4387',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7695','Kyrg-06 / zone 4',NULL,NULL,'EPSG','4400','EPSG','7686','EPSG','7690','EPSG','4388',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7696','Kyrg-06 / zone 5',NULL,NULL,'EPSG','4400','EPSG','7686','EPSG','7691','EPSG','4389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7755','WGS 84 / India NSF LCC',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7722','EPSG','1121',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7756','WGS 84 / Andhra Pradesh',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7723','EPSG','4394',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7757','WGS 84 / Arunachal Pradesh',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7724','EPSG','4395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7758','WGS 84 / Assam',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7725','EPSG','4396',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7759','WGS 84 / Bihar',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7726','EPSG','4397',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7760','WGS 84 / Delhi',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7727','EPSG','4422',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7761','WGS 84 / Gujarat',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7728','EPSG','4400',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7762','WGS 84 / Haryana',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7729','EPSG','4401',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7763','WGS 84 / Himachal Pradesh',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7730','EPSG','4402',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7764','WGS 84 / Jammu and Kashmir',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7731','EPSG','4403',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7765','WGS 84 / Jharkhand',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7732','EPSG','4404',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7766','WGS 84 / Madhya Pradesh',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7733','EPSG','4407',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7767','WGS 84 / Maharashtra',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7734','EPSG','4408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7768','WGS 84 / Manipur',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7735','EPSG','4409',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7769','WGS 84 / Meghalaya',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7736','EPSG','4410',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7770','WGS 84 / Nagaland',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7737','EPSG','4412',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7771','WGS 84 / India Northeast',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7738','EPSG','4392',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7772','WGS 84 / Orissa',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7739','EPSG','4413',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7773','WGS 84 / Punjab',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7740','EPSG','4414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7774','WGS 84 / Rajasthan',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7741','EPSG','4415',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7775','WGS 84 / Uttar Pradesh',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7742','EPSG','4419',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7776','WGS 84 / Uttaranchal',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7743','EPSG','4420',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7777','WGS 84 / Andaman and Nicobar',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7744','EPSG','4423',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7778','WGS 84 / Chhattisgarh',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7745','EPSG','4398',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7779','WGS 84 / Goa',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7746','EPSG','4399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7780','WGS 84 / Karnataka',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7747','EPSG','4405',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7781','WGS 84 / Kerala',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7748','EPSG','4406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7782','WGS 84 / Lakshadweep',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7749','EPSG','4424',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7783','WGS 84 / Mizoram',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7750','EPSG','4411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7784','WGS 84 / Sikkim',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7751','EPSG','4416',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7785','WGS 84 / Tamil Nadu',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7752','EPSG','4417',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7786','WGS 84 / Tripura',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7753','EPSG','4418',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7787','WGS 84 / West Bengal',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','7754','EPSG','4421',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7791','RDN2008 / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','6706','EPSG','16032','EPSG','1718',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7792','RDN2008 / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','6706','EPSG','16033','EPSG','4186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7793','RDN2008 / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','6706','EPSG','16034','EPSG','4187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7794','RDN2008 / Italy zone (E-N)',NULL,NULL,'EPSG','4400','EPSG','6706','EPSG','6877','EPSG','1127',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7795','RDN2008 / Zone 12 (E-N)',NULL,NULL,'EPSG','4400','EPSG','6706','EPSG','6878','EPSG','1127',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7799','BGS2005 / UTM zone 34N (N-E)',NULL,NULL,'EPSG','4531','EPSG','7798','EPSG','16034','EPSG','4428',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7800','BGS2005 / UTM zone 35N (N-E)',NULL,NULL,'EPSG','4531','EPSG','7798','EPSG','16035','EPSG','4427',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7801','BGS2005 / CCS2005',NULL,NULL,'EPSG','4531','EPSG','7798','EPSG','7802','EPSG','3224',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7803','BGS2005 / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','7798','EPSG','16034','EPSG','4428',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7804','BGS2005 / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','7798','EPSG','16034','EPSG','4427',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7805','BGS2005 / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','7798','EPSG','16036','EPSG','4426',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7825','Pulkovo 1942 / CS63 zone X1',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','7818','EPSG','4435',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7826','Pulkovo 1942 / CS63 zone X2',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','7819','EPSG','4429',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7827','Pulkovo 1942 / CS63 zone X3',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','7820','EPSG','4430',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7828','Pulkovo 1942 / CS63 zone X4',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','7821','EPSG','4431',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7829','Pulkovo 1942 / CS63 zone X5',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','7822','EPSG','4432',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7830','Pulkovo 1942 / CS63 zone X6',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','7823','EPSG','4433',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7831','Pulkovo 1942 / CS63 zone X7',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','7824','EPSG','4434',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7845','GDA2020 / GA LCC',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17362','EPSG','2575',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7846','GDA2020 / MGA zone 46',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','6729','EPSG','4189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7847','GDA2020 / MGA zone 47',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','6730','EPSG','4190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7848','GDA2020 / MGA zone 48',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17348','EPSG','4191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7849','GDA2020 / MGA zone 49',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17349','EPSG','4176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7850','GDA2020 / MGA zone 50',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17350','EPSG','4178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7851','GDA2020 / MGA zone 51',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17351','EPSG','1559',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7852','GDA2020 / MGA zone 52',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17352','EPSG','1560',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7853','GDA2020 / MGA zone 53',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17353','EPSG','1561',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7854','GDA2020 / MGA zone 54',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17354','EPSG','1562',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7855','GDA2020 / MGA zone 55',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17355','EPSG','1563',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7856','GDA2020 / MGA zone 56',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17356','EPSG','1564',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7857','GDA2020 / MGA zone 57',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17357','EPSG','4196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7858','GDA2020 / MGA zone 58',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17358','EPSG','4175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7859','GDA2020 / MGA zone 59',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','6731','EPSG','4179',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7877','Astro DOS 71 / SHLG71',NULL,NULL,'EPSG','4400','EPSG','4710','EPSG','7875','EPSG','3183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7878','Astro DOS 71 / UTM zone 30S',NULL,NULL,'EPSG','4400','EPSG','4710','EPSG','16130','EPSG','3183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7882','St. Helena Tritan / SHLG(Tritan)',NULL,NULL,'EPSG','4400','EPSG','7881','EPSG','7876','EPSG','3183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7883','St. Helena Tritan / UTM zone 30S',NULL,NULL,'EPSG','4400','EPSG','7881','EPSG','16130','EPSG','3183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7887','SHMG2015',NULL,NULL,'EPSG','4400','EPSG','7886','EPSG','16130','EPSG','3183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7899','GDA2020 / Vicgrid',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17361','EPSG','2285',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7991','NAD27 / MTM zone 10',NULL,NULL,'EPSG','4499','EPSG','4267','EPSG','17710','EPSG','1431',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','7992','Malongo 1987 / UTM zone 33S',NULL,NULL,'EPSG','4400','EPSG','4259','EPSG','16133','EPSG','4447',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8013','GDA2020 / ALB2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','7993','EPSG','4439',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8014','GDA2020 / BIO2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','7994','EPSG','4438',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8015','GDA2020 / BRO2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','7995','EPSG','4441',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8016','GDA2020 / BCG2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','7996','EPSG','4437',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8017','GDA2020 / CARN2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','7997','EPSG','4442',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8018','GDA2020 / CIG2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','7998','EPSG','4169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8019','GDA2020 / CKIG2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','7999','EPSG','1069',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8020','GDA2020 / COL2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8000','EPSG','4443',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8021','GDA2020 / ESP2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8001','EPSG','4445',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8022','GDA2020 / EXM2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8002','EPSG','4448',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8023','GDA2020 / GCG2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8003','EPSG','4449',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8024','GDA2020 / GOLD2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8004','EPSG','4436',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8025','GDA2020 / JCG2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8005','EPSG','4440',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8026','GDA2020 / KALB2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8006','EPSG','4444',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8027','GDA2020 / KAR2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8007','EPSG','4451',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8028','GDA2020 / KUN2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8008','EPSG','4452',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8029','GDA2020 / LCG2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8009','EPSG','4453',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8030','GDA2020 / MRCG2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8010','EPSG','4457',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8031','GDA2020 / PCG2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8011','EPSG','4462',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8032','GDA2020 / PHG2020',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','8012','EPSG','4466',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8035','WGS 84 / TM Zone 20N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4326','EPSG','8033','EPSG','4467',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8036','WGS 84 / TM Zone 21N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4326','EPSG','8034','EPSG','4468',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8044','Gusterberg Grid (Ferro)',NULL,NULL,'EPSG','6501','EPSG','8042','EPSG','8040','EPSG','4455',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8045','St. Stephen Grid (Ferro)',NULL,NULL,'EPSG','6501','EPSG','8043','EPSG','8041','EPSG','4456',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8058','GDA2020 / NSW Lambert',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17364','EPSG','3139',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8059','GDA2020 / SA Lambert',NULL,NULL,'EPSG','4400','EPSG','7844','EPSG','17359','EPSG','2986',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8065','NAD83(2011) / PCCS zone 1 (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8061','EPSG','4472',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8066','NAD83(2011) / PCCS zone 2 (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8062','EPSG','4460',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8067','NAD83(2011) / PCCS zone 3 (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8063','EPSG','4450',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8068','NAD83(2011) / PCCS zone 4 (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8064','EPSG','4473',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8082','NAD83(CSRS)v6 / MTM Nova Scotia zone 4',NULL,NULL,'EPSG','4400','EPSG','8252','EPSG','8080','EPSG','1534',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8083','NAD83(CSRS)v6 / MTM Nova Scotia zone 5',NULL,NULL,'EPSG','4400','EPSG','8252','EPSG','8081','EPSG','1535',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8088','ISN2016 / Lambert 2016',NULL,NULL,'EPSG','4499','EPSG','8086','EPSG','8087','EPSG','1120',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8090','NAD83(HARN) / WISCRS Florence (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7386','EPSG','4327',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8091','NAD83(HARN) / WISCRS Florence (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7387','EPSG','4327',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8092','NAD83(HARN) / WISCRS Eau Claire (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7440','EPSG','4342',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8093','NAD83(HARN) / WISCRS Eau Claire (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7441','EPSG','4342',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8095','NAD83(HARN) / WISCRS Wood (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7482','EPSG','4359',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8096','NAD83(HARN) / WISCRS Wood (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7483','EPSG','4359',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8097','NAD83(HARN) / WISCRS Waushara (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7526','EPSG','4381',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8098','NAD83(HARN) / WISCRS Waushara (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7527','EPSG','4381',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8099','NAD83(HARN) / WISCRS Waupaca (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7480','EPSG','4358',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8100','NAD83(HARN) / WISCRS Waupaca (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7481','EPSG','4358',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8101','NAD83(HARN) / WISCRS Waukesha (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7524','EPSG','4380',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8102','NAD83(HARN) / WISCRS Waukesha (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7525','EPSG','4380',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8103','NAD83(HARN) / WISCRS Washington (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7522','EPSG','4379',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8104','NAD83(HARN) / WISCRS Washington (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7523','EPSG','4379',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8105','NAD83(HARN) / WISCRS Washburn (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7424','EPSG','4335',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8106','NAD83(HARN) / WISCRS Washburn (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7425','EPSG','4335',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8107','NAD83(HARN) / WISCRS Walworth (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7520','EPSG','4378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8108','NAD83(HARN) / WISCRS Walworth (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7521','EPSG','4378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8109','NAD83(HARN) / WISCRS Vilas (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7398','EPSG','4334',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8110','NAD83(HARN) / WISCRS Vilas (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7399','EPSG','4334',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8111','NAD83(HARN) / WISCRS Vernon (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7518','EPSG','4377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8112','NAD83(HARN) / WISCRS Vernon (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7519','EPSG','4377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8113','NAD83(HARN) / WISCRS Trempealeau (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7478','EPSG','4357',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8114','NAD83(HARN) / WISCRS Trempealeau (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7479','EPSG','4357',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8115','NAD83(HARN) / WISCRS Taylor (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7476','EPSG','4356',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8116','NAD83(HARN) / WISCRS Taylor (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7477','EPSG','4356',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8117','NAD83(HARN) / WISCRS St. Croix (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7474','EPSG','4355',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8118','NAD83(HARN) / WISCRS St. Croix (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7475','EPSG','4355',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8119','NAD83(HARN) / WISCRS Shawano (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7472','EPSG','4354',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8120','NAD83(HARN) / WISCRS Shawano (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7473','EPSG','4354',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8121','NAD83(HARN) / WISCRS Sawyer (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7396','EPSG','4333',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8122','NAD83(HARN) / WISCRS Sawyer (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7397','EPSG','4333',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8123','NAD83(HARN) / WISCRS Sauk (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7516','EPSG','4376',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8124','NAD83(HARN) / WISCRS Sauk (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7517','EPSG','4376',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8125','NAD83(HARN) / WISCRS Rusk (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7470','EPSG','4353',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8126','NAD83(HARN) / WISCRS Rusk (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7471','EPSG','4353',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8127','NAD83(HARN) / WISCRS Rock (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7514','EPSG','4375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8128','NAD83(HARN) / WISCRS Rock (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7515','EPSG','4375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8129','NAD83(HARN) / WISCRS Richland (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7512','EPSG','4374',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8130','NAD83(HARN) / WISCRS Richland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7513','EPSG','4374',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8131','NAD83(HARN) / WISCRS Price (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7394','EPSG','4332',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8132','NAD83(HARN) / WISCRS Price (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7395','EPSG','4332',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8133','NAD83(HARN) / WISCRS Portage (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7468','EPSG','4352',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8134','NAD83(HARN) / WISCRS Portage (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7469','EPSG','4352',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8135','NAD83(HARN) / WISCRS Polk (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7466','EPSG','4351',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8136','NAD83(HARN) / WISCRS Polk (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7467','EPSG','4351',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8137','NAD83(HARN) / WISCRS Pepin and Pierce (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7464','EPSG','4350',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8138','NAD83(HARN) / WISCRS Pepin and Pierce (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7465','EPSG','4350',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8139','NAD83(HARN) / WISCRS Oneida (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7392','EPSG','4330',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8140','NAD83(HARN) / WISCRS Oneida (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7393','EPSG','4330',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8141','NAD83(HARN) / WISCRS Oconto (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7462','EPSG','4349',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8142','NAD83(HARN) / WISCRS Oconto (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7463','EPSG','4349',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8143','NAD83(HARN) / WISCRS Monroe (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7510','EPSG','4373',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8144','NAD83(HARN) / WISCRS Monroe (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7511','EPSG','4373',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8145','NAD83(HARN) / WISCRS Menominee (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7460','EPSG','4348',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8146','NAD83(HARN) / WISCRS Menominee (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7461','EPSG','4348',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8147','NAD83(HARN) / WISCRS Marinette (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7458','EPSG','4347',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8148','NAD83(HARN) / WISCRS Marinette (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7459','EPSG','4347',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8149','NAD83(HARN) / WISCRS Marathon (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7456','EPSG','4346',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8150','NAD83(HARN) / WISCRS Marathon (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7457','EPSG','4346',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8151','NAD83(HARN) / WISCRS Lincoln (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7454','EPSG','4345',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8152','NAD83(HARN) / WISCRS Lincoln (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7455','EPSG','4345',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8153','NAD83(HARN) / WISCRS Langlade (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7452','EPSG','4344',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8154','NAD83(HARN) / WISCRS Langlade (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7453','EPSG','4344',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8155','NAD83(HARN) / WISCRS La Crosse (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7508','EPSG','4372',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8156','NAD83(HARN) / WISCRS La Crosse (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7509','EPSG','4372',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8157','NAD83(HARN) / WISCRS Kewaunee, Manitowoc and Sheboygan (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7506','EPSG','4371',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8158','NAD83(HARN) / WISCRS Kewaunee, Manitowoc and Sheboygan (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7507','EPSG','4371',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8159','NAD83(HARN) / WISCRS Kenosha, Milwaukee, Ozaukee and Racine (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7504','EPSG','4370',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8160','NAD83(HARN) / WISCRS Kenosha, Milwaukee, Ozaukee and Racine (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7505','EPSG','4370',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8161','NAD83(HARN) / WISCRS Jackson (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7450','EPSG','4343',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8162','NAD83(HARN) / WISCRS Jackson (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7451','EPSG','4343',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8163','NAD83(HARN) / WISCRS Iron (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7390','EPSG','4329',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8164','NAD83(HARN) / WISCRS Iron (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7391','EPSG','4329',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8165','NAD83(HARN) / WISCRS Iowa (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7502','EPSG','4369',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8166','NAD83(HARN) / WISCRS Iowa (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7503','EPSG','4369',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8167','NAD83(HARN) / WISCRS Green Lake and Marquette (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7500','EPSG','4368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8168','NAD83(HARN) / WISCRS Green Lake and Marquette (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7501','EPSG','4368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8169','NAD83(HARN) / WISCRS Green and Lafayette (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7498','EPSG','4367',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8170','NAD83(HARN) / WISCRS Green and Lafayette (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7499','EPSG','4367',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8171','NAD83(HARN) / WISCRS Grant (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7496','EPSG','4366',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8172','NAD83(HARN) / WISCRS Grant (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7497','EPSG','4366',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8173','NAD83(HARN) / WISCRS Forest (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7388','EPSG','4328',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8177','NAD83(HARN) / WISCRS Forest (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7389','EPSG','4328',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8179','NAD83(HARN) / WISCRS Dunn (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7438','EPSG','4341',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8180','NAD83(HARN) / WISCRS Dunn (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7439','EPSG','4341',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8181','NAD83(HARN) / WISCRS Douglas (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7384','EPSG','4326',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8182','NAD83(HARN) / WISCRS Douglas (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7385','EPSG','4326',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8184','NAD83(HARN) / WISCRS Door (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7436','EPSG','4340',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8185','NAD83(HARN) / WISCRS Door (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7437','EPSG','4340',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8187','NAD83(HARN) / WISCRS Dodge and Jefferson (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7494','EPSG','4365',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8189','NAD83(HARN) / WISCRS Dodge and Jefferson (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7495','EPSG','4365',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8191','NAD83(HARN) / WISCRS Dane (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7492','EPSG','4364',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8193','NAD83(HARN) / WISCRS Dane (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7493','EPSG','4364',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8196','NAD83(HARN) / WISCRS Crawford (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7490','EPSG','4363',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8197','NAD83(HARN) / WISCRS Crawford (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7491','EPSG','4363',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8198','NAD83(HARN) / WISCRS Columbia (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7488','EPSG','4362',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8200','NAD83(HARN) / WISCRS Columbia (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7489','EPSG','4362',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8201','NAD83(HARN) / WISCRS Clark (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7434','EPSG','4339',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8202','NAD83(HARN) / WISCRS Clark (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7435','EPSG','4339',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8203','NAD83(HARN) / WISCRS Chippewa (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7432','EPSG','4338',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8204','NAD83(HARN) / WISCRS Chippewa (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7433','EPSG','4338',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8205','NAD83(HARN) / WISCRS Calumet, Fond du Lac, Outagamie and Winnebago (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7486','EPSG','4361',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8206','NAD83(HARN) / WISCRS Calumet, Fond du Lac, Outagamie and Winnebago (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7487','EPSG','4361',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8207','NAD83(HARN) / WISCRS Burnett (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7382','EPSG','4325',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8208','NAD83(HARN) / WISCRS Burnett (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7383','EPSG','4325',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8209','NAD83(HARN) / WISCRS Buffalo (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7430','EPSG','4337',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8210','NAD83(HARN) / WISCRS Buffalo (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7431','EPSG','4337',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8212','NAD83(HARN) / WISCRS Brown (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7428','EPSG','4336',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8213','NAD83(HARN) / WISCRS Brown (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7429','EPSG','4336',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8214','NAD83(HARN) / WISCRS Bayfield (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7380','EPSG','4321',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8216','NAD83(HARN) / WISCRS Bayfield (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7381','EPSG','4321',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8218','NAD83(HARN) / WISCRS Barron (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7426','EPSG','4331',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8220','NAD83(HARN) / WISCRS Barron (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7427','EPSG','4331',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8222','NAD83(HARN) / WISCRS Ashland (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7378','EPSG','4320',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8224','NAD83(HARN) / WISCRS Ashland (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7379','EPSG','4320',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8225','NAD83(HARN) / WISCRS Adams and Juneau (m)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','7484','EPSG','4360',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8226','NAD83(HARN) / WISCRS Adams and Juneau (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','7485','EPSG','4360',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8311','NAD83(2011) / Oregon Burns-Harper zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8273','EPSG','4459',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8312','NAD83(2011) / Oregon Burns-Harper zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8274','EPSG','4459',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8313','NAD83(2011) / Oregon Canyon City-Burns zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8275','EPSG','4465',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8314','NAD83(2011) / Oregon Canyon City-Burns zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8276','EPSG','4465',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8315','NAD83(2011) / Oregon Coast Range North zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8277','EPSG','4471',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8316','NAD83(2011) / Oregon Coast Range North zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8278','EPSG','4471',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8317','NAD83(2011) / Oregon Dayville-Prairie City zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8279','EPSG','4474',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8318','NAD83(2011) / Oregon Dayville-Prairie City zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8280','EPSG','4474',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8319','NAD83(2011) / Oregon Denio-Burns zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8281','EPSG','4475',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8320','NAD83(2011) / Oregon Denio-Burns zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8282','EPSG','4475',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8321','NAD83(2011) / Oregon Halfway zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8283','EPSG','4476',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8322','NAD83(2011) / Oregon Halfway zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8284','EPSG','4476',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8323','NAD83(2011) / Oregon Medford-Diamond Lake zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8285','EPSG','4477',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8324','NAD83(2011) / Oregon Medford-Diamond Lake zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8286','EPSG','4477',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8325','NAD83(2011) / Oregon Mitchell zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8287','EPSG','4478',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8326','NAD83(2011) / Oregon Mitchell zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8288','EPSG','4478',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8327','NAD83(2011) / Oregon North Central zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8289','EPSG','4479',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8328','NAD83(2011) / Oregon North Central zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8290','EPSG','4479',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8329','NAD83(2011) / Oregon Ochoco Summit zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8291','EPSG','4481',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8330','NAD83(2011) / Oregon Ochoco Summit zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8292','EPSG','4481',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8331','NAD83(2011) / Oregon Owyhee zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8293','EPSG','4482',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8332','NAD83(2011) / Oregon Owyhee zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8294','EPSG','4482',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8333','NAD83(2011) / Oregon Pilot Rock-Ukiah zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8295','EPSG','4483',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8334','NAD83(2011) / Oregon Pilot Rock-Ukiah zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8296','EPSG','4483',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8335','NAD83(2011) / Oregon Prairie City-Brogan zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8297','EPSG','4484',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8336','NAD83(2011) / Oregon Prairie City-Brogan zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8298','EPSG','4484',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8337','NAD83(2011) / Oregon Riley-Lakeview zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8299','EPSG','4458',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8338','NAD83(2011) / Oregon Riley-Lakeview zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8300','EPSG','4458',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8339','NAD83(2011) / Oregon Siskiyou Pass zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8301','EPSG','4463',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8340','NAD83(2011) / Oregon Siskiyou Pass zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8302','EPSG','4463',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8341','NAD83(2011) / Oregon Ukiah-Fox zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8303','EPSG','4470',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8342','NAD83(2011) / Oregon Ukiah-Fox zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8304','EPSG','4470',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8343','NAD83(2011) / Oregon Wallowa zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8305','EPSG','4480',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8344','NAD83(2011) / Oregon Wallowa zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8306','EPSG','4480',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8345','NAD83(2011) / Oregon Warner Highway zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8307','EPSG','4486',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8346','NAD83(2011) / Oregon Warner Highway zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8308','EPSG','4486',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8347','NAD83(2011) / Oregon Willamette Pass zone (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8309','EPSG','4488',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8348','NAD83(2011) / Oregon Willamette Pass zone (ft)',NULL,NULL,'EPSG','4495','EPSG','6318','EPSG','8310','EPSG','4488',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8352','S-JTSK [JTSK03] / Krovak',NULL,NULL,'EPSG','6501','EPSG','8351','EPSG','5509','EPSG','1211',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8353','S-JTSK [JTSK03] / Krovak East North',NULL,NULL,'EPSG','4499','EPSG','8351','EPSG','5510','EPSG','1211',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8379','NAD83 / NCRS Las Vegas (m)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','8373','EPSG','4485',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8380','NAD83 / NCRS Las Vegas (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','8374','EPSG','4485',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8381','NAD83 / NCRS Las Vegas high (m)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','8375','EPSG','4487',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8382','NAD83 / NCRS Las Vegas high (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','8376','EPSG','4487',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8383','NAD83(2011) / NCRS Las Vegas (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8373','EPSG','4485',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8384','NAD83(2011) / NCRS Las Vegas (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8374','EPSG','4485',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8385','NAD83(2011) / NCRS Las Vegas high (m)',NULL,NULL,'EPSG','4499','EPSG','6318','EPSG','8375','EPSG','4487',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8387','NAD83(2011) / NCRS Las Vegas high (ftUS)',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8376','EPSG','4487',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8391','GDA94 / WEIPA94',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','8389','EPSG','4491',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8395','ETRS89 / Gauss-Kruger CM 9E',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16302','EPSG','4490',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8433','Macao 1920 / Macao Grid',NULL,NULL,'EPSG','4500','EPSG','8428','EPSG','8432','EPSG','1147',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8441','Tananarive / Laborde Grid',NULL,NULL,'EPSG','4530','EPSG','4297','EPSG','8440','EPSG','3273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8455','RGTAAF07 / UTM zone 53S',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','16153','EPSG','4489',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8456','RGTAAF07 / UTM zone 54S',NULL,NULL,'EPSG','4400','EPSG','7073','EPSG','16154','EPSG','4492',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8518','NAD83(2011) / KS RCS zone 1',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8458','EPSG','4495',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8519','NAD83(2011) / KS RCS zone 2',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8459','EPSG','4496',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8520','NAD83(2011) / KS RCS zone 3',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8490','EPSG','4497',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8521','NAD83(2011) / KS RCS zone 4',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8491','EPSG','4494',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8522','NAD83(2011) / KS RCS zone 5',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8492','EPSG','4498',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8523','NAD83(2011) / KS RCS zone 6',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8493','EPSG','4499',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8524','NAD83(2011) / KS RCS zone 7',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8494','EPSG','4500',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8525','NAD83(2011) / KS RCS zone 8',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8495','EPSG','4501',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8526','NAD83(2011) / KS RCS zone 9',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8498','EPSG','4502',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8527','NAD83(2011) / KS RCS zone 10',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8499','EPSG','4503',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8528','NAD83(2011) / KS RCS zone 11',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8500','EPSG','4504',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8529','NAD83(2011) / KS RCS zone 12',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8501','EPSG','4505',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8531','NAD83(2011) / KS RCS zone 13',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8502','EPSG','4506',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8533','NAD83(2011) / KS RCS zone 14',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8503','EPSG','4507',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8534','NAD83(2011) / KS RCS zone 15',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8504','EPSG','4508',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8535','NAD83(2011) / KS RCS zone 16',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8505','EPSG','4509',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8536','NAD83(2011) / KS RCS zone 17',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8506','EPSG','4510',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8538','NAD83(2011) / KS RCS zone 18',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8507','EPSG','4511',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8539','NAD83(2011) / KS RCS zone 19',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8515','EPSG','4512',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8540','NAD83(2011) / KS RCS zone 20',NULL,NULL,'EPSG','4497','EPSG','6318','EPSG','8516','EPSG','4513',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8677','MGI 1901 / Balkans zone 5',NULL,NULL,'EPSG','4498','EPSG','3906','EPSG','18275','EPSG','1709',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8678','MGI 1901 / Balkans zone 6',NULL,NULL,'EPSG','4498','EPSG','3906','EPSG','18276','EPSG','1710',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8679','MGI 1901 / Balkans zone 8',NULL,NULL,'EPSG','4498','EPSG','3906','EPSG','18278','EPSG','1712',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8682','SRB_ETRS89 / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','8685','EPSG','16034','EPSG','4543',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8686','MGI 1901 / Slovenia Grid',NULL,NULL,'EPSG','4498','EPSG','3906','EPSG','19967','EPSG','1212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8687','Slovenia 1996 / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4765','EPSG','16033','EPSG','1212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8692','NAD83(MA11) / UTM zone 54N',NULL,NULL,'EPSG','4400','EPSG','6325','EPSG','16054','EPSG','4514',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8693','NAD83(MA11) / UTM zone 55N',NULL,NULL,'EPSG','4400','EPSG','6325','EPSG','16055','EPSG','4518',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8826','NAD83 / Idaho Transverse Mercator',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','8825','EPSG','1381',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8836','MTRF-2000 / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','8818','EPSG','16036','EPSG','4524',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8837','MTRF-2000 / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','8818','EPSG','16037','EPSG','4526',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8838','MTRF-2000 / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','8818','EPSG','16038','EPSG','4527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8839','MTRF-2000 / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','8818','EPSG','16039','EPSG','4528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8840','MTRF-2000 / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','8818','EPSG','16040','EPSG','3106',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8857','WGS 84 / Equal Earth Greenwich',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','8854','EPSG','1262',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8858','WGS 84 / Equal Earth Americas',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','8855','EPSG','4520',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8859','WGS 84 / Equal Earth Asia-Pacific',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','8856','EPSG','4523',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8903','RGWF96 / UTM zone 1S',NULL,NULL,'EPSG','4400','EPSG','8900','EPSG','16101','EPSG','1255',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8908','CR-SIRGAS / CRTM05',NULL,NULL,'EPSG','4400','EPSG','8907','EPSG','5366','EPSG','3232',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8909','CR-SIRGAS / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','8907','EPSG','16016','EPSG','4532',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8910','CR-SIRGAS / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','8907','EPSG','16017','EPSG','4531',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8950','SIRGAS-Chile 2010 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','8949','EPSG','16118','EPSG','3829',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','8951','SIRGAS-Chile 2010 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','8949','EPSG','16119','EPSG','3811',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9039','ISN2016 / LAEA Europe',NULL,NULL,'EPSG','4532','EPSG','8086','EPSG','19986','EPSG','1120',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9040','ISN2016 / LCC Europe',NULL,NULL,'EPSG','4532','EPSG','8086','EPSG','19985','EPSG','1120',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9141','KOSOVAREF01 / Balkans zone 7',NULL,NULL,'EPSG','4400','EPSG','9140','EPSG','18277','EPSG','4542',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9149','SIRGAS-Chile 2013 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','9148','EPSG','16118','EPSG','3829',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9150','SIRGAS-Chile 2013 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','9148','EPSG','16119','EPSG','3811',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9154','SIRGAS-Chile 2016 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','9153','EPSG','16118','EPSG','3829',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9155','SIRGAS-Chile 2016 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','9153','EPSG','16119','EPSG','3811',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9156','RSAO13 / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','8699','EPSG','16132','EPSG','4551',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9157','RSAO13 / UTM zone 33S',NULL,NULL,'EPSG','4400','EPSG','8699','EPSG','16133','EPSG','4555',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9158','RSAO13 / UTM zone 34S',NULL,NULL,'EPSG','4400','EPSG','8699','EPSG','16134','EPSG','4539',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9159','RSAO13 / TM 12 SE',NULL,NULL,'EPSG','4400','EPSG','8699','EPSG','16612','EPSG','1604',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9191','WGS 84 / NIWA Albers',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','9190','EPSG','3508',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9205','VN-2000 / TM-3 103-00',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9058','EPSG','4541',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9206','VN-2000 / TM-3 104-00',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9192','EPSG','4538',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9207','VN-2000 / TM-3 104-30',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9193','EPSG','4545',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9208','VN-2000 / TM-3 104-45',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9194','EPSG','4546',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9209','VN-2000 / TM-3 105-30',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9195','EPSG','4548',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9210','VN-2000 / TM-3 105-45',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9196','EPSG','4549',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9211','VN-2000 / TM-3 106-00',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9197','EPSG','4550',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9212','VN-2000 / TM-3 106-15',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9198','EPSG','4552',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9213','VN-2000 / TM-3 106-30',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9199','EPSG','4553',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9214','VN-2000 / TM-3 107-00',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9200','EPSG','4554',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9215','VN-2000 / TM-3 107-15',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9201','EPSG','4556',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9216','VN-2000 / TM-3 107-30',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9202','EPSG','4557',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9217','VN-2000 / TM-3 108-15',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9203','EPSG','4559',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9218','VN-2000 / TM-3 108-30',NULL,NULL,'EPSG','4400','EPSG','4756','EPSG','9204','EPSG','4560',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9221','Hartebeesthoek94 / ZAF BSU Albers 25E',NULL,NULL,'EPSG','4500','EPSG','4148','EPSG','9219','EPSG','4567',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9222','Hartebeesthoek94 / ZAF BSU Albers 44E',NULL,NULL,'EPSG','4500','EPSG','4148','EPSG','9220','EPSG','4568',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9249','Tapi Aike / Argentina 1',NULL,NULL,'EPSG','4530','EPSG','9248','EPSG','18031','EPSG','4570',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9250','Tapi Aike / Argentina 2',NULL,NULL,'EPSG','4530','EPSG','9248','EPSG','18032','EPSG','4571',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9252','MMN / Argentina 2',NULL,NULL,'EPSG','4530','EPSG','9251','EPSG','18032','EPSG','2357',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9254','MMS / Argentina 2',NULL,NULL,'EPSG','4530','EPSG','9253','EPSG','18032','EPSG','2357',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9265','POSGAR 2007 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','5340','EPSG','16119','EPSG','2596',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9271','MGI / Austria West',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','9268','EPSG','1706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9272','MGI / Austria Central',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','9269','EPSG','1707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9273','MGI / Austria East',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','9270','EPSG','1708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9284','Pampa del Castillo / Argentina 1',NULL,NULL,'EPSG','4530','EPSG','4161','EPSG','18031','EPSG','4564',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','9285','Pampa del Castillo / Argentina 3',NULL,NULL,'EPSG','4530','EPSG','4161','EPSG','18033','EPSG','4565',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20004','Pulkovo 1995 / Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16204','EPSG','1763',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20005','Pulkovo 1995 / Gauss-Kruger zone 5',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16205','EPSG','1764',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20006','Pulkovo 1995 / Gauss-Kruger zone 6',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16206','EPSG','1765',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20007','Pulkovo 1995 / Gauss-Kruger zone 7',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16207','EPSG','1766',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20008','Pulkovo 1995 / Gauss-Kruger zone 8',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16208','EPSG','1767',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20009','Pulkovo 1995 / Gauss-Kruger zone 9',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16209','EPSG','1768',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20010','Pulkovo 1995 / Gauss-Kruger zone 10',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16210','EPSG','1769',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20011','Pulkovo 1995 / Gauss-Kruger zone 11',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16211','EPSG','1770',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20012','Pulkovo 1995 / Gauss-Kruger zone 12',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16212','EPSG','1771',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20013','Pulkovo 1995 / Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16213','EPSG','1772',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20014','Pulkovo 1995 / Gauss-Kruger zone 14',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16214','EPSG','1773',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20015','Pulkovo 1995 / Gauss-Kruger zone 15',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16215','EPSG','1774',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20016','Pulkovo 1995 / Gauss-Kruger zone 16',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16216','EPSG','1775',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20017','Pulkovo 1995 / Gauss-Kruger zone 17',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16217','EPSG','1776',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20018','Pulkovo 1995 / Gauss-Kruger zone 18',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16218','EPSG','1777',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20019','Pulkovo 1995 / Gauss-Kruger zone 19',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16219','EPSG','1778',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20020','Pulkovo 1995 / Gauss-Kruger zone 20',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16220','EPSG','1779',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20021','Pulkovo 1995 / Gauss-Kruger zone 21',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16221','EPSG','1780',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20022','Pulkovo 1995 / Gauss-Kruger zone 22',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16222','EPSG','1781',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20023','Pulkovo 1995 / Gauss-Kruger zone 23',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16223','EPSG','1782',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20024','Pulkovo 1995 / Gauss-Kruger zone 24',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16224','EPSG','1783',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20025','Pulkovo 1995 / Gauss-Kruger zone 25',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16225','EPSG','1784',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20026','Pulkovo 1995 / Gauss-Kruger zone 26',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16226','EPSG','1785',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20027','Pulkovo 1995 / Gauss-Kruger zone 27',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16227','EPSG','1786',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20028','Pulkovo 1995 / Gauss-Kruger zone 28',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16228','EPSG','1787',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20029','Pulkovo 1995 / Gauss-Kruger zone 29',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16229','EPSG','1788',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20030','Pulkovo 1995 / Gauss-Kruger zone 30',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16230','EPSG','1789',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20031','Pulkovo 1995 / Gauss-Kruger zone 31',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16231','EPSG','1790',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20032','Pulkovo 1995 / Gauss-Kruger zone 32',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16232','EPSG','1791',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20064','Pulkovo 1995 / Gauss-Kruger 4N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16304','EPSG','1763',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20065','Pulkovo 1995 / Gauss-Kruger 5N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16305','EPSG','1764',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20066','Pulkovo 1995 / Gauss-Kruger 6N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16306','EPSG','1765',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20067','Pulkovo 1995 / Gauss-Kruger 7N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16307','EPSG','1766',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20068','Pulkovo 1995 / Gauss-Kruger 8N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16308','EPSG','1767',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20069','Pulkovo 1995 / Gauss-Kruger 9N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16309','EPSG','1768',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20070','Pulkovo 1995 / Gauss-Kruger 10N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16310','EPSG','1769',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20071','Pulkovo 1995 / Gauss-Kruger 11N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16311','EPSG','1770',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20072','Pulkovo 1995 / Gauss-Kruger 12N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16312','EPSG','1771',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20073','Pulkovo 1995 / Gauss-Kruger 13N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16313','EPSG','1772',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20074','Pulkovo 1995 / Gauss-Kruger 14N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16314','EPSG','1773',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20075','Pulkovo 1995 / Gauss-Kruger 15N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16315','EPSG','1774',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20076','Pulkovo 1995 / Gauss-Kruger 16N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16316','EPSG','1775',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20077','Pulkovo 1995 / Gauss-Kruger 17N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16317','EPSG','1776',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20078','Pulkovo 1995 / Gauss-Kruger 18N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16318','EPSG','1777',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20079','Pulkovo 1995 / Gauss-Kruger 19N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16319','EPSG','1778',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20080','Pulkovo 1995 / Gauss-Kruger 20N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16320','EPSG','1779',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20081','Pulkovo 1995 / Gauss-Kruger 21N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16321','EPSG','1780',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20082','Pulkovo 1995 / Gauss-Kruger 22N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16322','EPSG','1781',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20083','Pulkovo 1995 / Gauss-Kruger 23N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16323','EPSG','1782',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20084','Pulkovo 1995 / Gauss-Kruger 24N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16324','EPSG','1783',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20085','Pulkovo 1995 / Gauss-Kruger 25N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16325','EPSG','1784',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20086','Pulkovo 1995 / Gauss-Kruger 26N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16326','EPSG','1785',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20087','Pulkovo 1995 / Gauss-Kruger 27N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16327','EPSG','1786',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20088','Pulkovo 1995 / Gauss-Kruger 28N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16328','EPSG','1787',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20089','Pulkovo 1995 / Gauss-Kruger 29N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16329','EPSG','1788',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20090','Pulkovo 1995 / Gauss-Kruger 30N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16330','EPSG','1789',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20091','Pulkovo 1995 / Gauss-Kruger 31N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16331','EPSG','1790',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20092','Pulkovo 1995 / Gauss-Kruger 32N',NULL,NULL,'EPSG','4530','EPSG','4200','EPSG','16332','EPSG','1791',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20135','Adindan / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','4201','EPSG','16035','EPSG','2827',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20136','Adindan / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','4201','EPSG','16036','EPSG','2825',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20137','Adindan / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4201','EPSG','16037','EPSG','1552',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20138','Adindan / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4201','EPSG','16038','EPSG','1553',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20248','AGD66 / AMG zone 48',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17448','EPSG','1556',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20249','AGD66 / AMG zone 49',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17449','EPSG','1557',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20250','AGD66 / AMG zone 50',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17450','EPSG','1558',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20251','AGD66 / AMG zone 51',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17451','EPSG','1559',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20252','AGD66 / AMG zone 52',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17452','EPSG','1560',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20253','AGD66 / AMG zone 53',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17453','EPSG','1561',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20254','AGD66 / AMG zone 54',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17454','EPSG','1567',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20255','AGD66 / AMG zone 55',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17455','EPSG','1568',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20256','AGD66 / AMG zone 56',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17456','EPSG','2291',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20257','AGD66 / AMG zone 57',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17457','EPSG','1565',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20258','AGD66 / AMG zone 58',NULL,NULL,'EPSG','4400','EPSG','4202','EPSG','17458','EPSG','1566',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20348','AGD84 / AMG zone 48',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17448','EPSG','1556',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20349','AGD84 / AMG zone 49',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17449','EPSG','1557',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20350','AGD84 / AMG zone 50',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17450','EPSG','1558',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20351','AGD84 / AMG zone 51',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17451','EPSG','1559',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20352','AGD84 / AMG zone 52',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17452','EPSG','3687',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20353','AGD84 / AMG zone 53',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17453','EPSG','3688',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20354','AGD84 / AMG zone 54',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17454','EPSG','3689',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20355','AGD84 / AMG zone 55',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17455','EPSG','3690',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20356','AGD84 / AMG zone 56',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17456','EPSG','3691',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20357','AGD84 / AMG zone 57',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17457','EPSG','1565',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20358','AGD84 / AMG zone 58',NULL,NULL,'EPSG','4400','EPSG','4203','EPSG','17458','EPSG','1566',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','20436','Ain el Abd / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','4204','EPSG','16036','EPSG','3107',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20437','Ain el Abd / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4204','EPSG','16037','EPSG','1569',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20438','Ain el Abd / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4204','EPSG','16038','EPSG','1571',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20439','Ain el Abd / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4204','EPSG','16039','EPSG','1570',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20440','Ain el Abd / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','4204','EPSG','16040','EPSG','3106',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20499','Ain el Abd / Bahrain Grid',NULL,NULL,'EPSG','4400','EPSG','4204','EPSG','19900','EPSG','3943',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20538','Afgooye / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4205','EPSG','16038','EPSG','1554',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20539','Afgooye / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4205','EPSG','16039','EPSG','1555',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20790','Lisbon (Lisbon) / Portuguese National Grid',NULL,NULL,'EPSG','4499','EPSG','4803','EPSG','19936','EPSG','1294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20791','Lisbon (Lisbon) / Portuguese Grid',NULL,NULL,'EPSG','4499','EPSG','4803','EPSG','19969','EPSG','1294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20822','Aratu / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4208','EPSG','16122','EPSG','1572',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20823','Aratu / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','4208','EPSG','16123','EPSG','1573',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20824','Aratu / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','4208','EPSG','16124','EPSG','1574',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20934','Arc 1950 / UTM zone 34S',NULL,NULL,'EPSG','4400','EPSG','4209','EPSG','16134','EPSG','1575',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20935','Arc 1950 / UTM zone 35S',NULL,NULL,'EPSG','4400','EPSG','4209','EPSG','16135','EPSG','1576',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','20936','Arc 1950 / UTM zone 36S',NULL,NULL,'EPSG','4400','EPSG','4209','EPSG','16136','EPSG','1577',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21035','Arc 1960 / UTM zone 35S',NULL,NULL,'EPSG','4400','EPSG','4210','EPSG','16135','EPSG','1579',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21036','Arc 1960 / UTM zone 36S',NULL,NULL,'EPSG','4400','EPSG','4210','EPSG','16136','EPSG','1581',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21037','Arc 1960 / UTM zone 37S',NULL,NULL,'EPSG','4400','EPSG','4210','EPSG','16137','EPSG','1583',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21095','Arc 1960 / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','4210','EPSG','16035','EPSG','1578',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21096','Arc 1960 / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','4210','EPSG','16036','EPSG','1580',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21097','Arc 1960 / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4210','EPSG','16037','EPSG','1582',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21100','Batavia (Jakarta) / NEIEZ',NULL,NULL,'EPSG','4499','EPSG','4813','EPSG','19905','EPSG','1285',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21148','Batavia / UTM zone 48S',NULL,NULL,'EPSG','4400','EPSG','4211','EPSG','16148','EPSG','1584',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21149','Batavia / UTM zone 49S',NULL,NULL,'EPSG','4400','EPSG','4211','EPSG','16149','EPSG','1586',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21150','Batavia / UTM zone 50S',NULL,NULL,'EPSG','4400','EPSG','4211','EPSG','16150','EPSG','1585',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21291','Barbados 1938 / British West Indies Grid',NULL,NULL,'EPSG','4400','EPSG','4212','EPSG','19942','EPSG','3218',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21292','Barbados 1938 / Barbados National Grid',NULL,NULL,'EPSG','4400','EPSG','4212','EPSG','19943','EPSG','3218',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21413','Beijing 1954 / Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16213','EPSG','1587',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21414','Beijing 1954 / Gauss-Kruger zone 14',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16214','EPSG','1588',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21415','Beijing 1954 / Gauss-Kruger zone 15',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16215','EPSG','1589',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21416','Beijing 1954 / Gauss-Kruger zone 16',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16216','EPSG','1590',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21417','Beijing 1954 / Gauss-Kruger zone 17',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16217','EPSG','1591',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21418','Beijing 1954 / Gauss-Kruger zone 18',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16218','EPSG','1592',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21419','Beijing 1954 / Gauss-Kruger zone 19',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16219','EPSG','1593',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21420','Beijing 1954 / Gauss-Kruger zone 20',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16220','EPSG','1594',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21421','Beijing 1954 / Gauss-Kruger zone 21',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16221','EPSG','1595',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21422','Beijing 1954 / Gauss-Kruger zone 22',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16222','EPSG','1596',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21423','Beijing 1954 / Gauss-Kruger zone 23',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16223','EPSG','1597',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21453','Beijing 1954 / Gauss-Kruger CM 75E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16313','EPSG','1587',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21454','Beijing 1954 / Gauss-Kruger CM 81E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16314','EPSG','1588',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21455','Beijing 1954 / Gauss-Kruger CM 87E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16315','EPSG','1589',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21456','Beijing 1954 / Gauss-Kruger CM 93E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16316','EPSG','1590',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21457','Beijing 1954 / Gauss-Kruger CM 99E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16317','EPSG','1591',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21458','Beijing 1954 / Gauss-Kruger CM 105E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16318','EPSG','1592',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21459','Beijing 1954 / Gauss-Kruger CM 111E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16319','EPSG','1593',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21460','Beijing 1954 / Gauss-Kruger CM 117E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16320','EPSG','1594',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21461','Beijing 1954 / Gauss-Kruger CM 123E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16321','EPSG','1595',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21462','Beijing 1954 / Gauss-Kruger CM 129E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16322','EPSG','1596',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21463','Beijing 1954 / Gauss-Kruger CM 135E',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16323','EPSG','1597',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21473','Beijing 1954 / Gauss-Kruger 13N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16313','EPSG','1587',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21474','Beijing 1954 / Gauss-Kruger 14N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16314','EPSG','1588',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21475','Beijing 1954 / Gauss-Kruger 15N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16315','EPSG','1589',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21476','Beijing 1954 / Gauss-Kruger 16N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16316','EPSG','1590',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21477','Beijing 1954 / Gauss-Kruger 17N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16317','EPSG','1591',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21478','Beijing 1954 / Gauss-Kruger 18N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16318','EPSG','1592',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21479','Beijing 1954 / Gauss-Kruger 19N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16319','EPSG','1593',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21480','Beijing 1954 / Gauss-Kruger 20N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16320','EPSG','1594',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21481','Beijing 1954 / Gauss-Kruger 21N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16321','EPSG','1595',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21482','Beijing 1954 / Gauss-Kruger 22N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16322','EPSG','1596',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21483','Beijing 1954 / Gauss-Kruger 23N',NULL,NULL,'EPSG','4530','EPSG','4214','EPSG','16323','EPSG','1597',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21500','Belge 1950 (Brussels) / Belge Lambert 50',NULL,NULL,'EPSG','4499','EPSG','4809','EPSG','19901','EPSG','1347',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21780','Bern 1898 (Bern) / LV03C',NULL,NULL,'EPSG','4498','EPSG','4801','EPSG','19923','EPSG','1286',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21781','CH1903 / LV03',NULL,NULL,'EPSG','4498','EPSG','4149','EPSG','19922','EPSG','1286',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21782','CH1903 / LV03C-G',NULL,NULL,'EPSG','4498','EPSG','4149','EPSG','19841','EPSG','1144',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21817','Bogota 1975 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4218','EPSG','16017','EPSG','1602',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21818','Bogota 1975 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4218','EPSG','16018','EPSG','1603',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21891','Bogota 1975 / Colombia West zone',NULL,NULL,'EPSG','4499','EPSG','4218','EPSG','18051','EPSG','1598',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21892','Bogota 1975 / Colombia Bogota zone',NULL,NULL,'EPSG','4499','EPSG','4218','EPSG','18052','EPSG','1599',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21893','Bogota 1975 / Colombia East Central zone',NULL,NULL,'EPSG','4499','EPSG','4218','EPSG','18053','EPSG','1600',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21894','Bogota 1975 / Colombia East',NULL,NULL,'EPSG','4499','EPSG','4218','EPSG','18054','EPSG','1601',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','21896','Bogota 1975 / Colombia West zone',NULL,NULL,'EPSG','4530','EPSG','4218','EPSG','18051','EPSG','1598',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21897','Bogota 1975 / Colombia Bogota zone',NULL,NULL,'EPSG','4530','EPSG','4218','EPSG','18052','EPSG','1599',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21898','Bogota 1975 / Colombia East Central zone',NULL,NULL,'EPSG','4530','EPSG','4218','EPSG','18053','EPSG','1600',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','21899','Bogota 1975 / Colombia East zone',NULL,NULL,'EPSG','4530','EPSG','4218','EPSG','18054','EPSG','1601',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22032','Camacupa 1948 / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','4220','EPSG','16132','EPSG','1606',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22033','Camacupa 1948 / UTM zone 33S',NULL,NULL,'EPSG','4400','EPSG','4220','EPSG','16133','EPSG','1607',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22091','Camacupa 1948 / TM 11.30 SE',NULL,NULL,'EPSG','4400','EPSG','4220','EPSG','16611','EPSG','1605',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22092','Camacupa 1948 / TM 12 SE',NULL,NULL,'EPSG','4400','EPSG','4220','EPSG','16612','EPSG','1604',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22171','POSGAR 98 / Argentina 1',NULL,NULL,'EPSG','4530','EPSG','4190','EPSG','18031','EPSG','1608',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22172','POSGAR 98 / Argentina 2',NULL,NULL,'EPSG','4530','EPSG','4190','EPSG','18032','EPSG','1609',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22173','POSGAR 98 / Argentina 3',NULL,NULL,'EPSG','4530','EPSG','4190','EPSG','18033','EPSG','1610',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22174','POSGAR 98 / Argentina 4',NULL,NULL,'EPSG','4530','EPSG','4190','EPSG','18034','EPSG','1611',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22175','POSGAR 98 / Argentina 5',NULL,NULL,'EPSG','4530','EPSG','4190','EPSG','18035','EPSG','1612',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22176','POSGAR 98 / Argentina 6',NULL,NULL,'EPSG','4530','EPSG','4190','EPSG','18036','EPSG','1613',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22177','POSGAR 98 / Argentina 7',NULL,NULL,'EPSG','4530','EPSG','4190','EPSG','18037','EPSG','1614',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22181','POSGAR 94 / Argentina 1',NULL,NULL,'EPSG','4530','EPSG','4694','EPSG','18031','EPSG','1608',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22182','POSGAR 94 / Argentina 2',NULL,NULL,'EPSG','4530','EPSG','4694','EPSG','18032','EPSG','1609',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22183','POSGAR 94 / Argentina 3',NULL,NULL,'EPSG','4530','EPSG','4694','EPSG','18033','EPSG','1610',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22184','POSGAR 94 / Argentina 4',NULL,NULL,'EPSG','4530','EPSG','4694','EPSG','18034','EPSG','1611',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22185','POSGAR 94 / Argentina 5',NULL,NULL,'EPSG','4530','EPSG','4694','EPSG','18035','EPSG','1612',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22186','POSGAR 94 / Argentina 6',NULL,NULL,'EPSG','4530','EPSG','4694','EPSG','18036','EPSG','1613',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22187','POSGAR 94 / Argentina 7',NULL,NULL,'EPSG','4530','EPSG','4694','EPSG','18037','EPSG','1614',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22191','Campo Inchauspe / Argentina 1',NULL,NULL,'EPSG','4530','EPSG','4221','EPSG','18031','EPSG','1608',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22192','Campo Inchauspe / Argentina 2',NULL,NULL,'EPSG','4530','EPSG','4221','EPSG','18032','EPSG','1609',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22193','Campo Inchauspe / Argentina 3',NULL,NULL,'EPSG','4530','EPSG','4221','EPSG','18033','EPSG','1610',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22194','Campo Inchauspe / Argentina 4',NULL,NULL,'EPSG','4530','EPSG','4221','EPSG','18034','EPSG','1611',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22195','Campo Inchauspe / Argentina 5',NULL,NULL,'EPSG','4530','EPSG','4221','EPSG','18035','EPSG','1612',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22196','Campo Inchauspe / Argentina 6',NULL,NULL,'EPSG','4530','EPSG','4221','EPSG','18036','EPSG','1613',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22197','Campo Inchauspe / Argentina 7',NULL,NULL,'EPSG','4530','EPSG','4221','EPSG','18037','EPSG','1614',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22234','Cape / UTM zone 34S',NULL,NULL,'EPSG','4400','EPSG','4222','EPSG','16134','EPSG','1615',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22235','Cape / UTM zone 35S',NULL,NULL,'EPSG','4400','EPSG','4222','EPSG','16135','EPSG','1617',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22236','Cape / UTM zone 36S',NULL,NULL,'EPSG','4400','EPSG','4222','EPSG','16136','EPSG','1616',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','22275','Cape / Lo15',NULL,NULL,'EPSG','6503','EPSG','4222','EPSG','17515','EPSG','1454',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22277','Cape / Lo17',NULL,NULL,'EPSG','6503','EPSG','4222','EPSG','17517','EPSG','1455',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22279','Cape / Lo19',NULL,NULL,'EPSG','6503','EPSG','4222','EPSG','17519','EPSG','1456',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22281','Cape / Lo21',NULL,NULL,'EPSG','6503','EPSG','4222','EPSG','17521','EPSG','1457',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22283','Cape / Lo23',NULL,NULL,'EPSG','6503','EPSG','4222','EPSG','17523','EPSG','1458',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22285','Cape / Lo25',NULL,NULL,'EPSG','6503','EPSG','4222','EPSG','17525','EPSG','1459',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22287','Cape / Lo27',NULL,NULL,'EPSG','6503','EPSG','4222','EPSG','17527','EPSG','1460',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22289','Cape / Lo29',NULL,NULL,'EPSG','6503','EPSG','4222','EPSG','17529','EPSG','1461',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22291','Cape / Lo31',NULL,NULL,'EPSG','6503','EPSG','4222','EPSG','17531','EPSG','1462',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22293','Cape / Lo33',NULL,NULL,'EPSG','6503','EPSG','4222','EPSG','17533','EPSG','1463',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22300','Carthage (Paris) / Tunisia Mining Grid',NULL,NULL,'EPSG','4406','EPSG','4816','EPSG','19937','EPSG','1618',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22332','Carthage / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4223','EPSG','16032','EPSG','1489',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22391','Carthage / Nord Tunisie',NULL,NULL,'EPSG','4499','EPSG','4223','EPSG','18181','EPSG','1619',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22392','Carthage / Sud Tunisie',NULL,NULL,'EPSG','4499','EPSG','4223','EPSG','18182','EPSG','1620',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22521','Corrego Alegre 1970-72 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','4225','EPSG','16121','EPSG','3355',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22522','Corrego Alegre 1970-72 / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4225','EPSG','16122','EPSG','3176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22523','Corrego Alegre 1970-72 / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','4225','EPSG','16123','EPSG','3177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22524','Corrego Alegre 1970-72 / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','4225','EPSG','16124','EPSG','1818',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22525','Corrego Alegre 1970-72 / UTM zone 25S',NULL,NULL,'EPSG','4400','EPSG','4225','EPSG','16125','EPSG','3178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22700','Deir ez Zor / Levant Zone',NULL,NULL,'EPSG','4499','EPSG','4227','EPSG','19940','EPSG','1623',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22770','Deir ez Zor / Syria Lambert',NULL,NULL,'EPSG','4499','EPSG','4227','EPSG','19948','EPSG','1623',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22780','Deir ez Zor / Levant Stereographic',NULL,NULL,'EPSG','4499','EPSG','4227','EPSG','19949','EPSG','1623',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22832','Douala / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4228','EPSG','16032','EPSG','1060',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','22991','Egypt 1907 / Blue Belt',NULL,NULL,'EPSG','4400','EPSG','4229','EPSG','18071','EPSG','1642',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22992','Egypt 1907 / Red Belt',NULL,NULL,'EPSG','4400','EPSG','4229','EPSG','18072','EPSG','1643',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22993','Egypt 1907 / Purple Belt',NULL,NULL,'EPSG','4400','EPSG','4229','EPSG','18073','EPSG','1644',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','22994','Egypt 1907 / Extended Purple Belt',NULL,NULL,'EPSG','4400','EPSG','4229','EPSG','18074','EPSG','1645',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23028','ED50 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16028','EPSG','1631',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23029','ED50 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16029','EPSG','1632',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23030','ED50 / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16030','EPSG','1633',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23031','ED50 / UTM zone 31N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16031','EPSG','1634',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23032','ED50 / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16032','EPSG','1635',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23033','ED50 / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16033','EPSG','1636',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23034','ED50 / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16034','EPSG','1637',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23035','ED50 / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16035','EPSG','1638',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23036','ED50 / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16036','EPSG','1639',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23037','ED50 / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16037','EPSG','1640',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23038','ED50 / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16038','EPSG','1641',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23090','ED50 / TM 0 N',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16400','EPSG','1629',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23095','ED50 / TM 5 NE',NULL,NULL,'EPSG','4400','EPSG','4230','EPSG','16405','EPSG','1630',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23239','Fahud / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4232','EPSG','16039','EPSG','1544',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23240','Fahud / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','4232','EPSG','16040','EPSG','4008',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23433','Garoua / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4234','EPSG','16033','EPSG','1060',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','23700','HD72 / EOV',NULL,NULL,'EPSG','4498','EPSG','4237','EPSG','19931','EPSG','1119',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23830','DGN95 / Indonesia TM-3 zone 46.2',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17432','EPSG','3976',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23831','DGN95 / Indonesia TM-3 zone 47.1',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17433','EPSG','3510',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23832','DGN95 / Indonesia TM-3 zone 47.2',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17434','EPSG','3511',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23833','DGN95 / Indonesia TM-3 zone 48.1',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17435','EPSG','3512',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23834','DGN95 / Indonesia TM-3 zone 48.2',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17436','EPSG','3513',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23835','DGN95 / Indonesia TM-3 zone 49.1',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17437','EPSG','3514',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23836','DGN95 / Indonesia TM-3 zone 49.2',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17438','EPSG','3515',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23837','DGN95 / Indonesia TM-3 zone 50.1',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17439','EPSG','3516',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23838','DGN95 / Indonesia TM-3 zone 50.2',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17440','EPSG','3517',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23839','DGN95 / Indonesia TM-3 zone 51.1',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17441','EPSG','3518',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23840','DGN95 / Indonesia TM-3 zone 51.2',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17442','EPSG','3519',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23841','DGN95 / Indonesia TM-3 zone 52.1',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17443','EPSG','3520',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23842','DGN95 / Indonesia TM-3 zone 52.2',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17444','EPSG','3521',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23843','DGN95 / Indonesia TM-3 zone 53.1',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17445','EPSG','3522',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23844','DGN95 / Indonesia TM-3 zone 53.2',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17446','EPSG','3523',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23845','DGN95 / Indonesia TM-3 zone 54.1',NULL,NULL,'EPSG','4499','EPSG','4755','EPSG','17447','EPSG','3975',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23846','ID74 / UTM zone 46N',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16046','EPSG','3976',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23847','ID74 / UTM zone 47N',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16047','EPSG','3978',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23848','ID74 / UTM zone 48N',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16048','EPSG','3979',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23849','ID74 / UTM zone 49N',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16049','EPSG','3980',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23850','ID74 / UTM zone 50N',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16050','EPSG','3981',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23851','ID74 / UTM zone 51N',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16051','EPSG','3983',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23852','ID74 / UTM zone 52N',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16052','EPSG','3984',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23853','ID74 / UTM zone 53N',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16053','EPSG','1661',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','23866','DGN95 / UTM zone 46N',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16046','EPSG','1647',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23867','DGN95 / UTM zone 47N',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16047','EPSG','1649',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23868','DGN95 / UTM zone 48N',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16048','EPSG','1651',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23869','DGN95 / UTM zone 49N',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16049','EPSG','1653',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23870','DGN95 / UTM zone 50N',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16050','EPSG','1655',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23871','DGN95 / UTM zone 51N',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16051','EPSG','1657',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23872','DGN95 / UTM zone 52N',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16052','EPSG','1659',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23877','DGN95 / UTM zone 47S',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16147','EPSG','1650',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23878','DGN95 / UTM zone 48S',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16148','EPSG','1652',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23879','DGN95 / UTM zone 49S',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16149','EPSG','1654',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23880','DGN95 / UTM zone 50S',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16150','EPSG','1656',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23881','DGN95 / UTM zone 51S',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16151','EPSG','1658',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23882','DGN95 / UTM zone 52S',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16152','EPSG','1660',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23883','DGN95 / UTM zone 53S',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16153','EPSG','1662',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23884','DGN95 / UTM zone 54S',NULL,NULL,'EPSG','4400','EPSG','4755','EPSG','16154','EPSG','1663',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23886','ID74 / UTM zone 46S',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16146','EPSG','1648',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','23887','ID74 / UTM zone 47S',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16147','EPSG','3985',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23888','ID74 / UTM zone 48S',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16148','EPSG','3986',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23889','ID74 / UTM zone 49S',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16149','EPSG','3987',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23890','ID74 / UTM zone 50S',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16150','EPSG','3988',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23891','ID74 / UTM zone 51S',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16151','EPSG','3989',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23892','ID74 / UTM zone 52S',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16152','EPSG','3990',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23893','ID74 / UTM zone 53S',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16153','EPSG','3991',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23894','ID74 / UTM zone 54S',NULL,NULL,'EPSG','4400','EPSG','4238','EPSG','16154','EPSG','3975',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23946','Indian 1954 / UTM zone 46N',NULL,NULL,'EPSG','4400','EPSG','4239','EPSG','16046','EPSG','1664',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23947','Indian 1954 / UTM zone 47N',NULL,NULL,'EPSG','4400','EPSG','4239','EPSG','16047','EPSG','1665',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','23948','Indian 1954 / UTM zone 48N',NULL,NULL,'EPSG','4400','EPSG','4239','EPSG','16048','EPSG','3735',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24047','Indian 1975 / UTM zone 47N',NULL,NULL,'EPSG','4400','EPSG','4240','EPSG','16047','EPSG','1667',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24048','Indian 1975 / UTM zone 48N',NULL,NULL,'EPSG','4400','EPSG','4240','EPSG','16048','EPSG','1666',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24100','Jamaica 1875 / Jamaica (Old Grid)',NULL,NULL,'EPSG','4403','EPSG','4241','EPSG','19909','EPSG','3342',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24200','JAD69 / Jamaica National Grid',NULL,NULL,'EPSG','4400','EPSG','4242','EPSG','19910','EPSG','3342',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24305','Kalianpur 1937 / UTM zone 45N',NULL,NULL,'EPSG','4400','EPSG','4144','EPSG','16045','EPSG','1674',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24306','Kalianpur 1937 / UTM zone 46N',NULL,NULL,'EPSG','4400','EPSG','4144','EPSG','16046','EPSG','1675',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24311','Kalianpur 1962 / UTM zone 41N',NULL,NULL,'EPSG','4400','EPSG','4145','EPSG','16041','EPSG','1687',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24312','Kalianpur 1962 / UTM zone 42N',NULL,NULL,'EPSG','4400','EPSG','4145','EPSG','16042','EPSG','1688',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24313','Kalianpur 1962 / UTM zone 43N',NULL,NULL,'EPSG','4400','EPSG','4145','EPSG','16043','EPSG','1689',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24342','Kalianpur 1975 / UTM zone 42N',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','16042','EPSG','1679',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24343','Kalianpur 1975 / UTM zone 43N',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','16043','EPSG','1680',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24344','Kalianpur 1975 / UTM zone 44N',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','16044','EPSG','1681',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24345','Kalianpur 1975 / UTM zone 45N',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','16045','EPSG','1682',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24346','Kalianpur 1975 / UTM zone 46N',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','16046','EPSG','1683',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24347','Kalianpur 1975 / UTM zone 47N',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','16047','EPSG','1684',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24370','Kalianpur 1880 / India zone 0',NULL,NULL,'EPSG','4408','EPSG','4243','EPSG','18110','EPSG','1668',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24371','Kalianpur 1880 / India zone I',NULL,NULL,'EPSG','4408','EPSG','4243','EPSG','18111','EPSG','1669',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24372','Kalianpur 1880 / India zone IIa',NULL,NULL,'EPSG','4408','EPSG','4243','EPSG','18112','EPSG','1670',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24373','Kalianpur 1880 / India zone IIIa',NULL,NULL,'EPSG','4408','EPSG','4243','EPSG','18114','EPSG','1672',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24374','Kalianpur 1880 / India zone IVa',NULL,NULL,'EPSG','4408','EPSG','4243','EPSG','18116','EPSG','1673',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24375','Kalianpur 1937 / India zone IIb',NULL,NULL,'EPSG','4400','EPSG','4144','EPSG','18238','EPSG','3217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24376','Kalianpur 1962 / India zone I',NULL,NULL,'EPSG','4400','EPSG','4145','EPSG','18236','EPSG','1685',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24377','Kalianpur 1962 / India zone IIa',NULL,NULL,'EPSG','4400','EPSG','4145','EPSG','18237','EPSG','1686',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24378','Kalianpur 1975 / India zone I',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','18231','EPSG','1676',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24379','Kalianpur 1975 / India zone IIa',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','18232','EPSG','1677',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24380','Kalianpur 1975 / India zone IIb',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','18235','EPSG','1678',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24381','Kalianpur 1975 / India zone IIIa',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','18233','EPSG','1672',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24382','Kalianpur 1880 / India zone IIb',NULL,NULL,'EPSG','4408','EPSG','4243','EPSG','18113','EPSG','1671',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24383','Kalianpur 1975 / India zone IVa',NULL,NULL,'EPSG','4400','EPSG','4146','EPSG','18234','EPSG','1673',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24500','Kertau 1968 / Singapore Grid',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','19920','EPSG','1210',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24547','Kertau 1968 / UTM zone 47N',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','16047','EPSG','1691',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24548','Kertau 1968 / UTM zone 48N',NULL,NULL,'EPSG','4400','EPSG','4245','EPSG','16048','EPSG','1692',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24571','Kertau / R.S.O. Malaya (ch)',NULL,NULL,'EPSG','4401','EPSG','4245','EPSG','19935','EPSG','1690',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','24600','KOC Lambert',NULL,NULL,'EPSG','4400','EPSG','4246','EPSG','19906','EPSG','3267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24718','La Canoa / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4247','EPSG','16018','EPSG','1693',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24719','La Canoa / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4247','EPSG','16019','EPSG','1694',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24720','La Canoa / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4247','EPSG','16020','EPSG','1695',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24817','PSAD56 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16017','EPSG','3112',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24818','PSAD56 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16018','EPSG','1756',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24819','PSAD56 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16019','EPSG','1758',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24820','PSAD56 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16020','EPSG','1760',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24821','PSAD56 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16021','EPSG','1762',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24877','PSAD56 / UTM zone 17S',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16117','EPSG','1755',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24878','PSAD56 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16118','EPSG','1757',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24879','PSAD56 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16119','EPSG','1759',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24880','PSAD56 / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16120','EPSG','1761',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24881','PSAD56 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16121','EPSG','3733',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24882','PSAD56 / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4248','EPSG','16122','EPSG','1754',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24891','PSAD56 / Peru west zone',NULL,NULL,'EPSG','4499','EPSG','4248','EPSG','18161','EPSG','1753',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24892','PSAD56 / Peru central zone',NULL,NULL,'EPSG','4499','EPSG','4248','EPSG','18162','EPSG','1752',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','24893','PSAD56 / Peru east zone',NULL,NULL,'EPSG','4499','EPSG','4248','EPSG','18163','EPSG','1751',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25000','Leigon / Ghana Metre Grid',NULL,NULL,'EPSG','4400','EPSG','4250','EPSG','19904','EPSG','1104',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25231','Lome / UTM zone 31N',NULL,NULL,'EPSG','4400','EPSG','4252','EPSG','16031','EPSG','1232',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25391','Luzon 1911 / Philippines zone I',NULL,NULL,'EPSG','4499','EPSG','4253','EPSG','18171','EPSG','3958',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25392','Luzon 1911 / Philippines zone II',NULL,NULL,'EPSG','4499','EPSG','4253','EPSG','18172','EPSG','3964',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25393','Luzon 1911 / Philippines zone III',NULL,NULL,'EPSG','4499','EPSG','4253','EPSG','18173','EPSG','3965',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25394','Luzon 1911 / Philippines zone IV',NULL,NULL,'EPSG','4499','EPSG','4253','EPSG','18174','EPSG','3966',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25395','Luzon 1911 / Philippines zone V',NULL,NULL,'EPSG','4499','EPSG','4253','EPSG','18175','EPSG','3967',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25700','Makassar (Jakarta) / NEIEZ',NULL,NULL,'EPSG','4499','EPSG','4804','EPSG','19905','EPSG','1316',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','25828','ETRS89 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16028','EPSG','2122',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25829','ETRS89 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16029','EPSG','2123',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25830','ETRS89 / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16030','EPSG','2124',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25831','ETRS89 / UTM zone 31N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16031','EPSG','2125',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25832','ETRS89 / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16032','EPSG','2126',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25833','ETRS89 / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16033','EPSG','2127',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25834','ETRS89 / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16034','EPSG','2128',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25835','ETRS89 / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16035','EPSG','2129',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25836','ETRS89 / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16036','EPSG','2130',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25837','ETRS89 / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16037','EPSG','2131',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25838','ETRS89 / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16038','EPSG','2132',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','25884','ETRS89 / TM Baltic93',NULL,NULL,'EPSG','4530','EPSG','4258','EPSG','19939','EPSG','1646',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','25932','Malongo 1987 / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','4259','EPSG','16132','EPSG','3180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26191','Merchich / Nord Maroc',NULL,NULL,'EPSG','4499','EPSG','4261','EPSG','18131','EPSG','1703',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26192','Merchich / Sud Maroc',NULL,NULL,'EPSG','4499','EPSG','4261','EPSG','18132','EPSG','2787',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26193','Merchich / Sahara',NULL,NULL,'EPSG','4499','EPSG','4261','EPSG','18133','EPSG','1705',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26194','Merchich / Sahara Nord',NULL,NULL,'EPSG','4499','EPSG','4261','EPSG','18134','EPSG','2788',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26195','Merchich / Sahara Sud',NULL,NULL,'EPSG','4499','EPSG','4261','EPSG','18135','EPSG','2789',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26237','Massawa / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4262','EPSG','16037','EPSG','1089',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26331','Minna / UTM zone 31N',NULL,NULL,'EPSG','4400','EPSG','4263','EPSG','16031','EPSG','1716',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26332','Minna / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4263','EPSG','16032','EPSG','3812',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26391','Minna / Nigeria West Belt',NULL,NULL,'EPSG','4400','EPSG','4263','EPSG','18151','EPSG','1715',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26392','Minna / Nigeria Mid Belt',NULL,NULL,'EPSG','4400','EPSG','4263','EPSG','18152','EPSG','1714',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26393','Minna / Nigeria East Belt',NULL,NULL,'EPSG','4400','EPSG','4263','EPSG','18153','EPSG','1713',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26432','Mhast / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','4264','EPSG','16132','EPSG','1318',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26591','Monte Mario (Rome) / Italy zone 1',NULL,NULL,'EPSG','4499','EPSG','4806','EPSG','18121','EPSG','1718',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26592','Monte Mario (Rome) / Italy zone 2',NULL,NULL,'EPSG','4499','EPSG','4806','EPSG','18122','EPSG','1719',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26632','M''poraloko / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4266','EPSG','16032','EPSG','1696',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26692','M''poraloko / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','4266','EPSG','16132','EPSG','1697',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26701','NAD27 / UTM zone 1N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16001','EPSG','3374',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26702','NAD27 / UTM zone 2N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16002','EPSG','3375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26703','NAD27 / UTM zone 3N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16003','EPSG','2133',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26704','NAD27 / UTM zone 4N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16004','EPSG','2134',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26705','NAD27 / UTM zone 5N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16005','EPSG','2135',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26706','NAD27 / UTM zone 6N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16006','EPSG','2136',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26707','NAD27 / UTM zone 7N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16007','EPSG','2137',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26708','NAD27 / UTM zone 8N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16008','EPSG','2138',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26709','NAD27 / UTM zone 9N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16009','EPSG','2139',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26710','NAD27 / UTM zone 10N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16010','EPSG','2140',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26711','NAD27 / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16011','EPSG','2141',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26712','NAD27 / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16012','EPSG','2142',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26713','NAD27 / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16013','EPSG','2143',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26714','NAD27 / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16014','EPSG','2144',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26715','NAD27 / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16015','EPSG','2145',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26716','NAD27 / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16016','EPSG','2146',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26717','NAD27 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16017','EPSG','2147',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26718','NAD27 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16018','EPSG','2148',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26719','NAD27 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16019','EPSG','2149',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26720','NAD27 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16020','EPSG','2150',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26721','NAD27 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16021','EPSG','3891',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26722','NAD27 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16022','EPSG','2152',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26729','NAD27 / Alabama East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10101','EPSG','2154',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26730','NAD27 / Alabama West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10102','EPSG','2155',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26731','NAD27 / Alaska zone 1',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15001','EPSG','2156',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26732','NAD27 / Alaska zone 2',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15002','EPSG','2158',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26733','NAD27 / Alaska zone 3',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15003','EPSG','2159',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26734','NAD27 / Alaska zone 4',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15004','EPSG','2160',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26735','NAD27 / Alaska zone 5',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15005','EPSG','2161',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26736','NAD27 / Alaska zone 6',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15006','EPSG','2162',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26737','NAD27 / Alaska zone 7',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15007','EPSG','2163',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26738','NAD27 / Alaska zone 8',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15008','EPSG','2164',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26739','NAD27 / Alaska zone 9',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15009','EPSG','2165',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26740','NAD27 / Alaska zone 10',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15010','EPSG','2157',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26741','NAD27 / California zone I',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10401','EPSG','2175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26742','NAD27 / California zone II',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10402','EPSG','2176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26743','NAD27 / California zone III',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10403','EPSG','2177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26744','NAD27 / California zone IV',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10404','EPSG','2178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26745','NAD27 / California zone V',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10405','EPSG','2179',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26746','NAD27 / California zone VI',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10406','EPSG','2180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26747','NAD27 / California zone VII',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10407','EPSG','2181',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26748','NAD27 / Arizona East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10201','EPSG','2167',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26749','NAD27 / Arizona Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10202','EPSG','2166',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26750','NAD27 / Arizona West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10203','EPSG','2168',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26751','NAD27 / Arkansas North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10301','EPSG','2169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26752','NAD27 / Arkansas South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10302','EPSG','2170',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26753','NAD27 / Colorado North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10501','EPSG','2184',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26754','NAD27 / Colorado Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10502','EPSG','2183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26755','NAD27 / Colorado South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10503','EPSG','2185',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26756','NAD27 / Connecticut',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10600','EPSG','1377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26757','NAD27 / Delaware',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10700','EPSG','1378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26758','NAD27 / Florida East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10901','EPSG','2186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26759','NAD27 / Florida West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10902','EPSG','2188',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26760','NAD27 / Florida North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10903','EPSG','2187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26766','NAD27 / Georgia East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11001','EPSG','2189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26767','NAD27 / Georgia West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11002','EPSG','2190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26768','NAD27 / Idaho East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11101','EPSG','2192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26769','NAD27 / Idaho Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11102','EPSG','2191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26770','NAD27 / Idaho West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11103','EPSG','2193',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26771','NAD27 / Illinois East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11201','EPSG','2194',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26772','NAD27 / Illinois West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11202','EPSG','2195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26773','NAD27 / Indiana East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11301','EPSG','2196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26774','NAD27 / Indiana West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11302','EPSG','2197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26775','NAD27 / Iowa North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11401','EPSG','2198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26776','NAD27 / Iowa South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11402','EPSG','2199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26777','NAD27 / Kansas North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11501','EPSG','2200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26778','NAD27 / Kansas South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11502','EPSG','2201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26779','NAD27 / Kentucky North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11601','EPSG','2202',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26780','NAD27 / Kentucky South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11602','EPSG','2203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26781','NAD27 / Louisiana North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11701','EPSG','2204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26782','NAD27 / Louisiana South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11702','EPSG','2205',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26783','NAD27 / Maine East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11801','EPSG','2206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26784','NAD27 / Maine West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11802','EPSG','2207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26785','NAD27 / Maryland',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11900','EPSG','1389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26786','NAD27 / Massachusetts Mainland',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12001','EPSG','2209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26787','NAD27 / Massachusetts Island',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12002','EPSG','2208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26791','NAD27 / Minnesota North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12201','EPSG','2214',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26792','NAD27 / Minnesota Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12202','EPSG','2213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26793','NAD27 / Minnesota South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12203','EPSG','2215',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26794','NAD27 / Mississippi East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12301','EPSG','2216',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26795','NAD27 / Mississippi West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12302','EPSG','2217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26796','NAD27 / Missouri East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12401','EPSG','2219',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26797','NAD27 / Missouri Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12402','EPSG','2218',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26798','NAD27 / Missouri West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12403','EPSG','2220',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26799','NAD27 / California zone VII',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','10408','EPSG','2181',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26801','NAD Michigan / Michigan East',NULL,NULL,'EPSG','4497','EPSG','4268','EPSG','12101','EPSG','1720',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26802','NAD Michigan / Michigan Old Central',NULL,NULL,'EPSG','4497','EPSG','4268','EPSG','12102','EPSG','1721',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26803','NAD Michigan / Michigan West',NULL,NULL,'EPSG','4497','EPSG','4268','EPSG','12103','EPSG','3652',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26811','NAD Michigan / Michigan North',NULL,NULL,'EPSG','4497','EPSG','4268','EPSG','12111','EPSG','1723',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26812','NAD Michigan / Michigan Central',NULL,NULL,'EPSG','4497','EPSG','4268','EPSG','12112','EPSG','1724',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26813','NAD Michigan / Michigan South',NULL,NULL,'EPSG','4497','EPSG','4268','EPSG','12113','EPSG','1725',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26814','NAD83 / Maine East (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11833','EPSG','2206',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26815','NAD83 / Maine West (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11834','EPSG','2207',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26819','NAD83 / Minnesota North (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12234','EPSG','2214',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26820','NAD83 / Minnesota Central (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12235','EPSG','2213',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26821','NAD83 / Minnesota South (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12236','EPSG','2215',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26822','NAD83 / Nebraska (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15396','EPSG','1396',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26823','NAD83 / West Virginia North (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14733','EPSG','2264',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26824','NAD83 / West Virginia South (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14734','EPSG','2265',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26825','NAD83(HARN) / Maine East (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11833','EPSG','2206',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26826','NAD83(HARN) / Maine West (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','11834','EPSG','2207',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26830','NAD83(HARN) / Minnesota North (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12234','EPSG','2214',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26831','NAD83(HARN) / Minnesota Central (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12235','EPSG','2213',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26832','NAD83(HARN) / Minnesota South (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','12236','EPSG','2215',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26833','NAD83(HARN) / Nebraska (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','15396','EPSG','1396',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26834','NAD83(HARN) / West Virginia North (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14733','EPSG','2264',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26835','NAD83(HARN) / West Virginia South (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4152','EPSG','14734','EPSG','2265',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26836','NAD83(NSRS2007) / Maine East (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11833','EPSG','2206',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26837','NAD83(NSRS2007) / Maine West (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','11834','EPSG','2207',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26841','NAD83(NSRS2007) / Minnesota North (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12234','EPSG','2214',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26842','NAD83(NSRS2007) / Minnesota Central (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12235','EPSG','2213',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26843','NAD83(NSRS2007) / Minnesota South (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','12236','EPSG','2215',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26844','NAD83(NSRS2007) / Nebraska (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','15396','EPSG','1396',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26845','NAD83(NSRS2007) / West Virginia North (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14733','EPSG','2264',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26846','NAD83(NSRS2007) / West Virginia South (ftUS)',NULL,NULL,'EPSG','4499','EPSG','4759','EPSG','14734','EPSG','2265',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26847','NAD83 / Maine East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','11833','EPSG','2206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26848','NAD83 / Maine West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','11834','EPSG','2207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26849','NAD83 / Minnesota North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','12234','EPSG','2214',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26850','NAD83 / Minnesota Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','12235','EPSG','2213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26851','NAD83 / Minnesota South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','12236','EPSG','2215',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26852','NAD83 / Nebraska (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15396','EPSG','1396',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26853','NAD83 / West Virginia North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','14735','EPSG','2264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26854','NAD83 / West Virginia South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','14736','EPSG','2265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26855','NAD83(HARN) / Maine East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','11833','EPSG','2206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26856','NAD83(HARN) / Maine West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','11834','EPSG','2207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26857','NAD83(HARN) / Minnesota North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','12234','EPSG','2214',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26858','NAD83(HARN) / Minnesota Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','12235','EPSG','2213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26859','NAD83(HARN) / Minnesota South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','12236','EPSG','2215',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26860','NAD83(HARN) / Nebraska (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','15396','EPSG','1396',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26861','NAD83(HARN) / West Virginia North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','14735','EPSG','2264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26862','NAD83(HARN) / West Virginia South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4152','EPSG','14736','EPSG','2265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26863','NAD83(NSRS2007) / Maine East (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','11833','EPSG','2206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26864','NAD83(NSRS2007) / Maine West (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','11834','EPSG','2207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26865','NAD83(NSRS2007) / Minnesota North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','12234','EPSG','2214',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26866','NAD83(NSRS2007) / Minnesota Central (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','12235','EPSG','2213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26867','NAD83(NSRS2007) / Minnesota South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','12236','EPSG','2215',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26868','NAD83(NSRS2007) / Nebraska (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','15396','EPSG','1396',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26869','NAD83(NSRS2007) / West Virginia North (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','14735','EPSG','2264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26870','NAD83(NSRS2007) / West Virginia South (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4759','EPSG','14736','EPSG','2265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26891','NAD83(CSRS) / MTM zone 11',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17711','EPSG','1432',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26892','NAD83(CSRS) / MTM zone 12',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17712','EPSG','1433',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26893','NAD83(CSRS) / MTM zone 13',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17713','EPSG','1434',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26894','NAD83(CSRS) / MTM zone 14',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17714','EPSG','1435',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26895','NAD83(CSRS) / MTM zone 15',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17715','EPSG','1436',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26896','NAD83(CSRS) / MTM zone 16',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17716','EPSG','1437',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26897','NAD83(CSRS) / MTM zone 17',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','17717','EPSG','1438',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26898','NAD83(CSRS) / MTM zone 1',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','17701','EPSG','2226',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26899','NAD83(CSRS) / MTM zone 2',NULL,NULL,'EPSG','4496','EPSG','4617','EPSG','17702','EPSG','2227',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26901','NAD83 / UTM zone 1N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16001','EPSG','3374',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26902','NAD83 / UTM zone 2N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16002','EPSG','3375',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26903','NAD83 / UTM zone 3N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16003','EPSG','2133',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26904','NAD83 / UTM zone 4N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16004','EPSG','3489',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26905','NAD83 / UTM zone 5N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16005','EPSG','3492',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26906','NAD83 / UTM zone 6N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16006','EPSG','2136',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26907','NAD83 / UTM zone 7N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16007','EPSG','3872',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26908','NAD83 / UTM zone 8N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16008','EPSG','3867',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26909','NAD83 / UTM zone 9N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16009','EPSG','3866',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26910','NAD83 / UTM zone 10N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16010','EPSG','3864',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26911','NAD83 / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16011','EPSG','3404',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26912','NAD83 / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16012','EPSG','3405',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26913','NAD83 / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16013','EPSG','3406',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26914','NAD83 / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16014','EPSG','3407',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26915','NAD83 / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16015','EPSG','3114',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26916','NAD83 / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16016','EPSG','3115',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26917','NAD83 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16017','EPSG','3116',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26918','NAD83 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16018','EPSG','3117',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26919','NAD83 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16019','EPSG','3419',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26920','NAD83 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16020','EPSG','3420',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26921','NAD83 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16021','EPSG','2151',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26922','NAD83 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16022','EPSG','2152',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26923','NAD83 / UTM zone 23N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16023','EPSG','2153',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26929','NAD83 / Alabama East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10131','EPSG','2154',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26930','NAD83 / Alabama West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10132','EPSG','2155',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26931','NAD83 / Alaska zone 1',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15031','EPSG','2156',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26932','NAD83 / Alaska zone 2',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15032','EPSG','2158',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26933','NAD83 / Alaska zone 3',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15033','EPSG','2159',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26934','NAD83 / Alaska zone 4',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15034','EPSG','2160',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26935','NAD83 / Alaska zone 5',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15035','EPSG','2161',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26936','NAD83 / Alaska zone 6',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15036','EPSG','2162',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26937','NAD83 / Alaska zone 7',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15037','EPSG','2163',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26938','NAD83 / Alaska zone 8',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15038','EPSG','2164',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26939','NAD83 / Alaska zone 9',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15039','EPSG','2165',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26940','NAD83 / Alaska zone 10',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15040','EPSG','2157',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26941','NAD83 / California zone 1',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10431','EPSG','2175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26942','NAD83 / California zone 2',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10432','EPSG','2176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26943','NAD83 / California zone 3',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10433','EPSG','2177',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26944','NAD83 / California zone 4',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10434','EPSG','2178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26945','NAD83 / California zone 5',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10435','EPSG','2182',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26946','NAD83 / California zone 6',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10436','EPSG','2180',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26948','NAD83 / Arizona East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10231','EPSG','2167',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26949','NAD83 / Arizona Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10232','EPSG','2166',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26950','NAD83 / Arizona West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10233','EPSG','2168',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26951','NAD83 / Arkansas North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10331','EPSG','2169',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26952','NAD83 / Arkansas South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10332','EPSG','2170',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26953','NAD83 / Colorado North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10531','EPSG','2184',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26954','NAD83 / Colorado Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10532','EPSG','2183',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26955','NAD83 / Colorado South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10533','EPSG','2185',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26956','NAD83 / Connecticut',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10630','EPSG','1377',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26957','NAD83 / Delaware',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10730','EPSG','1378',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26958','NAD83 / Florida East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10931','EPSG','2186',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26959','NAD83 / Florida West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10932','EPSG','2188',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26960','NAD83 / Florida North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','10933','EPSG','2187',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26961','NAD83 / Hawaii zone 1',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15131','EPSG','1546',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26962','NAD83 / Hawaii zone 2',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15132','EPSG','1547',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26963','NAD83 / Hawaii zone 3',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15133','EPSG','1548',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26964','NAD83 / Hawaii zone 4',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15134','EPSG','1549',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26965','NAD83 / Hawaii zone 5',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15135','EPSG','1550',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26966','NAD83 / Georgia East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11031','EPSG','2189',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26967','NAD83 / Georgia West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11032','EPSG','2190',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26968','NAD83 / Idaho East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11131','EPSG','2192',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26969','NAD83 / Idaho Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11132','EPSG','2191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26970','NAD83 / Idaho West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11133','EPSG','2193',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26971','NAD83 / Illinois East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11231','EPSG','2194',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26972','NAD83 / Illinois West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11232','EPSG','2195',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26973','NAD83 / Indiana East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11331','EPSG','2196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26974','NAD83 / Indiana West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11332','EPSG','2197',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26975','NAD83 / Iowa North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11431','EPSG','2198',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26976','NAD83 / Iowa South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11432','EPSG','2199',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26977','NAD83 / Kansas North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11531','EPSG','2200',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26978','NAD83 / Kansas South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11532','EPSG','2201',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26979','NAD83 / Kentucky North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11631','EPSG','2202',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','26980','NAD83 / Kentucky South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11632','EPSG','2203',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26981','NAD83 / Louisiana North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11731','EPSG','2204',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26982','NAD83 / Louisiana South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11732','EPSG','2529',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26983','NAD83 / Maine East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11831','EPSG','2206',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26984','NAD83 / Maine West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11832','EPSG','2207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26985','NAD83 / Maryland',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11930','EPSG','1389',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26986','NAD83 / Massachusetts Mainland',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12031','EPSG','2209',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26987','NAD83 / Massachusetts Island',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12032','EPSG','2208',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26988','NAD83 / Michigan North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12141','EPSG','1723',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26989','NAD83 / Michigan Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12142','EPSG','1724',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26990','NAD83 / Michigan South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12143','EPSG','1725',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26991','NAD83 / Minnesota North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12231','EPSG','2214',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26992','NAD83 / Minnesota Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12232','EPSG','2213',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26993','NAD83 / Minnesota South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12233','EPSG','2215',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26994','NAD83 / Mississippi East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12331','EPSG','2216',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26995','NAD83 / Mississippi West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12332','EPSG','2217',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26996','NAD83 / Missouri East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12431','EPSG','2219',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26997','NAD83 / Missouri Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12432','EPSG','2218',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','26998','NAD83 / Missouri West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12433','EPSG','2220',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27037','Nahrwan 1967 / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4270','EPSG','16037','EPSG','3387',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27038','Nahrwan 1967 / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4270','EPSG','16038','EPSG','3386',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27039','Nahrwan 1967 / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4270','EPSG','16039','EPSG','1749',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27040','Nahrwan 1967 / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','4270','EPSG','16040','EPSG','1750',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27120','Naparima 1972 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4271','EPSG','16020','EPSG','1322',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27200','NZGD49 / New Zealand Map Grid',NULL,NULL,'EPSG','4400','EPSG','4272','EPSG','19917','EPSG','3973',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27205','NZGD49 / Mount Eden Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17901','EPSG','3781',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27206','NZGD49 / Bay of Plenty Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17902','EPSG','3779',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27207','NZGD49 / Poverty Bay Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17903','EPSG','3780',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27208','NZGD49 / Hawkes Bay Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17904','EPSG','3772',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27209','NZGD49 / Taranaki Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17905','EPSG','3777',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27210','NZGD49 / Tuhirangi Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17906','EPSG','3778',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27211','NZGD49 / Wanganui Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17907','EPSG','3776',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27212','NZGD49 / Wairarapa Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17908','EPSG','3775',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27213','NZGD49 / Wellington Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17909','EPSG','3774',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27214','NZGD49 / Collingwood Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17910','EPSG','3782',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27215','NZGD49 / Nelson Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17911','EPSG','3784',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27216','NZGD49 / Karamea Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17912','EPSG','3783',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27217','NZGD49 / Buller Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17913','EPSG','3786',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27218','NZGD49 / Grey Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17914','EPSG','3787',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27219','NZGD49 / Amuri Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17915','EPSG','3788',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27220','NZGD49 / Marlborough Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17916','EPSG','3785',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27221','NZGD49 / Hokitika Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17917','EPSG','3789',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27222','NZGD49 / Okarito Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17918','EPSG','3791',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27223','NZGD49 / Jacksons Bay Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17919','EPSG','3794',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27224','NZGD49 / Mount Pleasant Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17920','EPSG','3790',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27225','NZGD49 / Gawler Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17921','EPSG','3792',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27226','NZGD49 / Timaru Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17922','EPSG','3793',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27227','NZGD49 / Lindis Peak Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17923','EPSG','3795',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27228','NZGD49 / Mount Nicholas Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17924','EPSG','3797',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27229','NZGD49 / Mount York Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17925','EPSG','3799',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27230','NZGD49 / Observation Point Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17926','EPSG','3796',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27231','NZGD49 / North Taieri Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17927','EPSG','3798',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27232','NZGD49 / Bluff Circuit',NULL,NULL,'EPSG','4500','EPSG','4272','EPSG','17928','EPSG','3800',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27258','NZGD49 / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4272','EPSG','16158','EPSG','3970',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27259','NZGD49 / UTM zone 59S',NULL,NULL,'EPSG','4400','EPSG','4272','EPSG','16159','EPSG','3971',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27260','NZGD49 / UTM zone 60S',NULL,NULL,'EPSG','4400','EPSG','4272','EPSG','16160','EPSG','3972',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27291','NZGD49 / North Island Grid',NULL,NULL,'EPSG','4409','EPSG','4272','EPSG','18141','EPSG','1500',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27292','NZGD49 / South Island Grid',NULL,NULL,'EPSG','4409','EPSG','4272','EPSG','18142','EPSG','3344',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27391','NGO 1948 (Oslo) / NGO zone I',NULL,NULL,'EPSG','4531','EPSG','4817','EPSG','18221','EPSG','1741',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27392','NGO 1948 (Oslo) / NGO zone II',NULL,NULL,'EPSG','4531','EPSG','4817','EPSG','18222','EPSG','1742',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27393','NGO 1948 (Oslo) / NGO zone III',NULL,NULL,'EPSG','4531','EPSG','4817','EPSG','18223','EPSG','1743',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27394','NGO 1948 (Oslo) / NGO zone IV',NULL,NULL,'EPSG','4531','EPSG','4817','EPSG','18224','EPSG','1744',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27395','NGO 1948 (Oslo) / NGO zone V',NULL,NULL,'EPSG','4531','EPSG','4817','EPSG','18225','EPSG','1745',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27396','NGO 1948 (Oslo) / NGO zone VI',NULL,NULL,'EPSG','4531','EPSG','4817','EPSG','18226','EPSG','1746',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27397','NGO 1948 (Oslo) / NGO zone VII',NULL,NULL,'EPSG','4531','EPSG','4817','EPSG','18227','EPSG','1747',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27398','NGO 1948 (Oslo) / NGO zone VIII',NULL,NULL,'EPSG','4531','EPSG','4817','EPSG','18228','EPSG','1748',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27429','Datum 73 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4274','EPSG','16029','EPSG','1294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27492','Datum 73 / Modified Portuguese Grid',NULL,NULL,'EPSG','4530','EPSG','4274','EPSG','19974','EPSG','1294',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27493','Datum 73 / Modified Portuguese Grid',NULL,NULL,'EPSG','4499','EPSG','4274','EPSG','19974','EPSG','1294',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27500','ATF (Paris) / Nord de Guerre',NULL,NULL,'EPSG','4499','EPSG','4901','EPSG','19903','EPSG','1369',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27561','NTF (Paris) / Lambert Nord France',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18091','EPSG','1731',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27562','NTF (Paris) / Lambert Centre France',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18092','EPSG','1732',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27563','NTF (Paris) / Lambert Sud France',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18093','EPSG','1733',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27564','NTF (Paris) / Lambert Corse',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18094','EPSG','1327',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27571','NTF (Paris) / Lambert zone I',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18081','EPSG','1731',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27572','NTF (Paris) / Lambert zone II',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18082','EPSG','1734',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27573','NTF (Paris) / Lambert zone III',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18083','EPSG','1733',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27574','NTF (Paris) / Lambert zone IV',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18084','EPSG','1327',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','27581','NTF (Paris) / France I',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18081','EPSG','1731',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27582','NTF (Paris) / France II',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18082','EPSG','1734',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27583','NTF (Paris) / France III',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18083','EPSG','1733',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27584','NTF (Paris) / France IV',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18084','EPSG','1327',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27591','NTF (Paris) / Nord France',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18091','EPSG','1731',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27592','NTF (Paris) / Centre France',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18092','EPSG','1732',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27593','NTF (Paris) / Sud France',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18093','EPSG','1733',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27594','NTF (Paris) / Corse',NULL,NULL,'EPSG','4499','EPSG','4807','EPSG','18094','EPSG','1327',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','27700','OSGB 1936 / British National Grid',NULL,NULL,'EPSG','4400','EPSG','4277','EPSG','19916','EPSG','4390',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28191','Palestine 1923 / Palestine Grid',NULL,NULL,'EPSG','4400','EPSG','4281','EPSG','18201','EPSG','1356',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28192','Palestine 1923 / Palestine Belt',NULL,NULL,'EPSG','4400','EPSG','4281','EPSG','18202','EPSG','1356',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28193','Palestine 1923 / Israeli CS Grid',NULL,NULL,'EPSG','4400','EPSG','4281','EPSG','18203','EPSG','2603',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28232','Pointe Noire / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','4282','EPSG','16132','EPSG','1072',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28348','GDA94 / MGA zone 48',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17348','EPSG','4191',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28349','GDA94 / MGA zone 49',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17349','EPSG','4176',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28350','GDA94 / MGA zone 50',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17350','EPSG','4178',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28351','GDA94 / MGA zone 51',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17351','EPSG','1559',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28352','GDA94 / MGA zone 52',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17352','EPSG','1560',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28353','GDA94 / MGA zone 53',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17353','EPSG','1561',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28354','GDA94 / MGA zone 54',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17354','EPSG','1562',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28355','GDA94 / MGA zone 55',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17355','EPSG','1563',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28356','GDA94 / MGA zone 56',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17356','EPSG','1564',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28357','GDA94 / MGA zone 57',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17357','EPSG','4196',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28358','GDA94 / MGA zone 58',NULL,NULL,'EPSG','4400','EPSG','4283','EPSG','17358','EPSG','4175',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28402','Pulkovo 1942 / Gauss-Kruger zone 2',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16202','EPSG','1805',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28403','Pulkovo 1942 / Gauss-Kruger zone 3',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16203','EPSG','1792',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28404','Pulkovo 1942 / Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16204','EPSG','1793',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28405','Pulkovo 1942 / Gauss-Kruger zone 5',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16205','EPSG','1794',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28406','Pulkovo 1942 / Gauss-Kruger zone 6',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16206','EPSG','1795',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28407','Pulkovo 1942 / Gauss-Kruger zone 7',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16207','EPSG','1796',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28408','Pulkovo 1942 / Gauss-Kruger zone 8',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16208','EPSG','1797',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28409','Pulkovo 1942 / Gauss-Kruger zone 9',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16209','EPSG','1798',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28410','Pulkovo 1942 / Gauss-Kruger zone 10',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16210','EPSG','1799',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28411','Pulkovo 1942 / Gauss-Kruger zone 11',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16211','EPSG','1800',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28412','Pulkovo 1942 / Gauss-Kruger zone 12',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16212','EPSG','1801',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28413','Pulkovo 1942 / Gauss-Kruger zone 13',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16213','EPSG','1802',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28414','Pulkovo 1942 / Gauss-Kruger zone 14',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16214','EPSG','1803',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28415','Pulkovo 1942 / Gauss-Kruger zone 15',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16215','EPSG','1804',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28416','Pulkovo 1942 / Gauss-Kruger zone 16',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16216','EPSG','1775',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28417','Pulkovo 1942 / Gauss-Kruger zone 17',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16217','EPSG','1776',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28418','Pulkovo 1942 / Gauss-Kruger zone 18',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16218','EPSG','1777',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28419','Pulkovo 1942 / Gauss-Kruger zone 19',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16219','EPSG','1778',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28420','Pulkovo 1942 / Gauss-Kruger zone 20',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16220','EPSG','1779',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28421','Pulkovo 1942 / Gauss-Kruger zone 21',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16221','EPSG','1780',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28422','Pulkovo 1942 / Gauss-Kruger zone 22',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16222','EPSG','1781',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28423','Pulkovo 1942 / Gauss-Kruger zone 23',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16223','EPSG','1782',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28424','Pulkovo 1942 / Gauss-Kruger zone 24',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16224','EPSG','1783',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28425','Pulkovo 1942 / Gauss-Kruger zone 25',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16225','EPSG','1784',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28426','Pulkovo 1942 / Gauss-Kruger zone 26',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16226','EPSG','1785',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28427','Pulkovo 1942 / Gauss-Kruger zone 27',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16227','EPSG','1786',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28428','Pulkovo 1942 / Gauss-Kruger zone 28',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16228','EPSG','1787',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28429','Pulkovo 1942 / Gauss-Kruger zone 29',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16229','EPSG','1788',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28430','Pulkovo 1942 / Gauss-Kruger zone 30',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16230','EPSG','1789',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28431','Pulkovo 1942 / Gauss-Kruger zone 31',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16231','EPSG','1790',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28432','Pulkovo 1942 / Gauss-Kruger zone 32',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16232','EPSG','1791',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28462','Pulkovo 1942 / Gauss-Kruger 2N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16302','EPSG','1805',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28463','Pulkovo 1942 / Gauss-Kruger 3N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16303','EPSG','1792',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28464','Pulkovo 1942 / Gauss-Kruger 4N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16304','EPSG','1793',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28465','Pulkovo 1942 / Gauss-Kruger 5N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16305','EPSG','1794',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28466','Pulkovo 1942 / Gauss-Kruger 6N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16306','EPSG','1795',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28467','Pulkovo 1942 / Gauss-Kruger 7N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16307','EPSG','1796',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28468','Pulkovo 1942 / Gauss-Kruger 8N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16308','EPSG','1797',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28469','Pulkovo 1942 / Gauss-Kruger 9N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16309','EPSG','1798',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28470','Pulkovo 1942 / Gauss-Kruger 10N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16310','EPSG','1799',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28471','Pulkovo 1942 / Gauss-Kruger 11N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16311','EPSG','1800',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28472','Pulkovo 1942 / Gauss-Kruger 12N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16312','EPSG','1801',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28473','Pulkovo 1942 / Gauss-Kruger 13N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16313','EPSG','1802',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28474','Pulkovo 1942 / Gauss-Kruger 14N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16314','EPSG','1803',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28475','Pulkovo 1942 / Gauss-Kruger 15N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16315','EPSG','1804',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28476','Pulkovo 1942 / Gauss-Kruger 16N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16316','EPSG','1775',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28477','Pulkovo 1942 / Gauss-Kruger 17N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16317','EPSG','1776',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28478','Pulkovo 1942 / Gauss-Kruger 18N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16318','EPSG','1777',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28479','Pulkovo 1942 / Gauss-Kruger 19N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16319','EPSG','1778',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28480','Pulkovo 1942 / Gauss-Kruger 20N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16320','EPSG','1779',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28481','Pulkovo 1942 / Gauss-Kruger 21N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16321','EPSG','1780',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28482','Pulkovo 1942 / Gauss-Kruger 22N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16322','EPSG','1781',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28483','Pulkovo 1942 / Gauss-Kruger 23N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16323','EPSG','1782',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28484','Pulkovo 1942 / Gauss-Kruger 24N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16324','EPSG','1783',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28485','Pulkovo 1942 / Gauss-Kruger 25N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16325','EPSG','1784',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28486','Pulkovo 1942 / Gauss-Kruger 26N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16326','EPSG','1785',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28487','Pulkovo 1942 / Gauss-Kruger 27N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16327','EPSG','1786',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28488','Pulkovo 1942 / Gauss-Kruger 28N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16328','EPSG','1787',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28489','Pulkovo 1942 / Gauss-Kruger 29N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16329','EPSG','1788',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28490','Pulkovo 1942 / Gauss-Kruger 30N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16330','EPSG','1789',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28491','Pulkovo 1942 / Gauss-Kruger 31N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16331','EPSG','1790',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28492','Pulkovo 1942 / Gauss-Kruger 32N',NULL,NULL,'EPSG','4530','EPSG','4284','EPSG','16332','EPSG','1791',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','28600','Qatar 1974 / Qatar National Grid',NULL,NULL,'EPSG','4400','EPSG','4285','EPSG','19919','EPSG','1346',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28991','Amersfoort / RD Old',NULL,NULL,'EPSG','4499','EPSG','4289','EPSG','19913','EPSG','1275',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','28992','Amersfoort / RD New',NULL,NULL,'EPSG','4499','EPSG','4289','EPSG','19914','EPSG','1275',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29100','SAD69 / Brazil Polyconic',NULL,NULL,'EPSG','4499','EPSG','4291','EPSG','19941','EPSG','1053',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29101','SAD69 / Brazil Polyconic',NULL,NULL,'EPSG','4499','EPSG','4618','EPSG','19941','EPSG','1053',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29118','SAD69 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16018','EPSG','1807',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29119','SAD69 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16019','EPSG','1809',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29120','SAD69 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16020','EPSG','1811',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29121','SAD69 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16021','EPSG','1813',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29122','SAD69 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16022','EPSG','1815',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29168','SAD69 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16018','EPSG','3832',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29169','SAD69 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16019','EPSG','3834',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29170','SAD69 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16020','EPSG','3839',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29171','SAD69 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16021','EPSG','3841',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29172','SAD69 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16022','EPSG','1815',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29177','SAD69 / UTM zone 17S',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16117','EPSG','1806',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29178','SAD69 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16118','EPSG','1808',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29179','SAD69 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16119','EPSG','1810',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29180','SAD69 / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16120','EPSG','1812',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29181','SAD69 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16121','EPSG','1814',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29182','SAD69 / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16122','EPSG','1816',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29183','SAD69 / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16123','EPSG','1817',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29184','SAD69 / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16124','EPSG','1818',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29185','SAD69 / UTM zone 25S',NULL,NULL,'EPSG','4400','EPSG','4291','EPSG','16125','EPSG','1819',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29187','SAD69 / UTM zone 17S',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16117','EPSG','3831',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29188','SAD69 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16118','EPSG','3833',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29189','SAD69 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16119','EPSG','3835',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29190','SAD69 / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16120','EPSG','3840',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29191','SAD69 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16121','EPSG','1814',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29192','SAD69 / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16122','EPSG','1816',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29193','SAD69 / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16123','EPSG','3445',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29194','SAD69 / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16124','EPSG','3446',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29195','SAD69 / UTM zone 25S',NULL,NULL,'EPSG','4400','EPSG','4618','EPSG','16125','EPSG','3447',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29220','Sapper Hill 1943 / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','4292','EPSG','16120','EPSG','1820',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29221','Sapper Hill 1943 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','4292','EPSG','16121','EPSG','1821',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29333','Schwarzeck / UTM zone 33S',NULL,NULL,'EPSG','4400','EPSG','4293','EPSG','16133','EPSG','1822',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29371','Schwarzeck / Lo22/11',NULL,NULL,'EPSG','6502','EPSG','4293','EPSG','17611','EPSG','1838',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29373','Schwarzeck / Lo22/13',NULL,NULL,'EPSG','6502','EPSG','4293','EPSG','17613','EPSG','1839',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29375','Schwarzeck / Lo22/15',NULL,NULL,'EPSG','6502','EPSG','4293','EPSG','17615','EPSG','1840',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29377','Schwarzeck / Lo22/17',NULL,NULL,'EPSG','6502','EPSG','4293','EPSG','17617','EPSG','1841',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29379','Schwarzeck / Lo22/19',NULL,NULL,'EPSG','6502','EPSG','4293','EPSG','17619','EPSG','1842',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29381','Schwarzeck / Lo22/21',NULL,NULL,'EPSG','6502','EPSG','4293','EPSG','17621','EPSG','1843',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29383','Schwarzeck / Lo22/23',NULL,NULL,'EPSG','6502','EPSG','4293','EPSG','17623','EPSG','1844',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29385','Schwarzeck / Lo22/25',NULL,NULL,'EPSG','6502','EPSG','4293','EPSG','17625','EPSG','1845',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29635','Sudan / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','4296','EPSG','16035','EPSG','1846',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29636','Sudan / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','4296','EPSG','16036','EPSG','1847',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29700','Tananarive (Paris) / Laborde Grid',NULL,NULL,'EPSG','4499','EPSG','4810','EPSG','19911','EPSG','3273',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29701','Tananarive (Paris) / Laborde Grid',NULL,NULL,'EPSG','4530','EPSG','4810','EPSG','19861','EPSG','3273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29702','Tananarive (Paris) / Laborde Grid approximation',NULL,NULL,'EPSG','4530','EPSG','4810','EPSG','19911','EPSG','3273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29738','Tananarive / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','4297','EPSG','16138','EPSG','1848',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29739','Tananarive / UTM zone 39S',NULL,NULL,'EPSG','4400','EPSG','4297','EPSG','16139','EPSG','1849',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29849','Timbalai 1948 / UTM zone 49N',NULL,NULL,'EPSG','4400','EPSG','4298','EPSG','16049','EPSG','1852',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29850','Timbalai 1948 / UTM zone 50N',NULL,NULL,'EPSG','4400','EPSG','4298','EPSG','16050','EPSG','1853',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29871','Timbalai 1948 / RSO Borneo (ch)',NULL,NULL,'EPSG','4402','EPSG','4298','EPSG','19956','EPSG','1362',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29872','Timbalai 1948 / RSO Borneo (ftSe)',NULL,NULL,'EPSG','4405','EPSG','4298','EPSG','19957','EPSG','1851',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29873','Timbalai 1948 / RSO Borneo (m)',NULL,NULL,'EPSG','4400','EPSG','4298','EPSG','19958','EPSG','1362',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29900','TM65 / Irish National Grid',NULL,NULL,'EPSG','4400','EPSG','4299','EPSG','19908','EPSG','1305',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','29901','OSNI 1952 / Irish National Grid',NULL,NULL,'EPSG','4400','EPSG','4188','EPSG','19973','EPSG','2530',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29902','TM65 / Irish Grid',NULL,NULL,'EPSG','4400','EPSG','4299','EPSG','19972','EPSG','3767',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','29903','TM75 / Irish Grid',NULL,NULL,'EPSG','4400','EPSG','4300','EPSG','19972','EPSG','1305',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30161','Tokyo / Japan Plane Rectangular CS I',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17801','EPSG','1854',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30162','Tokyo / Japan Plane Rectangular CS II',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17802','EPSG','1855',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30163','Tokyo / Japan Plane Rectangular CS III',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17803','EPSG','1856',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30164','Tokyo / Japan Plane Rectangular CS IV',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17804','EPSG','1857',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30165','Tokyo / Japan Plane Rectangular CS V',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17805','EPSG','1858',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30166','Tokyo / Japan Plane Rectangular CS VI',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17806','EPSG','1859',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30167','Tokyo / Japan Plane Rectangular CS VII',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17807','EPSG','1860',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30168','Tokyo / Japan Plane Rectangular CS VIII',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17808','EPSG','1861',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30169','Tokyo / Japan Plane Rectangular CS IX',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17809','EPSG','1862',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30170','Tokyo / Japan Plane Rectangular CS X',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17810','EPSG','1863',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30171','Tokyo / Japan Plane Rectangular CS XI',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17811','EPSG','1864',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30172','Tokyo / Japan Plane Rectangular CS XII',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17812','EPSG','1865',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30173','Tokyo / Japan Plane Rectangular CS XIII',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17813','EPSG','1866',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30174','Tokyo / Japan Plane Rectangular CS XIV',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17814','EPSG','1867',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30175','Tokyo / Japan Plane Rectangular CS XV',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17815','EPSG','1868',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30176','Tokyo / Japan Plane Rectangular CS XVI',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17816','EPSG','1869',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30177','Tokyo / Japan Plane Rectangular CS XVII',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17817','EPSG','1870',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30178','Tokyo / Japan Plane Rectangular CS XVIII',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17818','EPSG','1871',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30179','Tokyo / Japan Plane Rectangular CS XIX',NULL,NULL,'EPSG','4530','EPSG','4301','EPSG','17819','EPSG','1872',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30200','Trinidad 1903 / Trinidad Grid',NULL,NULL,'EPSG','4407','EPSG','4302','EPSG','19925','EPSG','1339',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30339','TC(1948) / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4303','EPSG','16039','EPSG','1850',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30340','TC(1948) / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','4303','EPSG','16040','EPSG','4022',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30491','Voirol 1875 / Nord Algerie (ancienne)',NULL,NULL,'EPSG','4499','EPSG','4304','EPSG','18011','EPSG','1728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30492','Voirol 1875 / Sud Algerie (ancienne)',NULL,NULL,'EPSG','4499','EPSG','4304','EPSG','18012','EPSG','4519',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30493','Voirol 1879 / Nord Algerie (ancienne)',NULL,NULL,'EPSG','4499','EPSG','4671','EPSG','18011','EPSG','1728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30494','Voirol 1879 / Sud Algerie (ancienne)',NULL,NULL,'EPSG','4499','EPSG','4671','EPSG','18012','EPSG','4519',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30729','Nord Sahara 1959 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4307','EPSG','16029','EPSG','1735',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30730','Nord Sahara 1959 / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4307','EPSG','16030','EPSG','3952',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30731','Nord Sahara 1959 / UTM zone 31N',NULL,NULL,'EPSG','4400','EPSG','4307','EPSG','16031','EPSG','3953',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30732','Nord Sahara 1959 / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4307','EPSG','16032','EPSG','3954',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30791','Nord Sahara 1959 / Nord Algerie',NULL,NULL,'EPSG','4499','EPSG','4307','EPSG','18021','EPSG','1728',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30792','Nord Sahara 1959 / Sud Algerie',NULL,NULL,'EPSG','4499','EPSG','4307','EPSG','18022','EPSG','1729',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','30800','RT38 2.5 gon W',NULL,NULL,'EPSG','4530','EPSG','4308','EPSG','19929','EPSG','1225',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31028','Yoff / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4310','EPSG','16028','EPSG','1207',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31121','Zanderij / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4311','EPSG','16021','EPSG','1222',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31154','Zanderij / TM 54 NW',NULL,NULL,'EPSG','4400','EPSG','4311','EPSG','17054','EPSG','1727',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31170','Zanderij / Suriname Old TM',NULL,NULL,'EPSG','4400','EPSG','4311','EPSG','19954','EPSG','3312',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31171','Zanderij / Suriname TM',NULL,NULL,'EPSG','4400','EPSG','4311','EPSG','19955','EPSG','3312',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31251','MGI (Ferro) / Austria GK West Zone',NULL,NULL,'EPSG','4530','EPSG','4805','EPSG','18001','EPSG','1706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31252','MGI (Ferro) / Austria GK Central Zone',NULL,NULL,'EPSG','4530','EPSG','4805','EPSG','18002','EPSG','1707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31253','MGI (Ferro) / Austria GK East Zone',NULL,NULL,'EPSG','4530','EPSG','4805','EPSG','18003','EPSG','1708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31254','MGI / Austria GK West',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18004','EPSG','1706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31255','MGI / Austria GK Central',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18005','EPSG','1707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31256','MGI / Austria GK East',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18006','EPSG','1708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31257','MGI / Austria GK M28',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18007','EPSG','1706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31258','MGI / Austria GK M31',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18008','EPSG','1707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31259','MGI / Austria GK M34',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18009','EPSG','1708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31265','MGI / 3-degree Gauss zone 5',NULL,NULL,'EPSG','4499','EPSG','4312','EPSG','16265','EPSG','1709',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31266','MGI / 3-degree Gauss zone 6',NULL,NULL,'EPSG','4499','EPSG','4312','EPSG','16266','EPSG','1710',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31267','MGI / 3-degree Gauss zone 7',NULL,NULL,'EPSG','4499','EPSG','4312','EPSG','16267','EPSG','1711',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31268','MGI / 3-degree Gauss zone 8',NULL,NULL,'EPSG','4499','EPSG','4312','EPSG','16268','EPSG','1712',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31275','MGI / Balkans zone 5',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18275','EPSG','1709',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31276','MGI / Balkans zone 6',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18276','EPSG','1710',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31277','MGI / Balkans zone 7',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18277','EPSG','1711',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31278','MGI / Balkans zone 8',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18277','EPSG','1712',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31279','MGI / Balkans zone 8',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18278','EPSG','1712',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31281','MGI (Ferro) / Austria West Zone',NULL,NULL,'EPSG','4530','EPSG','4805','EPSG','18041','EPSG','1706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31282','MGI (Ferro) / Austria Central Zone',NULL,NULL,'EPSG','4530','EPSG','4805','EPSG','18042','EPSG','1707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31283','MGI (Ferro) / Austria East Zone',NULL,NULL,'EPSG','4530','EPSG','4805','EPSG','18043','EPSG','1708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31284','MGI / Austria M28',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18044','EPSG','1706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31285','MGI / Austria M31',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18045','EPSG','1707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31286','MGI / Austria M34',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','18046','EPSG','1708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31287','MGI / Austria Lambert',NULL,NULL,'EPSG','4530','EPSG','4312','EPSG','19947','EPSG','1037',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31288','MGI (Ferro) / Austria zone M28',NULL,NULL,'EPSG','4530','EPSG','4805','EPSG','18047','EPSG','1706',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31289','MGI (Ferro) / Austria zone M31',NULL,NULL,'EPSG','4530','EPSG','4805','EPSG','18048','EPSG','1707',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31290','MGI (Ferro) / Austria zone M34',NULL,NULL,'EPSG','4530','EPSG','4805','EPSG','18049','EPSG','1708',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31291','MGI (Ferro) / Austria West Zone',NULL,NULL,'EPSG','4499','EPSG','4805','EPSG','18041','EPSG','1706',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31292','MGI (Ferro) / Austria Central Zone',NULL,NULL,'EPSG','4499','EPSG','4805','EPSG','18042','EPSG','1708',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31293','MGI (Ferro) / Austria East Zone',NULL,NULL,'EPSG','4499','EPSG','4805','EPSG','18043','EPSG','1707',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31294','MGI / M28',NULL,NULL,'EPSG','4499','EPSG','4312','EPSG','18044','EPSG','1706',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31295','MGI / M31',NULL,NULL,'EPSG','4499','EPSG','4312','EPSG','18045','EPSG','1707',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31296','MGI / M34',NULL,NULL,'EPSG','4499','EPSG','4312','EPSG','18046','EPSG','1708',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31297','MGI / Austria Lambert',NULL,NULL,'EPSG','4499','EPSG','4312','EPSG','19947','EPSG','1037',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31300','Belge 1972 / Belge Lambert 72',NULL,NULL,'EPSG','4499','EPSG','4313','EPSG','19902','EPSG','1347',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31370','Belge 1972 / Belgian Lambert 72',NULL,NULL,'EPSG','4499','EPSG','4313','EPSG','19961','EPSG','1347',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31461','DHDN / 3-degree Gauss zone 1',NULL,NULL,'EPSG','4499','EPSG','4314','EPSG','16261','EPSG','1628',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31462','DHDN / 3-degree Gauss zone 2',NULL,NULL,'EPSG','4499','EPSG','4314','EPSG','16262','EPSG','1624',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31463','DHDN / 3-degree Gauss zone 3',NULL,NULL,'EPSG','4499','EPSG','4314','EPSG','16263','EPSG','1625',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31464','DHDN / 3-degree Gauss zone 4',NULL,NULL,'EPSG','4499','EPSG','4314','EPSG','16264','EPSG','1626',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31465','DHDN / 3-degree Gauss zone 5',NULL,NULL,'EPSG','4499','EPSG','4314','EPSG','16265','EPSG','1627',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31466','DHDN / 3-degree Gauss-Kruger zone 2',NULL,NULL,'EPSG','4530','EPSG','4314','EPSG','16262','EPSG','1624',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31467','DHDN / 3-degree Gauss-Kruger zone 3',NULL,NULL,'EPSG','4530','EPSG','4314','EPSG','16263','EPSG','1625',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31468','DHDN / 3-degree Gauss-Kruger zone 4',NULL,NULL,'EPSG','4530','EPSG','4314','EPSG','16264','EPSG','1626',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31469','DHDN / 3-degree Gauss-Kruger zone 5',NULL,NULL,'EPSG','4530','EPSG','4314','EPSG','16265','EPSG','1627',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31528','Conakry 1905 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4315','EPSG','16028','EPSG','1468',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31529','Conakry 1905 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4315','EPSG','16029','EPSG','1469',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31600','Dealul Piscului 1930 / Stereo 33',NULL,NULL,'EPSG','4499','EPSG','4316','EPSG','19927','EPSG','3295',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31700','Dealul Piscului 1970/ Stereo 70',NULL,NULL,'EPSG','4530','EPSG','4317','EPSG','19926','EPSG','1197',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31838','NGN / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4318','EPSG','16038','EPSG','1739',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31839','NGN / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4318','EPSG','16039','EPSG','1740',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31900','KUDAMS / KTM',NULL,NULL,'EPSG','4400','EPSG','4319','EPSG','19928','EPSG','1310',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','31901','KUDAMS / KTM',NULL,NULL,'EPSG','4400','EPSG','4319','EPSG','19997','EPSG','1310',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31965','SIRGAS 2000 / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16011','EPSG','3748',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31966','SIRGAS 2000 / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16012','EPSG','3756',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31967','SIRGAS 2000 / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16013','EPSG','3759',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31968','SIRGAS 2000 / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16014','EPSG','3763',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31969','SIRGAS 2000 / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16015','EPSG','3427',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31970','SIRGAS 2000 / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16016','EPSG','3428',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31971','SIRGAS 2000 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16017','EPSG','3421',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31972','SIRGAS 2000 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16018','EPSG','3422',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31973','SIRGAS 2000 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16019','EPSG','3436',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31974','SIRGAS 2000 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16020','EPSG','3437',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31975','SIRGAS 2000 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16021','EPSG','3438',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31976','SIRGAS 2000 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16022','EPSG','3439',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31977','SIRGAS 2000 / UTM zone 17S',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16117','EPSG','1824',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31978','SIRGAS 2000 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16118','EPSG','3440',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31979','SIRGAS 2000 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16119','EPSG','3441',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31980','SIRGAS 2000 / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16120','EPSG','3442',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31981','SIRGAS 2000 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16121','EPSG','3443',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31982','SIRGAS 2000 / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16122','EPSG','3444',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31983','SIRGAS 2000 / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16123','EPSG','3445',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31984','SIRGAS 2000 / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16124','EPSG','3446',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31985','SIRGAS 2000 / UTM zone 25S',NULL,NULL,'EPSG','4400','EPSG','4674','EPSG','16125','EPSG','3447',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31986','SIRGAS 1995 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16017','EPSG','1823',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31987','SIRGAS 1995 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16018','EPSG','1825',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31988','SIRGAS 1995 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16019','EPSG','1827',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31989','SIRGAS 1995 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16020','EPSG','1829',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31990','SIRGAS 1995 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16021','EPSG','1831',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31991','SIRGAS 1995 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16022','EPSG','1833',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31992','SIRGAS 1995 / UTM zone 17S',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16117','EPSG','3638',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31993','SIRGAS 1995 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16118','EPSG','1826',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31994','SIRGAS 1995 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16119','EPSG','1828',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31995','SIRGAS 1995 / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16120','EPSG','1830',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31996','SIRGAS 1995 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16121','EPSG','1832',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31997','SIRGAS 1995 / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16122','EPSG','1834',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31998','SIRGAS 1995 / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16123','EPSG','1835',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','31999','SIRGAS 1995 / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16124','EPSG','1836',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32000','SIRGAS 1995 / UTM zone 25S',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16125','EPSG','1837',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32001','NAD27 / Montana North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12501','EPSG','2211',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32002','NAD27 / Montana Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12502','EPSG','2210',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32003','NAD27 / Montana South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12503','EPSG','2212',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32005','NAD27 / Nebraska North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12601','EPSG','2221',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32006','NAD27 / Nebraska South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12602','EPSG','2222',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32007','NAD27 / Nevada East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12701','EPSG','2224',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32008','NAD27 / Nevada Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12702','EPSG','2223',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32009','NAD27 / Nevada West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12703','EPSG','2225',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32010','NAD27 / New Hampshire',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12800','EPSG','1398',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32011','NAD27 / New Jersey',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','12900','EPSG','1399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32012','NAD27 / New Mexico East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13001','EPSG','2228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32013','NAD27 / New Mexico Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13002','EPSG','2229',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32014','NAD27 / New Mexico West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13003','EPSG','2230',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32015','NAD27 / New York East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13101','EPSG','2234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32016','NAD27 / New York Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13102','EPSG','2233',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32017','NAD27 / New York West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13103','EPSG','2236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32018','NAD27 / New York Long Island',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13104','EPSG','2235',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32019','NAD27 / North Carolina',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13200','EPSG','1402',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32020','NAD27 / North Dakota North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13301','EPSG','2237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32021','NAD27 / North Dakota South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13302','EPSG','2238',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32022','NAD27 / Ohio North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13401','EPSG','2239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32023','NAD27 / Ohio South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13402','EPSG','2240',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32024','NAD27 / Oklahoma North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13501','EPSG','2241',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32025','NAD27 / Oklahoma South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13502','EPSG','2242',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32026','NAD27 / Oregon North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13601','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32027','NAD27 / Oregon South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13602','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32028','NAD27 / Pennsylvania North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13701','EPSG','2245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32029','NAD27 / Pennsylvania South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13702','EPSG','2246',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32030','NAD27 / Rhode Island',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13800','EPSG','1408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32031','NAD27 / South Carolina North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13901','EPSG','2247',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32033','NAD27 / South Carolina South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','13902','EPSG','2248',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32034','NAD27 / South Dakota North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14001','EPSG','2249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32035','NAD27 / South Dakota South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14002','EPSG','2250',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32036','NAD27 / Tennessee',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14100','EPSG','1411',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32037','NAD27 / Texas North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14201','EPSG','2253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32038','NAD27 / Texas North Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14202','EPSG','2254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32039','NAD27 / Texas Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14203','EPSG','2252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32040','NAD27 / Texas South Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14204','EPSG','2256',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32041','NAD27 / Texas South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14205','EPSG','2255',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32042','NAD27 / Utah North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14301','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32043','NAD27 / Utah Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14302','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32044','NAD27 / Utah South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14303','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32045','NAD27 / Vermont',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14400','EPSG','1414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32046','NAD27 / Virginia North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14501','EPSG','2260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32047','NAD27 / Virginia South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14502','EPSG','2261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32048','NAD27 / Washington North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14601','EPSG','2262',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32049','NAD27 / Washington South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14602','EPSG','2263',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32050','NAD27 / West Virginia North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14701','EPSG','2264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32051','NAD27 / West Virginia South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14702','EPSG','2265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32052','NAD27 / Wisconsin North',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14801','EPSG','2267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32053','NAD27 / Wisconsin Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14802','EPSG','2266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32054','NAD27 / Wisconsin South',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14803','EPSG','2268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32055','NAD27 / Wyoming East',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14901','EPSG','2269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32056','NAD27 / Wyoming East Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14902','EPSG','2270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32057','NAD27 / Wyoming West Central',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14903','EPSG','2272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32058','NAD27 / Wyoming West',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','14904','EPSG','2271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32061','NAD27 / Guatemala Norte',NULL,NULL,'EPSG','4499','EPSG','4267','EPSG','18211','EPSG','2120',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32062','NAD27 / Guatemala Sur',NULL,NULL,'EPSG','4499','EPSG','4267','EPSG','18212','EPSG','2121',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32064','NAD27 / BLM 14N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15914','EPSG','3637',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32065','NAD27 / BLM 15N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15915','EPSG','3640',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32066','NAD27 / BLM 16N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15916','EPSG','3641',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32067','NAD27 / BLM 17N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15917','EPSG','3642',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32074','NAD27 / BLM 14N (feet)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15914','EPSG','2171',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32075','NAD27 / BLM 15N (feet)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15915','EPSG','2172',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32076','NAD27 / BLM 16N (feet)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15916','EPSG','2173',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32077','NAD27 / BLM 17N (feet)',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','15917','EPSG','2174',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32081','NAD27 / MTM zone 1',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17701','EPSG','2226',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32082','NAD27 / MTM zone 2',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17702','EPSG','2227',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32083','NAD27 / MTM zone 3',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17703','EPSG','2275',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32084','NAD27 / MTM zone 4',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17704','EPSG','3875',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32085','NAD27 / MTM zone 5',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17705','EPSG','3865',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32086','NAD27 / MTM zone 6',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17706','EPSG','3880',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32098','NAD27 / Quebec Lambert',NULL,NULL,'EPSG','4499','EPSG','4267','EPSG','19944','EPSG','1368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32099','NAD27 / Louisiana Offshore',NULL,NULL,'EPSG','4497','EPSG','4267','EPSG','11703','EPSG','1387',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32100','NAD83 / Montana',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12530','EPSG','1395',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32104','NAD83 / Nebraska',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12630','EPSG','1396',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32107','NAD83 / Nevada East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12731','EPSG','2224',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32108','NAD83 / Nevada Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12732','EPSG','2223',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32109','NAD83 / Nevada West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12733','EPSG','2225',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32110','NAD83 / New Hampshire',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12830','EPSG','1398',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32111','NAD83 / New Jersey',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','12930','EPSG','1399',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32112','NAD83 / New Mexico East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13031','EPSG','2228',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32113','NAD83 / New Mexico Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13032','EPSG','2231',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32114','NAD83 / New Mexico West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13033','EPSG','2232',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32115','NAD83 / New York East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13131','EPSG','2234',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32116','NAD83 / New York Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13132','EPSG','2233',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32117','NAD83 / New York West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13133','EPSG','2236',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32118','NAD83 / New York Long Island',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13134','EPSG','2235',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32119','NAD83 / North Carolina',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13230','EPSG','1402',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32120','NAD83 / North Dakota North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13331','EPSG','2237',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32121','NAD83 / North Dakota South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13332','EPSG','2238',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32122','NAD83 / Ohio North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13431','EPSG','2239',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32123','NAD83 / Ohio South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13432','EPSG','2240',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32124','NAD83 / Oklahoma North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13531','EPSG','2241',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32125','NAD83 / Oklahoma South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13532','EPSG','2242',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32126','NAD83 / Oregon North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13631','EPSG','2243',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32127','NAD83 / Oregon South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13632','EPSG','2244',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32128','NAD83 / Pennsylvania North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13731','EPSG','2245',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32129','NAD83 / Pennsylvania South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13732','EPSG','2246',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32130','NAD83 / Rhode Island',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13830','EPSG','1408',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32133','NAD83 / South Carolina',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','13930','EPSG','1409',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32134','NAD83 / South Dakota North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14031','EPSG','2249',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32135','NAD83 / South Dakota South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14032','EPSG','2250',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32136','NAD83 / Tennessee',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14130','EPSG','1411',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32137','NAD83 / Texas North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14231','EPSG','2253',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32138','NAD83 / Texas North Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14232','EPSG','2254',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32139','NAD83 / Texas Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14233','EPSG','2252',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32140','NAD83 / Texas South Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14234','EPSG','2527',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32141','NAD83 / Texas South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14235','EPSG','2528',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32142','NAD83 / Utah North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14331','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32143','NAD83 / Utah Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14332','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32144','NAD83 / Utah South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14333','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32145','NAD83 / Vermont',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14430','EPSG','1414',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32146','NAD83 / Virginia North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14531','EPSG','2260',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32147','NAD83 / Virginia South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14532','EPSG','2261',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32148','NAD83 / Washington North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14631','EPSG','2273',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32149','NAD83 / Washington South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14632','EPSG','2274',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32150','NAD83 / West Virginia North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14731','EPSG','2264',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32151','NAD83 / West Virginia South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14732','EPSG','2265',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32152','NAD83 / Wisconsin North',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14831','EPSG','2267',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32153','NAD83 / Wisconsin Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14832','EPSG','2266',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32154','NAD83 / Wisconsin South',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14833','EPSG','2268',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32155','NAD83 / Wyoming East',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14931','EPSG','2269',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32156','NAD83 / Wyoming East Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14932','EPSG','2270',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32157','NAD83 / Wyoming West Central',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14933','EPSG','2272',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32158','NAD83 / Wyoming West',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','14934','EPSG','2271',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32161','NAD83 / Puerto Rico & Virgin Is.',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','15230','EPSG','2251',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32164','NAD83 / BLM 14N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15914','EPSG','3637',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32165','NAD83 / BLM 15N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15915','EPSG','3640',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32166','NAD83 / BLM 16N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15916','EPSG','3641',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32167','NAD83 / BLM 17N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4269','EPSG','15917','EPSG','3642',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32180','NAD83 / SCoPQ zone 2',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','17700','EPSG','1420',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32181','NAD83 / MTM zone 1',NULL,NULL,'EPSG','4496','EPSG','4269','EPSG','17701','EPSG','2226',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32182','NAD83 / MTM zone 2',NULL,NULL,'EPSG','4496','EPSG','4269','EPSG','17702','EPSG','2227',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32183','NAD83 / MTM zone 3',NULL,NULL,'EPSG','4496','EPSG','4269','EPSG','17703','EPSG','2290',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32184','NAD83 / MTM zone 4',NULL,NULL,'EPSG','4496','EPSG','4269','EPSG','17704','EPSG','2276',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32185','NAD83 / MTM zone 5',NULL,NULL,'EPSG','4496','EPSG','4269','EPSG','17705','EPSG','2277',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32186','NAD83 / MTM zone 6',NULL,NULL,'EPSG','4496','EPSG','4269','EPSG','17706','EPSG','2278',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32187','NAD83 / MTM zone 7',NULL,NULL,'EPSG','4496','EPSG','4269','EPSG','17707','EPSG','1425',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32188','NAD83 / MTM zone 8',NULL,NULL,'EPSG','4496','EPSG','4269','EPSG','17708','EPSG','2279',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32189','NAD83 / MTM zone 9',NULL,NULL,'EPSG','4496','EPSG','4269','EPSG','17709','EPSG','2280',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32190','NAD83 / MTM zone 10',NULL,NULL,'EPSG','4496','EPSG','4269','EPSG','17710','EPSG','2281',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32191','NAD83 / MTM zone 11',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17711','EPSG','1432',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32192','NAD83 / MTM zone 12',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17712','EPSG','1433',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32193','NAD83 / MTM zone 13',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17713','EPSG','1434',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32194','NAD83 / MTM zone 14',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17714','EPSG','1435',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32195','NAD83 / MTM zone 15',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17715','EPSG','1436',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32196','NAD83 / MTM zone 16',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17716','EPSG','1437',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32197','NAD83 / MTM zone 17',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17717','EPSG','1438',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32198','NAD83 / Quebec Lambert',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','19944','EPSG','1368',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32199','NAD83 / Louisiana Offshore',NULL,NULL,'EPSG','4499','EPSG','4269','EPSG','11733','EPSG','1387',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32201','WGS 72 / UTM zone 1N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16001','EPSG','1873',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32202','WGS 72 / UTM zone 2N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16002','EPSG','1875',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32203','WGS 72 / UTM zone 3N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16003','EPSG','1877',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32204','WGS 72 / UTM zone 4N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16004','EPSG','1879',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32205','WGS 72 / UTM zone 5N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16005','EPSG','1881',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32206','WGS 72 / UTM zone 6N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16006','EPSG','1883',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32207','WGS 72 / UTM zone 7N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16007','EPSG','1885',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32208','WGS 72 / UTM zone 8N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16008','EPSG','1887',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32209','WGS 72 / UTM zone 9N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16009','EPSG','1889',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32210','WGS 72 / UTM zone 10N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16010','EPSG','1891',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32211','WGS 72 / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16011','EPSG','1893',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32212','WGS 72 / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16012','EPSG','1895',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32213','WGS 72 / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16013','EPSG','1897',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32214','WGS 72 / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16014','EPSG','1899',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32215','WGS 72 / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16015','EPSG','1901',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32216','WGS 72 / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16016','EPSG','1903',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32217','WGS 72 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16017','EPSG','1905',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32218','WGS 72 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16018','EPSG','1907',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32219','WGS 72 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16019','EPSG','1909',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32220','WGS 72 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16020','EPSG','1911',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32221','WGS 72 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16021','EPSG','1913',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32222','WGS 72 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16022','EPSG','1915',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32223','WGS 72 / UTM zone 23N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16023','EPSG','1917',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32224','WGS 72 / UTM zone 24N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16024','EPSG','1919',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32225','WGS 72 / UTM zone 25N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16025','EPSG','1921',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32226','WGS 72 / UTM zone 26N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16026','EPSG','1923',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32227','WGS 72 / UTM zone 27N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16027','EPSG','1925',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32228','WGS 72 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16028','EPSG','1927',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32229','WGS 72 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16029','EPSG','1929',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32230','WGS 72 / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16030','EPSG','1931',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32231','WGS 72 / UTM zone 31N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16031','EPSG','1933',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32232','WGS 72 / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16032','EPSG','1935',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32233','WGS 72 / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16033','EPSG','1937',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32234','WGS 72 / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16034','EPSG','1939',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32235','WGS 72 / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16035','EPSG','1941',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32236','WGS 72 / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16036','EPSG','1943',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32237','WGS 72 / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16037','EPSG','1945',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32238','WGS 72 / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16038','EPSG','1947',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32239','WGS 72 / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16039','EPSG','1949',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32240','WGS 72 / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16040','EPSG','1951',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32241','WGS 72 / UTM zone 41N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16041','EPSG','1953',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32242','WGS 72 / UTM zone 42N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16042','EPSG','1955',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32243','WGS 72 / UTM zone 43N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16043','EPSG','1957',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32244','WGS 72 / UTM zone 44N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16044','EPSG','1959',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32245','WGS 72 / UTM zone 45N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16045','EPSG','1961',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32246','WGS 72 / UTM zone 46N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16046','EPSG','1963',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32247','WGS 72 / UTM zone 47N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16047','EPSG','1965',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32248','WGS 72 / UTM zone 48N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16048','EPSG','1967',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32249','WGS 72 / UTM zone 49N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16049','EPSG','1969',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32250','WGS 72 / UTM zone 50N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16050','EPSG','1971',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32251','WGS 72 / UTM zone 51N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16051','EPSG','1973',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32252','WGS 72 / UTM zone 52N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16052','EPSG','1975',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32253','WGS 72 / UTM zone 53N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16053','EPSG','1977',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32254','WGS 72 / UTM zone 54N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16054','EPSG','1979',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32255','WGS 72 / UTM zone 55N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16055','EPSG','1981',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32256','WGS 72 / UTM zone 56N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16056','EPSG','1983',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32257','WGS 72 / UTM zone 57N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16057','EPSG','1985',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32258','WGS 72 / UTM zone 58N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16058','EPSG','1987',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32259','WGS 72 / UTM zone 59N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16059','EPSG','1989',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32260','WGS 72 / UTM zone 60N',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16060','EPSG','1991',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32301','WGS 72 / UTM zone 1S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16101','EPSG','1874',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32302','WGS 72 / UTM zone 2S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16102','EPSG','1876',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32303','WGS 72 / UTM zone 3S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16103','EPSG','1878',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32304','WGS 72 / UTM zone 4S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16104','EPSG','1880',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32305','WGS 72 / UTM zone 5S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16105','EPSG','1882',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32306','WGS 72 / UTM zone 6S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16106','EPSG','1884',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32307','WGS 72 / UTM zone 7S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16107','EPSG','1886',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32308','WGS 72 / UTM zone 8S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16108','EPSG','1888',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32309','WGS 72 / UTM zone 9S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16109','EPSG','1890',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32310','WGS 72 / UTM zone 10S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16110','EPSG','1892',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32311','WGS 72 / UTM zone 11S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16111','EPSG','1894',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32312','WGS 72 / UTM zone 12S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16112','EPSG','1896',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32313','WGS 72 / UTM zone 13S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16113','EPSG','1898',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32314','WGS 72 / UTM zone 14S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16114','EPSG','1900',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32315','WGS 72 / UTM zone 15S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16115','EPSG','1902',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32316','WGS 72 / UTM zone 16S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16116','EPSG','1904',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32317','WGS 72 / UTM zone 17S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16117','EPSG','1906',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32318','WGS 72 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16118','EPSG','1908',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32319','WGS 72 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16119','EPSG','1910',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32320','WGS 72 / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16120','EPSG','1912',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32321','WGS 72 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16121','EPSG','1914',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32322','WGS 72 / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16122','EPSG','1916',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32323','WGS 72 / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16123','EPSG','1918',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32324','WGS 72 / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16124','EPSG','1920',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32325','WGS 72 / UTM zone 25S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16125','EPSG','1922',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32326','WGS 72 / UTM zone 26S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16126','EPSG','1924',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32327','WGS 72 / UTM zone 27S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16127','EPSG','1926',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32328','WGS 72 / UTM zone 28S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16128','EPSG','1928',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32329','WGS 72 / UTM zone 29S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16129','EPSG','1930',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32330','WGS 72 / UTM zone 30S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16130','EPSG','1932',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32331','WGS 72 / UTM zone 31S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16131','EPSG','1934',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32332','WGS 72 / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16132','EPSG','1936',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32333','WGS 72 / UTM zone 33S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16133','EPSG','1938',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32334','WGS 72 / UTM zone 34S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16134','EPSG','1940',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32335','WGS 72 / UTM zone 35S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16135','EPSG','1942',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32336','WGS 72 / UTM zone 36S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16136','EPSG','1944',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32337','WGS 72 / UTM zone 37S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16137','EPSG','1946',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32338','WGS 72 / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16138','EPSG','1948',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32339','WGS 72 / UTM zone 39S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16139','EPSG','1950',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32340','WGS 72 / UTM zone 40S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16140','EPSG','1952',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32341','WGS 72 / UTM zone 41S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16141','EPSG','1954',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32342','WGS 72 / UTM zone 42S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16142','EPSG','1956',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32343','WGS 72 / UTM zone 43S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16143','EPSG','1958',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32344','WGS 72 / UTM zone 44S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16144','EPSG','1960',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32345','WGS 72 / UTM zone 45S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16145','EPSG','1962',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32346','WGS 72 / UTM zone 46S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16146','EPSG','1964',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32347','WGS 72 / UTM zone 47S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16147','EPSG','1966',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32348','WGS 72 / UTM zone 48S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16148','EPSG','1968',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32349','WGS 72 / UTM zone 49S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16149','EPSG','1970',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32350','WGS 72 / UTM zone 50S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16150','EPSG','1972',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32351','WGS 72 / UTM zone 51S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16151','EPSG','1974',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32352','WGS 72 / UTM zone 52S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16152','EPSG','1976',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32353','WGS 72 / UTM zone 53S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16153','EPSG','1978',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32354','WGS 72 / UTM zone 54S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16154','EPSG','1980',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32355','WGS 72 / UTM zone 55S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16155','EPSG','1982',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32356','WGS 72 / UTM zone 56S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16156','EPSG','1984',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32357','WGS 72 / UTM zone 57S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16157','EPSG','1986',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32358','WGS 72 / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16158','EPSG','1988',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32359','WGS 72 / UTM zone 59S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16159','EPSG','1990',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32360','WGS 72 / UTM zone 60S',NULL,NULL,'EPSG','4400','EPSG','4322','EPSG','16160','EPSG','1992',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32401','WGS 72BE / UTM zone 1N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16001','EPSG','1873',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32402','WGS 72BE / UTM zone 2N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16002','EPSG','1876',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32403','WGS 72BE / UTM zone 3N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16003','EPSG','1877',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32404','WGS 72BE / UTM zone 4N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16004','EPSG','1879',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32405','WGS 72BE / UTM zone 5N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16005','EPSG','1881',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32406','WGS 72BE / UTM zone 6N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16006','EPSG','1883',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32407','WGS 72BE / UTM zone 7N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16007','EPSG','1885',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32408','WGS 72BE / UTM zone 8N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16008','EPSG','1887',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32409','WGS 72BE / UTM zone 9N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16009','EPSG','1889',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32410','WGS 72BE / UTM zone 10N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16010','EPSG','1891',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32411','WGS 72BE / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16011','EPSG','1893',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32412','WGS 72BE / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16012','EPSG','1895',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32413','WGS 72BE / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16013','EPSG','1897',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32414','WGS 72BE / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16014','EPSG','1899',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32415','WGS 72BE / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16015','EPSG','1901',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32416','WGS 72BE / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16016','EPSG','1903',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32417','WGS 72BE / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16017','EPSG','1905',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32418','WGS 72BE / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16018','EPSG','1907',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32419','WGS 72BE / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16019','EPSG','1909',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32420','WGS 72BE / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16020','EPSG','1911',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32421','WGS 72BE / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16021','EPSG','1913',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32422','WGS 72BE / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16022','EPSG','1915',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32423','WGS 72BE / UTM zone 23N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16023','EPSG','1917',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32424','WGS 72BE / UTM zone 24N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16024','EPSG','1919',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32425','WGS 72BE / UTM zone 25N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16025','EPSG','1921',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32426','WGS 72BE / UTM zone 26N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16026','EPSG','1923',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32427','WGS 72BE / UTM zone 27N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16027','EPSG','1925',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32428','WGS 72BE / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16028','EPSG','1927',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32429','WGS 72BE / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16029','EPSG','1929',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32430','WGS 72BE / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16030','EPSG','1931',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32431','WGS 72BE / UTM zone 31N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16031','EPSG','1933',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32432','WGS 72BE / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16032','EPSG','1935',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32433','WGS 72BE / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16033','EPSG','3464',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32434','WGS 72BE / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16034','EPSG','3465',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32435','WGS 72BE / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16035','EPSG','1941',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32436','WGS 72BE / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16036','EPSG','1943',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32437','WGS 72BE / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16037','EPSG','1945',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32438','WGS 72BE / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16038','EPSG','1947',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32439','WGS 72BE / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16039','EPSG','1949',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32440','WGS 72BE / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16040','EPSG','1951',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32441','WGS 72BE / UTM zone 41N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16041','EPSG','1953',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32442','WGS 72BE / UTM zone 42N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16042','EPSG','1955',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32443','WGS 72BE / UTM zone 43N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16043','EPSG','1957',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32444','WGS 72BE / UTM zone 44N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16044','EPSG','1959',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32445','WGS 72BE / UTM zone 45N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16045','EPSG','1961',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32446','WGS 72BE / UTM zone 46N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16046','EPSG','1963',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32447','WGS 72BE / UTM zone 47N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16047','EPSG','1965',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32448','WGS 72BE / UTM zone 48N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16048','EPSG','1993',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32449','WGS 72BE / UTM zone 49N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16049','EPSG','1994',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32450','WGS 72BE / UTM zone 50N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16050','EPSG','1971',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32451','WGS 72BE / UTM zone 51N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16051','EPSG','1973',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32452','WGS 72BE / UTM zone 52N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16052','EPSG','1975',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32453','WGS 72BE / UTM zone 53N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16053','EPSG','1977',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32454','WGS 72BE / UTM zone 54N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16054','EPSG','1979',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32455','WGS 72BE / UTM zone 55N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16055','EPSG','1981',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32456','WGS 72BE / UTM zone 56N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16056','EPSG','1983',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32457','WGS 72BE / UTM zone 57N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16057','EPSG','1985',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32458','WGS 72BE / UTM zone 58N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16058','EPSG','1987',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32459','WGS 72BE / UTM zone 59N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16059','EPSG','1989',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32460','WGS 72BE / UTM zone 60N',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16060','EPSG','1991',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32501','WGS 72BE / UTM zone 1S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16101','EPSG','1874',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32502','WGS 72BE / UTM zone 2S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16102','EPSG','1876',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32503','WGS 72BE / UTM zone 3S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16103','EPSG','1878',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32504','WGS 72BE / UTM zone 4S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16104','EPSG','1880',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32505','WGS 72BE / UTM zone 5S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16105','EPSG','1882',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32506','WGS 72BE / UTM zone 6S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16106','EPSG','1884',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32507','WGS 72BE / UTM zone 7S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16107','EPSG','1886',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32508','WGS 72BE / UTM zone 8S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16108','EPSG','1888',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32509','WGS 72BE / UTM zone 9S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16109','EPSG','1890',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32510','WGS 72BE / UTM zone 10S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16110','EPSG','1892',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32511','WGS 72BE / UTM zone 11S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16111','EPSG','1894',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32512','WGS 72BE / UTM zone 12S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16112','EPSG','1896',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32513','WGS 72BE / UTM zone 13S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16113','EPSG','1898',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32514','WGS 72BE / UTM zone 14S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16114','EPSG','1900',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32515','WGS 72BE / UTM zone 15S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16115','EPSG','1902',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32516','WGS 72BE / UTM zone 16S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16116','EPSG','1904',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32517','WGS 72BE / UTM zone 17S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16117','EPSG','1906',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32518','WGS 72BE / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16118','EPSG','1908',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32519','WGS 72BE / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16119','EPSG','1910',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32520','WGS 72BE / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16120','EPSG','1912',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32521','WGS 72BE / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16121','EPSG','1914',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32522','WGS 72BE / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16122','EPSG','1916',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32523','WGS 72BE / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16123','EPSG','1918',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32524','WGS 72BE / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16124','EPSG','1920',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32525','WGS 72BE / UTM zone 25S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16125','EPSG','1922',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32526','WGS 72BE / UTM zone 26S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16126','EPSG','1924',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32527','WGS 72BE / UTM zone 27S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16127','EPSG','1926',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32528','WGS 72BE / UTM zone 28S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16128','EPSG','1928',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32529','WGS 72BE / UTM zone 29S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16129','EPSG','1930',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32530','WGS 72BE / UTM zone 30S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16130','EPSG','1932',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32531','WGS 72BE / UTM zone 31S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16131','EPSG','1934',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32532','WGS 72BE / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16132','EPSG','1936',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32533','WGS 72BE / UTM zone 33S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16133','EPSG','1938',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32534','WGS 72BE / UTM zone 34S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16134','EPSG','1940',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32535','WGS 72BE / UTM zone 35S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16135','EPSG','1942',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32536','WGS 72BE / UTM zone 36S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16136','EPSG','1944',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32537','WGS 72BE / UTM zone 37S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16137','EPSG','1946',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32538','WGS 72BE / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16138','EPSG','1948',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32539','WGS 72BE / UTM zone 39S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16139','EPSG','1950',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32540','WGS 72BE / UTM zone 40S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16140','EPSG','1952',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32541','WGS 72BE / UTM zone 41S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16141','EPSG','1954',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32542','WGS 72BE / UTM zone 42S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16142','EPSG','1956',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32543','WGS 72BE / UTM zone 43S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16143','EPSG','1958',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32544','WGS 72BE / UTM zone 44S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16144','EPSG','1960',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32545','WGS 72BE / UTM zone 45S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16145','EPSG','1962',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32546','WGS 72BE / UTM zone 46S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16146','EPSG','1964',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32547','WGS 72BE / UTM zone 47S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16147','EPSG','1966',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32548','WGS 72BE / UTM zone 48S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16148','EPSG','1968',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32549','WGS 72BE / UTM zone 49S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16149','EPSG','1995',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32550','WGS 72BE / UTM zone 50S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16150','EPSG','1972',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32551','WGS 72BE / UTM zone 51S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16151','EPSG','1974',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32552','WGS 72BE / UTM zone 52S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16152','EPSG','1976',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32553','WGS 72BE / UTM zone 53S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16153','EPSG','1978',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32554','WGS 72BE / UTM zone 54S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16154','EPSG','1980',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32555','WGS 72BE / UTM zone 55S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16155','EPSG','1982',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32556','WGS 72BE / UTM zone 56S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16156','EPSG','1984',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32557','WGS 72BE / UTM zone 57S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16157','EPSG','1986',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32558','WGS 72BE / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16158','EPSG','1988',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32559','WGS 72BE / UTM zone 59S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16159','EPSG','1990',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32560','WGS 72BE / UTM zone 60S',NULL,NULL,'EPSG','4400','EPSG','4324','EPSG','16160','EPSG','1992',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32600','WGS 84 / UTM grid system (northern hemisphere)',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16000','EPSG','1998',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32601','WGS 84 / UTM zone 1N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16001','EPSG','2000',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32602','WGS 84 / UTM zone 2N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16002','EPSG','2002',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32603','WGS 84 / UTM zone 3N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16003','EPSG','2004',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32604','WGS 84 / UTM zone 4N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16004','EPSG','2006',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32605','WGS 84 / UTM zone 5N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16005','EPSG','2008',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32606','WGS 84 / UTM zone 6N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16006','EPSG','2010',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32607','WGS 84 / UTM zone 7N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16007','EPSG','2012',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32608','WGS 84 / UTM zone 8N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16008','EPSG','2014',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32609','WGS 84 / UTM zone 9N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16009','EPSG','2016',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32610','WGS 84 / UTM zone 10N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16010','EPSG','2018',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32611','WGS 84 / UTM zone 11N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16011','EPSG','2020',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32612','WGS 84 / UTM zone 12N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16012','EPSG','2022',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32613','WGS 84 / UTM zone 13N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16013','EPSG','2024',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32614','WGS 84 / UTM zone 14N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16014','EPSG','2026',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32615','WGS 84 / UTM zone 15N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16015','EPSG','2028',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32616','WGS 84 / UTM zone 16N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16016','EPSG','2030',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32617','WGS 84 / UTM zone 17N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16017','EPSG','2032',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32618','WGS 84 / UTM zone 18N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16018','EPSG','2034',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32619','WGS 84 / UTM zone 19N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16019','EPSG','2036',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32620','WGS 84 / UTM zone 20N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16020','EPSG','2038',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32621','WGS 84 / UTM zone 21N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16021','EPSG','2040',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32622','WGS 84 / UTM zone 22N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16022','EPSG','2042',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32623','WGS 84 / UTM zone 23N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16023','EPSG','2044',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32624','WGS 84 / UTM zone 24N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16024','EPSG','2046',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32625','WGS 84 / UTM zone 25N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16025','EPSG','2048',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32626','WGS 84 / UTM zone 26N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16026','EPSG','2050',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32627','WGS 84 / UTM zone 27N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16027','EPSG','2052',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32628','WGS 84 / UTM zone 28N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16028','EPSG','2054',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32629','WGS 84 / UTM zone 29N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16029','EPSG','2056',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32630','WGS 84 / UTM zone 30N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16030','EPSG','2058',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32631','WGS 84 / UTM zone 31N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16031','EPSG','2060',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32632','WGS 84 / UTM zone 32N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16032','EPSG','2062',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32633','WGS 84 / UTM zone 33N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16033','EPSG','2064',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32634','WGS 84 / UTM zone 34N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16034','EPSG','2066',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32635','WGS 84 / UTM zone 35N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16035','EPSG','2068',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32636','WGS 84 / UTM zone 36N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16036','EPSG','2070',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32637','WGS 84 / UTM zone 37N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16037','EPSG','2072',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32638','WGS 84 / UTM zone 38N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16038','EPSG','2074',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32639','WGS 84 / UTM zone 39N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16039','EPSG','2076',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32640','WGS 84 / UTM zone 40N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16040','EPSG','2078',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32641','WGS 84 / UTM zone 41N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16041','EPSG','2080',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32642','WGS 84 / UTM zone 42N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16042','EPSG','2082',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32643','WGS 84 / UTM zone 43N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16043','EPSG','2084',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32644','WGS 84 / UTM zone 44N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16044','EPSG','2086',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32645','WGS 84 / UTM zone 45N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16045','EPSG','2088',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32646','WGS 84 / UTM zone 46N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16046','EPSG','2090',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32647','WGS 84 / UTM zone 47N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16047','EPSG','2092',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32648','WGS 84 / UTM zone 48N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16048','EPSG','2094',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32649','WGS 84 / UTM zone 49N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16049','EPSG','2096',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32650','WGS 84 / UTM zone 50N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16050','EPSG','2098',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32651','WGS 84 / UTM zone 51N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16051','EPSG','2100',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32652','WGS 84 / UTM zone 52N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16052','EPSG','2102',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32653','WGS 84 / UTM zone 53N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16053','EPSG','2104',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32654','WGS 84 / UTM zone 54N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16054','EPSG','2106',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32655','WGS 84 / UTM zone 55N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16055','EPSG','2108',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32656','WGS 84 / UTM zone 56N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16056','EPSG','2110',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32657','WGS 84 / UTM zone 57N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16057','EPSG','2112',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32658','WGS 84 / UTM zone 58N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16058','EPSG','2114',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32659','WGS 84 / UTM zone 59N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16059','EPSG','2116',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32660','WGS 84 / UTM zone 60N',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16060','EPSG','2118',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32661','WGS 84 / UPS North (N,E)',NULL,NULL,'EPSG','4493','EPSG','4326','EPSG','16061','EPSG','1996',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32662','WGS 84 / Plate Carree',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','19968','EPSG','1262',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32663','WGS 84 / World Equidistant Cylindrical',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','19846','EPSG','1262',NULL,1); INSERT INTO "projected_crs" VALUES('EPSG','32664','WGS 84 / BLM 14N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4326','EPSG','15914','EPSG','2171',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32665','WGS 84 / BLM 15N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4326','EPSG','15915','EPSG','2172',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32666','WGS 84 / BLM 16N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4326','EPSG','15916','EPSG','2173',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32667','WGS 84 / BLM 17N (ftUS)',NULL,NULL,'EPSG','4497','EPSG','4326','EPSG','15917','EPSG','2174',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32700','WGS 84 / UTM grid system (southern hemisphere)',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16100','EPSG','1999',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32701','WGS 84 / UTM zone 1S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16101','EPSG','2001',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32702','WGS 84 / UTM zone 2S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16102','EPSG','2003',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32703','WGS 84 / UTM zone 3S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16103','EPSG','2005',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32704','WGS 84 / UTM zone 4S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16104','EPSG','2007',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32705','WGS 84 / UTM zone 5S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16105','EPSG','2009',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32706','WGS 84 / UTM zone 6S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16106','EPSG','2011',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32707','WGS 84 / UTM zone 7S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16107','EPSG','2013',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32708','WGS 84 / UTM zone 8S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16108','EPSG','2015',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32709','WGS 84 / UTM zone 9S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16109','EPSG','2017',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32710','WGS 84 / UTM zone 10S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16110','EPSG','2019',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32711','WGS 84 / UTM zone 11S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16111','EPSG','2021',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32712','WGS 84 / UTM zone 12S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16112','EPSG','2023',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32713','WGS 84 / UTM zone 13S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16113','EPSG','2025',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32714','WGS 84 / UTM zone 14S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16114','EPSG','2027',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32715','WGS 84 / UTM zone 15S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16115','EPSG','2029',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32716','WGS 84 / UTM zone 16S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16116','EPSG','2031',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32717','WGS 84 / UTM zone 17S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16117','EPSG','2033',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32718','WGS 84 / UTM zone 18S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16118','EPSG','2035',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32719','WGS 84 / UTM zone 19S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16119','EPSG','2037',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32720','WGS 84 / UTM zone 20S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16120','EPSG','2039',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32721','WGS 84 / UTM zone 21S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16121','EPSG','2041',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32722','WGS 84 / UTM zone 22S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16122','EPSG','2043',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32723','WGS 84 / UTM zone 23S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16123','EPSG','2045',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32724','WGS 84 / UTM zone 24S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16124','EPSG','2047',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32725','WGS 84 / UTM zone 25S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16125','EPSG','2049',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32726','WGS 84 / UTM zone 26S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16126','EPSG','2051',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32727','WGS 84 / UTM zone 27S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16127','EPSG','2053',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32728','WGS 84 / UTM zone 28S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16128','EPSG','2055',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32729','WGS 84 / UTM zone 29S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16129','EPSG','2057',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32730','WGS 84 / UTM zone 30S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16130','EPSG','2059',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32731','WGS 84 / UTM zone 31S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16131','EPSG','2061',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32732','WGS 84 / UTM zone 32S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16132','EPSG','2063',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32733','WGS 84 / UTM zone 33S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16133','EPSG','2065',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32734','WGS 84 / UTM zone 34S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16134','EPSG','2067',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32735','WGS 84 / UTM zone 35S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16135','EPSG','2069',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32736','WGS 84 / UTM zone 36S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16136','EPSG','2071',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32737','WGS 84 / UTM zone 37S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16137','EPSG','2073',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32738','WGS 84 / UTM zone 38S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16138','EPSG','2075',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32739','WGS 84 / UTM zone 39S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16139','EPSG','2077',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32740','WGS 84 / UTM zone 40S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16140','EPSG','2079',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32741','WGS 84 / UTM zone 41S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16141','EPSG','2081',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32742','WGS 84 / UTM zone 42S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16142','EPSG','2083',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32743','WGS 84 / UTM zone 43S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16143','EPSG','2085',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32744','WGS 84 / UTM zone 44S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16144','EPSG','2087',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32745','WGS 84 / UTM zone 45S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16145','EPSG','2089',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32746','WGS 84 / UTM zone 46S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16146','EPSG','2091',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32747','WGS 84 / UTM zone 47S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16147','EPSG','2093',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32748','WGS 84 / UTM zone 48S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16148','EPSG','2095',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32749','WGS 84 / UTM zone 49S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16149','EPSG','2097',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32750','WGS 84 / UTM zone 50S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16150','EPSG','2099',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32751','WGS 84 / UTM zone 51S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16151','EPSG','2101',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32752','WGS 84 / UTM zone 52S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16152','EPSG','2103',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32753','WGS 84 / UTM zone 53S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16153','EPSG','2105',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32754','WGS 84 / UTM zone 54S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16154','EPSG','2107',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32755','WGS 84 / UTM zone 55S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16155','EPSG','2109',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32756','WGS 84 / UTM zone 56S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16156','EPSG','2111',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32757','WGS 84 / UTM zone 57S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16157','EPSG','2113',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32758','WGS 84 / UTM zone 58S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16158','EPSG','2115',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32759','WGS 84 / UTM zone 59S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16159','EPSG','2117',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32760','WGS 84 / UTM zone 60S',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16160','EPSG','2119',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32761','WGS 84 / UPS South (N,E)',NULL,NULL,'EPSG','4494','EPSG','4326','EPSG','16161','EPSG','1997',NULL,0); INSERT INTO "projected_crs" VALUES('EPSG','32766','WGS 84 / TM 36 SE',NULL,NULL,'EPSG','4400','EPSG','4326','EPSG','16636','EPSG','1726',NULL,0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "vertical_crs" VALUES('EPSG','3855','EGM2008 height',NULL,NULL,'EPSG','6499','EPSG','1027','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','3886','Fao 1979 height',NULL,NULL,'EPSG','6499','EPSG','1028','EPSG','3625',0); INSERT INTO "vertical_crs" VALUES('EPSG','3900','N2000 height',NULL,NULL,'EPSG','6499','EPSG','1030','EPSG','3333',0); INSERT INTO "vertical_crs" VALUES('EPSG','4440','NZVD2009 height',NULL,NULL,'EPSG','6499','EPSG','1039','EPSG','1175',0); INSERT INTO "vertical_crs" VALUES('EPSG','4458','Dunedin-Bluff 1960 height',NULL,NULL,'EPSG','6499','EPSG','1040','EPSG','3806',0); INSERT INTO "vertical_crs" VALUES('EPSG','5193','Incheon height',NULL,NULL,'EPSG','6499','EPSG','1049','EPSG','3739',0); INSERT INTO "vertical_crs" VALUES('EPSG','5195','Trieste height',NULL,NULL,'EPSG','6499','EPSG','1050','EPSG','2370',0); INSERT INTO "vertical_crs" VALUES('EPSG','5214','Genoa height',NULL,NULL,'EPSG','6499','EPSG','1051','EPSG','3736',0); INSERT INTO "vertical_crs" VALUES('EPSG','5237','SLVD height',NULL,NULL,'EPSG','6499','EPSG','1054','EPSG','3310',0); INSERT INTO "vertical_crs" VALUES('EPSG','5317','FVR09 height',NULL,NULL,'EPSG','6499','EPSG','1059','EPSG','3248',0); INSERT INTO "vertical_crs" VALUES('EPSG','5336','Black Sea depth',NULL,NULL,'EPSG','6498','EPSG','5134','EPSG','3251',0); INSERT INTO "vertical_crs" VALUES('EPSG','5597','FCSVR10 height',NULL,NULL,'EPSG','6499','EPSG','1079','EPSG','3890',0); INSERT INTO "vertical_crs" VALUES('EPSG','5600','NGPF height',NULL,NULL,'EPSG','6499','EPSG','5195','EPSG','3134',0); INSERT INTO "vertical_crs" VALUES('EPSG','5601','IGN 1966 height',NULL,NULL,'EPSG','6499','EPSG','5196','EPSG','3124',0); INSERT INTO "vertical_crs" VALUES('EPSG','5602','Moorea SAU 1981 height',NULL,NULL,'EPSG','6499','EPSG','5197','EPSG','3125',0); INSERT INTO "vertical_crs" VALUES('EPSG','5603','Raiatea SAU 2001 height',NULL,NULL,'EPSG','6499','EPSG','5198','EPSG','3136',0); INSERT INTO "vertical_crs" VALUES('EPSG','5604','Maupiti SAU 2001 height',NULL,NULL,'EPSG','6499','EPSG','5199','EPSG','3126',0); INSERT INTO "vertical_crs" VALUES('EPSG','5605','Huahine SAU 2001 height',NULL,NULL,'EPSG','6499','EPSG','5200','EPSG','3135',0); INSERT INTO "vertical_crs" VALUES('EPSG','5606','Tahaa SAU 2001 height',NULL,NULL,'EPSG','6499','EPSG','5201','EPSG','3138',0); INSERT INTO "vertical_crs" VALUES('EPSG','5607','Bora Bora SAU 2001 height',NULL,NULL,'EPSG','6499','EPSG','5202','EPSG','3137',0); INSERT INTO "vertical_crs" VALUES('EPSG','5608','IGLD 1955 height',NULL,NULL,'EPSG','6499','EPSG','5204','EPSG','3468',0); INSERT INTO "vertical_crs" VALUES('EPSG','5609','IGLD 1985 height',NULL,NULL,'EPSG','6499','EPSG','5205','EPSG','3468',0); INSERT INTO "vertical_crs" VALUES('EPSG','5610','HVRS71 height',NULL,NULL,'EPSG','6499','EPSG','5207','EPSG','3234',0); INSERT INTO "vertical_crs" VALUES('EPSG','5611','Caspian height',NULL,NULL,'EPSG','6499','EPSG','5106','EPSG','1291',0); INSERT INTO "vertical_crs" VALUES('EPSG','5612','Baltic 1977 depth',NULL,NULL,'EPSG','6498','EPSG','5105','EPSG','2423',0); INSERT INTO "vertical_crs" VALUES('EPSG','5613','RH2000 height',NULL,NULL,'EPSG','6499','EPSG','5208','EPSG','3313',0); INSERT INTO "vertical_crs" VALUES('EPSG','5614','KOC WD depth (ft)',NULL,NULL,'EPSG','6495','EPSG','5187','EPSG','3267',0); INSERT INTO "vertical_crs" VALUES('EPSG','5615','RH00 height',NULL,NULL,'EPSG','6499','EPSG','5209','EPSG','3313',0); INSERT INTO "vertical_crs" VALUES('EPSG','5616','IGN 1988 LS height',NULL,NULL,'EPSG','6499','EPSG','5210','EPSG','2895',0); INSERT INTO "vertical_crs" VALUES('EPSG','5617','IGN 1988 MG height',NULL,NULL,'EPSG','6499','EPSG','5211','EPSG','2894',0); INSERT INTO "vertical_crs" VALUES('EPSG','5618','IGN 1992 LD height',NULL,NULL,'EPSG','6499','EPSG','5212','EPSG','2893',0); INSERT INTO "vertical_crs" VALUES('EPSG','5619','IGN 1988 SB height',NULL,NULL,'EPSG','6499','EPSG','5213','EPSG','2891',0); INSERT INTO "vertical_crs" VALUES('EPSG','5620','IGN 1988 SM height',NULL,NULL,'EPSG','6499','EPSG','5214','EPSG','2890',0); INSERT INTO "vertical_crs" VALUES('EPSG','5621','EVRF2007 height',NULL,NULL,'EPSG','6499','EPSG','5215','EPSG','3594',0); INSERT INTO "vertical_crs" VALUES('EPSG','5701','ODN height',NULL,NULL,'EPSG','6499','EPSG','5101','EPSG','2792',0); INSERT INTO "vertical_crs" VALUES('EPSG','5702','NGVD29 height (ftUS)',NULL,NULL,'EPSG','6497','EPSG','5102','EPSG','1323',0); INSERT INTO "vertical_crs" VALUES('EPSG','5703','NAVD88 height',NULL,NULL,'EPSG','6499','EPSG','5103','EPSG','4161',0); INSERT INTO "vertical_crs" VALUES('EPSG','5704','Yellow Sea',NULL,NULL,'EPSG','6499','EPSG','5104','EPSG','1067',1); INSERT INTO "vertical_crs" VALUES('EPSG','5705','Baltic 1977 height',NULL,NULL,'EPSG','6499','EPSG','5105','EPSG','2423',0); INSERT INTO "vertical_crs" VALUES('EPSG','5706','Caspian depth',NULL,NULL,'EPSG','6498','EPSG','5106','EPSG','1291',0); INSERT INTO "vertical_crs" VALUES('EPSG','5709','NAP height',NULL,NULL,'EPSG','6499','EPSG','5109','EPSG','1275',0); INSERT INTO "vertical_crs" VALUES('EPSG','5710','Ostend height',NULL,NULL,'EPSG','6499','EPSG','5110','EPSG','1347',0); INSERT INTO "vertical_crs" VALUES('EPSG','5711','AHD height',NULL,NULL,'EPSG','6499','EPSG','5111','EPSG','4493',0); INSERT INTO "vertical_crs" VALUES('EPSG','5712','AHD (Tasmania) height',NULL,NULL,'EPSG','6499','EPSG','5112','EPSG','2947',0); INSERT INTO "vertical_crs" VALUES('EPSG','5713','CGVD28 height',NULL,NULL,'EPSG','6499','EPSG','5114','EPSG','1289',0); INSERT INTO "vertical_crs" VALUES('EPSG','5714','MSL height',NULL,NULL,'EPSG','6499','EPSG','5100','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5715','MSL depth',NULL,NULL,'EPSG','6498','EPSG','5100','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5716','Piraeus height',NULL,NULL,'EPSG','6499','EPSG','5115','EPSG','3254',0); INSERT INTO "vertical_crs" VALUES('EPSG','5717','N60 height',NULL,NULL,'EPSG','6499','EPSG','5116','EPSG','3333',0); INSERT INTO "vertical_crs" VALUES('EPSG','5718','RH70 height',NULL,NULL,'EPSG','6499','EPSG','5117','EPSG','3313',0); INSERT INTO "vertical_crs" VALUES('EPSG','5719','NGF Lallemand height',NULL,NULL,'EPSG','6499','EPSG','5118','EPSG','1326',0); INSERT INTO "vertical_crs" VALUES('EPSG','5720','NGF-IGN69 height',NULL,NULL,'EPSG','6499','EPSG','5119','EPSG','1326',0); INSERT INTO "vertical_crs" VALUES('EPSG','5721','NGF-IGN78 height',NULL,NULL,'EPSG','6499','EPSG','5120','EPSG','1327',0); INSERT INTO "vertical_crs" VALUES('EPSG','5722','Maputo height',NULL,NULL,'EPSG','6499','EPSG','5121','EPSG','3281',0); INSERT INTO "vertical_crs" VALUES('EPSG','5723','JSLD69 height',NULL,NULL,'EPSG','6499','EPSG','5122','EPSG','4166',0); INSERT INTO "vertical_crs" VALUES('EPSG','5724','PHD93 height',NULL,NULL,'EPSG','6499','EPSG','5123','EPSG','3288',0); INSERT INTO "vertical_crs" VALUES('EPSG','5725','Fahud HD height',NULL,NULL,'EPSG','6499','EPSG','5124','EPSG','4009',0); INSERT INTO "vertical_crs" VALUES('EPSG','5726','Ha Tien 1960 height',NULL,NULL,'EPSG','6499','EPSG','5125','EPSG','1302',0); INSERT INTO "vertical_crs" VALUES('EPSG','5727','Hon Dau 1992 height',NULL,NULL,'EPSG','6499','EPSG','5126','EPSG','4015',0); INSERT INTO "vertical_crs" VALUES('EPSG','5728','LN02 height',NULL,NULL,'EPSG','6499','EPSG','5127','EPSG','1286',0); INSERT INTO "vertical_crs" VALUES('EPSG','5729','LHN95 height',NULL,NULL,'EPSG','6499','EPSG','5128','EPSG','1286',0); INSERT INTO "vertical_crs" VALUES('EPSG','5730','EVRF2000 height',NULL,NULL,'EPSG','6499','EPSG','5129','EPSG','1299',0); INSERT INTO "vertical_crs" VALUES('EPSG','5731','Malin Head height',NULL,NULL,'EPSG','6499','EPSG','5130','EPSG','1305',0); INSERT INTO "vertical_crs" VALUES('EPSG','5732','Belfast height',NULL,NULL,'EPSG','6499','EPSG','5131','EPSG','2530',0); INSERT INTO "vertical_crs" VALUES('EPSG','5733','DNN height',NULL,NULL,'EPSG','6499','EPSG','5132','EPSG','3237',0); INSERT INTO "vertical_crs" VALUES('EPSG','5734','AIOC95 depth',NULL,NULL,'EPSG','6498','EPSG','5133','EPSG','2592',0); INSERT INTO "vertical_crs" VALUES('EPSG','5735','Black Sea height',NULL,NULL,'EPSG','6499','EPSG','5134','EPSG','3251',0); INSERT INTO "vertical_crs" VALUES('EPSG','5736','Yellow Sea 1956 height',NULL,NULL,'EPSG','6499','EPSG','5104','EPSG','3228',0); INSERT INTO "vertical_crs" VALUES('EPSG','5737','Yellow Sea 1985 height',NULL,NULL,'EPSG','6499','EPSG','5137','EPSG','3228',0); INSERT INTO "vertical_crs" VALUES('EPSG','5738','HKPD height',NULL,NULL,'EPSG','6499','EPSG','5135','EPSG','3334',0); INSERT INTO "vertical_crs" VALUES('EPSG','5739','HKCD depth',NULL,NULL,'EPSG','6498','EPSG','5136','EPSG','3335',0); INSERT INTO "vertical_crs" VALUES('EPSG','5740','ODN Orkney height',NULL,NULL,'EPSG','6499','EPSG','5138','EPSG','2793',0); INSERT INTO "vertical_crs" VALUES('EPSG','5741','Fair Isle height',NULL,NULL,'EPSG','6499','EPSG','5139','EPSG','2794',0); INSERT INTO "vertical_crs" VALUES('EPSG','5742','Lerwick height',NULL,NULL,'EPSG','6499','EPSG','5140','EPSG','2795',0); INSERT INTO "vertical_crs" VALUES('EPSG','5743','Foula height',NULL,NULL,'EPSG','6499','EPSG','5141','EPSG','2796',0); INSERT INTO "vertical_crs" VALUES('EPSG','5744','Sule Skerry height',NULL,NULL,'EPSG','6499','EPSG','5142','EPSG','2797',0); INSERT INTO "vertical_crs" VALUES('EPSG','5745','North Rona height',NULL,NULL,'EPSG','6499','EPSG','5143','EPSG','2798',0); INSERT INTO "vertical_crs" VALUES('EPSG','5746','Stornoway height',NULL,NULL,'EPSG','6499','EPSG','5144','EPSG','2799',0); INSERT INTO "vertical_crs" VALUES('EPSG','5747','St Kilda height',NULL,NULL,'EPSG','6499','EPSG','5145','EPSG','2800',0); INSERT INTO "vertical_crs" VALUES('EPSG','5748','Flannan Isles height',NULL,NULL,'EPSG','6499','EPSG','5146','EPSG','2801',0); INSERT INTO "vertical_crs" VALUES('EPSG','5749','St Marys height',NULL,NULL,'EPSG','6499','EPSG','5147','EPSG','2802',0); INSERT INTO "vertical_crs" VALUES('EPSG','5750','Douglas height',NULL,NULL,'EPSG','6499','EPSG','5148','EPSG','2803',0); INSERT INTO "vertical_crs" VALUES('EPSG','5751','Fao height',NULL,NULL,'EPSG','6499','EPSG','5149','EPSG','3390',0); INSERT INTO "vertical_crs" VALUES('EPSG','5752','Bandar Abbas height',NULL,NULL,'EPSG','6499','EPSG','5150','EPSG','3336',0); INSERT INTO "vertical_crs" VALUES('EPSG','5753','NGNC height',NULL,NULL,'EPSG','6499','EPSG','5151','EPSG','2822',0); INSERT INTO "vertical_crs" VALUES('EPSG','5754','Poolbeg height (ft(Br36))',NULL,NULL,'EPSG','6496','EPSG','5152','EPSG','1305',0); INSERT INTO "vertical_crs" VALUES('EPSG','5755','NGG1977 height',NULL,NULL,'EPSG','6499','EPSG','5153','EPSG','3146',0); INSERT INTO "vertical_crs" VALUES('EPSG','5756','Martinique 1987 height',NULL,NULL,'EPSG','6499','EPSG','5154','EPSG','3276',0); INSERT INTO "vertical_crs" VALUES('EPSG','5757','Guadeloupe 1988 height',NULL,NULL,'EPSG','6499','EPSG','5155','EPSG','2892',0); INSERT INTO "vertical_crs" VALUES('EPSG','5758','Reunion 1989 height',NULL,NULL,'EPSG','6499','EPSG','5156','EPSG','3337',0); INSERT INTO "vertical_crs" VALUES('EPSG','5759','Auckland 1946 height',NULL,NULL,'EPSG','6499','EPSG','5157','EPSG','3764',0); INSERT INTO "vertical_crs" VALUES('EPSG','5760','Bluff 1955 height',NULL,NULL,'EPSG','6499','EPSG','5158','EPSG','3801',0); INSERT INTO "vertical_crs" VALUES('EPSG','5761','Dunedin 1958 height',NULL,NULL,'EPSG','6499','EPSG','5159','EPSG','3803',0); INSERT INTO "vertical_crs" VALUES('EPSG','5762','Gisborne 1926 height',NULL,NULL,'EPSG','6499','EPSG','5160','EPSG','3771',0); INSERT INTO "vertical_crs" VALUES('EPSG','5763','Lyttelton 1937 height',NULL,NULL,'EPSG','6499','EPSG','5161','EPSG','3804',0); INSERT INTO "vertical_crs" VALUES('EPSG','5764','Moturiki 1953 height',NULL,NULL,'EPSG','6499','EPSG','5162','EPSG','3768',0); INSERT INTO "vertical_crs" VALUES('EPSG','5765','Napier 1962 height',NULL,NULL,'EPSG','6499','EPSG','5163','EPSG','3772',0); INSERT INTO "vertical_crs" VALUES('EPSG','5766','Nelson 1955 height',NULL,NULL,'EPSG','6499','EPSG','5164','EPSG','3802',0); INSERT INTO "vertical_crs" VALUES('EPSG','5767','One Tree Point 1964 height',NULL,NULL,'EPSG','6499','EPSG','5165','EPSG','3762',0); INSERT INTO "vertical_crs" VALUES('EPSG','5768','Tararu 1952 height',NULL,NULL,'EPSG','6499','EPSG','5166','EPSG','3818',0); INSERT INTO "vertical_crs" VALUES('EPSG','5769','Taranaki 1970 height',NULL,NULL,'EPSG','6499','EPSG','5167','EPSG','3769',0); INSERT INTO "vertical_crs" VALUES('EPSG','5770','Wellington 1953 height',NULL,NULL,'EPSG','6499','EPSG','5168','EPSG','3773',0); INSERT INTO "vertical_crs" VALUES('EPSG','5771','Chatham Island 1959 height',NULL,NULL,'EPSG','6499','EPSG','5169','EPSG','3894',0); INSERT INTO "vertical_crs" VALUES('EPSG','5772','Stewart Island 1977 height',NULL,NULL,'EPSG','6499','EPSG','5170','EPSG','3338',0); INSERT INTO "vertical_crs" VALUES('EPSG','5773','EGM96 height',NULL,NULL,'EPSG','6499','EPSG','5171','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5774','NG-L height',NULL,NULL,'EPSG','6499','EPSG','5172','EPSG','1146',0); INSERT INTO "vertical_crs" VALUES('EPSG','5775','Antalya height',NULL,NULL,'EPSG','6499','EPSG','5173','EPSG','3322',0); INSERT INTO "vertical_crs" VALUES('EPSG','5776','NN54 height',NULL,NULL,'EPSG','6499','EPSG','5174','EPSG','1352',0); INSERT INTO "vertical_crs" VALUES('EPSG','5777','Durres height',NULL,NULL,'EPSG','6499','EPSG','5175','EPSG','3212',0); INSERT INTO "vertical_crs" VALUES('EPSG','5778','GHA height',NULL,NULL,'EPSG','6499','EPSG','5176','EPSG','1037',0); INSERT INTO "vertical_crs" VALUES('EPSG','5779','SVS2000 height',NULL,NULL,'EPSG','6499','EPSG','5177','EPSG','3307',0); INSERT INTO "vertical_crs" VALUES('EPSG','5780','Cascais height',NULL,NULL,'EPSG','6499','EPSG','5178','EPSG','1294',0); INSERT INTO "vertical_crs" VALUES('EPSG','5781','Constanta height',NULL,NULL,'EPSG','6499','EPSG','5179','EPSG','3295',0); INSERT INTO "vertical_crs" VALUES('EPSG','5782','Alicante height',NULL,NULL,'EPSG','6499','EPSG','5180','EPSG','4188',0); INSERT INTO "vertical_crs" VALUES('EPSG','5783','DHHN92 height',NULL,NULL,'EPSG','6499','EPSG','5181','EPSG','3339',0); INSERT INTO "vertical_crs" VALUES('EPSG','5784','DHHN85 height',NULL,NULL,'EPSG','6499','EPSG','5182','EPSG','2326',0); INSERT INTO "vertical_crs" VALUES('EPSG','5785','SNN76 height',NULL,NULL,'EPSG','6499','EPSG','5183','EPSG','1343',0); INSERT INTO "vertical_crs" VALUES('EPSG','5786','Baltic 1982 height',NULL,NULL,'EPSG','6499','EPSG','5184','EPSG','3224',0); INSERT INTO "vertical_crs" VALUES('EPSG','5787','EOMA 1980 height',NULL,NULL,'EPSG','6499','EPSG','5185','EPSG','1119',0); INSERT INTO "vertical_crs" VALUES('EPSG','5788','Kuwait PWD height',NULL,NULL,'EPSG','6499','EPSG','5186','EPSG','3267',0); INSERT INTO "vertical_crs" VALUES('EPSG','5789','KOC WD depth',NULL,NULL,'EPSG','6498','EPSG','5187','EPSG','3267',0); INSERT INTO "vertical_crs" VALUES('EPSG','5790','KOC CD height',NULL,NULL,'EPSG','6499','EPSG','5188','EPSG','3267',0); INSERT INTO "vertical_crs" VALUES('EPSG','5791','NGC 1948 height',NULL,NULL,'EPSG','6499','EPSG','5189','EPSG','1327',0); INSERT INTO "vertical_crs" VALUES('EPSG','5792','Danger 1950 height',NULL,NULL,'EPSG','6499','EPSG','5190','EPSG','3299',0); INSERT INTO "vertical_crs" VALUES('EPSG','5793','Mayotte 1950 height',NULL,NULL,'EPSG','6499','EPSG','5191','EPSG','3340',0); INSERT INTO "vertical_crs" VALUES('EPSG','5794','Martinique 1955 height',NULL,NULL,'EPSG','6499','EPSG','5192','EPSG','3276',0); INSERT INTO "vertical_crs" VALUES('EPSG','5795','Guadeloupe 1951 height',NULL,NULL,'EPSG','6499','EPSG','5193','EPSG','2892',0); INSERT INTO "vertical_crs" VALUES('EPSG','5796','Lagos 1955 height',NULL,NULL,'EPSG','6499','EPSG','5194','EPSG','3287',0); INSERT INTO "vertical_crs" VALUES('EPSG','5797','AIOC95 height',NULL,NULL,'EPSG','6499','EPSG','5133','EPSG','2592',0); INSERT INTO "vertical_crs" VALUES('EPSG','5798','EGM84 height',NULL,NULL,'EPSG','6499','EPSG','5203','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5799','DVR90 height',NULL,NULL,'EPSG','6499','EPSG','5206','EPSG','3237',0); INSERT INTO "vertical_crs" VALUES('EPSG','5829','Instantaneous Water Level height',NULL,NULL,'EPSG','6499','EPSG','5113','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5831','Instantaneous Water Level depth',NULL,NULL,'EPSG','6498','EPSG','5113','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5843','Ras Ghumays height',NULL,NULL,'EPSG','6499','EPSG','1146','EPSG','4225',0); INSERT INTO "vertical_crs" VALUES('EPSG','5861','LAT depth',NULL,NULL,'EPSG','6498','EPSG','1080','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5862','LLWLT depth',NULL,NULL,'EPSG','6498','EPSG','1083','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5863','ISLW depth',NULL,NULL,'EPSG','6498','EPSG','1085','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5864','MLLWS depth',NULL,NULL,'EPSG','6498','EPSG','1086','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5865','MLWS depth',NULL,NULL,'EPSG','6498','EPSG','1087','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5866','MLLW depth',NULL,NULL,'EPSG','6498','EPSG','1089','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5867','MLW depth',NULL,NULL,'EPSG','6498','EPSG','1091','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5868','MHW height',NULL,NULL,'EPSG','6499','EPSG','1092','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5869','MHHW height',NULL,NULL,'EPSG','6499','EPSG','1090','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5870','MHWS height',NULL,NULL,'EPSG','6499','EPSG','1088','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5871','HHWLT height',NULL,NULL,'EPSG','6499','EPSG','1084','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5872','HAT height',NULL,NULL,'EPSG','6499','EPSG','1082','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5873','Low Water depth',NULL,NULL,'EPSG','6498','EPSG','1093','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5874','High Water height',NULL,NULL,'EPSG','6499','EPSG','1094','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','5941','NN2000 height',NULL,NULL,'EPSG','6499','EPSG','1096','EPSG','1352',0); INSERT INTO "vertical_crs" VALUES('EPSG','6130','GCVD54 height (ft)',NULL,NULL,'EPSG','1030','EPSG','1097','EPSG','3185',0); INSERT INTO "vertical_crs" VALUES('EPSG','6131','LCVD61 height (ft)',NULL,NULL,'EPSG','1030','EPSG','1098','EPSG','4121',0); INSERT INTO "vertical_crs" VALUES('EPSG','6132','CBVD61 height (ft)',NULL,NULL,'EPSG','1030','EPSG','1099','EPSG','3207',0); INSERT INTO "vertical_crs" VALUES('EPSG','6178','Cais da Pontinha - Funchal height',NULL,NULL,'EPSG','6499','EPSG','1101','EPSG','4125',0); INSERT INTO "vertical_crs" VALUES('EPSG','6179','Cais da Vila - Porto Santo height',NULL,NULL,'EPSG','6499','EPSG','1102','EPSG','3680',0); INSERT INTO "vertical_crs" VALUES('EPSG','6180','Cais das Velas height',NULL,NULL,'EPSG','6499','EPSG','1103','EPSG','2875',0); INSERT INTO "vertical_crs" VALUES('EPSG','6181','Horta height',NULL,NULL,'EPSG','6499','EPSG','1104','EPSG','2873',0); INSERT INTO "vertical_crs" VALUES('EPSG','6182','Cais da Madalena height',NULL,NULL,'EPSG','6499','EPSG','1105','EPSG','2874',0); INSERT INTO "vertical_crs" VALUES('EPSG','6183','Santa Cruz da Graciosa height',NULL,NULL,'EPSG','6499','EPSG','1106','EPSG','3681',0); INSERT INTO "vertical_crs" VALUES('EPSG','6184','Cais da Figueirinha - Angra do Heroismo height',NULL,NULL,'EPSG','6499','EPSG','1107','EPSG','2872',0); INSERT INTO "vertical_crs" VALUES('EPSG','6185','Santa Cruz das Flores height',NULL,NULL,'EPSG','6499','EPSG','1108','EPSG','1344',0); INSERT INTO "vertical_crs" VALUES('EPSG','6186','Cais da Vila do Porto height',NULL,NULL,'EPSG','6499','EPSG','1109','EPSG','4126',0); INSERT INTO "vertical_crs" VALUES('EPSG','6187','Ponta Delgada height',NULL,NULL,'EPSG','6499','EPSG','1110','EPSG','2871',0); INSERT INTO "vertical_crs" VALUES('EPSG','6357','NAVD88 depth',NULL,NULL,'EPSG','6498','EPSG','5103','EPSG','4161',0); INSERT INTO "vertical_crs" VALUES('EPSG','6358','NAVD88 depth (ftUS)',NULL,NULL,'EPSG','1043','EPSG','5103','EPSG','3664',0); INSERT INTO "vertical_crs" VALUES('EPSG','6359','NGVD29 depth (ftUS)',NULL,NULL,'EPSG','1043','EPSG','5102','EPSG','1323',0); INSERT INTO "vertical_crs" VALUES('EPSG','6360','NAVD88 height (ftUS)',NULL,NULL,'EPSG','6497','EPSG','5103','EPSG','3664',0); INSERT INTO "vertical_crs" VALUES('EPSG','6638','Tutuila 1962 height',NULL,NULL,'EPSG','6499','EPSG','1121','EPSG','2288',0); INSERT INTO "vertical_crs" VALUES('EPSG','6639','Guam 1963 height',NULL,NULL,'EPSG','6499','EPSG','1122','EPSG','3255',0); INSERT INTO "vertical_crs" VALUES('EPSG','6640','NMVD03 height',NULL,NULL,'EPSG','6499','EPSG','1119','EPSG','4171',0); INSERT INTO "vertical_crs" VALUES('EPSG','6641','PRVD02 height',NULL,NULL,'EPSG','6499','EPSG','1123','EPSG','3294',0); INSERT INTO "vertical_crs" VALUES('EPSG','6642','VIVD09 height',NULL,NULL,'EPSG','6499','EPSG','1124','EPSG','3330',0); INSERT INTO "vertical_crs" VALUES('EPSG','6643','ASVD02 height',NULL,NULL,'EPSG','6499','EPSG','1125','EPSG','2288',0); INSERT INTO "vertical_crs" VALUES('EPSG','6644','GUVD04 height',NULL,NULL,'EPSG','6499','EPSG','1126','EPSG','3255',0); INSERT INTO "vertical_crs" VALUES('EPSG','6647','CGVD2013(CGG2013) height',NULL,NULL,'EPSG','6499','EPSG','1127','EPSG','1061',0); INSERT INTO "vertical_crs" VALUES('EPSG','6693','JSLD72 height',NULL,NULL,'EPSG','6499','EPSG','1129','EPSG','4168',0); INSERT INTO "vertical_crs" VALUES('EPSG','6694','JGD2000 (vertical) height',NULL,NULL,'EPSG','6499','EPSG','1130','EPSG','3263',0); INSERT INTO "vertical_crs" VALUES('EPSG','6695','JGD2011 (vertical) height',NULL,NULL,'EPSG','6499','EPSG','1131','EPSG','3263',0); INSERT INTO "vertical_crs" VALUES('EPSG','6916','SHD height',NULL,NULL,'EPSG','6499','EPSG','1140','EPSG','1210',0); INSERT INTO "vertical_crs" VALUES('EPSG','7446','Famagusta 1960 height',NULL,NULL,'EPSG','6499','EPSG','1148','EPSG','3236',0); INSERT INTO "vertical_crs" VALUES('EPSG','7447','PNG08 height',NULL,NULL,'EPSG','6499','EPSG','1149','EPSG','4384',0); INSERT INTO "vertical_crs" VALUES('EPSG','7651','Kumul 34 height',NULL,NULL,'EPSG','6499','EPSG','1150','EPSG','4013',0); INSERT INTO "vertical_crs" VALUES('EPSG','7652','Kiunga height',NULL,NULL,'EPSG','6499','EPSG','1151','EPSG','4383',0); INSERT INTO "vertical_crs" VALUES('EPSG','7699','DHHN12 height',NULL,NULL,'EPSG','6499','EPSG','1161','EPSG','3339',0); INSERT INTO "vertical_crs" VALUES('EPSG','7700','Latvia 2000 height',NULL,NULL,'EPSG','6499','EPSG','1162','EPSG','3268',0); INSERT INTO "vertical_crs" VALUES('EPSG','7707','ODN (Offshore) height',NULL,NULL,'EPSG','6499','EPSG','1164','EPSG','4391',0); INSERT INTO "vertical_crs" VALUES('EPSG','7832','POM96 height',NULL,NULL,'EPSG','6499','EPSG','1171','EPSG','4425',0); INSERT INTO "vertical_crs" VALUES('EPSG','7837','DHHN2016 height',NULL,NULL,'EPSG','6499','EPSG','1170','EPSG','3339',0); INSERT INTO "vertical_crs" VALUES('EPSG','7839','NZVD2016 height',NULL,NULL,'EPSG','6499','EPSG','1169','EPSG','1175',0); INSERT INTO "vertical_crs" VALUES('EPSG','7841','POM08 height',NULL,NULL,'EPSG','6499','EPSG','1172','EPSG','4425',0); INSERT INTO "vertical_crs" VALUES('EPSG','7888','Jamestown 1971 height',NULL,NULL,'EPSG','6499','EPSG','1175','EPSG','3183',0); INSERT INTO "vertical_crs" VALUES('EPSG','7889','St. Helena Tritan 2011 height',NULL,NULL,'EPSG','6499','EPSG','1176','EPSG','3183',0); INSERT INTO "vertical_crs" VALUES('EPSG','7890','SHVD2015 height',NULL,NULL,'EPSG','6499','EPSG','1177','EPSG','3183',0); INSERT INTO "vertical_crs" VALUES('EPSG','7962','Poolbeg height (m)',NULL,NULL,'EPSG','6499','EPSG','5152','EPSG','1305',0); INSERT INTO "vertical_crs" VALUES('EPSG','7968','NGVD29 height (m)',NULL,NULL,'EPSG','6499','EPSG','5102','EPSG','1323',0); INSERT INTO "vertical_crs" VALUES('EPSG','7976','HKPD depth',NULL,NULL,'EPSG','6498','EPSG','5135','EPSG','3334',0); INSERT INTO "vertical_crs" VALUES('EPSG','7979','KOC WD height',NULL,NULL,'EPSG','6499','EPSG','5187','EPSG','3267',0); INSERT INTO "vertical_crs" VALUES('EPSG','8050','MSL height (ft)',NULL,NULL,'EPSG','1030','EPSG','5100','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','8051','MSL depth (ft)',NULL,NULL,'EPSG','6495','EPSG','5100','EPSG','1262',0); INSERT INTO "vertical_crs" VALUES('EPSG','8052','MSL height (ftUS)',NULL,NULL,'EPSG','6497','EPSG','5100','EPSG','1245',0); INSERT INTO "vertical_crs" VALUES('EPSG','8053','MSL depth (ftUS)',NULL,NULL,'EPSG','1043','EPSG','5100','EPSG','1245',0); INSERT INTO "vertical_crs" VALUES('EPSG','8089','ISH2004 height',NULL,NULL,'EPSG','6499','EPSG','1190','EPSG','3262',0); INSERT INTO "vertical_crs" VALUES('EPSG','8228','NAVD88 height (ft)',NULL,NULL,'EPSG','1030','EPSG','5103','EPSG','4464',0); INSERT INTO "vertical_crs" VALUES('EPSG','8266','GVR2000 height',NULL,NULL,'EPSG','6499','EPSG','1199','EPSG','4461',0); INSERT INTO "vertical_crs" VALUES('EPSG','8267','GVR2016 height',NULL,NULL,'EPSG','6499','EPSG','1200','EPSG','4454',0); INSERT INTO "vertical_crs" VALUES('EPSG','8357','Baltic 1957 height',NULL,NULL,'EPSG','6499','EPSG','1202','EPSG','1306',0); INSERT INTO "vertical_crs" VALUES('EPSG','8358','Baltic 1957 depth',NULL,NULL,'EPSG','6498','EPSG','1202','EPSG','1306',0); INSERT INTO "vertical_crs" VALUES('EPSG','8378','EPSG example wellbore local vertical CRS',NULL,NULL,'EPSG','1049','EPSG','1205','EPSG','4393',0); INSERT INTO "vertical_crs" VALUES('EPSG','8434','Macao height',NULL,NULL,'EPSG','6499','EPSG','1210','EPSG','1147',0); INSERT INTO "vertical_crs" VALUES('EPSG','8675','N43 height',NULL,NULL,'EPSG','6499','EPSG','1213','EPSG','4522',0); INSERT INTO "vertical_crs" VALUES('EPSG','8690','SVS2010 height',NULL,NULL,'EPSG','6499','EPSG','1215','EPSG','3307',0); INSERT INTO "vertical_crs" VALUES('EPSG','8691','SRB_VRS12 height',NULL,NULL,'EPSG','6499','EPSG','1216','EPSG','4543',0); INSERT INTO "vertical_crs" VALUES('EPSG','8841','MVGC height',NULL,NULL,'EPSG','6499','EPSG','1219','EPSG','3303',0); INSERT INTO "vertical_crs" VALUES('EPSG','8897','EPSG example wellbore local vertical CRS (ft)',NULL,NULL,'EPSG','1050','EPSG','1205','EPSG','4393',0); INSERT INTO "vertical_crs" VALUES('EPSG','8904','TWVD 2001 height',NULL,NULL,'EPSG','6499','EPSG','1224','EPSG','3982',0); INSERT INTO "vertical_crs" VALUES('EPSG','8911','DACR52 height',NULL,NULL,'EPSG','6499','EPSG','1226','EPSG','3232',0); INSERT INTO "vertical_crs" VALUES('EPSG','9130','IGN 2008 LD height',NULL,NULL,'EPSG','6499','EPSG','1250','EPSG','2893',0); INSERT INTO "vertical_crs" VALUES('EPSG','9245','CGVD2013(CGG2013a) height',NULL,NULL,'EPSG','6499','EPSG','1256','EPSG','1061',0); INSERT INTO "vertical_crs" VALUES('EPSG','9255','SRVN16 height',NULL,NULL,'EPSG','6499','EPSG','1260','EPSG','4573',0); INSERT INTO "vertical_crs" VALUES('EPSG','9274','EVRF2000 Austria height',NULL,NULL,'EPSG','6499','EPSG','1261','EPSG','1037',0); INSERT INTO "vertical_crs" VALUES('EPSG','9279','SA LLD height',NULL,NULL,'EPSG','6499','EPSG','1262','EPSG','3309',0); INSERT INTO "vertical_crs" VALUES('EPSG','9335','KSA-VRF14 height',NULL,NULL,'EPSG','6499','EPSG','1269','EPSG','3303',0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "compound_crs" VALUES('EPSG','3901','KKJ / Finland Uniform Coordinate System + N60 height',NULL,NULL,'EPSG','2393','EPSG','5717','EPSG','3333',0); INSERT INTO "compound_crs" VALUES('EPSG','3902','ETRS89 / TM35FIN(N,E) + N60 height',NULL,NULL,'EPSG','5048','EPSG','5717','EPSG','3333',0); INSERT INTO "compound_crs" VALUES('EPSG','3903','ETRS89 / TM35FIN(N,E) + N2000 height',NULL,NULL,'EPSG','5048','EPSG','3900','EPSG','3333',0); INSERT INTO "compound_crs" VALUES('EPSG','4097','ETRS89 / DKTM1 + DVR90 height',NULL,NULL,'EPSG','4093','EPSG','5799','EPSG','3631',0); INSERT INTO "compound_crs" VALUES('EPSG','4098','ETRS89 / DKTM2 + DVR90 height',NULL,NULL,'EPSG','4094','EPSG','5799','EPSG','3632',0); INSERT INTO "compound_crs" VALUES('EPSG','4099','ETRS89 / DKTM3 + DVR90 height',NULL,NULL,'EPSG','4095','EPSG','5799','EPSG','2532',0); INSERT INTO "compound_crs" VALUES('EPSG','4100','ETRS89 / DKTM4 + DVR90 height',NULL,NULL,'EPSG','4096','EPSG','5799','EPSG','2533',0); INSERT INTO "compound_crs" VALUES('EPSG','5318','ETRS89 / Faroe TM + FVR09 height',NULL,NULL,'EPSG','5316','EPSG','5317','EPSG','3248',0); INSERT INTO "compound_crs" VALUES('EPSG','5498','NAD83 + NAVD88 height',NULL,NULL,'EPSG','4269','EPSG','5703','EPSG','3664',0); INSERT INTO "compound_crs" VALUES('EPSG','5499','NAD83(HARN) + NAVD88 height',NULL,NULL,'EPSG','4152','EPSG','5703','EPSG','1323',0); INSERT INTO "compound_crs" VALUES('EPSG','5500','NAD83(NSRS2007) + NAVD88 height',NULL,NULL,'EPSG','4759','EPSG','5703','EPSG','1323',0); INSERT INTO "compound_crs" VALUES('EPSG','5554','ETRS89 / UTM zone 31N + DHHN92 height',NULL,NULL,'EPSG','25831','EPSG','5783','EPSG','3901',0); INSERT INTO "compound_crs" VALUES('EPSG','5555','ETRS89 / UTM zone 32N + DHHN92 height',NULL,NULL,'EPSG','25832','EPSG','5783','EPSG','3904',0); INSERT INTO "compound_crs" VALUES('EPSG','5556','ETRS89 / UTM zone 33N + DHHN92 height',NULL,NULL,'EPSG','25833','EPSG','5783','EPSG','3879',0); INSERT INTO "compound_crs" VALUES('EPSG','5598','FEH2010 / Fehmarnbelt TM + FCSVR10 height',NULL,NULL,'EPSG','5596','EPSG','5597','EPSG','3890',0); INSERT INTO "compound_crs" VALUES('EPSG','5628','SWEREF99 + RH2000 height',NULL,NULL,'EPSG','4619','EPSG','5613','EPSG','3313',0); INSERT INTO "compound_crs" VALUES('EPSG','5698','RGF93 / Lambert-93 + NGF-IGN69 height',NULL,NULL,'EPSG','2154','EPSG','5720','EPSG','1326',0); INSERT INTO "compound_crs" VALUES('EPSG','5699','RGF93 / Lambert-93 + NGF-IGN78 height',NULL,NULL,'EPSG','2154','EPSG','5721','EPSG','1327',0); INSERT INTO "compound_crs" VALUES('EPSG','5707','NTF (Paris) / Lambert zone I + NGF-IGN69 height',NULL,NULL,'EPSG','27571','EPSG','5720','EPSG','1731',0); INSERT INTO "compound_crs" VALUES('EPSG','5708','NTF (Paris) / Lambert zone IV + NGF-IGN78 height',NULL,NULL,'EPSG','27574','EPSG','5721','EPSG','1327',0); INSERT INTO "compound_crs" VALUES('EPSG','5832','DB_REF / 3-degree Gauss-Kruger zone 2 (E-N) + DHHN92 height',NULL,NULL,'EPSG','5682','EPSG','5783','EPSG','1624',0); INSERT INTO "compound_crs" VALUES('EPSG','5833','DB_REF / 3-degree Gauss-Kruger zone 3 (E-N) + DHHN92 height',NULL,NULL,'EPSG','5683','EPSG','5783','EPSG','3993',0); INSERT INTO "compound_crs" VALUES('EPSG','5834','DB_REF / 3-degree Gauss-Kruger zone 4 (E-N) + DHHN92 height',NULL,NULL,'EPSG','5684','EPSG','5783','EPSG','3996',0); INSERT INTO "compound_crs" VALUES('EPSG','5835','DB_REF / 3-degree Gauss-Kruger zone 5 (E-N) + DHHN92 height',NULL,NULL,'EPSG','5685','EPSG','5783','EPSG','3998',0); INSERT INTO "compound_crs" VALUES('EPSG','5845','SWEREF99 TM + RH2000 height',NULL,NULL,'EPSG','3006','EPSG','5613','EPSG','3313',0); INSERT INTO "compound_crs" VALUES('EPSG','5846','SWEREF99 12 00 + RH2000 height',NULL,NULL,'EPSG','3007','EPSG','5613','EPSG','2833',0); INSERT INTO "compound_crs" VALUES('EPSG','5847','SWEREF99 13 30 + RH2000 height',NULL,NULL,'EPSG','3008','EPSG','5613','EPSG','2834',0); INSERT INTO "compound_crs" VALUES('EPSG','5848','SWEREF99 15 00 + RH2000 height',NULL,NULL,'EPSG','3009','EPSG','5613','EPSG','2835',0); INSERT INTO "compound_crs" VALUES('EPSG','5849','SWEREF99 16 30 + RH2000 height',NULL,NULL,'EPSG','3010','EPSG','5613','EPSG','2836',0); INSERT INTO "compound_crs" VALUES('EPSG','5850','SWEREF99 18 00 + RH2000 height',NULL,NULL,'EPSG','3011','EPSG','5613','EPSG','2837',0); INSERT INTO "compound_crs" VALUES('EPSG','5851','SWEREF99 14 15 + RH2000 height',NULL,NULL,'EPSG','3012','EPSG','5613','EPSG','2838',0); INSERT INTO "compound_crs" VALUES('EPSG','5852','SWEREF99 15 45 + RH2000 height',NULL,NULL,'EPSG','3013','EPSG','5613','EPSG','2839',0); INSERT INTO "compound_crs" VALUES('EPSG','5853','SWEREF99 17 15 + RH2000 height',NULL,NULL,'EPSG','3014','EPSG','5613','EPSG','2840',0); INSERT INTO "compound_crs" VALUES('EPSG','5854','SWEREF99 18 45 + RH2000 height',NULL,NULL,'EPSG','3015','EPSG','5613','EPSG','2841',0); INSERT INTO "compound_crs" VALUES('EPSG','5855','SWEREF99 20 15 + RH2000 height',NULL,NULL,'EPSG','3016','EPSG','5613','EPSG','2842',0); INSERT INTO "compound_crs" VALUES('EPSG','5856','SWEREF99 21 45 + RH2000 height',NULL,NULL,'EPSG','3017','EPSG','5613','EPSG','2843',0); INSERT INTO "compound_crs" VALUES('EPSG','5857','SWEREF99 23 15 + RH2000 height',NULL,NULL,'EPSG','3018','EPSG','5613','EPSG','2844',0); INSERT INTO "compound_crs" VALUES('EPSG','5942','ETRS89 + NN2000 height',NULL,NULL,'EPSG','4258','EPSG','5941','EPSG','1352',0); INSERT INTO "compound_crs" VALUES('EPSG','5945','ETRS89 / NTM zone 5 + NN2000 height',NULL,NULL,'EPSG','5105','EPSG','5941','EPSG','3636',0); INSERT INTO "compound_crs" VALUES('EPSG','5946','ETRS89 / NTM zone 6 + NN2000 height',NULL,NULL,'EPSG','5106','EPSG','5941','EPSG','3639',0); INSERT INTO "compound_crs" VALUES('EPSG','5947','ETRS89 / NTM zone 7 + NN2000 height',NULL,NULL,'EPSG','5107','EPSG','5941','EPSG','3647',0); INSERT INTO "compound_crs" VALUES('EPSG','5948','ETRS89 / NTM zone 8 + NN2000 height',NULL,NULL,'EPSG','5108','EPSG','5941','EPSG','3648',0); INSERT INTO "compound_crs" VALUES('EPSG','5949','ETRS89 / NTM zone 9 + NN2000 height',NULL,NULL,'EPSG','5109','EPSG','5941','EPSG','3649',0); INSERT INTO "compound_crs" VALUES('EPSG','5950','ETRS89 / NTM zone 10 + NN2000 height',NULL,NULL,'EPSG','5110','EPSG','5941','EPSG','3650',0); INSERT INTO "compound_crs" VALUES('EPSG','5951','ETRS89 / NTM zone 11 + NN2000 height',NULL,NULL,'EPSG','5111','EPSG','5941','EPSG','3651',0); INSERT INTO "compound_crs" VALUES('EPSG','5952','ETRS89 / NTM zone 12 + NN2000 height',NULL,NULL,'EPSG','5112','EPSG','5941','EPSG','3653',0); INSERT INTO "compound_crs" VALUES('EPSG','5953','ETRS89 / NTM zone 13 + NN2000 height',NULL,NULL,'EPSG','5113','EPSG','5941','EPSG','3654',0); INSERT INTO "compound_crs" VALUES('EPSG','5954','ETRS89 / NTM zone 14 + NN2000 height',NULL,NULL,'EPSG','5114','EPSG','5941','EPSG','3655',0); INSERT INTO "compound_crs" VALUES('EPSG','5955','ETRS89 / NTM zone 15 + NN2000 height',NULL,NULL,'EPSG','5115','EPSG','5941','EPSG','3656',0); INSERT INTO "compound_crs" VALUES('EPSG','5956','ETRS89 / NTM zone 16 + NN2000 height',NULL,NULL,'EPSG','5116','EPSG','5941','EPSG','3657',0); INSERT INTO "compound_crs" VALUES('EPSG','5957','ETRS89 / NTM zone 17 + NN2000 height',NULL,NULL,'EPSG','5117','EPSG','5941','EPSG','3658',0); INSERT INTO "compound_crs" VALUES('EPSG','5958','ETRS89 / NTM zone 18 + NN2000 height',NULL,NULL,'EPSG','5118','EPSG','5941','EPSG','3660',0); INSERT INTO "compound_crs" VALUES('EPSG','5959','ETRS89 / NTM zone 19 + NN2000 height',NULL,NULL,'EPSG','5119','EPSG','5941','EPSG','3661',0); INSERT INTO "compound_crs" VALUES('EPSG','5960','ETRS89 / NTM zone 20 + NN2000 height',NULL,NULL,'EPSG','5120','EPSG','5941','EPSG','3662',0); INSERT INTO "compound_crs" VALUES('EPSG','5961','ETRS89 / NTM zone 21 + NN2000 height',NULL,NULL,'EPSG','5121','EPSG','5941','EPSG','3663',0); INSERT INTO "compound_crs" VALUES('EPSG','5962','ETRS89 / NTM zone 22 + NN2000 height',NULL,NULL,'EPSG','5122','EPSG','5941','EPSG','3665',0); INSERT INTO "compound_crs" VALUES('EPSG','5963','ETRS89 / NTM zone 23 + NN2000 height',NULL,NULL,'EPSG','5123','EPSG','5941','EPSG','3667',0); INSERT INTO "compound_crs" VALUES('EPSG','5964','ETRS89 / NTM zone 24 + NN2000 height',NULL,NULL,'EPSG','5124','EPSG','5941','EPSG','3668',0); INSERT INTO "compound_crs" VALUES('EPSG','5965','ETRS89 / NTM zone 25 + NN2000 height',NULL,NULL,'EPSG','5125','EPSG','5941','EPSG','3669',0); INSERT INTO "compound_crs" VALUES('EPSG','5966','ETRS89 / NTM zone 26 + NN2000 height',NULL,NULL,'EPSG','5126','EPSG','5941','EPSG','3671',0); INSERT INTO "compound_crs" VALUES('EPSG','5967','ETRS89 / NTM zone 27 + NN2000 height',NULL,NULL,'EPSG','5127','EPSG','5941','EPSG','3672',0); INSERT INTO "compound_crs" VALUES('EPSG','5968','ETRS89 / NTM zone 28 + NN2000 height',NULL,NULL,'EPSG','5128','EPSG','5941','EPSG','3673',0); INSERT INTO "compound_crs" VALUES('EPSG','5969','ETRS89 / NTM zone 29 + NN2000 height',NULL,NULL,'EPSG','5129','EPSG','5941','EPSG','3674',0); INSERT INTO "compound_crs" VALUES('EPSG','5970','ETRS89 / NTM zone 30 + NN2000 height',NULL,NULL,'EPSG','5130','EPSG','5941','EPSG','3676',0); INSERT INTO "compound_crs" VALUES('EPSG','5971','ETRS89 / UTM zone 31 + NN2000 height',NULL,NULL,'EPSG','25831','EPSG','5941','EPSG','3636',0); INSERT INTO "compound_crs" VALUES('EPSG','5972','ETRS89 / UTM zone 32 + NN2000 height',NULL,NULL,'EPSG','25832','EPSG','5941','EPSG','4066',0); INSERT INTO "compound_crs" VALUES('EPSG','5973','ETRS89 / UTM zone 33 + NN2000 height',NULL,NULL,'EPSG','25833','EPSG','5941','EPSG','4067',0); INSERT INTO "compound_crs" VALUES('EPSG','5974','ETRS89 / UTM zone 34 + NN2000 height',NULL,NULL,'EPSG','25834','EPSG','5941','EPSG','4068',0); INSERT INTO "compound_crs" VALUES('EPSG','5975','ETRS89 / UTM zone 35 + NN2000 height',NULL,NULL,'EPSG','25835','EPSG','5941','EPSG','4069',0); INSERT INTO "compound_crs" VALUES('EPSG','5976','ETRS89 / UTM zone 36 + NN2000 height',NULL,NULL,'EPSG','25836','EPSG','5941','EPSG','3676',0); INSERT INTO "compound_crs" VALUES('EPSG','6144','ETRS89 + NN54 height',NULL,NULL,'EPSG','4258','EPSG','5776','EPSG','1352',0); INSERT INTO "compound_crs" VALUES('EPSG','6145','ETRS89 / NTM zone 5 + NN54 height',NULL,NULL,'EPSG','5105','EPSG','5776','EPSG','3636',0); INSERT INTO "compound_crs" VALUES('EPSG','6146','ETRS89 / NTM zone 6 + NN54 height',NULL,NULL,'EPSG','5106','EPSG','5776','EPSG','3639',0); INSERT INTO "compound_crs" VALUES('EPSG','6147','ETRS89 / NTM zone 7 + NN54 height',NULL,NULL,'EPSG','5107','EPSG','5776','EPSG','3647',0); INSERT INTO "compound_crs" VALUES('EPSG','6148','ETRS89 / NTM zone 8 + NN54 height',NULL,NULL,'EPSG','5108','EPSG','5776','EPSG','3648',0); INSERT INTO "compound_crs" VALUES('EPSG','6149','ETRS89 / NTM zone 9 + NN54 height',NULL,NULL,'EPSG','5109','EPSG','5776','EPSG','3649',0); INSERT INTO "compound_crs" VALUES('EPSG','6150','ETRS89 / NTM zone 10 + NN54 height',NULL,NULL,'EPSG','5110','EPSG','5776','EPSG','3650',0); INSERT INTO "compound_crs" VALUES('EPSG','6151','ETRS89 / NTM zone 11 + NN54 height',NULL,NULL,'EPSG','5111','EPSG','5776','EPSG','3651',0); INSERT INTO "compound_crs" VALUES('EPSG','6152','ETRS89 / NTM zone 12 + NN54 height',NULL,NULL,'EPSG','5112','EPSG','5776','EPSG','3653',0); INSERT INTO "compound_crs" VALUES('EPSG','6153','ETRS89 / NTM zone 13 + NN54 height',NULL,NULL,'EPSG','5113','EPSG','5776','EPSG','3654',0); INSERT INTO "compound_crs" VALUES('EPSG','6154','ETRS89 / NTM zone 14 + NN54 height',NULL,NULL,'EPSG','5114','EPSG','5776','EPSG','3655',0); INSERT INTO "compound_crs" VALUES('EPSG','6155','ETRS89 / NTM zone 15 + NN54 height',NULL,NULL,'EPSG','5115','EPSG','5776','EPSG','3656',0); INSERT INTO "compound_crs" VALUES('EPSG','6156','ETRS89 / NTM zone 16 + NN54 height',NULL,NULL,'EPSG','5116','EPSG','5776','EPSG','3657',0); INSERT INTO "compound_crs" VALUES('EPSG','6157','ETRS89 / NTM zone 17 + NN54 height',NULL,NULL,'EPSG','5117','EPSG','5776','EPSG','3658',0); INSERT INTO "compound_crs" VALUES('EPSG','6158','ETRS89 / NTM zone 18 + NN54 height',NULL,NULL,'EPSG','5118','EPSG','5776','EPSG','3660',0); INSERT INTO "compound_crs" VALUES('EPSG','6159','ETRS89 / NTM zone 19 + NN54 height',NULL,NULL,'EPSG','5119','EPSG','5776','EPSG','3661',0); INSERT INTO "compound_crs" VALUES('EPSG','6160','ETRS89 / NTM zone 20 + NN54 height',NULL,NULL,'EPSG','5120','EPSG','5776','EPSG','3662',0); INSERT INTO "compound_crs" VALUES('EPSG','6161','ETRS89 / NTM zone 21 + NN54 height',NULL,NULL,'EPSG','5121','EPSG','5776','EPSG','3663',0); INSERT INTO "compound_crs" VALUES('EPSG','6162','ETRS89 / NTM zone 22 + NN54 height',NULL,NULL,'EPSG','5122','EPSG','5776','EPSG','3665',0); INSERT INTO "compound_crs" VALUES('EPSG','6163','ETRS89 / NTM zone 23 + NN54 height',NULL,NULL,'EPSG','5123','EPSG','5776','EPSG','3667',0); INSERT INTO "compound_crs" VALUES('EPSG','6164','ETRS89 / NTM zone 24 + NN54 height',NULL,NULL,'EPSG','5124','EPSG','5776','EPSG','3668',0); INSERT INTO "compound_crs" VALUES('EPSG','6165','ETRS89 / NTM zone 25 + NN54 height',NULL,NULL,'EPSG','5125','EPSG','5776','EPSG','3669',0); INSERT INTO "compound_crs" VALUES('EPSG','6166','ETRS89 / NTM zone 26 + NN54 height',NULL,NULL,'EPSG','5126','EPSG','5776','EPSG','3671',0); INSERT INTO "compound_crs" VALUES('EPSG','6167','ETRS89 / NTM zone 27 + NN54 height',NULL,NULL,'EPSG','5127','EPSG','5776','EPSG','3672',0); INSERT INTO "compound_crs" VALUES('EPSG','6168','ETRS89 / NTM zone 28 + NN54 height',NULL,NULL,'EPSG','5128','EPSG','5776','EPSG','3673',0); INSERT INTO "compound_crs" VALUES('EPSG','6169','ETRS89 / NTM zone 29 + NN54 height',NULL,NULL,'EPSG','5129','EPSG','5776','EPSG','3674',0); INSERT INTO "compound_crs" VALUES('EPSG','6170','ETRS89 / NTM zone 30 + NN54 height',NULL,NULL,'EPSG','5130','EPSG','5776','EPSG','3676',0); INSERT INTO "compound_crs" VALUES('EPSG','6171','ETRS89 / UTM zone 31 + NN54 height',NULL,NULL,'EPSG','25831','EPSG','5776','EPSG','3636',0); INSERT INTO "compound_crs" VALUES('EPSG','6172','ETRS89 / UTM zone 32 + NN54 height',NULL,NULL,'EPSG','25832','EPSG','5776','EPSG','4066',0); INSERT INTO "compound_crs" VALUES('EPSG','6173','ETRS89 / UTM zone 33 + NN54 height',NULL,NULL,'EPSG','25833','EPSG','5776','EPSG','4067',0); INSERT INTO "compound_crs" VALUES('EPSG','6174','ETRS89 / UTM zone 34 + NN54 height',NULL,NULL,'EPSG','25834','EPSG','5776','EPSG','4068',0); INSERT INTO "compound_crs" VALUES('EPSG','6175','ETRS89 / UTM zone 35 + NN54 height',NULL,NULL,'EPSG','25835','EPSG','5776','EPSG','4069',0); INSERT INTO "compound_crs" VALUES('EPSG','6176','ETRS89 / UTM zone 36 + NN54 height',NULL,NULL,'EPSG','25836','EPSG','5776','EPSG','3676',0); INSERT INTO "compound_crs" VALUES('EPSG','6190','Belge 1972 / Belgian Lambert 72 + Ostend height',NULL,NULL,'EPSG','31370','EPSG','5710','EPSG','1347',0); INSERT INTO "compound_crs" VALUES('EPSG','6349','NAD83(2011) + NAVD88 height',NULL,NULL,'EPSG','6318','EPSG','5703','EPSG','3664',0); INSERT INTO "compound_crs" VALUES('EPSG','6649','NAD83(CSRS) + CGVD2013 height',NULL,NULL,'EPSG','4617','EPSG','6647','EPSG','1061',0); INSERT INTO "compound_crs" VALUES('EPSG','6650','NAD83(CSRS) / UTM zone 7N + CGVD2013 height',NULL,NULL,'EPSG','3154','EPSG','6647','EPSG','3409',0); INSERT INTO "compound_crs" VALUES('EPSG','6651','NAD83(CSRS) / UTM zone 8N + CGVD2013 height',NULL,NULL,'EPSG','3155','EPSG','6647','EPSG','3410',0); INSERT INTO "compound_crs" VALUES('EPSG','6652','NAD83(CSRS) / UTM zone 9N + CGVD2013 height',NULL,NULL,'EPSG','3156','EPSG','6647','EPSG','3411',0); INSERT INTO "compound_crs" VALUES('EPSG','6653','NAD83(CSRS) / UTM zone 10N + CGVD2013 height',NULL,NULL,'EPSG','3157','EPSG','6647','EPSG','3412',0); INSERT INTO "compound_crs" VALUES('EPSG','6654','NAD83(CSRS) / UTM zone 11N + CGVD2013 height',NULL,NULL,'EPSG','2955','EPSG','6647','EPSG','3528',0); INSERT INTO "compound_crs" VALUES('EPSG','6655','NAD83(CSRS) / UTM zone 12N + CGVD2013 height',NULL,NULL,'EPSG','2956','EPSG','6647','EPSG','3527',0); INSERT INTO "compound_crs" VALUES('EPSG','6656','NAD83(CSRS) / UTM zone 13N + CGVD2013 height',NULL,NULL,'EPSG','2957','EPSG','6647','EPSG','3526',0); INSERT INTO "compound_crs" VALUES('EPSG','6657','NAD83(CSRS) / UTM zone 14N + CGVD2013 height',NULL,NULL,'EPSG','3158','EPSG','6647','EPSG','3413',0); INSERT INTO "compound_crs" VALUES('EPSG','6658','NAD83(CSRS) / UTM zone 15N + CGVD2013 height',NULL,NULL,'EPSG','3159','EPSG','6647','EPSG','3414',0); INSERT INTO "compound_crs" VALUES('EPSG','6659','NAD83(CSRS) / UTM zone 16N + CGVD2013 height',NULL,NULL,'EPSG','3160','EPSG','6647','EPSG','3415',0); INSERT INTO "compound_crs" VALUES('EPSG','6660','NAD83(CSRS) / UTM zone 17N + CGVD2013 height',NULL,NULL,'EPSG','2958','EPSG','6647','EPSG','3416',0); INSERT INTO "compound_crs" VALUES('EPSG','6661','NAD83(CSRS) / UTM zone 18N + CGVD2013 height',NULL,NULL,'EPSG','2959','EPSG','6647','EPSG','3417',0); INSERT INTO "compound_crs" VALUES('EPSG','6662','NAD83(CSRS) / UTM zone 19N + CGVD2013 height',NULL,NULL,'EPSG','2960','EPSG','6647','EPSG','3524',0); INSERT INTO "compound_crs" VALUES('EPSG','6663','NAD83(CSRS) / UTM zone 20N + CGVD2013 height',NULL,NULL,'EPSG','2961','EPSG','6647','EPSG','3525',0); INSERT INTO "compound_crs" VALUES('EPSG','6664','NAD83(CSRS) / UTM zone 21N + CGVD2013 height',NULL,NULL,'EPSG','2962','EPSG','6647','EPSG','2151',0); INSERT INTO "compound_crs" VALUES('EPSG','6665','NAD83(CSRS) / UTM zone 22N + CGVD2013 height',NULL,NULL,'EPSG','3761','EPSG','6647','EPSG','2152',0); INSERT INTO "compound_crs" VALUES('EPSG','6696','JGD2000 + JGD2000 (vertical) height',NULL,NULL,'EPSG','4612','EPSG','6694','EPSG','3263',0); INSERT INTO "compound_crs" VALUES('EPSG','6697','JGD2011 + JGD2011 (vertical) height',NULL,NULL,'EPSG','6668','EPSG','6695','EPSG','3263',0); INSERT INTO "compound_crs" VALUES('EPSG','6700','Tokyo + JSLD72 height',NULL,NULL,'EPSG','4301','EPSG','6693','EPSG','4168',0); INSERT INTO "compound_crs" VALUES('EPSG','6871','WGS 84 / Pseudo-Mercator + EGM2008 geoid height',NULL,NULL,'EPSG','3857','EPSG','3855','EPSG','1262',1); INSERT INTO "compound_crs" VALUES('EPSG','6893','WGS 84 / World Mercator + EGM2008 height',NULL,NULL,'EPSG','3395','EPSG','3855','EPSG','1262',0); INSERT INTO "compound_crs" VALUES('EPSG','6917','SVY21 + SHD height',NULL,NULL,'EPSG','4757','EPSG','6916','EPSG','1210',0); INSERT INTO "compound_crs" VALUES('EPSG','6927','SVY21 / Singapore TM + SHD height',NULL,NULL,'EPSG','3414','EPSG','6916','EPSG','1210',0); INSERT INTO "compound_crs" VALUES('EPSG','7400','NTF (Paris) + NGF IGN69 height',NULL,NULL,'EPSG','4807','EPSG','5720','EPSG','1326',0); INSERT INTO "compound_crs" VALUES('EPSG','7401','NTF (Paris) / France II + NGF Lallemand',NULL,NULL,'EPSG','27582','EPSG','5719','EPSG','1326',1); INSERT INTO "compound_crs" VALUES('EPSG','7402','NTF (Paris) / France II + NGF IGN69',NULL,NULL,'EPSG','27582','EPSG','5720','EPSG','1326',1); INSERT INTO "compound_crs" VALUES('EPSG','7403','NTF (Paris) / France III + NGF IGN69',NULL,NULL,'EPSG','27583','EPSG','5720','EPSG','1733',1); INSERT INTO "compound_crs" VALUES('EPSG','7404','RT90 + RH70 height',NULL,NULL,'EPSG','4124','EPSG','5718','EPSG','3313',0); INSERT INTO "compound_crs" VALUES('EPSG','7405','OSGB 1936 / British National Grid + ODN height',NULL,NULL,'EPSG','27700','EPSG','5701','EPSG','2792',0); INSERT INTO "compound_crs" VALUES('EPSG','7406','NAD27 + NGVD29 height (ftUS)',NULL,NULL,'EPSG','4267','EPSG','5702','EPSG','1323',0); INSERT INTO "compound_crs" VALUES('EPSG','7407','NAD27 / Texas North + NGVD29 height (ftUS)',NULL,NULL,'EPSG','32037','EPSG','5702','EPSG','2253',0); INSERT INTO "compound_crs" VALUES('EPSG','7408','RD/NAP',NULL,NULL,'EPSG','4289','EPSG','5709','EPSG','1275',1); INSERT INTO "compound_crs" VALUES('EPSG','7409','ETRS89 + EVRF2000 height',NULL,NULL,'EPSG','4258','EPSG','5730','EPSG','1299',0); INSERT INTO "compound_crs" VALUES('EPSG','7410','PSHD93',NULL,NULL,'EPSG','4134','EPSG','5724','EPSG','3288',0); INSERT INTO "compound_crs" VALUES('EPSG','7411','NTF (Paris) / Lambert zone II + NGF Lallemand height',NULL,NULL,'EPSG','27572','EPSG','5719','EPSG','1326',0); INSERT INTO "compound_crs" VALUES('EPSG','7412','NTF (Paris) / Lambert zone II + NGF IGN69',NULL,NULL,'EPSG','27572','EPSG','5719','EPSG','1326',1); INSERT INTO "compound_crs" VALUES('EPSG','7413','NTF (Paris) / Lambert zone III + NGF IGN69',NULL,NULL,'EPSG','27573','EPSG','5719','EPSG','1733',1); INSERT INTO "compound_crs" VALUES('EPSG','7414','Tokyo + JSLD69 height',NULL,NULL,'EPSG','4301','EPSG','5723','EPSG','4166',0); INSERT INTO "compound_crs" VALUES('EPSG','7415','Amersfoort / RD New + NAP height',NULL,NULL,'EPSG','28992','EPSG','5709','EPSG','1275',0); INSERT INTO "compound_crs" VALUES('EPSG','7416','ETRS89 / UTM zone 32N + DVR90 height',NULL,NULL,'EPSG','25832','EPSG','5799','EPSG','3471',0); INSERT INTO "compound_crs" VALUES('EPSG','7417','ETRS89 / UTM zone 33N + DVR90 height',NULL,NULL,'EPSG','25833','EPSG','5799','EPSG','3472',0); INSERT INTO "compound_crs" VALUES('EPSG','7418','ETRS89 / Kp2000 Jutland + DVR90 height',NULL,NULL,'EPSG','2196','EPSG','5799','EPSG','2531',0); INSERT INTO "compound_crs" VALUES('EPSG','7419','ETRS89 / Kp2000 Zealand + DVR90 height',NULL,NULL,'EPSG','2197','EPSG','5799','EPSG','2532',0); INSERT INTO "compound_crs" VALUES('EPSG','7420','ETRS89 / Kp2000 Bornholm + DVR90 height',NULL,NULL,'EPSG','2198','EPSG','5799','EPSG','2533',0); INSERT INTO "compound_crs" VALUES('EPSG','7421','NTF (Paris) / Lambert zone II + NGF-IGN69 height',NULL,NULL,'EPSG','27572','EPSG','5720','EPSG','1326',0); INSERT INTO "compound_crs" VALUES('EPSG','7422','NTF (Paris) / Lambert zone III + NGF-IGN69 height',NULL,NULL,'EPSG','27573','EPSG','5720','EPSG','1733',0); INSERT INTO "compound_crs" VALUES('EPSG','7423','ETRS89 + EVRF2007 height',NULL,NULL,'EPSG','4258','EPSG','5621','EPSG','3594',0); INSERT INTO "compound_crs" VALUES('EPSG','7954','Astro DOS 71 / UTM zone 30S + Jamestown 1971 height',NULL,NULL,'EPSG','7878','EPSG','7888','EPSG','3183',0); INSERT INTO "compound_crs" VALUES('EPSG','7955','St. Helena Tritan / UTM zone 30S + Tritan 2011 height',NULL,NULL,'EPSG','7883','EPSG','7889','EPSG','3183',0); INSERT INTO "compound_crs" VALUES('EPSG','7956','SHMG2015 + SHVD2015 height',NULL,NULL,'EPSG','7887','EPSG','7890','EPSG','3183',0); INSERT INTO "compound_crs" VALUES('EPSG','8349','GR96 + GVR2000 height',NULL,NULL,'EPSG','4747','EPSG','8266','EPSG','4461',0); INSERT INTO "compound_crs" VALUES('EPSG','8350','GR96 + GVR2016 height',NULL,NULL,'EPSG','4747','EPSG','8267','EPSG','4454',0); INSERT INTO "compound_crs" VALUES('EPSG','8360','ETRS89 + Baltic 1957 height',NULL,NULL,'EPSG','4258','EPSG','8357','EPSG','1306',0); INSERT INTO "compound_crs" VALUES('EPSG','8370','ETRS89 / Belgian Lambert 2008 + Ostend height',NULL,NULL,'EPSG','3812','EPSG','5710','EPSG','1347',0); INSERT INTO "compound_crs" VALUES('EPSG','8700','NAD83 / Arizona East (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2222','EPSG','8228','EPSG','2167',0); INSERT INTO "compound_crs" VALUES('EPSG','8701','NAD83 / Arizona Central (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2223','EPSG','8228','EPSG','2166',0); INSERT INTO "compound_crs" VALUES('EPSG','8702','NAD83 / Arizona West (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2224','EPSG','8228','EPSG','2168',0); INSERT INTO "compound_crs" VALUES('EPSG','8703','NAD83 / Michigan North (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2251','EPSG','8228','EPSG','1723',0); INSERT INTO "compound_crs" VALUES('EPSG','8704','NAD83 / Michigan Central (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2252','EPSG','8228','EPSG','1724',0); INSERT INTO "compound_crs" VALUES('EPSG','8705','NAD83 / Michigan South (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2253','EPSG','8228','EPSG','1725',0); INSERT INTO "compound_crs" VALUES('EPSG','8706','NAD83 / Montana (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2256','EPSG','8228','EPSG','1395',0); INSERT INTO "compound_crs" VALUES('EPSG','8707','NAD83 / North Dakota North (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2265','EPSG','8228','EPSG','2237',0); INSERT INTO "compound_crs" VALUES('EPSG','8708','NAD83 / North Dakota South (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2266','EPSG','8228','EPSG','2238',0); INSERT INTO "compound_crs" VALUES('EPSG','8709','NAD83 / Oregon North (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2269','EPSG','8228','EPSG','2243',0); INSERT INTO "compound_crs" VALUES('EPSG','8710','NAD83 / Oregon South (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2270','EPSG','8228','EPSG','2244',0); INSERT INTO "compound_crs" VALUES('EPSG','8711','NAD83 / South Carolina (ft) + NAVD88 height (ft)',NULL,NULL,'EPSG','2273','EPSG','8228','EPSG','1409',0); INSERT INTO "compound_crs" VALUES('EPSG','8712','NAD83 / Arkansas North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3433','EPSG','6360','EPSG','2169',0); INSERT INTO "compound_crs" VALUES('EPSG','8713','NAD83 / Arkansas South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3434','EPSG','6360','EPSG','2170',0); INSERT INTO "compound_crs" VALUES('EPSG','8714','NAD83 / California zone 1 (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2225','EPSG','6360','EPSG','2175',0); INSERT INTO "compound_crs" VALUES('EPSG','8715','NAD83 / California zone 2 (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2226','EPSG','6360','EPSG','2176',0); INSERT INTO "compound_crs" VALUES('EPSG','8716','NAD83 / California zone 3 (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2227','EPSG','6360','EPSG','2177',0); INSERT INTO "compound_crs" VALUES('EPSG','8717','NAD83 / California zone 4 (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2228','EPSG','6360','EPSG','2178',0); INSERT INTO "compound_crs" VALUES('EPSG','8718','NAD83 / California zone 5 (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2229','EPSG','6360','EPSG','2182',0); INSERT INTO "compound_crs" VALUES('EPSG','8719','NAD83 / California zone 6 (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2230','EPSG','6360','EPSG','2180',0); INSERT INTO "compound_crs" VALUES('EPSG','8720','NAD83 / Colorado North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2231','EPSG','6360','EPSG','2184',0); INSERT INTO "compound_crs" VALUES('EPSG','8721','NAD83 / Colorado Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2232','EPSG','6360','EPSG','2183',0); INSERT INTO "compound_crs" VALUES('EPSG','8722','NAD83 / Colorado South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2233','EPSG','6360','EPSG','2185',0); INSERT INTO "compound_crs" VALUES('EPSG','8723','NAD83 / Connecticut (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2234','EPSG','6360','EPSG','1377',0); INSERT INTO "compound_crs" VALUES('EPSG','8724','NAD83 / Delaware (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2235','EPSG','6360','EPSG','1378',0); INSERT INTO "compound_crs" VALUES('EPSG','8725','NAD83 / Florida North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2238','EPSG','6360','EPSG','2187',0); INSERT INTO "compound_crs" VALUES('EPSG','8726','NAD83 / Florida East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2236','EPSG','6360','EPSG','2186',0); INSERT INTO "compound_crs" VALUES('EPSG','8727','NAD83 / Florida West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2237','EPSG','6360','EPSG','2188',0); INSERT INTO "compound_crs" VALUES('EPSG','8728','NAD83 / Georgia East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2239','EPSG','6360','EPSG','2189',0); INSERT INTO "compound_crs" VALUES('EPSG','8729','NAD83 / Georgia West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2240','EPSG','6360','EPSG','2190',0); INSERT INTO "compound_crs" VALUES('EPSG','8730','NAD83 / Idaho East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2241','EPSG','6360','EPSG','2192',0); INSERT INTO "compound_crs" VALUES('EPSG','8731','NAD83 / Idaho Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2242','EPSG','6360','EPSG','2191',0); INSERT INTO "compound_crs" VALUES('EPSG','8732','NAD83 / Idaho West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2243','EPSG','6360','EPSG','2193',0); INSERT INTO "compound_crs" VALUES('EPSG','8733','NAD83 / Illinois East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3435','EPSG','6360','EPSG','2194',0); INSERT INTO "compound_crs" VALUES('EPSG','8734','NAD83 / Illinois West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3436','EPSG','6360','EPSG','2195',0); INSERT INTO "compound_crs" VALUES('EPSG','8735','NAD83 / Indiana East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2965','EPSG','6360','EPSG','2196',0); INSERT INTO "compound_crs" VALUES('EPSG','8736','NAD83 / Indiana West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2966','EPSG','6360','EPSG','2197',0); INSERT INTO "compound_crs" VALUES('EPSG','8737','NAD83 / Iowa North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3417','EPSG','6360','EPSG','2198',0); INSERT INTO "compound_crs" VALUES('EPSG','8738','NAD83 / Iowa South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3418','EPSG','6360','EPSG','2199',0); INSERT INTO "compound_crs" VALUES('EPSG','8739','NAD83 / Kansas North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3419','EPSG','6360','EPSG','2200',0); INSERT INTO "compound_crs" VALUES('EPSG','8740','NAD83 / Kansas South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3420','EPSG','6360','EPSG','2201',0); INSERT INTO "compound_crs" VALUES('EPSG','8741','NAD83 / Kentucky North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2246','EPSG','6360','EPSG','2202',0); INSERT INTO "compound_crs" VALUES('EPSG','8742','NAD83 / Kentucky South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2247','EPSG','6360','EPSG','2203',0); INSERT INTO "compound_crs" VALUES('EPSG','8743','NAD83 / Louisiana North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3451','EPSG','6360','EPSG','2204',0); INSERT INTO "compound_crs" VALUES('EPSG','8744','NAD83 / Louisiana South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3452','EPSG','6360','EPSG','2529',0); INSERT INTO "compound_crs" VALUES('EPSG','8745','NAD83 / Maine East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','26847','EPSG','6360','EPSG','2206',0); INSERT INTO "compound_crs" VALUES('EPSG','8746','NAD83 / Maine West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','26848','EPSG','6360','EPSG','2207',0); INSERT INTO "compound_crs" VALUES('EPSG','8747','NAD83 / Maryland (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2248','EPSG','6360','EPSG','1389',0); INSERT INTO "compound_crs" VALUES('EPSG','8748','NAD83 / Massachusetts Mainland (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2249','EPSG','6360','EPSG','2209',0); INSERT INTO "compound_crs" VALUES('EPSG','8749','NAD83 / Massachusetts Island (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2250','EPSG','6360','EPSG','2208',0); INSERT INTO "compound_crs" VALUES('EPSG','8750','NAD83 / Minnesota North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','26849','EPSG','6360','EPSG','2214',0); INSERT INTO "compound_crs" VALUES('EPSG','8751','NAD83 / Minnesota Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','26850','EPSG','6360','EPSG','2213',0); INSERT INTO "compound_crs" VALUES('EPSG','8752','NAD83 / Minnesota South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','26851','EPSG','6360','EPSG','2215',0); INSERT INTO "compound_crs" VALUES('EPSG','8753','NAD83 / Mississippi East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2254','EPSG','6360','EPSG','2216',0); INSERT INTO "compound_crs" VALUES('EPSG','8754','NAD83 / Mississippi West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2255','EPSG','6360','EPSG','2217',0); INSERT INTO "compound_crs" VALUES('EPSG','8755','NAD83 / Nebraska (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','26852','EPSG','6360','EPSG','1396',0); INSERT INTO "compound_crs" VALUES('EPSG','8756','NAD83 / Nevada East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3421','EPSG','6360','EPSG','2224',0); INSERT INTO "compound_crs" VALUES('EPSG','8757','NAD83 / Nevada Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3422','EPSG','6360','EPSG','2223',0); INSERT INTO "compound_crs" VALUES('EPSG','8758','NAD83 / Nevada West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3423','EPSG','6360','EPSG','2225',0); INSERT INTO "compound_crs" VALUES('EPSG','8759','NAD83 / New Hampshire (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3437','EPSG','6360','EPSG','1398',0); INSERT INTO "compound_crs" VALUES('EPSG','8760','NAD83 / New Jersey (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3424','EPSG','6360','EPSG','1399',0); INSERT INTO "compound_crs" VALUES('EPSG','8761','NAD83 / New Mexico East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2257','EPSG','6360','EPSG','2228',0); INSERT INTO "compound_crs" VALUES('EPSG','8762','NAD83 / New Mexico Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2258','EPSG','6360','EPSG','2231',0); INSERT INTO "compound_crs" VALUES('EPSG','8763','NAD83 / New Mexico West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2259','EPSG','6360','EPSG','2232',0); INSERT INTO "compound_crs" VALUES('EPSG','8764','NAD83 / New York East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2260','EPSG','6360','EPSG','2234',0); INSERT INTO "compound_crs" VALUES('EPSG','8765','NAD83 / New York Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2261','EPSG','6360','EPSG','2233',0); INSERT INTO "compound_crs" VALUES('EPSG','8766','NAD83 / New York West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2262','EPSG','6360','EPSG','2236',0); INSERT INTO "compound_crs" VALUES('EPSG','8767','NAD83 / New York Long Island (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2263','EPSG','6360','EPSG','2235',0); INSERT INTO "compound_crs" VALUES('EPSG','8768','NAD83 / North Carolina (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2264','EPSG','6360','EPSG','1402',0); INSERT INTO "compound_crs" VALUES('EPSG','8769','NAD83 / Ohio North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3734','EPSG','6360','EPSG','2239',0); INSERT INTO "compound_crs" VALUES('EPSG','8770','NAD83 / Ohio South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3735','EPSG','6360','EPSG','2240',0); INSERT INTO "compound_crs" VALUES('EPSG','8771','NAD83 / Oklahoma North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2267','EPSG','6360','EPSG','2241',0); INSERT INTO "compound_crs" VALUES('EPSG','8772','NAD83 / Oklahoma South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2268','EPSG','6360','EPSG','2242',0); INSERT INTO "compound_crs" VALUES('EPSG','8773','NAD83 / Pennsylvania North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2271','EPSG','6360','EPSG','2245',0); INSERT INTO "compound_crs" VALUES('EPSG','8774','NAD83 / Pennsylvania South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2272','EPSG','6360','EPSG','2246',0); INSERT INTO "compound_crs" VALUES('EPSG','8775','NAD83 / Rhode Island (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3438','EPSG','6360','EPSG','1408',0); INSERT INTO "compound_crs" VALUES('EPSG','8776','NAD83 / South Dakota North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','4457','EPSG','6360','EPSG','2249',0); INSERT INTO "compound_crs" VALUES('EPSG','8777','NAD83 / South Dakota South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3455','EPSG','6360','EPSG','2250',0); INSERT INTO "compound_crs" VALUES('EPSG','8778','NAD83 / Tennessee (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2274','EPSG','6360','EPSG','1411',0); INSERT INTO "compound_crs" VALUES('EPSG','8779','NAD83 / Texas North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2275','EPSG','6360','EPSG','2253',0); INSERT INTO "compound_crs" VALUES('EPSG','8780','NAD83 / Texas North Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2276','EPSG','6360','EPSG','2254',0); INSERT INTO "compound_crs" VALUES('EPSG','8781','NAD83 / Texas Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2277','EPSG','6360','EPSG','2252',0); INSERT INTO "compound_crs" VALUES('EPSG','8782','NAD83 / Texas South Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2278','EPSG','6360','EPSG','2527',0); INSERT INTO "compound_crs" VALUES('EPSG','8783','NAD83 / Texas South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2279','EPSG','6360','EPSG','2528',0); INSERT INTO "compound_crs" VALUES('EPSG','8784','NAD83 / Utah North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3560','EPSG','6360','EPSG','2258',0); INSERT INTO "compound_crs" VALUES('EPSG','8785','NAD83 / Utah Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3566','EPSG','6360','EPSG','2257',0); INSERT INTO "compound_crs" VALUES('EPSG','8786','NAD83 / Utah South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3567','EPSG','6360','EPSG','2259',0); INSERT INTO "compound_crs" VALUES('EPSG','8787','NAD83 / Vermont (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','5646','EPSG','6360','EPSG','1414',0); INSERT INTO "compound_crs" VALUES('EPSG','8788','NAD83 / Virginia North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2283','EPSG','6360','EPSG','2260',0); INSERT INTO "compound_crs" VALUES('EPSG','8789','NAD83 / Virginia South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2284','EPSG','6360','EPSG','2261',0); INSERT INTO "compound_crs" VALUES('EPSG','8790','NAD83 / Washington North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2285','EPSG','6360','EPSG','2273',0); INSERT INTO "compound_crs" VALUES('EPSG','8791','NAD83 / Washington South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2286','EPSG','6360','EPSG','2274',0); INSERT INTO "compound_crs" VALUES('EPSG','8792','NAD83 / West Virginia North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','26853','EPSG','6360','EPSG','2264',0); INSERT INTO "compound_crs" VALUES('EPSG','8793','NAD83 / West Virginia South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','26854','EPSG','6360','EPSG','2265',0); INSERT INTO "compound_crs" VALUES('EPSG','8794','NAD83 / Wisconsin North (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2287','EPSG','6360','EPSG','2267',0); INSERT INTO "compound_crs" VALUES('EPSG','8795','NAD83 / Wisconsin Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2288','EPSG','6360','EPSG','2266',0); INSERT INTO "compound_crs" VALUES('EPSG','8796','NAD83 / Wisconsin South (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','2289','EPSG','6360','EPSG','2268',0); INSERT INTO "compound_crs" VALUES('EPSG','8797','NAD83 / Wyoming East (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3736','EPSG','6360','EPSG','2269',0); INSERT INTO "compound_crs" VALUES('EPSG','8798','NAD83 / Wyoming East Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3737','EPSG','6360','EPSG','2270',0); INSERT INTO "compound_crs" VALUES('EPSG','8799','NAD83 / Wyoming West Central (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3738','EPSG','6360','EPSG','2272',0); INSERT INTO "compound_crs" VALUES('EPSG','8800','NAD83 / Wyoming West (ftUS) + NAVD88 height (ftUS)',NULL,NULL,'EPSG','3739','EPSG','6360','EPSG','2271',0); INSERT INTO "compound_crs" VALUES('EPSG','8801','NAD83 / Alabama East + NAVD88 height',NULL,NULL,'EPSG','26929','EPSG','5703','EPSG','2154',0); INSERT INTO "compound_crs" VALUES('EPSG','8802','NAD83 / Alabama West + NAVD88 height',NULL,NULL,'EPSG','26930','EPSG','5703','EPSG','2155',0); INSERT INTO "compound_crs" VALUES('EPSG','8803','NAD83 / Alaska zone 1 + NAVD88 height',NULL,NULL,'EPSG','26931','EPSG','5703','EPSG','2156',0); INSERT INTO "compound_crs" VALUES('EPSG','8804','NAD83 / Alaska zone 2 + NAVD88 height',NULL,NULL,'EPSG','26932','EPSG','5703','EPSG','2158',0); INSERT INTO "compound_crs" VALUES('EPSG','8805','NAD83 / Alaska zone 3 + NAVD88 height',NULL,NULL,'EPSG','26933','EPSG','5703','EPSG','2159',0); INSERT INTO "compound_crs" VALUES('EPSG','8806','NAD83 / Alaska zone 4 + NAVD88 height',NULL,NULL,'EPSG','26934','EPSG','5703','EPSG','2160',0); INSERT INTO "compound_crs" VALUES('EPSG','8807','NAD83 / Alaska zone 5 + NAVD88 height',NULL,NULL,'EPSG','26935','EPSG','5703','EPSG','2161',0); INSERT INTO "compound_crs" VALUES('EPSG','8808','NAD83 / Alaska zone 6 + NAVD88 height',NULL,NULL,'EPSG','26936','EPSG','5703','EPSG','2162',0); INSERT INTO "compound_crs" VALUES('EPSG','8809','NAD83 / Alaska zone 7 + NAVD88 height',NULL,NULL,'EPSG','26937','EPSG','5703','EPSG','2163',0); INSERT INTO "compound_crs" VALUES('EPSG','8810','NAD83 / Alaska zone 8 + NAVD88 height',NULL,NULL,'EPSG','26938','EPSG','5703','EPSG','2164',0); INSERT INTO "compound_crs" VALUES('EPSG','8811','NAD83 / Alaska zone 9 + NAVD88 height',NULL,NULL,'EPSG','26939','EPSG','5703','EPSG','2165',0); INSERT INTO "compound_crs" VALUES('EPSG','8812','NAD83 / Alaska zone 10 + NAVD88 height',NULL,NULL,'EPSG','26940','EPSG','5703','EPSG','2157',0); INSERT INTO "compound_crs" VALUES('EPSG','8813','NAD83 / Missouri East + NAVD88 height',NULL,NULL,'EPSG','26996','EPSG','5703','EPSG','2219',0); INSERT INTO "compound_crs" VALUES('EPSG','8814','NAD83 / Missouri Central + NAVD88 height',NULL,NULL,'EPSG','26997','EPSG','5703','EPSG','2218',0); INSERT INTO "compound_crs" VALUES('EPSG','8815','NAD83 / Missouri West + NAVD88 height',NULL,NULL,'EPSG','26998','EPSG','5703','EPSG','2220',0); INSERT INTO "compound_crs" VALUES('EPSG','8912','CR-SIRGAS / CRTM05 + DACR52 height',NULL,NULL,'EPSG','8908','EPSG','8911','EPSG','3232',0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "helmert_transformation" VALUES('EPSG','1024','MGI to ETRS89 (4)','Parameter values from MGI to WGS 84 (8) (tfm code 1194). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. Information source gives scale as -2.388739 ppm.','For applications to an accuracy of 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4258','EPSG','1543',1.0,601.705,84.263,485.227,'EPSG','9001',-4.7354,-1.3145,-5.393,'EPSG','9104',-2.3887,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LBD-Aut Sty',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1055','Ain el Abd to WGS 84 (3)','Derived at station K1.','1 metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4204','EPSG','4326','EPSG','3267',1.0,-145.7,-249.1,1.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'WGC-Kwt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1056','Ain el Abd to WGS 84 (4)','Derivation is more precise, but no evidence that accuracy is better than Ain el Abd to WGS 84 (3). OGP recommends using Ain el Abd to WGS 84 (3).','1 metre accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4204','EPSG','4326','EPSG','3267',1.0,-85.645,-273.077,-79.708,'EPSG','9001',-2.289,1.421,-2.532,'EPSG','9104',3.194,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Par-Kwt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1057','Ain el Abd to WGS 84 (5)','.','1 metre accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4204','EPSG','4326','EPSG','2956',1.0,-202.234,-168.351,-63.51,'EPSG','9001',-3.545,-0.659,1.945,'EPSG','9104',2.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Par-Kwt N',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1058','Ain el Abd to WGS 84 (6)','','1 metre accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4204','EPSG','4326','EPSG','2957',1.0,-18.944,-379.364,-24.063,'EPSG','9001',-0.04,0.764,-6.431,'EPSG','9104',3.657,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Par-Kwt S',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1059','KOC to WGS 84 (1)','','1 metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4246','EPSG','4326','EPSG','3267',1.0,-294.7,-200.1,525.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'WGC-Kwt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1060','NGN to WGS 84 (1)','','1 metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4318','EPSG','4326','EPSG','3267',1.0,-3.2,-5.7,2.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mun-Kwt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1061','Kudams to WGS 84 (1)','','For applications requiring an accuracy of better than 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4319','EPSG','4326','EPSG','1310',1.0,-20.8,11.3,2.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mun-Kwt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1062','Kudams to WGS 84 (2)','','For applications requiring an accuracy of better than 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4319','EPSG','4326','EPSG','1310',1.0,226.702,-193.337,-35.371,'EPSG','9001',2.229,4.391,-9.238,'EPSG','9104',0.9798,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Par-Kwt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1063','Vientiane 1982 to Lao 1997 (1)','Derived at 8 stations.','Accuracy 2m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4676','EPSG','4678','EPSG','1138',2.0,-2.227,6.524,2.178,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGD-Lao',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1064','Lao 1993 to Lao 1997 (1)','Derived at 25 stations.','Accuracy 0.15m','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4677','EPSG','4678','EPSG','1138',0.15,-0.652,1.619,0.213,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGD-Lao',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1065','Lao 1997 to WGS 84 (1)','Derived at 25 stations.','Accuracy 5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4678','EPSG','4326','EPSG','1138',5.0,44.585,-131.212,-39.544,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGD-Lao',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1066','Amersfoort to ETRS89 (2)','Replaced by Amersfoort to ETRS89 (4) (tfm code 15740). Dutch sources also quote an equivalent transformation using the Coordinate Frame 7-parameter method - see tfm code 1751.','Accuracy 0.5m','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4289','EPSG','4258','EPSG','1275',0.5,593.032,26.0,478.741,'EPSG','9001',1.9848,-1.7439,9.0587,'EPSG','9109',4.0772,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3903453.148,368135.313,5012970.306,'EPSG','9001','NCG-Nld 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1067','Minna to WGS 84 (11)','Used by Statoil for deep water blocks 210, 213, 217 and 218. Parameter values interpolated from Racal Survey geocentric translation contour charts for each of these four blocks and then meaned.','Oil industry exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','3817',8.0,-92.1,-89.9,114.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stat-Nga',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1070','Guam 1963 to WGS 84 (1)','Derived at 5 stations.','For military purposes only. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4675','EPSG','4326','EPSG','3255',6.0,-100.0,-248.0,259.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Gum',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1071','Palestine 1923 to Israel (1)','For more accurate transformation contact Survey of Israel.','Accuracy: 1.5m','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4281','EPSG','4141','EPSG','2603',1.5,-181.0,-122.0,225.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SoI-Isr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1073','Israel to WGS 84 (1)','For more accurate transformation contact Survey of Israel.','Accuracy: 2m','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4141','EPSG','4326','EPSG','2603',2.0,-48.0,55.0,52.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SoI-Isr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1074','Palestine 1923 to WGS 84 (1)','Not recognised by Survey of Israel. See Palestine 1923 to WGS 84 (2) (code 8650).','Oil Exploration. Accuracy: 1m to north and 5m to south of east-west line through Beersheba (31°15''N).','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4281','EPSG','4326','EPSG','2603',2.0,-275.7224,94.7824,340.8944,'EPSG','9001',-8.001,-4.42,-11.821,'EPSG','9104',1.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Isr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1075','ED50 to WGS 84 (38)','Derived in 1987 by Geodetic for TPAO. Used on BP 1991/92 2D seismic surveys in central and eastern Turkish sector of Black Sea. In Turkey, replaced by tfm code 1784. Also adopted for use offshore Israel.','Oil Exploration','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2896',10.0,-89.05,-87.03,-124.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TPAO-Tur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1078','Luxembourg 1930 to ETRS89 (2)','May be taken as approximate transformation Luxembourg 1930 to WGS 84 - see code 1079. Replaced by Luxembourg 1930 to ETRS89 (3) (code 5483).','For applications to an accuracy of 0.1 metre.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4181','EPSG','4258','EPSG','1146',0.1,-265.983,76.918,20.182,'EPSG','9001',0.4099,2.9332,-2.6881,'EPSG','9104',0.43,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4098647.674,442843.139,4851251.093,'EPSG','9001','ACT-Lux 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1079','Luxembourg 1930 to WGS 84 (2)','Parameter values from Luxembourg 1930 to ETRS89 (2) (code 1078). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 0.5 metre.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4181','EPSG','4326','EPSG','1146',0.5,-265.983,76.918,20.182,'EPSG','9001',0.4099,2.9332,-2.6881,'EPSG','9104',0.43,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4098647.674,442843.139,4851251.093,'EPSG','9001','EPSG-Lux 0.5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1080','CI1971 to WGS 84 (1)','Derived at 4 stations.','For military purposes. Accuracy 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4672','EPSG','4326','EPSG','2889',26.0,175.0,-38.0,113.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Nzl CI',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1081','CI1979 to WGS 84 (1)','Derived at 4 stations using concatenation through WGS72. Parameter vales are also used to transform CI1979 to NZGD2000 - see tfm code 1082.','For applications requiring 2m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4673','EPSG','4326','EPSG','2889',2.0,174.05,-25.49,112.57,'EPSG','9001',0.0,0.0,-0.554,'EPSG','9104',0.2263,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Nzl CI',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1082','CI1979 to NZGD2000 (1)','Parameter vales are from CI1979 to WGS 84 (1) (code 1081) assuming that WGS 84 is equivalent to NZGD2000 within the accuracy of the transformation.','For applications requiring 2m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4673','EPSG','4167','EPSG','2889',2.0,174.05,-25.49,112.57,'EPSG','9001',0.0,0.0,-0.554,'EPSG','9104',0.2263,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Nzl CI',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1083','JAD69 to WGS 72 (2)','Derived in 1981 through Transit observations at 4 stations by Geodetic Survey for Petroleum Corporation of Jamaica.','For oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4242','EPSG','4322','EPSG','3342',10.0,50.0,212.0,381.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PC-Jam',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1084','JAD69 to WGS 84 (1)','Derived via NAD27 and WGS 72. Preliminary values derived by Survey Department but not officially promulgated.','For applications requiring 5m accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4242','EPSG','4326','EPSG','3342',5.0,70.0,207.0,389.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UT-Jam 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1085','JAD69 to WGS 84 (2)','Derived at 4 stations, tested at a further 9.','For applications requiring 2m accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4242','EPSG','4326','EPSG','3342',2.0,65.334,212.46,387.63,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UT-Jam 2m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1086','JAD69 to WGS 84 (3)','Derived at 4 stations, tested at a further 9.','For applications requiring 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4242','EPSG','4326','EPSG','3342',1.0,-33.722,153.789,94.959,'EPSG','9001',8.581,4.478,-4.54,'EPSG','9104',-8.95,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UT-Jam 1m',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1087','ED50 to WGS 84 (37)','','Topographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1130',2.5,-112.0,-110.3,-140.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'RJGC-Jor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1088','Monte Mario to WGS 84 (5)','','Oil exploration and production','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2882',10.0,-223.7,-67.38,1.34,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENI-Ita Adr N Anc',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1089','Monte Mario to WGS 84 (6)','','Oil exploration and production','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2883',10.0,-225.4,-67.7,7.85,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENI-Ita Adr Anc-Gar',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1090','Monte Mario to WGS 84 (7)','','Oil exploration and production','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2884',10.0,-227.1,-68.1,14.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENI-Ita Adr S Gar',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1091','Monte Mario to WGS 84 (8)','','Marine navigation','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2885',10.0,-231.61,-68.21,13.93,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENI-Ita Otr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1092','Monte Mario to WGS 84 (9)','','Marine navigation','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2886',10.0,-225.06,-67.37,14.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENI-Ita N Jon',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1093','Monte Mario to WGS 84 (10)','','Marine navigation','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2887',10.0,-229.08,-65.73,20.21,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENI-Ita E Sic',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1094','Monte Mario to WGS 84 (11)','','Marine navigation','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2888',10.0,-230.47,-56.08,22.43,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENI-Ita W Sic',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1095','PSAD56 to WGS 84 (13)','Parameter values are from PSAD56 to REGVEN (1) (code 1769) assuming that REGVEN is equivalent to WGS 84 within the accuracy of the transformation.','Spatial referencing.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4248','EPSG','4326','EPSG','3327',15.0,-270.933,115.599,-360.226,'EPSG','9001',-5.266,-1.238,2.381,'EPSG','9104',-5.109,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2464351.59,-5783466.61,974809.81,'EPSG','9001','EPSG-Ven',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1096','La Canoa to WGS 84 (13)','Parameter values are from La Canoa to REGVEN (1) (code 1771) assuming that REGVEN is equivalent to WGS 84 within the accuracy of the transformation.','Spatial referencing.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4247','EPSG','4326','EPSG','3327',15.0,-270.933,115.599,-360.226,'EPSG','9001',-5.266,-1.238,2.381,'EPSG','9104',-5.109,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2464351.59,-5783466.61,974809.81,'EPSG','9001','EPSG-Ven',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1097','Dealul Piscului 1970 to WGS 84 (2)','Parameter values taken from Pulkovo 1942 to WGS 84 (9) (code 1293) assuming that Pulkovo 1942 in Romania is equivalent to Dealul Piscului 1970.','Accuracy 3m, 5m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4317','EPSG','4326','EPSG','1197',7.0,28.0,-121.0,-77.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Rom',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1098','IGM95 to ETRS89 (1)','May be taken as approximate transformation IGM95 to WGS 84 - see code 1099.','IGM95 is a realization of ETRS89.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4670','EPSG','4258','EPSG','3343',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Ita',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1099','IGM95 to WGS 84 (1)','Parameter values taken from IGM95 to ETRS89 (1) (code 1098) assuming that ETRS89 is coincident with WGS 84 within the accuracy of the transformation.','Approximation at the 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4670','EPSG','4326','EPSG','3343',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Ita',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1100','Adindan to WGS 84 (1)','Derived at 22 stations.','For military purposes only. Accuracy 5m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4201','EPSG','4326','EPSG','1271',9.0,-166.0,-15.0,204.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Eth Sud',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1101','Adindan to WGS 84 (2)','Derived at 1 station connected to the Adindan (Blue Nile 1958) network through the 1968-69 12th parallel traverse. Note: the Adindan (Blue Nile 1958) CRS is used in Ethiopia and Sudan, not Burkino Faso.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4201','EPSG','4326','EPSG','1057',44.0,-118.0,-14.0,218.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bfa',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1102','Adindan to WGS 84 (3)','Derived at 1 station connected to the Adindan (Blue Nile 1958) network through the 1968-69 12th parallel traverse. Note: the Adindan (Blue Nile 1958) CRS is used in Ethiopia and Sudan, not Cameroon.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4201','EPSG','4326','EPSG','3226',44.0,-134.0,-2.0,210.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cmr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1103','Adindan to WGS 84 (4)','Derived at 8 stations.','For military purposes. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4201','EPSG','4326','EPSG','1091',6.0,-165.0,-11.0,206.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Eth',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1104','Adindan to WGS 84 (5)','Derived at 1 station connected to the Adindan (Blue Nile 1958) network through the 1968-69 12th parallel traverse. Note: the Adindan (Blue Nile 1958) CRS is used in Ethiopia and Sudan, not Mali.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4201','EPSG','4326','EPSG','1153',44.0,-123.0,-20.0,220.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Mli',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1105','Adindan to WGS 84 (6)','Derived at 2 stations connected to the Adindan (Blue Nile 1958) network through the 1968-69 12th parallel traverse. Note: The Adindan (Blue Nile 1958) CRS is used in Ethiopia and Sudan, not Senegal.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4201','EPSG','4326','EPSG','3304',44.0,-128.0,-18.0,224.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Sen',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1106','Adindan to WGS 84 (7)','Derived at 14 stations.','For military purposes. Accuracy 3m, 5m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4201','EPSG','4326','EPSG','3311',7.0,-161.0,-14.0,205.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Sud',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1107','Afgooye to WGS 84 (1)','Derived at 1 station.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4205','EPSG','4326','EPSG','3308',44.0,-43.0,-163.0,45.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Som',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1108','AGD66 to WGS 84 (1)','Derived at 105 stations. Replaced by AGD66 to WGS 84 (20) (code 6905).','For military purposes only. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','2575',6.0,-133.0,-48.0,148.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Aus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1109','AGD84 to WGS 84 (1)','Derived at 90 stations. Note: AGD84 officially adopted only in Queensland, South Australia and Western Australia.','For military purposes only. Accuracy 2m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4203','EPSG','4326','EPSG','2576',4.0,-134.0,-48.0,149.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Aus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1110','Ain el Abd to WGS 84 (1)','Derived at 2 stations.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4204','EPSG','4326','EPSG','3943',44.0,-150.0,-250.0,-1.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bhr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1111','Ain el Abd to WGS 84 (2)','Derived at 9 stations.','For military purposes. Accuracy 10m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4204','EPSG','4326','EPSG','3303',18.0,-143.0,-236.0,7.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Sau',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1112','Amersfoort to WGS 84 (1)','Replaced by Amersfoort to WGS 84 (2) (code 1672).','Not known.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4289','EPSG','4326','EPSG','1275',1.0,593.16,26.15,478.54,'EPSG','9001',-6.3239,-0.5008,-5.5487,'EPSG','9109',4.0775,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NCG-Nld 93',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1113','Arc 1950 to WGS 84 (1)','Derived at 41 stations.','For military purposes only. Accuracy 20m, 33m and 20m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','2312',44.0,-143.0,-90.0,-294.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-mean',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1114','Arc 1950 to WGS 84 (2)','Derived at 9 stations.','For military purposes. Accuracy 3m, 5m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','1051',7.0,-138.0,-105.0,-289.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bwa',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1115','Arc 1950 to WGS 84 (3)','Derived at 3 stations.','For military purposes. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','1058',35.0,-153.0,-5.0,-292.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bdi',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1116','Arc 1950 to WGS 84 (4)','Derived at 5 stations.','For military purposes. Accuracy 3m, 3m and 8m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','1141',10.0,-125.0,-108.0,-295.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Lso',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1117','Arc 1950 to WGS 84 (5)','Derived at 6 stations.','For military purposes. Accuracy 9m, 24m and 8m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','1150',27.0,-161.0,-73.0,-317.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Mwi',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1118','Arc 1950 to WGS 84 (6)','Derived at 4 stations.','For military purposes. Accuracy 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','1224',26.0,-134.0,-105.0,-295.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Swz',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1119','Arc 1950 to WGS 84 (7)','Derived at 2 stations.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','1259',25.0,-169.0,-19.0,-278.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cod',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1120','Arc 1950 to WGS 84 (8)','Derived at 5 stations.','For military purposes. Accuracy 21m, 21m and 27m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','1260',41.0,-147.0,-74.0,-283.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Zmb',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1121','Arc 1950 to WGS 84 (9)','Derived at 10 stations. Replaced by Arc 1950 to WGS 84 (10), tfm code 6906.','For military purposes. Accuracy 5m, 8m and 11m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','1261',15.0,-142.0,-96.0,-293.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Zwe',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1122','Arc 1960 to WGS 84 (1)','Derived at 25 stations.','For military purposes only. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4210','EPSG','4326','EPSG','2311',35.0,-160.0,-6.0,-302.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ken Tza',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1123','Batavia to WGS 84 (1)','Note: The area of use cited for this transformation (Sumatra) is not consistent with the area of use (Java) for the Batavia (Genuk) coordinate reference system. Derived at 5 stations.','For military purposes. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4211','EPSG','4326','EPSG','1355',6.0,-377.0,681.0,-50.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Idn Sumatra',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1124','Bermuda 1957 to WGS 84 (1)','Derived at 3 stations.','For military purposes. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4216','EPSG','4326','EPSG','3221',35.0,-73.0,213.0,296.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bmu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1125','Bogota 1975 to WGS 84 (1)','Derived in 1987 at 7 stations.','For military purposes. Accuracy 6m, 5m and 6m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4218','EPSG','4326','EPSG','3686',10.0,307.0,304.0,-318.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Col',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1126','Bukit Rimpah to WGS 84 (1)','Accuracy estimate not available.','For military purposes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4219','EPSG','4326','EPSG','1287',999.0,-384.0,664.0,-48.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Idn BBI',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1127','Campo Inchauspe to WGS 84 (1)','Derived at 20 stations.','For military purposes. Accuracy 5m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4221','EPSG','4326','EPSG','3843',9.0,-148.0,136.0,90.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Arg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1128','Cape to WGS 84 (1)','Derived at 5 stations.','For military purposes. Accuracy 3m, 6m and 6m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4222','EPSG','4326','EPSG','3309',9.0,-136.0,-108.0,-292.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Zaf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1129','Cape to WGS 84 (2)','Parameter values are from Cape to Hartebeesthoek94 (1) (code 1504) assuming that Hartebeesthoek94 and WGS 84 are equivalent within the accuracy of the transformation. Residuals should not exceed 15 metres.','Accuracy 15m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4222','EPSG','4326','EPSG','3309',15.0,-134.73,-110.92,-292.66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DSLI-Zaf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1130','Carthage to WGS 84 (1)','Derived at 5 stations.','For military purposes. Accuracy 6m, 9m and 8m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4223','EPSG','4326','EPSG','1236',14.0,-263.0,6.0,431.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Tun',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1131','Chua to WGS 84 (1)','Derived at 6 stations.','For military purposes. Accuracy 6m, 9m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4224','EPSG','4326','EPSG','3675',12.0,-134.0,229.0,-29.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Pry',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1132','Corrego Alegre 1970-72 to WGS 84 (1)','Derived at 17 stations.','For military purposes. Accuracy 5m, 3m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4225','EPSG','4326','EPSG','1293',8.0,-206.0,172.0,-6.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1133','ED50 to WGS 84 (1)','Derived at 85 stations. In Germany will be accepted by LBA for minerals management purposes as alternative to tfm 1052 or 1998.','For military purposes. Accepted for minerals management in Germany. Accuracy 3m, 8m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2420',10.0,-87.0,-98.0,-121.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-mean',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1134','ED50 to WGS 84 (2)','Derived at 52 stations.','For military purposes only. Accuracy 3m each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2421',6.0,-87.0,-96.0,-120.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-cenEur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1135','ED50 to WGS 84 (3)','Accuracy estimate not available. Note: ED50 is not used in Israel, Lebanon, Kuwait, Saudi Arabia or Syria.','For military purposes only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2345',999.0,-103.0,-106.0,-141.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-midEast',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1136','ED50 to WGS 84 (4)','Derived at 4 stations.','For military purposes only. Accuracy 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1078',26.0,-104.0,-101.0,-140.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cyp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1137','ED50 to WGS 84 (5)','Derived at 14 stations.','For military purposes. Accuracy 6m, 8m and 8m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2595',13.0,-130.0,-117.0,-151.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Egy',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1138','ED50 to WGS 84 (6)','Derived at 40 stations.','For military purposes only. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2343',6.0,-86.0,-96.0,-120.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Irl Gbr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1139','ED50 to WGS 84 (7)','Derived at 20 stations.','For military purposes. Accuracy 3m, 5m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2344',7.0,-87.0,-95.0,-120.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Fin Nor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1140','ED50 to WGS 84 (8)','Derived at 2 stations.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','3254',44.0,-84.0,-95.0,-130.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Grc',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1141','ED50(ED77) to WGS 84 (2)','Given by DMA as from ED50. OGP interpret that as ED50(ED77) in Iran. Derived at 27 stations.','For military purposes. Accuracy 9m, 12m and 11m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4154','EPSG','4326','EPSG','1123',19.0,-117.0,-132.0,-164.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Irn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1142','ED50 to WGS 84 (10)','Derived at 2 stations.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2339',44.0,-97.0,-103.0,-120.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ita Sard',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1143','ED50 to WGS 84 (11)','Derived at 3 stations.','For military purposes only. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2340',35.0,-97.0,-88.0,-135.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ita Sic',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1144','ED50 to WGS 84 (12)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','3275',44.0,-107.0,-88.0,-149.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Mlt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1145','ED50 to WGS 84 (13)','Derived at 18 stations.','For military purposes only. Accuracy 5m, 6m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2338',9.0,-84.0,-107.0,-120.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Prt Esp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1146','ED87 to WGS 84 (1)','','Not known.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4231','EPSG','4326','EPSG','2330',0.8,-82.981,-99.719,-110.709,'EPSG','9001',-0.5076,0.1503,0.3898,'EPSG','9109',-0.3143,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'5Nat-NSea-90',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1147','ED50 to ED87 (2)','','Geodetic purposes.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4231','EPSG','2332',1.0,-1.51,-0.84,-3.5,'EPSG','9001',-1.893,-0.687,-2.764,'EPSG','9109',0.609,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NMA-Nor N65',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1148','Egypt 1907 to WGS 84 (1)','Derived at 14 stations.','For military purposes. Accuracy 3m, 6m and 8m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4229','EPSG','4326','EPSG','1086',11.0,-130.0,110.0,-13.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Egy',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1149','ETRS89 to WGS 84 (1)','','ETRS89 and WGS 84 are realizations of ITRS coincident to within 1 metre. This transformation has an accuracy equal to the coincidence figure.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4258','EPSG','4326','EPSG','1298',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1150','GDA94 to WGS 84 (1)','Approximation at the +/- 3m level using inappropriate assumption that GDA94 is equivalent to WGS 84. Accuracy changed from 1m to 3m due to tectonic plate motion over more than 15 years.','Spatial referencing with 3-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4283','EPSG','4326','EPSG','4177',3.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Aus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1151','NZGD49 to WGS 84 (1)','Derived at 14 stations.','For military purposes only. Accuracy 5m, 3m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4272','EPSG','4326','EPSG','3285',8.0,84.0,-22.0,209.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Nzl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1152','Hu Tzu Shan 1950 to WGS 84 (1)','Derived at 4 stations.','For military purposes. Accuracy 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4236','EPSG','4326','EPSG','3315',26.0,-637.0,-549.0,-203.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Twn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1153','Indian 1954 to WGS 84 (1)','Derived at 11 stations.','For military purposes. Accuracy 15m, 6m and 12m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4239','EPSG','4326','EPSG','3317',21.0,217.0,823.0,299.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Tha',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1154','Indian 1975 to WGS 84 (1)','Derived at 62 stations. Replaced by Indian 1975 to WGS 84 (2) (code 1304).','For military purposes. Accuracy 3m, 2m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4240','EPSG','4326','EPSG','3741',5.0,209.0,818.0,290.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Tha',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1155','Kalianpur 1937 to WGS 84 (1)','Derived at 6 stations.','For military purposes. Accuracy 10m, 8m and 12m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4144','EPSG','4326','EPSG','3217',18.0,282.0,726.0,254.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bgd',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1156','Kalianpur 1975 to WGS 84 (1)','Care! DMA ellipsoid is inconsistent with EPSG ellipsoid - transformation parameter values may not be appropriate. Also source CRS may not apply to Nepal. Derived at 7 stations.','For military purposes. Accuracy 12m, 10m and 15m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4146','EPSG','4326','EPSG','2411',22.0,295.0,736.0,257.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ind Npl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1157','Kandawala to WGS 84 (1)','Derived at 3 stations.','For military purposes. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4244','EPSG','4326','EPSG','3310',35.0,-97.0,787.0,86.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Lka',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1158','Kertau 1968 to WGS 84 (1)','Derived at 6 stations.','For military purposes. Accuracy 10m, 8m and 6m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4245','EPSG','4326','EPSG','4223',15.0,-11.0,851.0,5.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Mys Sgp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1159','Leigon to WGS 84 (1)','Derived at 8 stations.','For military purposes. Accuracy 2m, 3m and 2m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4250','EPSG','4326','EPSG','1104',5.0,-130.0,29.0,364.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Gha',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1160','Liberia 1964 to WGS 84 (1)','Derived at 4 stations.','For military purposes only. Accuracy 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4251','EPSG','4326','EPSG','3270',26.0,-90.0,40.0,88.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Lbr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1161','Luzon 1911 to WGS 84 (1)','Derived at 6 stations.','For military purposes. Accuracy 8m, 11m and 9m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4253','EPSG','4326','EPSG','2364',17.0,-133.0,-77.0,-51.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Phl N',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1162','Luzon 1911 to WGS 84 (2)','Derived at 1 station.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4253','EPSG','4326','EPSG','2365',44.0,-133.0,-79.0,-72.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Phl Min',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1163','M''poraloko to WGS 84 (1)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4266','EPSG','4326','EPSG','1100',44.0,-74.0,-130.0,42.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Gab',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1164','Mahe 1971 to WGS 84 (1)','Derived at 1 station.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4256','EPSG','4326','EPSG','2369',44.0,41.0,-220.0,-134.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Syc',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1165','Massawa to WGS 84 (1)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4262','EPSG','4326','EPSG','1089',44.0,639.0,405.0,60.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Eth',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1166','Merchich to WGS 84 (1)','Derived at 9 stations.','For military purposes. Accuracy 5m, 3m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4261','EPSG','4326','EPSG','3280',7.0,31.0,146.0,47.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Mar',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1167','Minna to WGS 84 (1)','Derived at 2 stations. Note: Minna is used in Nigeria, not Cameroon.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','3226',44.0,-81.0,-84.0,115.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cmr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1168','Minna to WGS 84 (2)','Derived at 6 stations.','For military purposes. Accuracy 3m, 6m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','1178',15.0,-92.0,-93.0,122.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Nga',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1169','Monte Mario to WGS 84 (1)','Derived at 1 station.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2339',44.0,-225.0,-65.0,9.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ita Sar',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1170','NAD27 to WGS 84 (1)','Derived at 15 stations.','For military purposes. Accuracy 3m, 9m and 12m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2418',16.0,-3.0,142.0,183.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Carib',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1171','NAD27 to WGS 84 (2)','Derived at 19 stations.','For military purposes only. Accuracy 8m, 3m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2419',10.0,0.0,125.0,194.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cen Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1172','NAD27 to WGS 84 (3)','Derived at 112 stations.','For military purposes only. Accuracy 15m, 11m and 6m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','4517',20.0,-10.0,158.0,187.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Can',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1173','NAD27 to WGS 84 (4)','Derived at 405 stations.','For military purposes only. Accuracy 5m, 5m and 6m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','1323',10.0,-8.0,160.0,176.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Conus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1174','NAD27 to WGS 84 (5)','Derived at 129 stations.','For military purposes only. Accuracy 5m, 5m and 8m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2389',11.0,-9.0,161.0,179.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-ConusE',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1175','NAD27 to WGS 84 (6)','Derived at 276 stations.','For military purposes only. Accuracy 5m, 3m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2390',7.0,-8.0,159.0,175.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-ConusW',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1176','NAD27 to WGS 84 (7)','Derived at 47 stations.','For military purposes only. Accuracy 5m, 9m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2412',12.0,-5.0,135.0,172.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-USA AK',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1177','NAD27 to WGS 84 (8)','Derived at 11 stations.','For military purposes. Accuracy 5m, 3m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2413',8.0,-4.0,154.0,178.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bha xSalv',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1178','NAD27 to WGS 84 (9)','Derived at 1 station.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2414',44.0,1.0,140.0,165.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bha Salv',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1179','NAD27 to WGS 84 (10)','Derived at 25 stations.','For military purposes only. Accuracy 8m, 8m and 6m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2384',13.0,-7.0,162.0,188.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Can AB BC',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1180','NAD27 to WGS 84 (11)','Derived at 25 stations.','For military purposes only. Accuracy 9m, 5m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2415',12.0,-9.0,157.0,184.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Can MN ON',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1181','NAD27 to WGS 84 (12)','Derived at 37 stations.','For military purposes only. Accuracy 6m, 6m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2416',9.0,-22.0,160.0,190.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Can E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1182','NAD27 to WGS 84 (13)','Derived at 17 stations.','For military purposes only. Accuracy 5m, 5m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2410',8.0,4.0,159.0,188.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Can NWT',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1183','NAD27 to WGS 84 (14)','Derived at 8 stations.','For military purposes only. Accuracy 5m, 8m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2417',10.0,-7.0,139.0,181.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Can Yuk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1184','NAD27 to WGS 84 (15)','Derived at 3 stations.','For military purposes. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2385',35.0,0.0,125.0,201.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Pan',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1185','NAD27 to WGS 84 (16)','Derived at 1 station.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','3235',44.0,-9.0,152.0,178.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cuba',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1186','NAD27 to WGS 84 (17)','Derived at 2 stations. Note: NAD27 is not used in Greenland.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2386',44.0,11.0,114.0,195.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Grl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1187','NAD27 to WGS 84 (18)','Derived at 22 stations.','For military purposes only. Accuracy 8m, 6m and 6m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','3278',12.0,-12.0,130.0,190.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Mex',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1188','NAD83 to WGS 84 (1)','Derived at 354 stations.','Accuracy 2m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4269','EPSG','4326','EPSG','1325',4.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-N Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1189','Nahrwan 1967 to WGS 84 (1)','Derived at 2 stations. Note: Nahrwan 1967 is not used in Oman.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','2391',44.0,-247.0,-148.0,369.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Omn Mas',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1190','Nahrwan 1967 to WGS 84 (2)','Derived at 3 stations.','For military purposes. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','3968',35.0,-243.0,-192.0,477.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Sau',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1191','Nahrwan 1967 to WGS 84 (3)','Derived at 2 stations.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','1243',44.0,-249.0,-156.0,381.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-UAE',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1192','Naparima 1972 to WGS 84 (1)','CAUTION: IOGP believes that the coordinates used to derive these parameter values include a blunder, leading to an error in the value of tX. If a transformation from DMA is required IOGP recommends use of the 1987 version (EPSG codes 1307 and 1556).','For military purposes only. Accuracy given by DMA 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4271','EPSG','4326','EPSG','1322',33.0,-10.0,375.0,165.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Tto',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1193','NTF to WGS 84 (1)','These same parameter values are used to transform to ETRS89. See NTF to ETRS89 (1) (code 1651).','For applications to an accuracy of 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4275','EPSG','4326','EPSG','3694',2.0,-168.0,-60.0,320.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1194','MGI to WGS 84 (8)','May be taken as approximate transformation MGI to ETRS89 assuming ETRS89 is equivalent to WGS 84 within the accuracy of the transformation - see tfm code 1024. Information source gives scale as -2.388739 ppm.','Provincial GIS and other applications to an accuracy of 0.5 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4326','EPSG','1543',0.5,601.705,84.263,485.227,'EPSG','9001',-4.7354,-1.3145,-5.393,'EPSG','9104',-2.3887,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LBD-Aut Sty',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1195','OSGB 1936 to WGS 84 (1)','Derived at 38 stations.','For military purposes only. Accuracy 10m, 10m and 15m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4277','EPSG','4326','EPSG','1264',21.0,375.0,-111.0,431.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Gbr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1196','OSGB 1936 to WGS 84 (2)','Derived at 24 stations.','For military purposes only. Accuracy 5m, 5m and 6m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4277','EPSG','4326','EPSG','2395',10.0,371.0,-112.0,434.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Gbr Eng',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1197','OSGB 1936 to WGS 84 (3)','Derived at 25 stations.','For military purposes only. Accuracy 10m, 10m and 15m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4277','EPSG','4326','EPSG','2396',21.0,371.0,-111.0,434.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Gbr E&W',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1198','OSGB 1936 to WGS 84 (4)','Derived at 13 stations.','For military purposes only. Accuracy 10m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4277','EPSG','4326','EPSG','2397',18.0,384.0,-111.0,425.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Gbr Sco',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1199','OSGB 1936 to WGS 84 (5)','Derived at 3 stations.','For military purposes only. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4277','EPSG','4326','EPSG','2398',35.0,370.0,-108.0,434.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Gbr Wal',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1200','Pointe Noire to WGS 84 (1)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4282','EPSG','4326','EPSG','1072',44.0,-148.0,51.0,-291.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cog',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1201','PSAD56 to WGS 84 (1)','Derived at 63 stations. DMA also lists Colombia as area of applicability but PSAD56 is not used in that country.','For military purposes only. Accuracy 17m, 27m and 27m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','2399',42.0,-288.0,175.0,-376.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-mean',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1202','PSAD56 to WGS 84 (2)','Derived at 5 stations.','For military purposes only. Accuracy 5m, 11m and 14m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','1049',19.0,-270.0,188.0,-388.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bol',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1203','PSAD56 to WGS 84 (3)','Derived at 1 station. Replaced by PSAD56 to WGS 84 (15) (code 6971).','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','2402',44.0,-270.0,183.0,-390.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Chl N',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1204','PSAD56 to WGS 84 (4)','Derived at 3 stations. Replaced by PSAD56 to WGS 84 (17) (code 6973).','For military purposes. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','2403',35.0,-305.0,243.0,-442.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Chl S',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1205','PSAD56 to WGS 84 (5)','Derived at 4 stations. Note that although the PSAD56 network included Colombia the CRS is not used there: see Bogota 1975 (CRS code 4218).','For military purposes. Accuracy 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','3229',26.0,-282.0,169.0,-371.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Col',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1206','PSAD56 to WGS 84 (6)','Derived at 11 stations.','For military purposes. Accuracy 3m, 5m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','3241',7.0,-278.0,171.0,-367.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ecu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1207','PSAD56 to WGS 84 (7)','Derived at 9 stations.','For military purposes. Accuracy 6m, 14m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','1114',17.0,-298.0,159.0,-369.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Guy',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1208','PSAD56 to WGS 84 (8)','Derived at 6 stations.','For military purposes only. Accuracy 6m, 8m and 12m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','3292',16.0,-279.0,175.0,-379.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Per',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1209','PSAD56 to WGS 84 (9)','Derived at 24 stations.','For military purposes only. Accuracy 9m, 14m and 15m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','3327',23.0,-295.0,173.0,-371.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ven',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1210','POSGAR 94 to WGS 84 (1)','','Transformation with 1-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4694','EPSG','4326','EPSG','1033',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Arg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1211','Qornoq to WGS 84 (1)','Derived at 2 stations.','For military purposes. Accuracy 25m, 25m and 32m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4287','EPSG','4326','EPSG','2407',NULL,164.0,138.0,-189.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Grl S',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1212','SAD69 to WGS 84 (1)','Derived at 84 stations.','For military purposes only. Accuracy 15m, 6m and 9m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1341',NULL,-57.0,1.0,-41.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-mean',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1213','SAD69 to WGS 84 (2)','Derived at 10 stations.','For military purposes only. Accuracy 5m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1033',NULL,-62.0,-1.0,-37.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Arg',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1214','SAD69 to WGS 84 (3)','Derived at 4 stations.','For military purposes. Accuracy 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1049',NULL,-61.0,2.0,-48.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bol',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1215','SAD69 to WGS 84 (4)','Derived at 22 stations.','For military purposes only. Accuracy 3m, 5m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1053',NULL,-60.0,-2.0,-41.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bra',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1216','SAD69 to WGS 84 (5)','Derived at 9 stations.','For military purposes only. Accuracy 15m, 8m and 11m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1066',NULL,-75.0,-1.0,-44.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Chile',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1217','SAD69 to WGS 84 (6)','Derived at 7 stations.','For military purposes only. Accuracy 6m, 6m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1070',NULL,-44.0,6.0,-36.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Col',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1218','SAD69 to WGS 84 (7)','Derived at 11 stations.','For military purposes. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1085',NULL,-48.0,3.0,-44.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ecu',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1219','SAD69 to WGS 84 (8)','Derived at 1 station.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','2356',NULL,-47.0,26.0,-42.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ecu Gal',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1220','SAD69 to WGS 84 (9)','Derived at 5 stations.','For military purposes only. Accuracy 9m, 5m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1114',NULL,-53.0,3.0,-47.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Guy',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1221','SAD69 to WGS 84 (10)','Derived at 4 stations.','For military purposes. Accuracy 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1188',NULL,-61.0,2.0,-33.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Pgy',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1222','SAD69 to WGS 84 (11)','Derived at 6 stations.','For military purposes. Accuracy 5m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1189',NULL,-58.0,0.0,-44.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Peru',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1223','SAD69 to WGS 84 (12)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1235',NULL,-45.0,12.0,-33.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Tto',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1224','SAD69 to WGS 84 (13)','Derived at 5 stations.','For military purposes only. Accuracy 3m, 6m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1251',NULL,-45.0,8.0,-33.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ven',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1225','Sapper Hill 1943 to WGS 84 (1)','Derived at 5 stations.','For military purposes. Accuracy 1m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4292','EPSG','4326','EPSG','2355',2.0,-355.0,21.0,72.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Flk E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1226','Schwarzeck to WGS 84 (1)','Derived at 3 stations. ¶Beware! Source CRS uses German legal metres, transformation parameter values are in (International) metres. See tfm code 1271 for example.','For military purposes only. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4293','EPSG','4326','EPSG','1169',35.0,616.0,97.0,-251.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Nam',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1227','Tananarive to WGS 84 (1)','Accuracy estimate not available.','For military purposes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4297','EPSG','4326','EPSG','1149',999.0,-189.0,-242.0,-91.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Mdg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1228','Timbalai 1948 to WGS 84 (1)','Derived at 8 stations.','For military purposes. Accuracy 10m, 10m and 12m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4298','EPSG','4326','EPSG','1362',19.0,-679.0,669.0,-48.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Borneo',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1229','TM65 to WGS 84 (1)','Derived at 7 stations.','For military purposes only. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4299','EPSG','4326','EPSG','1305',NULL,506.0,-122.0,611.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ire',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1230','Tokyo to WGS 84 (1)','Derived at 31 stations.','For military purposes only. Accuracy 20m, 5m and 20m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4301','EPSG','4326','EPSG','2409',29.0,-148.0,507.0,685.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Jpn Kor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1231','Tokyo to WGS 84 (2)','Derived at 16 stations.','For military purposes only. Accuracy 8m, 5m and 8m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4301','EPSG','4326','EPSG','3995',13.0,-148.0,507.0,685.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Jpn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1232','Tokyo to WGS 84 (3)','Derived at 29 stations. Replaced by Tokyo to WGS 84 (5) (code 1305).','For military purposes only. Accuracy 8m, 5m and 8m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4301','EPSG','4326','EPSG','3266',13.0,-146.0,507.0,687.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Kor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1233','Tokyo to WGS 84 (4)','Derived at 3 stations.','For military purposes only. Accuracy 20m, 5m and 20m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4301','EPSG','4326','EPSG','2408',29.0,-158.0,507.0,676.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Jpn Ok',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1234','Yacare to WGS 84 (1)','Accuracy estimate not available.','For military purposes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4309','EPSG','4326','EPSG','3326',999.0,-155.0,171.0,37.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ury',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1235','Zanderij to WGS 84 (1)','Derived at 5 stations.','For military purposes. Accuracy 5m, 5m and 8m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4311','EPSG','4326','EPSG','1222',11.0,-265.0,120.0,-358.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Sur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1236','AGD84 to WGS 84 (2)','"Higgins parameters". Replaced by AGD84 to GDA94 (2) (code 1280) and AGD84 to WGS 84 (7) (code 1669). Note: AGD84 officially adopted only in Queensland, South Australia and Western Australia.','Preliminary estimate.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4203','EPSG','4326','EPSG','2576',5.0,-116.0,-50.47,141.69,'EPSG','9001',-0.23,-0.39,-0.344,'EPSG','9104',0.0983,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-Aus old',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1237','WGS 72 to WGS 84 (1)','','For scientific purposes.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4322','EPSG','4326','EPSG','1262',2.0,0.0,0.0,4.5,'EPSG','9001',0.0,0.0,0.554,'EPSG','9104',0.2263,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA1',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1238','WGS 72 to WGS 84 (2)','','For scientific purposes.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4322','EPSG','4326','EPSG','1262',2.0,0.0,0.0,4.5,'EPSG','9001',0.0,0.0,0.554,'EPSG','9104',0.219,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA2',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1239','WGS 72BE to WGS 72 (1)','','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4324','EPSG','4322','EPSG','1262',2.0,0.0,0.0,-2.6,'EPSG','9001',0.0,0.0,0.26,'EPSG','9104',-0.6063,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1240','WGS 72BE to WGS 84 (1)','','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4324','EPSG','4326','EPSG','2346',2.0,0.0,0.0,1.9,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1242','HD72 to WGS 84 (4)','Parameter value error in info source Hungarian text but correct in English summary. Replaces HD72 to WGS 84 (2) (code 1831).','Accuracy at metre level throughout Hungary.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4237','EPSG','4326','EPSG','1119',1.0,52.17,-71.82,-14.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELTE-Hun 2004',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1244','PZ-90 to WGS 84 (2)','Mandated for use in Russia by GosStandard of Russia Decree #327 of August 9, 2001. Republished but with one significant figure less precision to parameter values in GOST R 51794-2008 of December 18 2008.','Geodetic applications. Accuracy better than 0.5 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4740','EPSG','4326','EPSG','1198',0.5,-1.08,-0.27,-0.9,'EPSG','9001',0.0,0.0,-0.16,'EPSG','9104',-0.12,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GOST-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1245','ED50 to WGS 84 (16)','Derived at 4 stations.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1236',44.0,-112.0,-77.0,-145.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Tun',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1246','Herat North to WGS 84 (1)','Accuracy estimate not available.','For military purposes only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4255','EPSG','4326','EPSG','1024',999.0,-333.0,-222.0,114.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Afg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1247','Kalianpur 1962 to WGS 84 (1)','Care! DMA ellipsoid is inconsistent with EPSG ellipsoid - transformation parameter values may not be appropriate. No accuracy estimate available.','For military purposes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4145','EPSG','4326','EPSG','3289',999.0,283.0,682.0,231.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Pak',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1248','ID74 to WGS 84 (1)','Derived at 1 station.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4238','EPSG','4326','EPSG','4020',44.0,-24.0,-15.0,5.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Idn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1249','NAD27 to WGS 84 (21)','Derived at 6 stations.','For military purposes only. Accuracy 6m, 8m and 10m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2387',15.0,-2.0,152.0,149.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-AK AluE',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1250','NAD27 to WGS 84 (22)','Derived at 5 stations.','For military purposes. Accuracy 10m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','2388',18.0,2.0,204.0,105.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-AK AluW',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1251','NAD83 to WGS 84 (2)','Derived at 4 stations.','For military purposes only. Accuracy 5m, 2m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4269','EPSG','4326','EPSG','2157',8.0,-2.0,0.0,4.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-AK Alu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1252','NAD83 to WGS 84 (3)','Derived at 6 stations.','For military purposes only. Accuracy 2m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4269','EPSG','4326','EPSG','3883',4.0,1.0,1.0,-1.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-USA Hi',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1253','Nord Sahara 1959 to WGS 84 (1)','Derived at 3 stations.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4307','EPSG','4326','EPSG','3213',44.0,-186.0,-93.0,310.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Alg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1254','Pulkovo 1942 to WGS 84 (1)','Accuracy estimate not available.','For military purposes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','3296',999.0,28.0,-130.0,-95.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1255','Nord Sahara 1959 to WGS 84 (2)','CAUTION: Source CRS described by DMA as from Voirol 1960. OGP believes that the data used in the derivation of these parameters contains a blunder. We recommend using transformation North Sahara 1959 to WGS84 (1) (code 1253). Derived at 2 stations.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4307','EPSG','4326','EPSG','1365',44.0,-123.0,-206.0,219.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Dza N',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1256','Fahud to WGS 84 (1)','Derived at 7 stations. Replaced by Fahud to WGS 84 (3) (code 6908).','For military purposes. Accuracy 3m, 3m and 9m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4232','EPSG','4326','EPSG','4009',10.0,-346.0,-1.0,224.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Omn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1257','Pulkovo 1995 to PZ-90 (1)','Mandated for use in Russia by GosStandard of Russia Decree #327 of August 9, 2001.','Accuracy better than 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4200','EPSG','4740','EPSG','1198',1.0,25.9,-130.94,-81.76,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GOST-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1267','Pulkovo 1942 to WGS 84 (17)','Derived through concatenation of Pulkovo 1942 to PZ-90 (1) (tfm code 15844) and PZ-90 to WGS 84 (2) (tfm code 1244. Mandated for use in Russia by GOST R 51794-2001, but this has been superseded by GOST R 51794-2008. Replaced by tfm code 5044.','Accuracy 4 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','3296',4.0,23.92,-141.27,-80.9,'EPSG','9001',0.0,-0.35,-0.82,'EPSG','9104',-0.12,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GOST-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1271','Schwarzeck to WGS 84 (2)','Beware! Source CRS uses GLM, tfm param in m. Example: Schwarzeck φ=19°35''46.952"S λ=20°41''50.649"E h=1185.99m; X=5623409.386 Y=2124618.003 Z=-2125847.632 GLM; X=5623485.84m Y=2124646.89m Z=-2125876.54m; WGS 84 X=5624101.48m Y=2124748.97m Z=-2126132.35m.','Not known.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4293','EPSG','4326','EPSG','1169',999.0,615.64,102.08,-255.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SLI-Nam',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1272','GGRS87 to WGS 84 (1)','','For applications requiring 1m or better accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4121','EPSG','4326','EPSG','3254',1.0,-199.87,74.79,246.62,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hel-Grc',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1273','HD72 to ETRS89 (1)','May be taken as approximate transformation HD72 to WGS 84 - see code 1677.','?','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4237','EPSG','4258','EPSG','1119',NULL,-56.0,75.77,15.31,'EPSG','9001',-0.37,-0.2,-0.21,'EPSG','9104',-1.01,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELTE-Hun',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1274','Pulkovo 1942 to LKS94 (1)','May be taken as approximate transformation Pulkovo 1942 to WGS 84 - see code 1679.','For applications to an accuracy of 9 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4284','EPSG','4669','EPSG','3272',9.0,-40.595,-18.55,-69.339,'EPSG','9001',-2.508,-1.832,2.611,'EPSG','9104',-4.299,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'HNIT-Ltu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1275','ED50 to WGS 84 (17)','These same parameter values are used to transform to ETRS89. See ED50 to ETRS89 (10) (code 1650).','For applications to an accuracy of 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1096',2.0,-84.0,-97.0,-117.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1276','NTF to ED50 (1)','','For applications to an accuracy of 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4275','EPSG','4230','EPSG','3694',2.0,-84.0,37.0,437.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1277','NTF to WGS 72 (1)','','For applications to an accuracy of 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4275','EPSG','4322','EPSG','3694',2.0,-168.0,-72.0,314.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1278','AGD66 to GDA94 (1)','Given to greater precision but no better accuracy at http://www.dehaa.sa.gov.au For higher accuracy requirements see various regional transformations. May be taken as approximate transformation AGD66 to WGS 84 - see code 15788. Derived at 162 stations.','5m accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','4283','EPSG','2575',5.0,-127.8,-52.3,152.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-Aus 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1279','AGD84 to GDA94 (1)','Derived at 327 stations. May be taken as approximate transformation AGD84 to WGS 84 - see code 15789. For higher accuracy use AGD84 to GDA94 (2) (code 1280). Note: AGD84 officially adopted only in Queensland, South Australia and Western Australia.','5m accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4203','EPSG','4283','EPSG','2576',5.0,-128.5,-53.0,153.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-Aus 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1280','AGD84 to GDA94 (2)','Replaces AGD84 to WGS 84 (2) (code 1236). May be taken as approximate transformation AGD84 to WGS 84 - see code 1669. Note: although applicable nationwide, AGD84 officially adopted only in Queensland, South Australia and Western Australia.','1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4203','EPSG','4283','EPSG','2576',1.0,-117.763,-51.51,139.061,'EPSG','9001',-0.292,-0.443,-0.277,'EPSG','9104',-0.191,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-Aus 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1281','Pulkovo 1995 to WGS 84 (1)','Derived through concatenation of Pulkovo 1995 to PZ-90 (1) (tfm code 1257) and PZ-90 to WGS 84 (2) (tfm code 1244). Mandated for use in Russia by GOST R 51794-2001, but this has been superseded by GOST R 51794-2008. Replaced by tfm code 5043.','Accuracy 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4200','EPSG','4326','EPSG','1198',1.0,24.82,-131.21,-82.66,'EPSG','9001',0.0,0.0,-0.16,'EPSG','9104',-0.12,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GOST-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1282','Samboja to WGS 84 (1)','Datum shift derived through ITRF93.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4125','EPSG','4326','EPSG','1328',NULL,-404.78,685.68,45.47,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Idn Mah',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1283','LKS94 to WGS 84 (1)','','LKS94 is a realization of ETRS89 and coincident to WGS 84 within 1 metre. This transformation has an accuracy equal to the coincidence figure.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4669','EPSG','4326','EPSG','1145',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'HNIT-Ltu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1284','Arc 1960 to WGS 84 (2)','Derived at 24 stations.','For military purposes. Accuracy 4m, 3m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4210','EPSG','4326','EPSG','3264',6.0,-157.0,-2.0,-299.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Ken',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1285','Arc 1960 to WGS 84 (3)','Derived at 12 stations.','For military purposes. Accuracy 6m, 9m and 10m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4210','EPSG','4326','EPSG','3316',15.0,-175.0,-23.0,-303.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Tza',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1286','Segora to WGS 84 (1)','Accuracy estimate not available.','For military purposes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4294','EPSG','4326','EPSG','2354',NULL,-403.0,684.0,41.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Idn Kal',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1287','Pulkovo 1942 to WGS 84 (3)','Derived at 5 stations.','For military purposes. Accuracy 2m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','1119',4.0,28.0,-121.0,-77.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Hun',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1288','Pulkovo 1942 to WGS 84 (4)','Derived at 11 stations.','For military purposes only. Accuracy 4m, 2m and 4m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','1192',6.0,23.0,-124.0,-82.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Pol',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1289','Pulkovo 1942 to WGS 84 (5)','Derived at 6 stations.','For military purposes only. Accuracy 3m, 3m and 2m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','1306',5.0,26.0,-121.0,-78.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Cze',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1290','Pulkovo 1942 to WGS 84 (6)','Derived at 5 stations.','For military purposes. Accuracy 2m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','3268',4.0,24.0,-124.0,-82.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Lva',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1291','Pulkovo 1942 to WGS 84 (7)','Derived at 2 stations.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','1131',44.0,15.0,-130.0,-84.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Kaz',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1292','Pulkovo 1942 to WGS 84 (8)','Derived at 7 stations.','For military purposes. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','1025',6.0,24.0,-130.0,-92.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Alb',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1293','Pulkovo 1942 to WGS 84 (9)','Derived at 4 stations.','For military purposes. Accuracy 3m, 5m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','1197',7.0,28.0,-121.0,-77.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Rom',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1294','Voirol 1875 to WGS 84 (1)','Accuracy estimate not available.','For military purposes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4304','EPSG','4326','EPSG','1365',999.0,-73.0,-247.0,227.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Dza N',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1296','Trinidad 1903 to WGS 84 (1)','Derived in 1989 by ONI for Amoco.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4302','EPSG','4326','EPSG','1339',2.0,-61.702,284.488,472.052,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Amoco-Tto Trin',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1297','Tete to Moznet (1)','Mean of 32 stations. To reduce the size of the residuals; four regional parameter sets (see codes 1298-1301) were developed. May be taken as approximate transformation Tete to WGS 84 - see code 1683.','Residuals as high as 30 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4127','EPSG','4130','EPSG','3281',30.0,-115.064,-87.39,-101.716,'EPSG','9001',0.058,-4.001,2.062,'EPSG','9104',9.366,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DNGC-Moz',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1298','Tete to Moznet (2)','Mean of 9 stations. May be taken as approximate transformation Tete to WGS 84 - see code 1684.','Residuals are generally under 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4127','EPSG','4130','EPSG','2350',1.0,-82.875,-57.097,-156.768,'EPSG','9001',2.158,-1.524,0.982,'EPSG','9104',-0.359,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DNGC-Moz A',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1299','Tete to Moznet (3)','Mean of 6 stations. May be taken as approximate transformation Tete to WGS 84 - see code 1685.','Residuals are generally under 4 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4127','EPSG','4130','EPSG','2351',4.0,-138.527,-91.999,-114.591,'EPSG','9001',0.14,-3.363,2.217,'EPSG','9104',11.748,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DNGC-Moz B',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1300','Tete to Moznet (4)','Mean of 11 stations. May be taken as approximate transformation Tete to WGS 84 - see code 1686.','Residuals are generally under 3 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4127','EPSG','4130','EPSG','2352',3.0,-73.472,-51.66,-112.482,'EPSG','9001',-0.953,-4.6,2.368,'EPSG','9104',0.586,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DNGC-Moz C',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1301','Tete to Moznet (5)','Mean of 7 stations. May be taken as approximate transformation Tete to WGS 84 - see code 1687.','Residuals are 5-10 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4127','EPSG','4130','EPSG','2353',10.0,219.315,168.975,-166.145,'EPSG','9001',-0.198,-5.926,2.356,'EPSG','9104',-57.104,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DNGC-Moz D',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1302','Moznet to WGS 84 (1)','','For many purposes Moznet can be considered to be coincident with WGS 84. Accuracy better than 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4130','EPSG','4326','EPSG','1167',1.0,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Moz',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1303','Pulkovo 1942 to WGS 84 (10)','Mean of 13 stations along entire Kazak coastline.','Residuals under 2 m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','2405',2.0,43.822,-108.842,-119.585,'EPSG','9001',1.455,-0.761,0.737,'EPSG','9104',0.549,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KCS-Kaz Cas',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1304','Indian 1975 to WGS 84 (2)','Derived at 62 stations. Replaces Indian 1975 to WGS 84 (1) (code 1154).','For military purposes. Accuracy 3m, 2m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4240','EPSG','4326','EPSG','3741',5.0,210.0,814.0,289.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Tha',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1305','Tokyo to WGS 84 (5)','Derived at 29 stations. Replaces Tokyo to WGS 84 (3) (code 1232).','For military purposes. Accuracy 2m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4301','EPSG','4326','EPSG','3266',4.0,-147.0,506.0,687.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Kor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1306','MGI to WGS 84 (1)','Accuracy estimate not available.','For military purposes only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4312','EPSG','4326','EPSG','2370',999.0,682.0,-203.0,480.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-balk',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1307','Naparima 1972 to WGS 84 (3)','DMA does not differentiate between Naparima 1955 (Trinidad) and Naparima 1972 (Tobago). Consequently for Trinidad IOGP has duplicated this transformation as Naparima 1955 to WGS 84 (3) - see code 1556.','For military purposes only. Accuracy given by DMA is 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4271','EPSG','4326','EPSG','1322',26.0,-2.0,374.0,172.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Tto Tob',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1308','NAD83 to WGS 84 (4)','Strictly between NAD83 and ITRF94(1996.0). Superseded by NAD83 to WGS 84 (5) (code 1515).','Historical record only - superseded - see remarks.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4269','EPSG','4326','EPSG','1323',NULL,-0.9738,1.9453,0.5486,'EPSG','9001',-1.3357e-07,-4.872e-08,-5.507e-08,'EPSG','9101',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Usa ITRF94',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1309','DHDN to ETRS89 (1)','Mean of 69 stations. May be taken as approximate tfm DHDN to WGS 84 (code 1673). Replaced by DHDN to ETRS89 (2) (tfm code 1776) and regional higher accuracy tfms. Note: these later tfms have been published using the Position Vector method.','For applications with an accuracy at 5 m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4314','EPSG','4258','EPSG','2326',5.0,582.0,105.0,414.0,'EPSG','9001',-1.04,-0.35,3.08,'EPSG','9104',8.3,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IfAG-Deu W',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1310','Pulkovo 1942 to ETRS89 (1)','Mean of 20 stations.','Residuals under 2 m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4284','EPSG','4258','EPSG','1343',2.0,24.0,-123.0,-94.0,'EPSG','9001',-0.02,0.25,0.13,'EPSG','9104',1.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IfAG-Deu E',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1311','ED50 to WGS 84 (18)','Based on ED50 to WGS72 (precise ephemeris) 6-nations agreement of 1981 to which precise to broadcast and broadcast to WGS 84 transformations have been concatenated.','Recommended transformation for UKCS and IrishCS petroleum purposes.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2342',1.0,-89.5,-93.8,-123.1,'EPSG','9001',0.0,0.0,-0.156,'EPSG','9104',1.2,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UKOOA-CO',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1314','OSGB 1936 to WGS 84 (6)','For a more accurate transformation see OSGB 1936 / British National Grid to ETRS89 (2) (code 1039): contact the Ordnance Survey of Great Britain (http://www.gps.gov.uk/gpssurveying.asp) for details.','Oil exploration. Accuracy better than 4m and generally better than 2m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4277','EPSG','4326','EPSG','1264',2.0,446.448,-125.157,542.06,'EPSG','9001',0.15,0.247,0.842,'EPSG','9104',-20.489,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UKOOA-Pet',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1315','OSGB 1936 to ED50 (UKOOA)','This transformation is concatenated from OSGB36 to WGS 84 (Petroleum) (code 1314) minus ED50 to WGS 84 (Common Offshore) (code 1311).','For oil exploration. Accuracy better than 4m and generally better than 2m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4277','EPSG','4230','EPSG','1264',2.0,535.948,-31.357,665.16,'EPSG','9001',0.15,0.247,0.998,'EPSG','9104',-21.689,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UKOOA-UKCS',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1316','Manoca to WGS 84 (1)','','?','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4260','EPSG','4326','EPSG','1060',999.0,-70.9,-151.8,-41.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SCS-Cmr',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1317','Camacupa 1948 to WGS 72BE (1)','Derived by Geophysical Services Inc. in 1979 from mean of Transit results at 7 stations.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','4324','EPSG','1604',10.0,-37.2,-370.6,-228.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Ago',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1318','Camacupa 1948 to WGS 84 (1)','','Used for oil exploration by Conoco.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','2316',10.0,-42.01,-332.21,-229.75,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CON-Ago B5',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1319','Camacupa 1948 to WGS 84 (2)','','Used for oil exploration by Texaco.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','2317',25.0,-40.0,-354.0,-224.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TEX-Ago B2',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1320','Camacupa 1948 to WGS 84 (3)','Replaced by Camacupa 1948 to WGS 84 (9). Used by Shell prior to 1994.','Oil exploration prior to 1994.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','2321',10.0,-37.2,-370.6,-224.0,'EPSG','9001',0.0,0.0,0.554,'EPSG','9104',0.219,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SHL-Ago old',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1321','Camacupa 1948 to WGS 84 (4)','Mean of 123 Transit passes at station Cabo Ledo NE base in November 1990. Used by Elf for block 7 up to December 1992 then replaced by Camacupa 1948 to WGS 84 (7). Used by Total in block 8, ExxonMobil block 24, Western Geophysical for spec. data.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','2320',10.0,-41.8,-342.2,-228.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Ago',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1322','Camacupa 1948 to WGS 84 (5)','Derived at station Djeno during coordination of platform PAL F2 in February 1992. Used by Elf for block 3 up to December 1992 then replaced by Camacupa 1948 to WGS 84 (7).','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','2318',3.0,-55.5,-348.0,-229.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Ago B3 old',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1323','Camacupa 1948 to WGS 84 (6)','Derived at Luanda observatory December 1992.','Used for oil exploration by Elf for 1993 block 7 shallow water survey.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','2319',8.0,-43.0,-337.0,-233.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Ago B7 old',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1324','Camacupa 1948 to WGS 84 (7)','Derived at platform PAL F2 in December 1992. For use in blocks 3, 7 and 17, replaced by Camacupa 1948 to WGS 84 (10) (code 1327).','Used for oil exploration by Elf for blocks 3, 7 and 17 between December 1992 and 1994 then superseded by Camacupa (offshore) to WGS 84 (10). Used by Exxon for block 15 since 1993.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','2322',3.0,-48.0,-345.0,-231.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Ago B15',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1325','Camacupa 1948 to WGS 84 (8)','Derived at platform PAL F2 in December 1992. Used by Total for block 2 between December 1992 and 1994 then replaced by Camacupa 1948 to WGS 84 (10).','Oil exploration between December 1992 and 1994.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','2317',3.0,-48.6,-345.1,-230.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Ago B2 old',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1326','Camacupa 1948 to WGS 84 (9)','Derived by GPS on two Topnav DGPS reference stations at Djeno and Luanda. Replaces Camacupa 1948 to WGS 84 (3). In block 18 replaced by BP from 1999 by Camacupa 1948 to WGS 84 (10).','Used by Shell since 1994.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','2323',10.0,-41.057,-374.564,-226.287,'EPSG','9001',0.0,0.0,0.554,'EPSG','9104',0.219,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SHL-Ago B16',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1327','Camacupa 1948 to WGS 84 (10)','Derived at platform PAL F2 in 1994 by Topnav using Doris.','Used for oil exploration by Elf in blocks 3 and 17 since 1994. Used by Total in block 2 since 1994. Adopted by BP-Amoco Elf and Exxon for blocks 18 and 31-33 in 1999.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','2324',5.0,-50.9,-347.6,-231.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Ago N',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1328','Malongo 1987 to Mhast (1)','Malongo 1987 is an offshore extension of Mhast adopted by Chevron in 1987.','Used for oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4259','EPSG','4264','EPSG','1317',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CHV-Ago Cab',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1329','Mhast to WGS 84 (1)','Superseded in 1990 by trf Malongo 1987 to WGS 84 (2), code 1557. Malongo 1987 is an offshore extension of the Mhast cooordinate system.','Used for oil exploration by Chevron until superseded in 1990 by trf Malongo 1987 to WGS 84 (2), code 1557.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4264','EPSG','4326','EPSG','1317',10.0,-252.95,-4.11,-96.38,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CHV-Ago Cab',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1330','Malongo 1987 to WGS 84 (1)','Derived at Station Y in April 1989 using 572 transit satellite passes. Computed value for dZ was -96.42 but -96.38 has been utilised. Replaced Malongo 1987 to WGS 84 (3) (code 15791) in 1989. Replaced by Malongo 1987 to WGS 84 (2) (code 1557) in 1990.','Offshore oil exploration and production between April 1989 and June 1990.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4259','EPSG','4326','EPSG','3180',10.0,-252.95,-4.11,-96.38,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CHV-Ago Cab89',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1331','EST92 to ETRS89 (1)','','Not known.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4133','EPSG','4258','EPSG','3246',0.1,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UT-Est',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1332','Pulkovo 1942 to EST92 (1)','','Not known.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4284','EPSG','4133','EPSG','3246',9.0,21.53219,-97.00027,-60.74046,'EPSG','9001',-0.99548,-0.58147,-0.2418,'EPSG','9104',-4.5981,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UT-Est',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1333','EST92 to WGS 84 (1)','','Not known.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4133','EPSG','4326','EPSG','3246',0.5,0.055,-0.541,-0.185,'EPSG','9001',-0.0183,0.0003,0.007,'EPSG','9104',-0.014,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UT-Est',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1334','Pulkovo 1942 to WGS 84 (12)','','Not known.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','3246',9.0,21.58719,-97.54127,-60.92546,'EPSG','9001',-1.01378,-0.58117,-0.2348,'EPSG','9104',-4.6121,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UT-Est',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1437','RT90 to ETRS89 (1)','Derived at 22 points in 1993. Replaced by RT90 to SWEREF99 (1) (code 1895) from 2001.¶This transformation is actually between ETRS89 and RR92. RR92 is a geographic 3D CRS where the horizontal component is RT90.','Accuracy 0.5m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4124','EPSG','4258','EPSG','1225',0.5,419.3836,99.3335,591.3451,'EPSG','9001',-0.850389,-1.817277,7.862238,'EPSG','9104',-0.99496,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLS-Swe',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1438','Fahud to WGS 84 (2)','','Oil exploration.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4232','EPSG','4326','EPSG','4009',25.0,-333.102,-11.02,230.69,'EPSG','9001',0.0,0.0,0.554,'EPSG','9104',0.219,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PDO-Omn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1439','PSD93 to WGS 84 (1)','Replaced PSD93 to WGS 84 (2) (code 8581) in 1997.','Oil exploration. Residuals 0.5m at 67% probability level.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4134','EPSG','4326','EPSG','3288',0.5,-180.624,-225.516,173.919,'EPSG','9001',-0.81,-1.898,8.336,'EPSG','9104',16.71006,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PDO-Omn 97',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1440','ED50 to WGS 84 (19)','','Used in oil industry.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','3254',999.0,-86.0,-92.2,-127.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'HEL-Grc',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1441','Antigua 1943 to WGS 84 (1)','','Not known.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4601','EPSG','4326','EPSG','1273',10.0,-255.0,-15.0,71.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DOS-Atg Ant',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1442','Dominica 1945 to WGS 84 (1)','','Not known.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4602','EPSG','4326','EPSG','3239',10.0,725.0,685.0,536.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DOS-Dma',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1443','Grenada 1953 to WGS 84 (1)','','Not known.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4603','EPSG','4326','EPSG','3118',10.0,72.0,213.7,93.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DOS-Grd',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1444','Montserrat 1958 to WGS 84 (1)','Derived at 1 satellite station.','Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4604','EPSG','4326','EPSG','3279',44.0,174.0,359.0,365.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DOS-Msr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1445','St. Kitts 1955 to WGS 84 (1)','','Not known.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4605','EPSG','4326','EPSG','3297',10.0,9.0,183.0,236.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DOS-Kna',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1446','St. Lucia 1955 to WGS 84 (1)','','Not known.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4606','EPSG','4326','EPSG','3298',10.0,-149.0,128.0,296.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DOS-Lca',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1448','HD72 to WGS 84 (3)','Parameter values taken from HD72 to ETRS89 (2) (code 1449) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. Replaces HD72 to WGS 84 (1) (code 1830).','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4237','EPSG','4326','EPSG','1119',1.0,52.684,-71.194,-13.975,'EPSG','9001',0.312,0.1063,0.3729,'EPSG','9104',1.0191,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELTE-Hun 2003',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1449','HD72 to ETRS89 (2)','Derived at 1153 stations of the Hungarian National GPS Network. Values here correct parameter errors given in Hungarian standard MSZ 7222:2002. Replaces HD72 to ETRS89 (1), code 1829. May be taken as approximate tfm HD72 to WGS 84 - see tfm code 1448.','Throughout Hungary the average horizontal error of the transformation is 0.19 m, the maximum is 0.41 m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4237','EPSG','4258','EPSG','1119',0.4,52.684,-71.194,-13.975,'EPSG','9001',0.312,0.1063,0.3729,'EPSG','9104',1.0191,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MSZ-Hun',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1458','AGD66 to GDA94 (2)','For higher accuracy requirements see AGD66 to GDA94 (11) (code 1803). May be taken as approximate transformation AGD66 to WGS 84 - see code 1665. See code 5827 for a marginally better accuracy transformation derived locally.','Recommended for mid-accuracy use in A.C.T. 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4283','EPSG','2283',1.0,-129.193,-41.212,130.73,'EPSG','9001',-0.246,-0.374,-0.329,'EPSG','9104',-2.955,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-ACT 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1459','AGD66 to GDA94 (3)','Replaced in 2000 by AGD66 to GDA94 (8) (code 1594). Application gives result differences which are sub-metre.','1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4283','EPSG','1282',1.0,-120.695,-62.73,165.46,'EPSG','9001',-0.109,0.141,0.116,'EPSG','9104',2.733,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-Tas 1m old',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1460','AGD66 to GDA94 (4)','For higher accuracy requirements see AGD66 to GDA94 (11) (code 1803). May be taken as approximate transformation AGD66 to WGS 84 - see code 1666.','Recommended for mid-accuracy use in NSW and Victoria. 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4283','EPSG','2286',1.0,-119.353,-48.301,139.484,'EPSG','9001',-0.415,-0.26,-0.437,'EPSG','9104',-0.613,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-NSW Vic 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1469','Locodjo 1965 to WGS 84 (1)','','Not known.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4142','EPSG','4326','EPSG','2282',15.0,-125.0,53.0,467.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Civ',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1470','Abidjan 1987 to WGS 84 (1)','Derived in Abidjan for use in the immediate area, but used by E&P industry more widely onshore and offshore. A similar transformation (tfm code 6872) was used by Western Geophysical for offshore surveys in the 1990s.','Accuracy is submetre in the area around Abidjan but unknown farther afield. There is some evidence of unknown reliability that suggests accuracy of better than 2m throughout offshore.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4143','EPSG','4326','EPSG','1075',2.0,-124.76,53.0,466.79,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Civ',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1471','MGI to WGS 84 (2)','','For applications to an accuracy of 1.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4312','EPSG','4326','EPSG','1037',NULL,-577.326,-90.129,-463.919,'EPSG','9001',-15.8537,-4.55,-16.3489,'EPSG','9113',-2.4232,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BEV-Aut',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1473','NAD83(CSRS98) to WGS 84 (1)','For many purposes NAD83(CSRS98) can be considered to be coincident with WGS 84.','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4140','EPSG','4326','EPSG','1336',NULL,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1504','Cape to Hartebeesthoek94 (1)','Residuals should not exceed 15 metres. Also used to transform Cape to WGS 84 - see code 1129.','Accuracy 15m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4222','EPSG','4148','EPSG','3309',15.0,-134.73,-110.92,-292.66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DSM-Zaf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1505','Hartebeesthoek94 to WGS 84 (1)','','For many purposes Hartebeesthoek94 datum can be considered to be coincident with WGS 84.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4148','EPSG','4326','EPSG','4540',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Zaf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1508','CH1903 to WGS 84 (1)','Implemented in Bundesamt für Landestopographie programme GRANIT.','?','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4149','EPSG','4326','EPSG','1286',NULL,660.077,13.551,369.344,'EPSG','9001',2.484,1.783,2.939,'EPSG','9113',5.66,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BfL-CH 1',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1509','CH1903+ to CHTRF95 (1)','This transformation is also given as CH1903+ to ETRS89 (1) (code 1647). CHTRF95 is a realisation of ETRS89. May be taken as approximate transformation CH1903+ to WGS 84 - see code 1676.','For applications to an accuracy of 0.1 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4150','EPSG','4151','EPSG','1286',0.1,674.374,15.056,405.346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BfL-CH',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1510','CH1903 to WGS 84 (2)','These parameters are strictly between CH1903+ and CHTRF95 but are used from CH1903 as an approximation which is within the accuracy of the distortions in the CH1903 network.','Accuracy 1.5 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4149','EPSG','4326','EPSG','1286',NULL,674.374,15.056,405.346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BfL-CH 2',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1511','CHTRF95 to WGS 84 (1)','','For many purposes CHTRF95 can be considered to be coincident with WGS 84.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4151','EPSG','4326','EPSG','1286',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-CH',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1512','Rassadiran to WGS 84 (1)','Derived in 1998 at Assaluyeh (Taheri refinery) by Geoid for Total. Used for South Pars phases 2 and 3.','Oil industry engineering survey. Used only for terminal site.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4153','EPSG','4326','EPSG','1338',0.5,-133.63,-157.5,-158.62,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Irn Taheri',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1513','FD58 to WGS 84 (1)','Derived in 1998 in Kangan district by Geoid for Total. Used for South Pars phases 2 and 3.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4132','EPSG','4326','EPSG','2362',0.5,-241.54,-163.64,396.06,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Irn Kangan',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1514','ED50(ED77) to WGS 84 (1)','Used for South Pars phases 6, 7 and 8.','Transformation for whole country: accuracy about 1m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4154','EPSG','4326','EPSG','1123',1.0,-110.33,-97.73,-119.85,'EPSG','9001',0.3423,1.1634,0.2715,'EPSG','9104',0.063,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NCCI-Irn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1515','NAD83 to WGS 84 (5)','Strictly between NAD83 and ITRF96(1997.0). Supersedes NAD83 to WGS 84 (4) (code 1308).','Geodesy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4269','EPSG','4326','EPSG','1323',NULL,-0.991,1.9072,0.5129,'EPSG','9001',-1.25033e-07,-4.6785e-08,-5.6529e-08,'EPSG','9101',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Usa ITRF96',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1516','La Canoa to WGS 84 (18)','Also used for PSAD56 to WGS 84 transformations.','Parameter values estimated accuracy: ± 2.0m; ± 2.7m; ± 1.3m respectively.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4247','EPSG','4326','EPSG','2363',2.5,-273.5,110.6,-357.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LAG-Ven E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1517','Conakry 1905 to WGS 84 (1)','','Not known.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4315','EPSG','4326','EPSG','3257',30.0,-23.0,259.0,-9.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Gin',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1518','Dabola 1981 to WGS 84 (1)','','Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4155','EPSG','4326','EPSG','3257',25.0,-83.0,37.0,124.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Gin',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1527','Campo Inchauspe to WGS 84 (2)','Derived through ties at 2 stations (Cerro Colorado and Chihuido Sur) to 4 IGS stations in February 1995','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4221','EPSG','4326','EPSG','2325',0.5,-154.5,150.7,100.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Arg Neu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1528','Chos Malal 1914 to Campo Inchauspe (1)','Derived through common coordinates at 5 stations.','Oil exploration. Accuracy 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4160','EPSG','4221','EPSG','2325',10.0,160.0,26.0,41.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Arg Neu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1529','Hito XVIII to WGS 84 (1)','Derived through ties at 3 stations (RC03, TOTAL11 and MP12) to 3 IGS stations in November 1995','Oil exploration.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4254','EPSG','4326','EPSG','1486',0.5,18.38,192.45,96.82,'EPSG','9001',0.056,-0.142,-0.2,'EPSG','9104',-0.0013,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Arg TdF',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1530','NAD27 to WGS 84 (30)','','Accuracy 3m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','1077',3.0,-4.2,135.4,181.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ICH-Cub',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1531','Nahrwan 1967 to WGS 84 (4)','Parameter values adopted by Total are mean of those derived by Oceonics and Geoid through ties at platform AK1 to 4 IGS stations in March 1995.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','2392',0.5,-245.0,-153.9,382.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-UAE Abk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1532','M''poraloko to WGS 84 (2)','Derived as mean of Doris determinations at 3 stations in Port Gentil area in 1994.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4266','EPSG','4326','EPSG','1100',0.5,-80.7,-132.5,41.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Elf-Gab94',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1533','Kalianpur 1937 to WGS 84 (2)','','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4144','EPSG','4326','EPSG','2361',5.0,214.0,804.0,268.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Mmr Moat',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1534','Minna to WGS 84 (3)','','Oil exploration.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','2371',NULL,-111.92,-87.85,114.5,'EPSG','9001',1.875,0.202,0.219,'EPSG','9104',0.032,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SHL-Nig S',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1536','Nahrwan 1967 to WGS 84 (5)','Derived by Brown & Root in 1992 for Qatar General Petroleum Corporation North Field development. Adopted by QGPC for all offshore Qatar.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','2406',1.0,-250.2,-153.09,391.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'B&R-Qat off',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1537','Indian 1975 to WGS 84 (3)','Derived in 1995 at point RTSD181.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4240','EPSG','4326','EPSG','2358',1.0,204.64,834.74,293.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fug-Tha',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1538','Carthage to WGS 84 (2)','Derived at station Chaffar January 1995.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4223','EPSG','4326','EPSG','1489',1.0,-260.1,5.5,432.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Elf-Tun',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1539','South Yemen to Yemen NGN96 (1)','May be used as an approximate transformation to WGS 84 - see South Yemen to WGS 84 (1) (code 1682).','For applications to an accuracy of 5 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4164','EPSG','4163','EPSG','1340',5.0,-76.0,-138.0,67.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Yem South',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1540','Yemen NGN96 to WGS 84 (1)','','Accuracy better than 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4163','EPSG','4326','EPSG','1257',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Yem',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1541','Indian 1960 to WGS 72BE (1)','Derived in Vung Tau area by Technical Navigation for Deminex in 1978.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4131','EPSG','4324','EPSG','1495',25.0,199.0,931.0,317.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PV-Vnm',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1542','Indian 1960 to WGS 84 (2)','Derived at 2 stations.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4131','EPSG','4326','EPSG','2359',44.0,198.0,881.0,317.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Vnm 16N',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1543','Indian 1960 to WGS 84 (3)','Derived at 1 station.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4131','EPSG','4326','EPSG','2360',44.0,182.0,915.0,344.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Vnm ConSon',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1544','Hanoi 1972 to WGS 84 (1)','Derived in Vung Tau area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4147','EPSG','4326','EPSG','1494',5.0,-17.51,-108.32,-62.39,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BP-Vnm',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1545','Egypt 1907 to WGS 72 (1)','','Not known.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4229','EPSG','4322','EPSG','1086',5.0,-121.8,98.1,-15.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MCE-Egy',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1546','Egypt 1907 to WGS 84 (3)','','Used for oil exploration by GUPCO.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4229','EPSG','4326','EPSG','2341',30.0,-146.21,112.63,4.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Racal-Egy GoS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1547','Bissau to WGS 84 (1)','Derived at 2 stations.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4165','EPSG','4326','EPSG','3258',25.0,-173.0,253.0,27.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Gnb',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1548','SAD69 to WGS 84 (14)','Derived by Brazilean Institute of Geography and Statistics (IGBE) in 1989. Used by ANP.','Medium and small scale mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4291','EPSG','4326','EPSG','1053',NULL,-66.87,4.37,-38.52,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGBE-Bra',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1549','Aratu to WGS 84 (1)','','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2307',999.0,-158.0,315.0,-148.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra Camp',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1550','Aratu to WGS 84 (2)','Replaced by Aratu to WGS 84 (18) (tfm code 5061) which Petrobras now recommends for the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2308',5.0,-139.62,290.53,-150.29,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra TucN',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1551','Aratu to WGS 84 (3)','Replaced by Aratu to WGS 84 (18) (tfm code 5061) which Petrobras now recommends for the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2309',5.0,-141.15,293.44,-150.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra TucC',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1552','Aratu to WGS 84 (4)','Replaced by Aratu to WGS 84 (18) (tfm code 5061) which Petrobras now recommends for the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2310',5.0,-142.48,296.03,-149.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra TucS',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1555','Naparima 1955 to WGS 84 (2)','Derived in 1989 by ONI for Amoco.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4158','EPSG','4326','EPSG','3143',1.0,-0.465,372.095,171.736,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Amoco-Tto Trin',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1556','Naparima 1955 to WGS 84 (3)','DMA does not differentiate between Naparima 1955 (Trinidad) and Naparima 1972 (Tobago). Consequently for Trinidad IOGP has duplicated this transformation as Naparima 1972 to WGS 84 (3) - see code 1307.','For military purposes only. Accuracy given by DMA is 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4158','EPSG','4326','EPSG','3143',26.0,-2.0,374.0,172.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Tto Trin',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1557','Malongo 1987 to WGS 84 (2)','Derived at station Y in July 1990 through Transit single point positioning using 187 passes by Geodetic Survey Ltd. Replaces Malongo 1987 to WGS 84 (1) (trf code 1330).','Offshore oil exploration and production from June 1990.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4259','EPSG','4326','EPSG','3180',5.0,-254.1,-5.36,-100.29,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CHV-Ago Cab90',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1558','Korean 1995 to WGS 84 (1)','Derived at 5 stations.','For military purposes. Accuracy 1m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4166','EPSG','4326','EPSG','3266',2.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Kor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1560','Nord Sahara 1959 to WGS 72BE (1)','Derived at IGN monument CFP19 using Transit.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4307','EPSG','4324','EPSG','2393',8.0,-156.5,-87.2,285.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGG-Alg HM',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1561','Qatar 1974 to WGS 84 (1)','Derived at 3 stations.','For military purposes only. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4285','EPSG','4326','EPSG','1346',35.0,-128.0,-283.0,22.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Qat',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1562','Qatar 1974 to WGS 84 (2)','Derived by Brown & Root in 1992 for Qatar General Petroleum Corporation.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4285','EPSG','4326','EPSG','2406',1.0,-128.16,-282.42,21.93,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'B&R-Qat off',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1563','Qatar 1974 to WGS 84 (3)','Derived by Qatar Centre for GIS. See Qatar 1974 to WGS 84 (2) (code 1562) for transformation used by QGPC for offshore petroleum industry.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4285','EPSG','4326','EPSG','1346',1.0,-128.033,-283.697,21.052,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGIS-Qat',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1564','NZGD49 to WGS 84 (2)','These parameter values are taken from NZGD49 to NZGD2000 (2) (code 1701) and assume that NZGD2000 and WGS 84 are coincident to within the accuracy of the transformation. For improved accuracy use NZGD49 to WGS 84 (4) (code 1670).','Transformation accuracy about 4 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4272','EPSG','4326','EPSG','3285',4.0,59.47,-5.04,187.44,'EPSG','9001',-0.47,0.1,-1.024,'EPSG','9104',-4.5993,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Nzl 4m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1565','NZGD2000 to WGS 84 (1)','','Assumes NZGD2000 is coincident to WGS 84 to the 1m accuracy level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4167','EPSG','4326','EPSG','1175',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Nzl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1566','NZGD49 to NZGD2000 (1)','For better accuracy use NZGD49 to NZGD2000 (2) (code 1701) or NZGD49 to NZGD2000 (3) (code 1568).','5m accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4272','EPSG','4167','EPSG','3285',5.0,54.4,-20.1,183.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Nzl 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1567','NZGD49 to NZGD2000 (2)','4m accuracy. For better accuracy use NZGD49 to NZGD2000 (3) (code 1568)','4m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4272','EPSG','4167','EPSG','1175',NULL,59.47,-5.04,187.44,'EPSG','9001',-0.47,0.1,1.024,'EPSG','9104',-4.5993,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Nzl 4m',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1569','Accra to WGS 84 (1)','Derived at 3 common points.','Military survey','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4168','EPSG','4326','EPSG','1104',25.0,-199.0,32.0,322.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MCE-Gha',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1570','Accra to WGS 72BE (1)','Derived be single point Transit observation at several locations.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4168','EPSG','4324','EPSG','1505',25.0,-171.16,17.29,323.31,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Gha',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1571','Amersfoort to ETRS89 (1)','Dutch sources also quote an equivalent transformation with parameter values dX=+593.032 dY=+26.000 dZ=+478.741m, rX rY rZ and dS as this tfm. These values belong to a different transformation method and cannot be used with the Coordinate Frame method.','Accuracy 0.5m','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4258','EPSG','4326','EPSG','1172',NULL,565.04,49.91,465.84,'EPSG','9001',1.9848,-1.7439,9.0587,'EPSG','9109',4.0772,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NCG-Nld 2000',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1577','American Samoa 1962 to WGS 84 (1)','Transformation based on observations at 2 stations in 1993.','For military purposes. One sigma uncertainty is 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4169','EPSG','4326','EPSG','3109',44.0,-115.0,118.0,426.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Asm',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1580','NAD83(HARN) to WGS 84 (1)','For many purposes NAD83(HARN) can be considered to be coincident with WGS 84.','Approximation at the +/- 1m level assuming that NAD83(HARN) is equivalent to WGS 84.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4152','EPSG','4326','EPSG','1337',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Usa',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1581','SIRGAS to WGS 84 (1)','','For military purposes. Accuracy 1m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4170','EPSG','4326','EPSG','3448',2.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-S America',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1582','PSAD56 to WGS 84 (10)','Derived May 1995 by Geoid for Total. OSU91A geoid model used.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','2400',3.0,-259.73,173.12,-398.27,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Bol Mad',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1583','PSAD56 to WGS 84 (11)','Derived July 1997 by Geoid from data recorded by UGA for Total. OSU91A geoid model used.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','2401',0.5,-307.7,265.3,-363.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Bol B20',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1584','Deir ez Zor to WGS 72BE (1)','Recomputed in 1991 by Elf from data derived in 1983 at station 254 Deir by Geco using Transit. Derivation of 1983 parameter values of dX=-163.2 dY=-12.7 dZ=+232.7 contained errors in geodetic parameters for Syria.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4227','EPSG','4324','EPSG','2329',5.0,-174.6,-3.1,236.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GECO-Syr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1585','Deir ez Zor to WGS 84 (2)','','?','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4227','EPSG','4326','EPSG','1227',999.0,-177.5,14.1,237.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Syr',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1586','Deir ez Zor to WGS 84 (3)','Derived in 1995 by CGG for Al Furat Petroleum Company. Can be approximated using geocentric translations of dX=-174.3m, dY=+14.1m, dZ=+237.6m.','Oil exploration.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4227','EPSG','4326','EPSG','2327',999.0,-175.09,1.218,238.831,'EPSG','9001',-0.047,0.019,0.808,'EPSG','9104',0.1698,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SHL-Syr Whal',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1587','Deir ez Zor to WGS 84 (4)','Derived at four stations by Topnav in 1997.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4227','EPSG','4326','EPSG','2328',1.0,-191.77,15.01,235.07,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Syr Shad',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1588','ED50 to ETRS89 (1)','Included in Statens Kartverk programme wsktrans from 1997. The same parameter values were adopted for ED50 to WGS84 (variant 23) transformation offshore Norway north of 62N from April 2001 - see code 1612.','Accuracy 1m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4258','EPSG','2332',1.0,-116.641,-56.931,-110.559,'EPSG','9001',4.327,4.464,-4.444,'EPSG','9109',-3.52,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NMA-Nor N65 1997',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1591','RGF93 to ETRS89 (1)','May be taken as approximate transformation RGF93 to WGS 84 - see code 1671.','RGF93 is a national realization of ETRS89.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4171','EPSG','4258','EPSG','1096',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1592','Timbalai 1948 to WGS 84 (2)','Originally used by BSP offshore only, use extended to onshore in 2010.','Oil exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4298','EPSG','4326','EPSG','1055',5.0,-678.0,670.0,-48.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BSP-Brn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1594','AGD66 to GDA94 (8)','Replaces AGD66 to GDA94 (3) (code 1459) from August 2000. For higher accuracy requirements see AGD66 to GDA94 (11) (code 1803). May be taken as approximate transformation AGD66 to WGS 84 - see code 1667.','Recommended for mid-accuracy use in Tasmania. 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4283','EPSG','1282',1.0,-120.271,-64.543,161.632,'EPSG','9001',-0.217,0.067,0.129,'EPSG','9104',2.499,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Tas 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1595','AGD66 to GDA94 (9)','For higher accuracy requirements see AGD66 to GDA94 (11) (code 1803). May be taken as approximate transformation AGD66 to WGS 84 - see code 1668.','Recommended for mid-accuracy use in Northern Territory. 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4283','EPSG','2284',1.0,-124.133,-42.003,137.4,'EPSG','9001',0.008,-0.557,-0.178,'EPSG','9104',-1.854,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-NT 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1597','Bogota 1975 to WGS 84 (2)','Derived in 1995 by WGC at first order stations Recreo and Mena via multi-day ties to 4 IGS stations. Residuals under 20cm.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4218','EPSG','4326','EPSG','2315',0.2,304.5,306.5,-318.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BP-Col CusCup',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1598','POSGAR to WGS 84 (1)','','?','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4172','EPSG','4326','EPSG','1033',NULL,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Arg',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1609','BD72 to WGS 84 (1)','Scale difference is given by information source as 0.999999. Given in this record in ppm to assist application usage. Very similar parameter values (to slightly less precision) used for BD72 to ETRS89: see code 1652.','For applications to an accuracy of 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4313','EPSG','4326','EPSG','1347',1.0,-99.059,53.322,-112.486,'EPSG','9001',-0.419,0.83,-1.885,'EPSG','9104',-1.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Bel 7',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1610','BD72 to WGS 84 (2)','','For applications to an accuracy of 5 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4313','EPSG','4326','EPSG','1347',5.0,-125.8,79.9,-100.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Bel 3',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1611','IRENET95 to ETRS89 (1)','May be taken as approximate transformation IRENET95 to WGS 84 - see code 1678.','IRENET95 is a regional realization of ETRS89.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4173','EPSG','4258','EPSG','1305',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSI-Ire',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1612','ED50 to WGS 84 (23)','Parameter values are taken from ED50 to ETRS89 (1), code 1588. Adopted for ED50 to WGS84 transformations offshore Norway north of 62N from April 2001 when it replaced code 1590. Included in Statens Kartverk programme wsktrans from v4.0.','Oil industry offshore.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2601',1.0,-116.641,-56.931,-110.559,'EPSG','9001',0.893,0.921,-0.917,'EPSG','9104',-3.52,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Nor N62 2001',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1613','ED50 to WGS 84 (24)','Approximation to 1 metre of concatenated transformation ED50 to WGS 84 (14), code 8653. 8653 remains the transformation promulgated by Statens Kartverk but 1613 recommended by EPSG for practical oil industry usage.','Approximation to 1 metre for oil industry use.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2334',1.0,-90.365,-101.13,-123.384,'EPSG','9001',0.333,0.077,0.894,'EPSG','9104',1.994,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Nor S62 2001',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1614','Sierra Leone 1968 to WGS 84 (1)','Determined at 8 stations. Info. source has the source CRS as Sierra Leone 1960. Sierra Leone 1968 is a readjustment of the 1960 network: coordinates changed by less than 3 metres.','Accuracy +/- 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4175','EPSG','4326','EPSG','3306',26.0,-88.0,4.0,101.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Sle',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1615','Timbalai 1948 to WGS 84 (3)','CARE! Erroneous GPS data was used in the derivation of these parameters. They produce a coordinate difference of 10m horizontally and 50m vertically compared to Timbalai 1948 to WGS 84 (2) (code 1592).','Topographic and engineering survey onshore.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4298','EPSG','4326','EPSG','2349',100.0,-726.282,703.611,-48.999,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SD-Brn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1616','PSD93 to WGS 72 (1)','','Oil exploration. Residuals 1.2m at 67% probability level.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4134','EPSG','4322','EPSG','3288',1.2,-182.046,-225.604,168.884,'EPSG','9001',-0.616,-1.655,7.824,'EPSG','9104',16.641,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PDO-Omn 93',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1617','PSD93 to WGS 84 (3)','Accuracy better than 0.5m in block 4.','Oil exploration.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4134','EPSG','4326','EPSG','2404',0.5,-191.808,-250.512,167.861,'EPSG','9001',-0.792,-1.653,8.558,'EPSG','9104',20.703,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tot-Omn 95',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1618','MGI to WGS 84 (3)','Same transformation parameters used for MGI to ETRS89 (1) (code 1619).','For applications to an accuracy of 1.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4312','EPSG','4326','EPSG','1037',1.5,577.326,90.129,463.919,'EPSG','9001',5.137,1.474,5.297,'EPSG','9104',2.4232,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BEV-Aut',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1619','MGI to ETRS89 (1)','Same transformation parameters used for MGI to WGS 84 (3) (code 1618). Precision of parameter values in this record were increased effective 16-Dec-2006 (db v6.12): see change record 2006.971.','For applications to an accuracy of 1.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4312','EPSG','4258','EPSG','1037',1.5,577.326,90.129,463.919,'EPSG','9001',5.137,1.474,5.297,'EPSG','9104',2.4232,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BEV-Aut',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1620','MGI to ETRS89 (2)','May be taken as approximate transformation MGI to WGS 84 - see code 1621.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4312','EPSG','4258','EPSG','1076',1.0,551.7,162.9,467.9,'EPSG','9001',6.04,1.96,-11.38,'EPSG','9104',-4.82,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DGU-Hrv',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1621','MGI to WGS 84 (4)','Parameter values from MGI to ETRS89 (2) (code 1620). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4312','EPSG','4326','EPSG','1076',1.0,551.7,162.9,467.9,'EPSG','9001',6.04,1.96,-11.38,'EPSG','9104',-4.82,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Hrv',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1622','S-JTSK to ETRS89 (1)','May be taken as approximate transformation S-JTSK to WGS 84 - see code 1623. Replaced by S-JTSK/05 to ETRS89 (1) (code 5226) in 2009.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4156','EPSG','4258','EPSG','1079',1.0,570.8,85.7,462.8,'EPSG','9001',4.998,1.587,5.261,'EPSG','9104',3.56,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CUZK-Cze',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1623','S-JTSK to WGS 84 (1)','Parameter values from S-JTSK to ETRS89 (1) (code 1622). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. Replaced by S-JTSK to WGS 84 (5) (code 5239).','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4156','EPSG','4326','EPSG','1079',1.0,570.8,85.7,462.8,'EPSG','9001',4.998,1.587,5.261,'EPSG','9104',3.56,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Cze',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1624','S-JTSK to ETRS89 (2)','May be taken as approximate transformation S-JTSK to WGS 84 - see code 1625.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4156','EPSG','4258','EPSG','1211',1.0,559.0,68.7,451.5,'EPSG','9001',7.92,4.073,4.251,'EPSG','9104',5.71,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UGKK-Svk',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1625','S-JTSK to WGS 84 (2)','Parameter values from S-JTSK to ETRS89 (2) (code 1624). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4156','EPSG','4326','EPSG','1211',1.0,559.0,68.7,451.5,'EPSG','9001',7.92,4.073,4.251,'EPSG','9104',5.71,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Svk',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1626','ED50 to ETRS89 (4)','May be taken as approximate transformation ED50 to WGS 84 - see code 1627.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4258','EPSG','3237',1.0,-81.1,-89.4,-115.8,'EPSG','9001',0.485,0.024,0.413,'EPSG','9104',-0.54,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KMS-Dnk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1627','ED50 to WGS 84 (25)','Parameter values from ED50 to ETRS89 (4) (code 1626). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','3237',1.0,-81.1,-89.4,-115.8,'EPSG','9001',0.485,0.024,0.413,'EPSG','9104',-0.54,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Dnk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1628','ED50 to ETRS89 (5)','May be taken as approximate transformation ED50 to WGS 84 - see code 1629.','For applications to an accuracy of 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4258','EPSG','1105',1.0,-116.8,-106.4,-154.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DGC-Gib',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1629','ED50 to WGS 84 (26)','Parameter values from ED50 to ETRS89 (5) (code 1628). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1105',1.0,-116.8,-106.4,-154.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Gib',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1630','ED50 to ETRS89 (6)','May be taken as approximate transformation ED50 to WGS 84 - see code 1631.','For applications to an accuracy of 1.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4258','EPSG','2335',1.5,-181.5,-90.3,-187.2,'EPSG','9001',0.144,0.492,-0.394,'EPSG','9104',17.57,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CNIG-Esp Bal',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1631','ED50 to WGS 84 (27)','Parameter values from ED50 to ETRS89 (6) (code 1630). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2335',1.5,-181.5,-90.3,-187.2,'EPSG','9001',0.144,0.492,-0.394,'EPSG','9104',17.57,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Esp Bal',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1632','ED50 to ETRS89 (7)','May be taken as approximate transformation ED50 to WGS 84 - see code 1633.','For applications to an accuracy of 1.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4258','EPSG','2336',1.5,-131.0,-100.3,-163.4,'EPSG','9001',-1.244,-0.02,-1.144,'EPSG','9104',9.39,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CNIG-Esp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1633','ED50 to WGS 84 (28)','Parameter values from ED50 to ETRS89 (7) (code 1632). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2336',1.5,-131.0,-100.3,-163.4,'EPSG','9001',-1.244,-0.02,-1.144,'EPSG','9104',9.39,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Esp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1634','ED50 to ETRS89 (8)','May be taken as approximate transformation ED50 to WGS 84 - see code 1635.','For applications to an accuracy of 1.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4258','EPSG','2337',1.5,-178.4,-83.2,-221.3,'EPSG','9001',0.54,-0.532,-0.126,'EPSG','9104',21.2,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CNIG-Esp NW',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1635','ED50 to WGS 84 (29)','Parameter values from ED50 to ETRS89 (8) (code 1634). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2337',1.5,-178.4,-83.2,-221.3,'EPSG','9001',0.54,-0.532,-0.126,'EPSG','9104',21.2,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Esp NW',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1638','KKJ to ETRS89 (1)','May be taken as approximate transformation KKJ to WGS 84 - see code 1639. Replaced by KKJ to ETRS89 (2) (code 10098).','For applications to an accuracy of 1 to 2 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4123','EPSG','4258','EPSG','3333',1.5,-90.7,-106.1,-119.2,'EPSG','9001',4.09,0.218,-1.05,'EPSG','9104',1.37,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLS-Fin',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1639','KKJ to WGS 84 (1)','Parameter values from KKJ to ETRS89 (1) (code 1638). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. Replaced by KKJ to WGS 84 (2) (code 10099).','For applications to an accuracy of 1 to 2 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4123','EPSG','4326','EPSG','3333',1.5,-90.7,-106.1,-119.2,'EPSG','9001',4.09,0.218,-1.05,'EPSG','9104',1.37,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Fin',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1640','TM65 to ETRS89 (1)','May be taken as approximate transformation TM65 to WGS 84 - see code 1641.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4299','EPSG','4258','EPSG','1305',NULL,482.5,-130.6,564.6,'EPSG','9001',-1.042,-0.214,-0.631,'EPSG','9104',8.15,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSI-Ire',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1641','TM65 to WGS 84 (2)','Parameter values from TM75 to ETRS89 (2) (code 1953). Assumes each pair of (i) TM65 and TM75, and (ii) ETRS89 and WGS 84, can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4299','EPSG','4326','EPSG','1305',1.0,482.5,-130.6,564.6,'EPSG','9001',-1.042,-0.214,-0.631,'EPSG','9104',8.15,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ire',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1642','Luxembourg 1930 to ETRS89 (1)','May be taken as approximate transformation Luxembourg 1930 to WGS 84 - see code 1643. Replaced by Luxembourg 1930 to ETRS89 (3) (code 5485).','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4181','EPSG','4258','EPSG','1146',1.0,-193.0,13.7,-39.3,'EPSG','9001',-0.41,-2.933,2.688,'EPSG','9104',0.43,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ACT-Lux',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1643','Luxembourg 1930 to WGS 84 (1)','Parameter values from Luxembourg 1930 to ETRS89 (1) (code 1642). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4181','EPSG','4326','EPSG','1146',1.0,-193.0,13.7,-39.3,'EPSG','9001',-0.41,-2.933,2.688,'EPSG','9104',0.43,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Lux',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1644','Pulkovo 1942(58) to ETRS89 (1)','May be taken as approximate transformation Pulkovo 1942(58) to WGS 84 - see code 1645. Parameter values given to greater precision but to no better accuracy in GUGiK Technical Instruction G-2, Warsaw 2001.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4179','EPSG','4258','EPSG','3293',1.0,33.4,-146.6,-76.3,'EPSG','9001',-0.359,-0.053,0.844,'EPSG','9104',-0.84,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GUGK-Pol',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1645','Pulkovo 1942(58) to WGS 84 (1)','Parameter values from Pulkovo 1942(58) to ETRS89 (1) (code 1644). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4179','EPSG','4326','EPSG','3293',1.0,33.4,-146.6,-76.3,'EPSG','9001',-0.359,-0.053,0.844,'EPSG','9104',-0.84,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pol',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1646','CH1903 to ETRS89 (1)','In EPSG db v5.2 to v8.9 given to 1dm to accord with Eurogeographics precision ; the difference in output coordinates of cms is considered by swisstopo to be insignificant given the tfm accuracy. Superseded by CH1903 to ETRS89 (2) (tfm code 7674).','Parameter values from CH1903+ to ETRS89 (tfm code 1647) and are used as an approximation from CH1903 with a lesser accuracy of 1.5m which equates to the magnitude of distortions in the CH1903 network.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4149','EPSG','4258','EPSG','1286',1.5,674.374,15.056,405.346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BfL-Che',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1647','CH1903+ to ETRS89 (1)','This transformation is also given as CH1903+ to CHTRF95 (1) (code 1509). CHTRF95 is a local realisation of ETRS89.','For applications to an accuracy of 0.1 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4150','EPSG','4258','EPSG','1286',0.1,674.374,15.056,405.346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BfL-Che',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1648','EST97 to ETRS89 (1)','May be taken as approximate transformation EST97 to WGS 84 - see code 1649.','EST97 is a national realization of ETRS89.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4180','EPSG','4258','EPSG','1090',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLB-Est',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1649','EST97 to WGS 84 (1)','Parameter values taken from EST97 to ETRS89 (1) (code 1648). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4180','EPSG','4326','EPSG','1090',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Est',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1650','ED50 to ETRS89 (10)','These same parameter values are used to transform to WGS 84. See ED50 to WGS 84 (17) (code 1275).','For applications to an accuracy of 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4258','EPSG','1096',2.0,-84.0,-97.0,-117.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1651','NTF to ETRS89 (1)','These same parameter values are used to transform to WGS 84. See NTF to WGS 84 (1) (code 1193).','For applications to an accuracy of 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4275','EPSG','4258','EPSG','3694',2.0,-168.0,-60.0,320.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1652','BD72 to ETRS89 (1)','May be taken as approximate transformation BD72 to WGS 84 - see code 1609.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4313','EPSG','4258','EPSG','1347',1.0,-99.1,53.3,-112.5,'EPSG','9001',0.419,-0.83,1.885,'EPSG','9104',-1.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Bel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1653','NGO 1948 to ETRS89 (1)','May be taken as approximate transformation NGO 1948 to WGS 84 - see code 1654.','For applications to an accuracy of 3 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4273','EPSG','4258','EPSG','1352',3.0,278.3,93.0,474.5,'EPSG','9001',7.889,0.05,-6.61,'EPSG','9104',6.21,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SKV-Nor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1654','NGO 1948 to WGS 84 (1)','Parameter values from NGO 1948 to ETRS89 (1) (code 1653). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 3 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4273','EPSG','4326','EPSG','1352',3.0,278.3,93.0,474.5,'EPSG','9001',7.889,0.05,-6.61,'EPSG','9104',6.21,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Nor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1655','Lisbon to ETRS89 (1)','Derived in 2000 at 8 stations. Replaced by 2001 derivation (tfm code 1997). May be taken as approximate transformation to WGS 84 - see tfm code 1656,','For applications to an accuracy of 3 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4207','EPSG','4258','EPSG','1294',3.0,-280.9,-89.8,130.2,'EPSG','9001',-1.721,0.355,-0.371,'EPSG','9104',-5.92,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ICC-Prt 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1656','Lisbon to WGS 84 (1)','Parameter values from Lisbon to ETRS89 (1) (code 1655). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. Replaced by Lisbon to WGS 84 (4) (code 1988).','For applications to an accuracy of 3 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4207','EPSG','4326','EPSG','1294',3.0,-280.9,-89.8,130.2,'EPSG','9001',-1.721,0.355,-0.371,'EPSG','9104',-5.92,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Prt 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1657','Datum 73 to ETRS89 (1)','Derived in 2000 at 8 stations. Replaced by 2001 derivation (tfm code 1992). May be taken as approximate tfm to WGS 84 - see tfm 1658.','For applications to an accuracy of 2 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4274','EPSG','4258','EPSG','1294',2.0,-238.2,85.2,29.9,'EPSG','9001',0.166,0.046,1.248,'EPSG','9104',2.03,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ICC-Prt 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1658','Datum 73 to WGS 84 (1)','Parameter values from Datum 73 to ETRS89 (1) (code 1657). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. Replaced by Datum 73 to WGS 84 (4) (tfm code 1987).','For applications to an accuracy of 2 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4274','EPSG','4326','EPSG','1294',2.0,-238.2,85.2,29.9,'EPSG','9001',0.166,0.046,1.248,'EPSG','9104',2.03,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Prt 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1659','Monte Mario to ETRS89 (1)','May be taken as approximate transformation Monte Mario to WGS 84 - see code 1660.','Accuracy: 4 metres','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4265','EPSG','4258','EPSG','2372',4.0,-104.1,-49.1,-9.9,'EPSG','9001',0.971,-2.917,0.714,'EPSG','9104',-11.68,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Ita main',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1660','Monte Mario to WGS 84 (4)','Parameter values from Monte Mario to ETRS89 (1) (code 1659). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','Accuracy: 4 metres','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2372',4.0,-104.1,-49.1,-9.9,'EPSG','9001',0.971,-2.917,0.714,'EPSG','9104',-11.68,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ita main',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1661','Monte Mario to ETRS89 (2)','May be taken as approximate transformation Monte Mario to WGS 84 - see code 1662.','Accuracy: 4 metres','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4265','EPSG','4258','EPSG','2339',4.0,-168.6,-34.0,38.6,'EPSG','9001',-0.374,-0.679,-1.379,'EPSG','9104',-9.48,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Ita Sar',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1662','Monte Mario to WGS 84 (2)','Parameter values from Monte Mario to ETRS89 (2) (code 1661). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','Accuracy: 4 metres','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2339',4.0,-168.6,-34.0,38.6,'EPSG','9001',-0.374,-0.679,-1.379,'EPSG','9104',-9.48,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ita Sar',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1663','Monte Mario to ETRS89 (3)','May be taken as approximate transformation Monte Mario to WGS 84 - see code 1664.','Accuracy: 4 metres','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4265','EPSG','4258','EPSG','2340',4.0,-50.2,-50.4,84.8,'EPSG','9001',-0.69,-2.012,0.459,'EPSG','9104',-28.08,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Ita Sic',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1664','Monte Mario to WGS 84 (3)','Parameter values from Monte Mario to ETRS89 (3) (code 1663). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','Accuracy: 4 metres','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4265','EPSG','4326','EPSG','2340',4.0,-50.2,-50.4,84.8,'EPSG','9001',-0.69,-2.012,0.459,'EPSG','9104',-28.08,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ita Sic',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1665','AGD66 to WGS 84 (12)','Parameter values from AGD66 to GDA94 (2) (code 1458). Assumes GDA94 and WGS 84 can be considered the same to within the accuracy of the transformation.','Recommended for mid-accuracy use in A.C.T. 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','2283',1.0,-129.193,-41.212,130.73,'EPSG','9001',-0.246,-0.374,-0.329,'EPSG','9104',-2.955,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-ACT 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1666','AGD66 to WGS 84 (13)','Parameter values from AGD66 to GDA94 (4) (code 1460). Assumes GDA94 and WGS 84 can be considered the same to within the accuracy of the transformation.','Recommended for mid-accuracy use in NSW and Victoria. 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','2286',1.0,-119.353,-48.301,139.484,'EPSG','9001',-0.415,-0.26,-0.437,'EPSG','9104',-0.613,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-NSW Vic 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1667','AGD66 to WGS 84 (14)','Parameter values from AGD66 to GDA94 (8) (code 1594). Assumes GDA94 and WGS 84 can be considered the same to within the accuracy of the transformation.','Recommended for mid-accuracy use in Tasmania. 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','1282',1.0,-120.271,-64.543,161.632,'EPSG','9001',-0.217,0.067,0.129,'EPSG','9104',2.499,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Tas 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1668','AGD66 to WGS 84 (15)','Parameter values from AGD66 to GDA94 (9) (code 1595). Assumes GDA94 and WGS 84 can be considered the same to within the accuracy of the transformation.','Recommended for mid-accuracy use in Northern Territory. 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','2284',1.0,-124.133,-42.003,137.4,'EPSG','9001',0.008,-0.557,-0.178,'EPSG','9104',-1.854,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-NT 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1669','AGD84 to WGS 84 (7)','Parameter values from AGD84 to GDA94 (2) (code 1280). Assumes GDA94 and WGS 84 can be considered the same to within the accuracy of the transformation. Replaces AGD84 to WGS 84 (2) (code 1236). Note: AGD84 officially adopted only in Qld, SA and WA.','1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4203','EPSG','4326','EPSG','2576',1.0,-117.763,-51.51,139.061,'EPSG','9001',-0.292,-0.443,-0.277,'EPSG','9104',-0.191,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Aus 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1671','RGF93 to WGS 84 (1)','Parameter values from RGF93 to ETRS89 (1) (code 1591) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4171','EPSG','4326','EPSG','1096',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Fra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1672','Amersfoort to WGS 84 (2)','Parameter values from Amersfoort to ETRS89 (1) (code 1751) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. Replaces Amersfoort to WGS 84 (1) (code 1112). Replaced by Amersfoort to WGS 84 (3) (code 15934).','Approximation at the +/- 1m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4289','EPSG','4326','EPSG','1275',1.0,565.04,49.91,465.84,'EPSG','9001',1.9848,-1.7439,9.0587,'EPSG','9109',4.0772,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Nld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1673','DHDN to WGS 84 (1)','Parameter values from DHDN to ETRS89 (1) (code 1309) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. Replaced by DHDN to WGS 84 (2) (tfm code 1777).','For applications with an accuracy at 5 m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4314','EPSG','4326','EPSG','2326',5.0,582.0,105.0,414.0,'EPSG','9001',-1.04,-0.35,3.08,'EPSG','9104',8.3,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Deu W',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1674','Pulkovo 1942(83) to ETRS89 (1)','Mean of 20 stations. May be taken as approximate transformation to WGS 84 - see code 1675. Also given by EuroGeographics at http://crs.ifag.de/ as a Position Vector transformation with changed values for rotations. In 2001 partially replaced by tfm 1775.','Residuals under 2 m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4178','EPSG','4258','EPSG','1343',2.0,24.0,-123.0,-94.0,'EPSG','9001',-0.02,0.25,0.13,'EPSG','9104',1.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IfAG-Deu E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1675','Pulkovo 1942(83) to WGS 84 (1)','Parameter values from Pulkovo 1942(83) to ETRS89 (1) (code 1674) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation.','Residuals under 2 m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4178','EPSG','4326','EPSG','1343',2.0,24.0,-123.0,-94.0,'EPSG','9001',-0.02,0.25,0.13,'EPSG','9104',1.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Deu E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1676','CH1903+ to WGS 84 (1)','Parameter values are from CH1903+ to CHTRF95 (1) (code 1509) assuming that CHTRF95 is equivalent to WGS 84. That transformation is also given as CH1903+ to ETRS89 (1) (code 1647). CHTRF95 is a realisation of ETRS89.','Approximation at the +/- 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4150','EPSG','4326','EPSG','1286',1.0,674.374,15.056,405.346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BfL-CH',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1677','HD72 to WGS 84 (1)','Parameter values taken from HD72 to ETRS89 (1) (code 1273) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4237','EPSG','4326','EPSG','1119',NULL,56.0,75.77,15.31,'EPSG','9001',-0.37,-0.2,-0.21,'EPSG','9104',-1.01,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Hun',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1678','IRENET95 to WGS 84 (1)','Assumes that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. IRENET95 is a regional realisation of ETRS89.','Approximation at the +/- 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4173','EPSG','4326','EPSG','1305',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ire',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1679','Pulkovo 1942 to WGS 84 (2)','Parameter values taken from Pulkovo 1942 to LKS94(ETRS89) (1) (code 1274) assuming that LKS94(ETRS89) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 9m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','3272',9.0,-40.595,-18.55,-69.339,'EPSG','9001',-2.508,-1.832,2.611,'EPSG','9104',-4.299,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ltu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1680','RT90 to WGS 84 (1)','Parameter values from RT90 to ETRS89 (1) (code 1437) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. Replaced by RT90 to WGS 84 (2) (code 1896) from 2001.','Approximation at the +/- 1m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4124','EPSG','4326','EPSG','1225',1.0,419.3836,99.3335,591.3451,'EPSG','9001',-0.850389,-1.817277,7.862238,'EPSG','9104',-0.99496,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Swe',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1682','South Yemen to WGS 84 (1)','Parameter values taken from South Yemen to Yemen NGN96 (1) (code 1539) assuming that NGN96 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 5m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4164','EPSG','4326','EPSG','1340',5.0,-76.0,-138.0,67.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Yem South',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1683','Tete to WGS 84 (1)','Parameter values taken from Tete to Moznet (1) (code 1297) assuming that Moznet is equivalent to WGS 84 within the accuracy of the transformation.','Residuals as high as 30 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4127','EPSG','4326','EPSG','3281',30.0,-115.064,-87.39,-101.716,'EPSG','9001',0.058,-4.001,2.062,'EPSG','9104',9.366,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Moz',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1684','Tete to WGS 84 (2)','Parameter values taken from Tete to Moznet (2) (code 1298) assuming that Moznet is equivalent to WGS 84 within the accuracy of the transformation.','Residuals are generally under 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4127','EPSG','4326','EPSG','2350',1.0,-82.875,-57.097,-156.768,'EPSG','9001',2.158,-1.524,0.982,'EPSG','9104',-0.359,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Moz A',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1685','Tete to WGS 84 (3)','Parameter values taken from Tete to Moznet (3) (code 1299) assuming that Moznet is equivalent to WGS 84 within the accuracy of the transformation.','Residuals are generally under 4 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4127','EPSG','4326','EPSG','2351',4.0,-138.527,-91.999,-114.591,'EPSG','9001',0.14,-3.363,2.217,'EPSG','9104',11.748,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Moz B',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1686','Tete to WGS 84 (4)','Parameter values taken from Tete to Moznet (4) (code 1300) assuming that Moznet is equivalent to WGS 84 within the accuracy of the transformation.','Residuals are generally under 3 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4127','EPSG','4326','EPSG','2352',3.0,-73.472,-51.66,-112.482,'EPSG','9001',-0.953,-4.6,2.368,'EPSG','9104',0.586,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Moz C',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1687','Tete to WGS 84 (5)','Parameter values taken from Tete to Moznet (5) (code 1301) assuming that Moznet is equivalent to WGS 84 within the accuracy of the transformation.','Residuals are 5-10 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4127','EPSG','4326','EPSG','2353',10.0,219.315,168.975,-166.145,'EPSG','9001',-0.198,-5.926,2.356,'EPSG','9104',-57.104,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Moz D',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1701','NZGD49 to NZGD2000 (2)','For better accuracy use NZGD49 to NZGD2000 (3) (code 1568).','4m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4272','EPSG','4167','EPSG','3285',4.0,59.47,-5.04,187.44,'EPSG','9001',-0.47,0.1,-1.024,'EPSG','9104',-4.5993,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Nzl 4m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1751','Amersfoort to ETRS89 (1)','Replaced by Amersfoort to ETRS89 (3) (tfm code 15739). Dutch sources also quote an equivalent transformation using the Molodenski-Badekas 10-parameter method (M-B) - see tfm code 1066.','Accuracy 0.5m','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4289','EPSG','4258','EPSG','1275',0.5,565.04,49.91,465.84,'EPSG','9001',1.9848,-1.7439,9.0587,'EPSG','9109',4.0772,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NCG-Nld 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1753','CH1903 to WGS 84 (1)','Implemented in Bundesamt für Landestopografie programme GRANIT. Used from 1987 to 1997. Not recommended for current usage - replaced by CH1903 to WGS 84 (2) (code 1766).','Used in programme GRANIT between 1987 and 1997.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4149','EPSG','4326','EPSG','1286',1.0,660.077,13.551,369.344,'EPSG','9001',2.484,1.783,2.939,'EPSG','9113',5.66,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BfL-CH 1',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1754','Minna to WGS 84 (3)','Derived at 8 stations across the Niger delta. Used by Shell SPDC throughout southern Nigeria onshore, delta and shallow offshore from 1994 and by Total in OPL246. Sometimes given with parameter values to greater resolution; values here are adequate.','Oil exploration.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','2371',5.0,-111.92,-87.85,114.5,'EPSG','9001',1.875,0.202,0.219,'EPSG','9104',0.032,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SHL-Nga S',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1766','CH1903 to WGS 84 (2)','Parameters values from CH1903 to ETRS89 (1) (tfm code 1646) assuming ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. Replaces CH1903 to WGS 84 (1) (code 1753). Replaced by CH1903 to WGS 84 (3) (code 7788).','Parameter values originally from CH1903+ to ETRS89 (tfm code 1647) and are used in tfm code 1646 as an approximation from CH1903 to ETRS89 with a lesser accuracy of 1.5m which equates to the magnitude of distortions in the CH1903 network.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4149','EPSG','4326','EPSG','1286',1.5,674.374,15.056,405.346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BfL-CH 2',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1767','REGVEN to SIRGAS 1995 (1)','','Accuracy 2 centimetres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4189','EPSG','4170','EPSG','1251',0.02,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CN-Ven',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1768','REGVEN to WGS 84 (1)','','Approximation at the +/- 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4189','EPSG','4326','EPSG','1251',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ven',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1769','PSAD56 to REGVEN (1)','May be taken as transformation to WGS 84 - see PSAD56 to WGS 84 (13) (code 1095).','Spatial referencing.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4248','EPSG','4189','EPSG','3327',15.0,-270.933,115.599,-360.226,'EPSG','9001',-5.266,-1.238,2.381,'EPSG','9104',-5.109,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2464351.59,-5783466.61,974809.81,'EPSG','9001','IGSB-Ven',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1770','PSAD56 to WGS84 (1)','Parameter vales are from PSAD56 to REGVEN (1) (code 1769) assuming that REGVEN is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4248','EPSG','4326','EPSG','1251',NULL,-270.933,115.599,-360.226,'EPSG','9001',-5.266,-1.238,2.381,'EPSG','9104',-5.109,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2464351.59,-5783466.61,974809.81,'EPSG','9001','EPSG-Ven',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1771','La Canoa to REGVEN (1)','May be used as transformation to WGS 84 - see La Canoa to WGS 84 (13) (code 1096)','Spatial referencing.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4247','EPSG','4189','EPSG','3327',15.0,-270.933,115.599,-360.226,'EPSG','9001',-5.266,-1.238,2.381,'EPSG','9104',-5.109,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2464351.59,-5783466.61,974809.81,'EPSG','9001','IGSB-Ven',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1772','La Canoa to WGS84 (1)','Parameter values are from La Canoa to REGVEN (1) (code 1771) assuming that REGVEN is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4247','EPSG','4326','EPSG','1251',NULL,-270.933,115.599,-360.226,'EPSG','9001',-5.266,-1.238,2.381,'EPSG','9104',-5.109,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2464351.59,-5783466.61,974809.81,'EPSG','9001','EPSG-Ven',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1773','POSGAR 98 to WGS 84 (1)','','Approximation at the +/- 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4190','EPSG','4326','EPSG','1033',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Arg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1774','POSGAR 98 to SIRGAS 1995 (1)','','POSGAR 98 is a densification of SIRGAS 1995.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4190','EPSG','4170','EPSG','1033',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Arg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1775','Pulkovo 1942(83) to ETRS89 (2)','Derived at 35 points of the German GPS Network DREF. From 2001 replaces Pulkovo 1942(83) to ETRS89 (1) (code 1674) within Mecklenburg-Vorpommern and Sachsen-Anhalt. From 2009 replaces tfm 1674 in all other states of former East Germany.','For applications with an accuracy at 0.1m level','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4178','EPSG','4258','EPSG','1343',0.1,24.9,-126.4,-93.2,'EPSG','9001',-0.063,-0.247,-0.041,'EPSG','9104',1.01,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IfAG-Deu E 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1776','DHDN to ETRS89 (2)','Mean of 109 stations. Replaces DHDN to ETRS89 (1) (tfm code 1309). May be taken as approximate transformation DHDN to WGS 84 - see code 1777.','For applications with an accuracy at 3 m level','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4258','EPSG','2326',3.0,598.1,73.7,418.2,'EPSG','9001',0.202,0.045,-2.455,'EPSG','9104',6.7,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IfAG-Deu W 3m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1777','DHDN to WGS 84 (2)','Parameter values from DHDN to ETRS89 (2) (code 1776) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. Replaces DHDN to WGS 84 (1) (tfm code 1673).','For applications with an accuracy at 3 m level','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4326','EPSG','2326',3.0,598.1,73.7,418.2,'EPSG','9001',0.202,0.045,-2.455,'EPSG','9104',6.7,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Deu W 3m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1778','DHDN to ETRS89 (3)','Derived in 2001 at 41 points of the German GPS Network DREF.','For applications with an accuracy at sub-metre level.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4258','EPSG','2543',1.0,597.1,71.4,412.1,'EPSG','9001',0.894,0.068,-1.563,'EPSG','9104',7.58,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IfAG-Deu W-S',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1779','DHDN to ETRS89 (4)','Derived at 27 points of the German GPS Network DREF.','For applications with an accuracy at sub-metre level.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4258','EPSG','2542',1.0,584.8,67.0,400.3,'EPSG','9001',0.105,0.013,-2.378,'EPSG','9104',10.29,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IfAG-Deu W-cen',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1780','DHDN to ETRS89 (5)','Derived at 21 points of the German GPS Network DREF.','For applications with an accuracy at sub-metre level','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4258','EPSG','2541',1.0,590.5,69.5,411.6,'EPSG','9001',-0.796,-0.052,-3.601,'EPSG','9104',8.3,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IfAG-Deu W-N',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1781','DHDN to ETRS89 (6)','Derived at 10 points of the German GPS Network DREF.','For applications with an accuracy at 0.1m level','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4258','EPSG','2544',0.1,599.4,72.4,419.2,'EPSG','9001',-0.062,-0.022,-2.723,'EPSG','9104',6.46,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IfAG-Deu Thur',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1782','DHDN to ETRS89 (7)','Derived at 35 points of the German GPS Network DREF.','For applications with an accuracy at 0.1m level','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4258','EPSG','2545',0.1,612.4,77.0,440.2,'EPSG','9001',-0.054,0.057,-2.797,'EPSG','9104',2.55,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IfAG-Deu Sach',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1783','ED50 to ETRS89 (9)','May be taken as approximate transformation ED50 to WGS 84 - see code 1784. Note: the ETRS89 CRS is not used in Turkey.','For applications to an accuracy of 2 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4258','EPSG','1237',2.0,-84.1,-101.8,-129.7,'EPSG','9001',0.0,0.0,0.468,'EPSG','9104',1.05,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'HGK-Tur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1784','ED50 to WGS 84 (30)','Parameter values from ED50 to ETRS89 (9) (code 1783). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 2 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1237',2.0,-84.1,-101.8,-129.7,'EPSG','9001',0.0,0.0,0.468,'EPSG','9104',1.05,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Tur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1785','MGI to ETRS89 (3)','May be taken as approximate transformation MGI to WGS 84 - see code 1786.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4312','EPSG','4258','EPSG','1212',1.0,426.9,142.6,460.1,'EPSG','9001',4.91,4.49,-12.42,'EPSG','9104',17.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GURS-Svn',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1786','MGI to WGS 84 (5)','Parameter values from MGI to ETRS89 (3) (code 1785). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4312','EPSG','4326','EPSG','1212',1.0,426.9,142.6,460.1,'EPSG','9001',4.91,4.49,-12.42,'EPSG','9104',17.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Svn',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1787','RT90 to ETRS89 (2)','Derived at 165 points. Supersedes RT90 to ETRS89 (1) (code 1437). May be taken as approximate transformation RT90 to WGS 84 - see code 1787.','Accuracy 0.1m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4124','EPSG','4258','EPSG','1225',NULL,414.1,41.3,603.1,'EPSG','9001',-0.855,2.141,-7.023,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLS-Swe 2001',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1788','RT90 to WGS 84 (2)','Parameter values from RT90 to ETRS89 (1) (code 1787) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. Supersedes RT90 to WGS 84 (1) (code 1680).','Approximation at the +/- 1m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4124','EPSG','4326','EPSG','1225',NULL,414.1,41.3,603.1,'EPSG','9001',-0.855,2.141,-7.023,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Swe 2001',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1789','Dealui Piscului 1933 to WGS 84 (1)','Parameter values taken from Pulkovo 1942 to WGS 84 (9) (code 1293) assuming that','?','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4316','EPSG','4326','EPSG','1197',NULL,103.25,-100.4,-307.19,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NAMR-Rom',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1790','Lisbon to ETRS89 (2)','Derived in 2001. Supersedes Lisbon to ETRS89 (1) (code 1655).','For applications to an accuracy of 2 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4207','EPSG','4258','EPSG','1294',NULL,-282.1,-72.2,120.0,'EPSG','9001',-1.592,0.145,-0.89,'EPSG','9104',-4.46,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ICC-Prt 2001',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1791','Lisbon to WGS 84 (2)','Parameter values from Lisbon to ETRS89 (2) (code 1790). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 2 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4207','EPSG','4258','EPSG','1294',NULL,-282.1,-72.2,120.0,'EPSG','9001',-1.592,0.145,-0.89,'EPSG','9104',-4.46,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Prt 2001',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1792','Datum 73 to ETRS89 (2)','Derived in 2001. Supersedes Datum 73 to ETRS89 (1) (code 1657).','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4274','EPSG','4258','EPSG','1294',NULL,-231.0,102.6,29.8,'EPSG','9001',0.615,-0.198,0.881,'EPSG','9104',1.79,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ICC-Prt 2001',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1793','Datum 73 to WGS 84 (2)','Parameter values from Datum 73 to ETRS89 (2) (code 1792). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4274','EPSG','4258','EPSG','1294',NULL,-231.0,102.6,29.8,'EPSG','9001',0.615,-0.198,0.881,'EPSG','9104',1.79,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Prt 2001',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1794','MGI to WGS 84 (6)','For more accurate transformation see MGI to WGS 84 (7) (code 1795).','Oil industry','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4312','EPSG','4326','EPSG','3536',999.0,695.5,-216.6,491.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'JPet-Yug',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1795','MGI to WGS 84 (7)','','Oil industry','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4312','EPSG','4326','EPSG','3536',999.0,408.0895,-288.9616,791.5498,'EPSG','9001',-4.078662,0.022669,9.825424,'EPSG','9104',94.060626,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4444943.0248,1518098.4827,4302370.0765,'EPSG','9001','JPET-Yug MB',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1796','Manoca 1962 to WGS 84 (1)','Derived at two points, checked at a third by Stolt Comex Seaway and Geoid for Elf.','Oil industry','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4193','EPSG','4326','EPSG','2555',0.5,-70.9,-151.8,-41.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF94-Cmr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1797','Qornoq 1927 to WGS 84 (1)','Derived at 2 stations.','For military purposes. Accuracy 25m, 25m and 32m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4194','EPSG','4326','EPSG','3362',48.0,164.0,138.0,-189.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Grl S',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1798','Qornoq 1927 to WGS 84 (2)','','Topographic mapping.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4194','EPSG','4326','EPSG','3362',1.0,163.511,127.533,-159.789,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.6,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KMS-Grl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1799','Scoresbysund 1952 to WGS 84 (1)','','Topographic mapping.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4195','EPSG','4326','EPSG','2570',1.0,105.0,326.0,-102.5,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.6,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KMS-Grl Scosd',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1800','Ammassalik 1958 to WGS 84 (1)','','Topographic mapping.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4196','EPSG','4326','EPSG','2571',1.0,-45.0,417.0,-3.5,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.6,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KMS-Grl Ammlk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1801','Pointe Noire to WGS 84 (2)','Derived in 1994 by CGG/Topnav using DORIS system on various stations along the coastline.','Not known.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4282','EPSG','4326','EPSG','2574',4.0,-145.0,52.7,-291.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGG94-Cog',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1802','Pointe Noire to WGS 84 (3)','Derived by Geoid for Elf in May 1995 using GPS and IGS data by tying 4 geodetic points to ITRF93 epoch 1995.4.','Used by Elf since May 1995 for all offshore Congo operations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4282','EPSG','4326','EPSG','2574',0.15,-178.3,-316.7,-131.5,'EPSG','9001',5.278,6.077,10.979,'EPSG','9104',19.166,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF95-Cog',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1805','Garoua to WGS 72BE (1)','Derived in 1981 by Decca Survey France for Elf Serepca.','Oil industry exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4197','EPSG','4324','EPSG','2590',5.0,-56.1,-167.8,13.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Cmr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1806','Kousseri to WGS 72BE (1)','Derived in 1981 by Decca Survey France for Elf Serepca.','Oil industry exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4198','EPSG','4324','EPSG','2591',5.0,-104.4,-136.6,201.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Cmr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1807','Pulkovo 1942 to WGS 84 (13)','Derived via WGS72 values taken from SOCAR Magnavox 1502 manual. Used by AIOC 1995-1997 then replaced by the AIOC97 values (tfm code 1808).¶Do not confuse with AIOC95 vertical datum as used in southern Caspian Sea and at Sangachal terminal by AIOC.','Oil industry operations by AIOC prior to 1997.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','1038',10.0,27.0,-135.0,-84.5,'EPSG','9001',0.0,0.0,0.554,'EPSG','9104',0.2263,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BP-Aze Aioc95',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1808','Pulkovo 1942 to WGS 84 (14)','Mean of 3 stations in western Georgia, 4 stations in eastern Georgia and 4 stations in eastern Azerbaijan. Derived for use on AIOC early oil western export pipeline, but adopted for all AIOC work replacing the 1995 AIOC transformation (code 1807).','Oil industry operations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','2593',5.0,686.1,-123.5,-574.4,'EPSG','9001',8.045,-23.366,10.791,'EPSG','9104',-2.926,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BP-Aze Aioc97',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1809','Pulkovo 1942 to WGS 84 (15)','Parameter values calculated by Elf Exploration and Production based on geodetic survey carried out by Azerbaijan State Committee for Geodesy and Cartography.','Oil industry operations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','2594',2.0,926.4,-715.9,-186.4,'EPSG','9001',-10.364,-20.78,26.452,'EPSG','9104',-7.224,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Aze97',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1810','ED50 to WGS 84 (31)','Derived via concatenation through WGS72. The ED50 to WGS72 step is the Sepplin 1974 value for all Europe.','Oil industry exploration and production operations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2595',15.0,-84.0,-103.0,-122.5,'EPSG','9001',0.0,0.0,0.554,'EPSG','9104',0.2263,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wgc72-Egy',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1811','PSAD56 to WGS 84 (12)','Used by Petrobras for shelf operations.','Oil industry exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','1754',10.0,-291.87,106.37,-364.52,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Braz N',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1812','Indian 1975 to WGS 84 (4)','','Cadastral survey.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4240','EPSG','4326','EPSG','3317',3.0,293.0,836.0,318.0,'EPSG','9001',0.5,1.6,-2.8,'EPSG','9104',2.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-Tha',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1813','Batavia to WGS 84 (2)','Used by ARCO offshore NW Java area.','Oil industry operations.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4211','EPSG','4326','EPSG','2577',5.0,-378.873,676.002,-46.255,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ARCO-Idn ONWJ',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1814','Batavia to WGS 84 (3)','Used by PT Komaritim for Nippon Steel during East Java Gas Pipeline construction.','Oil industry operations.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4211','EPSG','4326','EPSG','2588',5.0,-377.7,675.1,-52.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KOM-Idn EJGP',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1815','Nord Sahara 1959 to WGS 84 (4)','Used by BP in District 3 and In Salah Gas.','Oil industry operations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4307','EPSG','4326','EPSG','2598',5.0,-152.9,43.8,358.3,'EPSG','9001',2.714,1.386,-2.788,'EPSG','9104',-6.743,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BP-Alg D3',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1816','Nord Sahara 1959 to WGS 84 (5)','Derived at astro station central to concession. Significant and varying differences (>100m) at 4 neighbouring astro stations.','Oil industry operations.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4307','EPSG','4326','EPSG','2599',100.0,-95.7,10.2,158.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BPA-Alg InAm',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1817','Nord Sahara 1959 to WGS 84 (6)','Derived at astro station Guerrara.','Oil industry operations.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4307','EPSG','4326','EPSG','2600',100.0,-165.914,-70.607,305.009,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ARCO-Alg HBR',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1818','Minna to WGS 84 (4)','Concatenated via WGS 72BE.','Oil industry operations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','1717',12.0,-89.0,-112.0,125.9,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'RSL-Nga',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1819','Minna to WGS 84 (5)','Used by Shell in southern Nigeria and Total in OPL246.','Oil industry operations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','2371',NULL,-111.92,-87.85,114.5,'EPSG','9001',1.875,0.202,0.219,'EPSG','9104',0.032,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SPD-Nga S',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1820','Minna to WGS 84 (6)','Derived by Nortech at station L40 Minna using NNPC 1989 GPS network tied to 4 ADOS stations. Used by Conoco in OPLs 219-220 to cm precision and ExxonMobil in OPL 209 to dm precision..','Oil industry operations.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','3813',12.0,-93.2,-93.31,121.156,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CON89-Nga',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1821','Minna to WGS 84 (7)','Derived by Elf Petroleum Nigeria in 1994 at 3 stations (M101 onshore, offshore platforms XSW06 and XSV39) and used in OMLs 99-102 and OPLs 222-223.','Oil industry operations.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','3814',6.0,-88.98,-83.23,113.55,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF94-Nga',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1822','Minna to WGS 84 (8)','Used by Shell SNEPCO for OPLs 209-213 and 316. Derived during 1990 Niger Delta control survey at 4 stations (XSU27, 30 31 and 35).','Oil industry exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','3815',10.0,-92.726,-90.304,115.735,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SHL-Nga OPL W',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1823','Minna to WGS 84 (9)','Used by Shell SNEPCO for OPLs 217-223. Derived during 1990 Niger Delta control survey at 4 stations (XSU38, 41, 44 and 45).','Oil industry exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','3816',8.0,-93.134,-86.647,114.196,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SHL-Nga OPL S',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1824','Minna to WGS 84 (10)','Used by Shell SNEPCO for Gongola basin.','Oil industry exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','3824',25.0,-93.0,-94.0,124.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SHL-Nga Gongola',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1825','Hong Kong 1980 to WGS 84 (1)','Published 1st March 2002. Parameter values from Hong Kong 1980 to Hong Kong Geodetic CS (1) (code 8437) with change of rotation convention. Assumes Hong Kong Geodetic CS and WGS 84 are equivalent within the accuracy of the transformation.','Accuracy to 1m level.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4611','EPSG','4326','EPSG','1118',1.0,-162.619,-276.959,-161.764,'EPSG','9001',0.067753,-2.243649,-1.158827,'EPSG','9104',-1.094246,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LSD-HKG 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1826','JGD2000 to WGS 84 (1)','','Approximation at the +/- 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4612','EPSG','4326','EPSG','1129',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Jpn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1828','Yoff to WGS 72 (1)','','Military survey.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4310','EPSG','4322','EPSG','1207',25.0,-37.0,157.0,85.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-SEN',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1829','HD72 to ETRS89 (1)','Derived at 5 stations. OGP recommends corrected Hungarian standard MSZ 7222 (tfm code 1449) be used in preference to this transformation. May be taken as approximate transformation HD72 to WGS 84 - see code 1830.','Accuracy at decimetre level throughout Hungary.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4237','EPSG','4258','EPSG','1119',0.5,56.0,-75.77,-15.31,'EPSG','9001',0.37,0.2,0.21,'EPSG','9104',1.01,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'FOMI-Hun',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1830','HD72 to WGS 84 (1)','Parameter values taken from HD72 to ETRS89 (1) (code 1829) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. OGP recommends use of newer MSZ 7222 equivalent (tfm code 1448) in preference to this transformation.','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4237','EPSG','4326','EPSG','1119',1.0,56.0,-75.77,-15.31,'EPSG','9001',0.37,0.2,0.21,'EPSG','9104',1.01,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Hun',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1831','HD72 to WGS 84 (2)','Derived at fundamental point Szolohegy and tested at 99 stations throughout Hungary. OGP recommends use of newer transformation (tfm code 1242) in preference to this transformation.','Accuracy better than 1m in all three dimensions throughout Hungary.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4237','EPSG','4326','EPSG','1119',1.0,57.01,-69.97,-9.29,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELTE-Hun',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1832','ID74 to WGS 84 (2)','Derived via coordinates of 2 Pulse8 stations. Use of ID74 to WGS 84 (3) (code 1833) is recommended.','For oil industry purposes.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4238','EPSG','4326','EPSG','4020',25.0,2.691,-14.757,4.724,'EPSG','9001',0.0,0.0,0.774,'EPSG','9104',-0.6,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rac91-Idn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1833','ID74 to WGS 84 (3)','Parameter values from ID74 to DGN95 (1) (code 15911) assuming that DGN95 is equivalent to WGS 84 within the accuracy of the transformation.','Standard deviations of translations are 1.3, 1.1 and 3.6m, of rotations 0.11, 0.06 and 0.04 sec and ppm 0.18.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4238','EPSG','4326','EPSG','4020',3.0,-1.977,-13.06,-9.993,'EPSG','9001',-0.364,-0.254,-0.689,'EPSG','9104',-1.037,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Bak-Idn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1834','Segara to WGS 84 (1)','Accuracy estimate not available.','For military purposes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4294','EPSG','4326','EPSG','2354',NULL,-403.0,684.0,41.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Idn Kal',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1835','Segara to WGS 84 (2)','','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4294','EPSG','4326','EPSG','1360',NULL,-387.06,636.53,46.29,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shl-Idn Kal E',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1836','Segara to WGS 84 (3)','','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4294','EPSG','4326','EPSG','2770',NULL,-403.4,681.12,46.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shl-Idn Kal NE',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1837','Makassar to WGS 84 (1)','','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4257','EPSG','4326','EPSG','1316',999.0,-587.8,519.75,145.76,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shl-Idn Sul SW',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1838','Segara to WGS 84 (4)','Datum shift derived through ITRF93.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4613','EPSG','4326','EPSG','1328',1.0,-404.78,685.68,45.47,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Idn Mah',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1839','Beduaram to WGS 72BE (1)','Derived by Elf in 1986.','Oil exploration. Accuracy estimated at 15m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4213','EPSG','4324','EPSG','2771',15.0,-101.0,-111.0,187.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Ner SE',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1840','QND95 to WGS 84 (1)','Transformation defines QND95. May be approximated to 1m throughout Qatar by geocentric translation transformation with dX=-127.78098m, dY=-283.37477m, dZ=+21.24081m.','Parameter values are defined and therefore exact.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4614','EPSG','4326','EPSG','1346',0.0,-119.4248,-303.65872,-11.00061,'EPSG','9001',1.164298,0.174458,1.096259,'EPSG','9104',3.657065,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGIS-Qat',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1842','NAD83(CSRS) to WGS 84 (1)','For many purposes NAD83(CSRS) can be considered to be coincident with WGS 84.','Approximation at the +/- 1m level assuming that NAD83(CSRS) is equivalent to WGS 84.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4617','EPSG','4326','EPSG','1061',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1852','Timbalai 1948 to WGS 84 (4)','Derived by Racal Survey for SSB at 24 coastal stations (including Timbalai fundamental point and 6 other primary triangulation stations) between in Sabah (Kudat southwards) and Sarawak (Sibu northwards).','Oil exploration.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4298','EPSG','4326','EPSG','2780',5.0,-533.4,669.2,-52.5,'EPSG','9001',0.0,0.0,4.28,'EPSG','9104',9.4,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SSB-Mys E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1853','ED50 to WGS 84 (39)','Derived at a single point in Galway docks.','Used by Enterprise for Corrib.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2961',5.0,-82.31,-95.23,-114.96,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ent-Ire Corrib',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1854','FD58 to WGS 84 (2)','Derived by Geoid for Elf in 1999. EGM96 geoid used.','Oil Exploration','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4132','EPSG','4326','EPSG','2782',0.5,-239.1,-170.02,397.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Irn Lavan',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1855','FD58 to WGS 84 (3)','Derived by Geoid for Elf in 1999. EGM96 geoid used.','Oil Exploration','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4132','EPSG','4326','EPSG','2781',0.5,-244.72,-162.773,400.75,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Irn Kharg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1856','ED50(ED77) to WGS 84 (3)','Derived in Kangan district by Geoid for Total in 1998. Used for South Pars phases 2 and 3.','Petroleum Exploration and Production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4154','EPSG','4326','EPSG','2783',0.5,-122.89,-159.08,-168.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Irn SPars',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1857','ED50(ED77) to WGS 84 (4)','Derived in 1999 on Lavan island by Geoid for Elf.','Petroleum Exploration and Production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4154','EPSG','4326','EPSG','2782',0.5,-84.78,-107.55,-137.25,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Irn Lavan',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1858','ED50(ED77) to WGS 84 (5)','Derived by Geoid for Elf in 1999. EGM96 geoid used.','Petroleum Exploration and Production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4154','EPSG','4326','EPSG','2781',0.5,-123.92,-155.515,-157.721,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Irn Kharg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1859','ELD79 to WGS 84 (1)','Used by Repsol in Murzuq field, and PetroCanada and previous licence holders in NC177 and 72 (En Naga field). Reliability of connection to ELD79 questionned.','Oil Exploration','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4159','EPSG','4326','EPSG','2785',20.0,-69.06,-90.71,-142.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'REP-Lby MZQ',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1860','ELD79 to WGS 84 (2)','Derived December 2001 by NAGECO. Connected to ITRF via Remsa 2000 data. Used by TotalFinaElf.','Oil Exploration. 3-dimensional SD at 11 points is 0.5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4159','EPSG','4326','EPSG','2785',0.5,-113.997,-97.076,-152.312,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Lby MZQ',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1861','ELD79 to WGS 84 (3)','Derived by GEOID in 1994 from Transit satellite data. Used by TotalFinaElf.','Oil Exploration','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4159','EPSG','4326','EPSG','2786',2.0,-114.5,-96.1,-151.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Lby MBK94',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1862','ELD79 to WGS 84 (4)','Derived by Geoid in 2000 from ITRF connection by NAGECO for TotalFinaElf. For historic compatibility TFE use the 1994 tfm ELD79 to WGS 84 (3) (code 1861) rather than this transformation.','Oil Exploration','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4159','EPSG','4326','EPSG','2786',0.5,-194.513,-63.978,-25.759,'EPSG','9001',-3.4027,3.756,-3.352,'EPSG','9104',-0.9175,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Lby MBK00',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1863','ELD79 to WGS 84 (5)','Derived for the Great Man-made River Authority (GMRA).','Engineering survey and oil exploration','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4159','EPSG','4326','EPSG','2786',6.0,-389.691,64.502,210.209,'EPSG','9001',-0.086,-14.314,6.39,'EPSG','9104',0.9264,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GMRA-Lby',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1864','SAD69 to WGS 84 (1)','Derived at 84 stations.','For military purposes only. Accuracy 15m, 6m and 9m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','4016',19.0,-57.0,1.0,-41.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-mean',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1865','SAD69 to WGS 84 (2)','Derived at 10 stations. Note: SAD69 not adopted in Argentina: see Campo Inchauspe (CRS code 4221).','For military purposes only. Accuracy 5m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','3215',9.0,-62.0,-1.0,-37.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Arg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1866','SAD69 to WGS 84 (3)','Derived at 4 stations. Note: SAD69 not adopted in Bolivia: see PSAD56 (CRS code 4248).','For military purposes. Accuracy 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','1049',26.0,-61.0,2.0,-48.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bol',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1867','SAD69 to WGS 84 (4)','Derived at 22 stations.','For military purposes only. Accuracy 3m, 5m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','3887',8.0,-60.0,-2.0,-41.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1868','SAD69 to WGS 84 (5)','Derived at 9 stations. Note: SAD69 not adopted in Chile north of 43°30''S. Replaced by SAD69 to WGS 84 (17) to (19) (codes 6974, 6975 and 6976).','For military purposes only. Accuracy 15m, 8m and 11m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','3227',21.0,-75.0,-1.0,-44.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Chile',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1869','SAD69 to WGS 84 (6)','Derived at 7 stations. Note: SAD69 not adopted in Colombia: see Bogota 1975 (CRS code 4218).','For military purposes only. Accuracy 6m, 6m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','3229',10.0,-44.0,6.0,-36.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Col',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1870','SAD69 to WGS 84 (7)','Derived at 11 stations. Note: SAD69 not adopted in Ecuador: see PSAD56 (CRS code 4248).','For military purposes. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','3241',6.0,-48.0,3.0,-44.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ecu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1871','SAD69 to WGS 84 (8)','Derived at 1 station. Note: SAD69 not adopted in Ecuador.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','2356',44.0,-47.0,26.0,-42.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ecu Gal',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1872','SAD69 to WGS 84 (9)','Derived at 5 stations. Note: SAD69 not adopted in Guyana.','For military purposes only. Accuracy 9m, 5m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','3259',12.0,-53.0,3.0,-47.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Guy',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1873','SAD69 to WGS 84 (10)','Derived at 4 stations. Note: SAD69 not adopted in Paraguay.','For military purposes. Accuracy 15m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','1188',26.0,-61.0,2.0,-33.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Pgy',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1874','SAD69 to WGS 84 (11)','Derived at 6 stations. Note: SAD69 not adopted in Peru: see PSAD56 (CRS code 4248).','For military purposes. Accuracy 5m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','3292',9.0,-58.0,0.0,-44.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Peru',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1875','SAD69 to WGS 84 (12)','Derived at 1 station. Note: SAD69 not adopted in Trinidad and Tobago.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','3143',44.0,-45.0,12.0,-33.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Tto',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1876','SAD69 to WGS 84 (13)','Derived at 5 stations. Note: SAD69 not adopted in Venezuela: see PSAD56 (CRS code 4248).','For military purposes only. Accuracy 3m, 6m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','3327',8.0,-45.0,8.0,-33.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ven',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1877','SAD69 to WGS 84 (14)','Derived by Brazilian Institute of Geography and Statistics (IBGE) in 1989 at Chua origin point. In use by Shell throughout Brazil. For use by Petrobras and ANP, replaced by tfm code 5882 from 1994.','Medium and small scale mapping. Valid for transforming GPS observations conducted in the period 1987 to 1993 inclusive.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','1053',5.0,-66.87,4.37,-38.52,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGBE-Bra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1878','SWEREF99 to ETRS89 (1)','Can be taken as an approximate transformation SWEREF99 to WGS 84 - see code 1879.','Geodetic survey.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4619','EPSG','4258','EPSG','1225',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLS-Swe',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1879','SWEREF99 to WGS 84 (1)','Parameter values taken from SWEREF to ETRS89 (1) (code 1878) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation.','Geographic Information Systems.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4619','EPSG','4326','EPSG','1225',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Swe',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1880','Point 58 to WGS 84 (1)','Derived at one point in each of Burkina Faso and Niger.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4620','EPSG','4326','EPSG','2791',44.0,-106.0,-129.0,165.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Bfa Ner',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1885','Azores Oriental 1940 to WGS 84 (1)','Derived at 2 stations.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4184','EPSG','4326','EPSG','1345',44.0,-203.0,141.0,53.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Prt Az E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1886','Azores Central 1948 to WGS 84 (1)','Derived at 5 stations.','For military purposes only. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4183','EPSG','4326','EPSG','1301',6.0,-104.0,167.0,-38.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Prt Az C',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1887','Azores Occidental 1939 to WGS 84 (1)','Derived at 3 stations.','For military purposes only. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4182','EPSG','4326','EPSG','1344',35.0,-425.0,-169.0,81.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Prt Az W',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1888','Porto Santo to WGS 84 (1)','Derived at 2 stations.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4615','EPSG','4326','EPSG','1314',44.0,-499.0,-249.0,314.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Prt Mad',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1889','Selvagen Grande to WGS 84 (1)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4616','EPSG','4326','EPSG','2779',NULL,-289.0,-124.0,60.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Prt Sel',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1890','Australian Antarctic to WGS 84 (1)','For many purposes Australian Antarctic can be considered to be coincident with WGS 84.','Approximation at the +/- 1m level assuming that Australian Antarctic is equivalent to WGS 84.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4176','EPSG','4326','EPSG','1278',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ata Aus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1892','Hito XVIII 1963 to WGS 84 (2)','Derived at 2 stations. As the source CRS was used for the border survey this transformation is probably also applicable to adjacent areas of Argentina.','Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4254','EPSG','4326','EPSG','2805',44.0,16.0,196.0,93.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Chl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1893','Puerto Rico to WGS 84 (3)','Derived at 11 stations.','For military purposes only. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4139','EPSG','4326','EPSG','1335',6.0,11.0,72.0,-101.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Pri',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1894','Gandajika 1970 to WGS 84 (1)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4233','EPSG','4326','EPSG','1152',25.0,-133.0,-321.0,50.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Mdv',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1895','RT90 to SWEREF99 (1)','Derived at 165 points in 2001. Also given by EuroGeographics as RT90 to ETRS89 using the Position Vector transformation method. Replaces RT90 to ETRS89 (1) (code 1437). May be taken as approximate transformation RT90 to WGS 84 - see code 1896.','Accuracy 0.1m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4124','EPSG','4619','EPSG','1225',0.1,414.1,41.3,603.1,'EPSG','9001',0.855,-2.141,7.023,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLS-Swe 2001',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1896','RT90 to WGS 84 (2)','Parameter values from RT90 to SWEREF99 (1) (code 1895) assuming that SWEREF99 is equivalent to WGS 84 within the accuracy of the transformation. Replaces RT90 to WGS 84 (1) (code 1680).','Approximation at the +/- 1m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4124','EPSG','4326','EPSG','1225',1.0,414.1,41.3,603.1,'EPSG','9001',0.855,-2.141,7.023,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Swe 2001',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1897','Segara to WGS 84 (1)','Accuracy estimate not available.','For military purposes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4613','EPSG','4326','EPSG','1360',999.0,-403.0,684.0,41.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Idn Kal',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1898','Segara to WGS 84 (2)','','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4613','EPSG','4326','EPSG','1359',5.0,-387.06,636.53,46.29,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shl-Idn Kal E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1899','Segara to WGS 84 (3)','','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4613','EPSG','4326','EPSG','2770',10.0,-403.4,681.12,46.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shl-Idn Kal NE',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1900','NAD83(HARN) to WGS 84 (2)','Approximation derived ignoring time-dependent parameters and assuming ITRF94(1996.0) and WGS 84, plus NAD83(CORS94) and NAD83(HARN), can be considered the same within the accuracy of the transformation. Replaced by NAD83(HARN) to WGS 84 (3) (code 1901).','Historical record only - superseded - see remarks.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4152','EPSG','4326','EPSG','1323',1.0,-0.9738,1.9453,0.5486,'EPSG','9001',-1.3357e-07,-4.872e-08,-5.507e-08,'EPSG','9101',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Usa ITRF94',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1901','NAD83(HARN) to WGS 84 (3)','Approximation derived from tfm code 6864 ignoring time-dependent parameters and assuming ITRF96(1997.0) and WGS 84, plus NAD83(CORS96) and NAD83(HARN), can be considered the same within the accuracy of the tfm. In USA only replaces tfm code 1900.','Geodesy. Accuracy with respect to CORS at stations adjusted to HARN network is better than 0.05-0.07m. For locations outside a HARN network (i.e. NAD83), accuracy may be only 1m but will usually be better than 0.5m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4152','EPSG','4326','EPSG','1323',1.0,-0.991,1.9072,0.5129,'EPSG','9001',-1.25033e-07,-4.6785e-08,-5.6529e-08,'EPSG','9101',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Usa ITRF96',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1902','Manoca 1962 to WGS 72BE (1)','Derived at 6 stations using Transit in 1977.','Oil exploration','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4193','EPSG','4324','EPSG','2555',5.0,-56.7,-171.8,-40.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GOC-Cmr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1903','Fort Marigot to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4621','EPSG','4326','EPSG','2828',10.0,137.0,248.0,-430.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Glp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1904','Guadeloupe 1948 to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4622','EPSG','4326','EPSG','2829',10.0,-467.0,-16.0,-300.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Glp 10m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1905','Guadeloupe 1948 to WGS 84 (2)','','Accuracy +/- 0.1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4622','EPSG','4326','EPSG','2829',0.1,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Glp 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1906','CSG67 to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4623','EPSG','4326','EPSG','3105',10.0,-186.0,230.0,110.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Guf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1907','RGFG95 to WGS 84 (1)','','Accuracy +/- 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4624','EPSG','4326','EPSG','1097',2.0,2.0,2.0,-2.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Guf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1908','CSG67 to RGFG95 (1)','','Accuracy better than +/- 0.1 metre in the coastal area, better than +/- 1 metre in the interior.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4623','EPSG','4624','EPSG','3105',1.0,-193.066,236.993,105.447,'EPSG','9001',0.4814,-0.8074,0.1276,'EPSG','9104',1.5649,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Guf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1909','Martinique 1938 to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4625','EPSG','4326','EPSG','3276',10.0,186.0,482.0,151.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Mtq 10m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1910','Martinique 1938 to WGS 84 (2)','','Accuracy +/- 0.1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4625','EPSG','4326','EPSG','3276',0.1,126.93,547.94,130.41,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Mtq 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1911','Reunion 1947 to WGS 84 (1)','Derived at 1 station.','Accuracy +/- 30 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4626','EPSG','4326','EPSG','1196',30.0,94.0,-948.0,-1292.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Reu 30m',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1912','RGR92 to WGS 84 (1)','','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4627','EPSG','4326','EPSG','3902',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Reu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1913','Tahaa 54 to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4629','EPSG','4326','EPSG','2812',10.0,65.0,342.0,77.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf Tahaa',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1914','IGN72 Nuku Hiva to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4630','EPSG','4326','EPSG','3129',10.0,84.0,274.0,65.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1915','K0 1949 to WGS 84 (1)','Also published in US NIMA/NGA TR8350.2 which gives accuracy of +/-25m in each axis and states that derived at one station.','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4631','EPSG','4326','EPSG','2816',10.0,145.0,-187.0,103.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Atf Kerg',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1916','Combani 1950 to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4632','EPSG','4326','EPSG','3340',10.0,-382.0,-59.0,-262.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Myt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1917','IGN56 Lifou to WGS 84 (1)','Withdrawn by information source and replaced by improved information from local authority - see tfm code 15902.','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4633','EPSG','4326','EPSG','2814',10.0,336.0,223.0,-231.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1918','IGN72 Grand Terre to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4634','EPSG','4326','EPSG','1174',NULL,-13.0,-348.0,292.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Ncl',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1919','ST87 Ouvea to WGS 84 (1)','','Accuracy better than +/- 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4635','EPSG','4326','EPSG','2813',1.0,-122.383,-188.696,103.344,'EPSG','9001',3.5107,-4.9668,-5.7047,'EPSG','9104',4.4798,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1920','RGNC 1991 to WGS 84 (1)','','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4645','EPSG','4326','EPSG','1174',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Ncl',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1921','Petrels 1972 to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4636','EPSG','4326','EPSG','2817',10.0,365.0,194.0,166.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Ata Adel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1922','Perroud 1950 to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4637','EPSG','4326','EPSG','2818',10.0,325.0,154.0,172.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Ata Adel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1923','Saint Pierre et Miquelon 1950 to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4638','EPSG','4326','EPSG','3299',10.0,30.0,430.0,368.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Spm',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1924','Tahiti 52 to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4628','EPSG','4326','EPSG','2811',10.0,162.0,117.0,154.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1925','MOP78 to WGS 84 (1)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4639','EPSG','4326','EPSG','2815',10.0,252.0,-132.0,-125.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Wlf Wallis',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1926','Reunion 1947 to RGR92 (1)','Note: Because of the large rotation about the Y-axis this transformation is not reversible. Errors of up to 0.5m may occur. For the reverse transformation use RGR92 to Reunion 1947 [alias Piton des Neiges] (1) (code 1964).','Accuracy better than +/- 0.1 metre. Not reversible - see remarks.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4626','EPSG','4627','EPSG','3337',0.1,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Reu 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1927','IGN56 Lifou to WGS 84 (2)','Withdrawn by information source and replaced by improved information - see tfm code 15902.','Accuracy better than +/- 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4633','EPSG','4326','EPSG','2814',1.0,137.092,131.66,91.475,'EPSG','9001',-1.9436,-11.5993,-4.3321,'EPSG','9104',-7.4824,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1928','IGN53 Mare to WGS 84 (1)','Withdrawn by information source and replaced by improved information - see tfm code 15901.','Accuracy better than +/- 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4641','EPSG','4326','EPSG','2819',1.0,-408.809,366.856,-412.987,'EPSG','9001',1.8842,-0.5308,2.1655,'EPSG','9104',-121.0993,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1929','IGN72 Grand Terre to WGS 84 (2)','','Accuracy better than +/- 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4634','EPSG','4326','EPSG','2822',NULL,97.295,-263.247,310.882,'EPSG','9001',-1.5999,0.8386,3.1409,'EPSG','9104',13.3259,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1930','ST84 Ile des Pins to WGS 84 (1)','','Accuracy better than +/- 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4642','EPSG','4326','EPSG','2820',1.0,244.416,85.339,168.114,'EPSG','9001',-8.9353,7.7523,12.5953,'EPSG','9104',14.268,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1931','ST71 Belep to WGS 84 (1)','','Accuracy better than +/- 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4643','EPSG','4326','EPSG','2821',1.0,-480.26,-438.32,-643.429,'EPSG','9001',16.3119,20.1721,-4.0349,'EPSG','9104',-111.7002,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1932','NEA74 Noumea to WGS 84 (1)','','Accuracy better than +/- 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4644','EPSG','4326','EPSG','2823',1.0,-166.207,-154.777,254.831,'EPSG','9001',-37.5444,7.7011,-10.2025,'EPSG','9104',-30.8598,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1933','RGR92 to Piton des Nieges (1)','Note: Because of the large rotation about the Y-axis this transformation is not reversible. For the reverse transformation see Piton des Nieges to RGR92 (1) (code 1926).','Accuracy better than +/- 0.1 metre. Not reversible - see remarks.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4627','EPSG','4626','EPSG','1196',NULL,-789.99,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.568,'EPSG','9104',32.2083,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Reu 0.1m',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1934','RRAF 1991 to WGS 84 (1)','RRAF 1991 was defined to be WGS84 at a single point in Martinique during the 1988 Tango mission.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4640','EPSG','4326','EPSG','2824',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-FrAnt',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1935','ITRF97 to ITRF2000 (1)','At epoch 1997.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4918','EPSG','4919','EPSG','1262',0.0,-0.0067,-0.0061,0.0185,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00155,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1936','ITRF96 to ITRF2000 (1)','At epoch 1997.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4917','EPSG','4919','EPSG','1262',0.0,-0.0067,-0.0061,0.0185,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00155,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1937','ITRF94 to ITRF2000 (1)','At epoch 1997.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4916','EPSG','4919','EPSG','1262',0.0,-0.0067,-0.0061,0.0185,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00155,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1938','ITRF93 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0029 m/yr, dy=0.0002 m/yr, dZ=0.0006 m/yr, rX=0.00011"/yr, rY=0.00019"/yr, rZ=-0.00007"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4915','EPSG','4919','EPSG','1262',0.0,-0.0127,-0.0065,0.0209,'EPSG','9001',0.00039,-0.0008,0.00114,'EPSG','9104',-0.00195,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1939','ITRF92 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4914','EPSG','4919','EPSG','1262',0.0,-0.0147,-0.0135,0.0139,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',-0.00075,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1940','ITRF91 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4913','EPSG','4919','EPSG','1262',0.0,-0.0267,-0.0275,0.0199,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',-0.00215,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1941','ITRF90 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4912','EPSG','4919','EPSG','1262',0.0,-0.0247,-0.0235,0.0359,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',-0.00245,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1942','ITRF89 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4911','EPSG','4919','EPSG','1262',0.0,-0.0297,-0.0475,0.0739,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',0.00585,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1943','ITRF88 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4910','EPSG','4919','EPSG','1262',0.0,-0.0247,-0.0115,0.0979,'EPSG','9001',-0.0001,0.0,0.00018,'EPSG','9104',-0.00895,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1944','Lisbon to WGS 84 (2)','Parameter values from Lisbon to ETRS89 (2) (code 1790). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 2 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4207','EPSG','4326','EPSG','1294',NULL,-282.1,-72.2,120.0,'EPSG','9001',-1.592,0.145,-0.89,'EPSG','9104',-4.46,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Prt 2001',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1945','Datum 73 to WGS 84 (2)','Parameter values from Datum 73 to ETRS89 (2) (code 1792). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4274','EPSG','4326','EPSG','1294',NULL,-231.0,102.6,29.8,'EPSG','9001',0.615,-0.198,0.881,'EPSG','9104',1.79,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Prt 2001',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1946','NAD83(CSRS) to WGS 84 (2)','Approximation derived from tfm code 6864 ignoring time-dependent parameters and assuming ITRF96(1997.0) and WGS 84 can be considered the same within the accuracy of the transformation.','Geodesy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4617','EPSG','4326','EPSG','1061',1.0,-0.991,1.9072,0.5129,'EPSG','9001',-1.25033e-07,-4.6785e-08,-5.6529e-08,'EPSG','9101',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Usa ITRF96',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1950','NAD83 to NAD83(CSRS) (4)','Used as part of NAD27 to/from WGS 84 transformation for offshore oil operations - see code 8647.','Accuracy 1 to 2 metres. Used for oil industry operations only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4269','EPSG','4617','EPSG','2831',2.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can E Off',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1951','Hjorsey 1955 to WGS 84 (1)','Derived at 6 stations. Replaced by Hjorsey 1955 to WGS 84 (2) (code 6909).','Accuracy 3m, 3m and 5m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4658','EPSG','4326','EPSG','3262',7.0,-73.0,46.0,-86.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Isl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1952','ISN93 to WGS 84 (1)','For many purposes ISN93 can be considered to be coincident with WGS 84.','Approximation at the +/- 1m level assuming that ISN93 is equivalent to WGS 84.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4659','EPSG','4326','EPSG','1120',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Isl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1953','TM75 to ETRS89 (2)','TM75 is based on the geodetic datum of 1965 which should not be confused with the mapping adjustment of 1965 (TM65). May be taken as approximate transformations TM75 to WGS 84, TM65 to WGS 84 and OSNI 1952 to WGS 84 - see codes 1954, 1641 and 1955.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4300','EPSG','4258','EPSG','1305',1.0,482.5,-130.6,564.6,'EPSG','9001',-1.042,-0.214,-0.631,'EPSG','9104',8.15,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSI-Ire',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1954','TM75 to WGS 84 (2)','Parameter values taken from TM65 to ETRS89 (2) (code 1953). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4300','EPSG','4326','EPSG','1305',1.0,482.5,-130.6,564.6,'EPSG','9001',-1.042,-0.214,-0.631,'EPSG','9104',8.15,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ire',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1955','OSNI 1952 to WGS 84 (1)','Parameter values from TM75 to ETRS89 (2) (code 1953). Assumes each pair of (i) OSNI 1952 and TM75, and (ii) ETRS89 and WGS 84, can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4188','EPSG','4326','EPSG','2530',1.0,482.5,-130.6,564.6,'EPSG','9001',-1.042,-0.214,-0.631,'EPSG','9104',8.15,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ire',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1956','TM75 to WGS 84 (3)','Derived at 7 stations. TM75 is based on the geodetic datum of 1965 which should not be confused with the mapping adjustment of 1965 (TM65).','For military purposes only. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4300','EPSG','4326','EPSG','1305',6.0,506.0,-122.0,611.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ire',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1957','Helle 1954 to WGS 84 (1)','Derived at 3 stations. Residuals under 1m.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4660','EPSG','4326','EPSG','2869',1.0,982.6087,552.753,-540.873,'EPSG','9001',32.39344,-153.25684,-96.2266,'EPSG','9109',16.805,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SKV-SJM Jan Mayen',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1958','LKS92 to WGS 84 (1)','','LKS92 is a national realization of ETRS89 and coincident to WGS84 within 1 metre. This transformation has an accuracy equal to the coincidence figure.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4661','EPSG','4326','EPSG','1139',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Vzd-Lva',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1959','St. Vincent 1945 to WGS 84 (1)','Derived at 4 points.','1m accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4607','EPSG','4326','EPSG','3300',1.0,195.671,332.517,274.607,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LSU-Vct',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1960','ED87 to WGS 84 (2)','','Scientific research.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4231','EPSG','4326','EPSG','1297',1.0,-83.11,-97.38,-117.22,'EPSG','9001',0.005693,-0.04469,0.04428,'EPSG','9104',1.218,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS-Eur',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1961','ED50 to WGS 84 (32)','Parameter values taken from ED87 to WGS 84 (2) (tfm code 1960) assuming that ED87 is identical to ED50. Errors caused by this assumption can reach 3m.','Used by NAM for offshore operations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1630',NULL,-83.11,-97.38,-117.22,'EPSG','9001',0.005693,-0.04469,0.4428,'EPSG','9104',1.218,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NAM-Nld-Nsea',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1962','IGN72 Grande Terre to WGS 84 (1)','Withdrawn by information source and replaced by improved information from local authority - see tfm code 15903.','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4662','EPSG','4326','EPSG','2822',10.0,-13.0,-348.0,292.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1963','IGN72 Grande Terre to WGS 84 (2)','Withdrawn by information source and replaced by improved information - see tfm code 15903.','Accuracy better than +/- 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4662','EPSG','4326','EPSG','2822',1.0,97.295,-263.247,310.882,'EPSG','9001',-1.5999,0.8386,3.1409,'EPSG','9104',13.3259,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1964','RGR92 to Reunion 1947 (1)','Note: Because of the large rotation about the Y-axis this transformation is not reversible. Errors of up to 0.5m may occur. For the reverse transformation use Piton des Neiges to RGR92 (1) (code 1926).','Accuracy better than +/- 0.1 metre. Not reversible - see remarks.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4627','EPSG','4626','EPSG','3337',0.1,-789.99,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.568,'EPSG','9104',32.2083,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Reu 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1965','Selvagem Grande to WGS 84 (1)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4616','EPSG','4326','EPSG','2779',44.0,-289.0,-124.0,60.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Prt Sel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1966','Porto Santo 1995 to WGS 84 (2)','Derived at Forte de Sao Tiago.','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4663','EPSG','4326','EPSG','2870',5.0,-502.862,-247.438,312.724,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Mad 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1967','Porto Santo 1995 to WGS 84 (3)','','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4663','EPSG','4326','EPSG','2870',1.0,-210.502,-66.902,-48.476,'EPSG','9001',-2.094,15.067,5.817,'EPSG','9104',0.485,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Mad 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1968','Azores Oriental 1995 to WGS 84 (2)','Calculated in 2001.','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4664','EPSG','4326','EPSG','2871',5.0,-204.633,140.216,55.199,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az Mig 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1969','Azores Oriental 1995 to WGS 84 (3)','Calculated in 2001.','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4664','EPSG','4326','EPSG','2871',1.0,-211.939,137.626,58.3,'EPSG','9001',0.089,-0.251,-0.079,'EPSG','9104',0.384,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az Mig 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1970','Azores Oriental 1995 to WGS 84 (4)','Mean for all islands in group.','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4664','EPSG','4326','EPSG','1345',5.0,-204.619,140.176,55.226,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az E 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1971','Azores Oriental 1995 to WGS 84 (5)','Mean for all islands in group.','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4664','EPSG','4326','EPSG','1345',1.0,-208.719,129.685,52.092,'EPSG','9001',0.195,0.014,-0.327,'EPSG','9104',0.198,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az E 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1972','Azores Central 1995 to WGS 84 (2)','','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','4326','EPSG','2872',5.0,-106.301,166.27,-37.916,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az Ter 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1973','Azores Central 1995 to WGS 84 (3)','','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4665','EPSG','4326','EPSG','2872',1.0,-105.854,165.589,-38.312,'EPSG','9001',0.003,0.026,-0.024,'EPSG','9104',-0.048,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az Ter 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1974','Azores Central 1995 to WGS 84 (4)','','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','4326','EPSG','2873',5.0,-106.248,166.244,-37.845,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az Fai 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1975','Azores Central 1995 to WGS 84 (5)','','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4665','EPSG','4326','EPSG','2873',1.0,-104.0,162.924,-38.882,'EPSG','9001',0.075,0.071,-0.051,'EPSG','9104',-0.338,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az Fai 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1976','Azores Central 1995 to WGS 84 (6)','','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','4326','EPSG','2874',5.0,-106.044,166.655,-37.876,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az Pic 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1977','Azores Central 1995 to WGS 84 (7)','','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4665','EPSG','4326','EPSG','2874',1.0,-95.323,166.098,-69.942,'EPSG','9001',0.215,1.031,-0.047,'EPSG','9104',1.922,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az Pic 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1978','Azores Central 1995 to WGS 84 (8)','','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','4326','EPSG','2875',5.0,-106.253,166.239,-37.854,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az SJ 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1979','Azores Central 1995 to WGS 84 (9)','','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4665','EPSG','4326','EPSG','2875',1.0,-100.306,161.246,-48.761,'EPSG','9001',0.192,0.385,-0.076,'EPSG','9104',0.131,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az SJ 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1980','Azores Central 1995 to WGS 84 (10)','Mean for all islands in group.','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','4326','EPSG','1301',5.0,-106.226,166.366,-37.893,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az C 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1981','Azores Central 1995 to WGS 84 (11)','Mean for all islands in group.','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4665','EPSG','4326','EPSG','1301',1.0,-103.088,162.481,-28.276,'EPSG','9001',-0.167,-0.082,-0.168,'EPSG','9104',-1.504,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az C 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1982','Azores Occidental 1939 to WGS 84 (2)','Derived at 2 stations in 1999.','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4182','EPSG','4326','EPSG','1344',5.0,-422.651,-172.995,84.02,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt Az W',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1983','Datum 73 to WGS 84 (3)','','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4274','EPSG','4326','EPSG','1294',5.0,-223.237,110.193,36.649,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1984','Lisbon to WGS 84 (3)','','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4207','EPSG','4326','EPSG','1294',5.0,-304.046,-60.576,103.64,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1985','ED50 to WGS 84 (33)','May be taken as a transformation from ED50 to ETRS89 - see tfm code 5040.','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1294',5.0,-87.987,-108.639,-121.593,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1986','Lisbon 1890 to WGS 84 (1)','May be taken as a transformation from Lisbon 1890 to ETRS89 - see tfm code 5039.','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4666','EPSG','4326','EPSG','1294',5.0,508.088,-191.042,565.223,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1987','Datum 73 to WGS 84 (4)','','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4274','EPSG','4326','EPSG','1294',1.0,-239.749,88.181,30.488,'EPSG','9001',-0.263,-0.082,-1.211,'EPSG','9104',2.229,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1988','Lisbon to WGS 84 (4)','','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4207','EPSG','4326','EPSG','1294',2.0,-288.885,-91.744,126.244,'EPSG','9001',1.691,-0.41,0.211,'EPSG','9104',-4.598,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1989','ED50 to WGS 84 (34)','','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1294',1.0,-74.292,-135.889,-104.967,'EPSG','9001',0.524,0.136,-0.61,'EPSG','9104',-3.761,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1990','Lisbon 1890 to WGS 84 (2)','','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4666','EPSG','4326','EPSG','1294',1.0,631.392,-66.551,481.442,'EPSG','9001',-1.09,4.445,4.487,'EPSG','9104',-4.43,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1992','Datum 73 to ETRS89 (3)','Parameters calculated in 1998 using 9 common stations. Published in 2001. Replaces Datum 73 to ETRS89 (1) (code 1657). Replaced by Datum 73 to ETRS89 (5) (code 5037).','For medium resolution applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4274','EPSG','4258','EPSG','1294',1.0,-231.034,102.615,26.836,'EPSG','9001',-0.615,0.198,-0.881,'EPSG','9104',1.786,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1993','IKBD-92 to WGS 84 (4)','For all practical purposes this transformation is exact.','Boundary demarcation.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4667','EPSG','4326','EPSG','2876',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UN-Irq Kwt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1994','Reykjavik 1900 to WGS 84 (1)','','Low accuracy applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4657','EPSG','4326','EPSG','3262',10.0,-28.0,199.0,5.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LMI-Isl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1995','Dealul Piscului 1930 to WGS 84 (1)','','Oil exploration','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4316','EPSG','4326','EPSG','3295',10.0,103.25,-100.4,-307.19,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NAMR-Rom',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1996','Dealul Piscului 1970 to WGS 84 (1)','','Oil exploration','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4317','EPSG','4326','EPSG','1197',10.0,44.107,-116.147,-54.648,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shell-Rom',1); INSERT INTO "helmert_transformation" VALUES('EPSG','1997','Lisbon to ETRS89 (2)','Derived in 2001. Replaces Lisbon to ETRS89 (1) (code 1655). Also given to greater precision but no more accuracy on ICC web site using Coordinate Frame method. Replaced by Lisbon to ETRS89 (3) (code 5038).','For applications to an accuracy of 2 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4207','EPSG','4258','EPSG','1294',2.0,-282.1,-72.2,120.0,'EPSG','9001',-1.529,0.145,-0.89,'EPSG','9104',-4.46,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ICC-Prt 2001',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1998','ED50 to WGS 84 (36)','Approximation to better than 0.5m of transformation adopted in June 2003 (see ED50 to WGS 84 (35), code 1052). Acceptable to Landesbergamt for Lower Saxony and Bundesanstalt für Seeschifffahrt und Hydrographie.','Recommended transformation for Germany North Sea petroleum purposes.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2879',1.0,-157.89,-17.16,-78.41,'EPSG','9001',2.118,2.697,-1.434,'EPSG','9104',-5.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ger Nsea',0); INSERT INTO "helmert_transformation" VALUES('EPSG','1999','ED50 to WGS 84 (32)','Parameter values taken from ED87 to WGS 84 (2) (tfm code 1960) assuming that ED87 is identical to ED50. Errors caused by this assumption can reach 3m.','Used by NAM for offshore operations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1630',3.0,-83.11,-97.38,-117.22,'EPSG','9001',0.005693,-0.04469,0.04428,'EPSG','9104',1.218,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NAM-Nld-Nsea',1); INSERT INTO "helmert_transformation" VALUES('EPSG','3817','HD1909 to WGS 84 (1)','Horizontal coordinates of 66 points of the National Geodetic Network were used to compute this transformation.','GIS and topographic survey.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3819','EPSG','4326','EPSG','1119',3.0,595.48,121.69,515.35,'EPSG','9001',-4.115,2.9383,-0.853,'EPSG','9104',-3.408,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELTE-Hun',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3830','TWD97 to WGS 84 (1)','Approximation at the +/- 1m level assuming that TWD97 is equivalent to WGS 84.','Accuracy +/- 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','3824','EPSG','4326','EPSG','1228',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Twn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3894','IGRS to WGS 84 (1)','Approximation at the +/- 1m level assuming that IGRS is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','3889','EPSG','4326','EPSG','1124',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Irq',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3904','ED50 to WGS 84 (32)','Parameter values from ED87 to WGS 84 (32) (tfm code 3905), assuming that ED87 is identical to ED50. Errors caused by this assumption can reach 3-5m. Used by NAM for offshore operations until mid 2004, then replaced by tfm code 1311.','E&P operations in the Dutch sector of the North Sea.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1630',5.0,-83.11,-97.38,-117.22,'EPSG','9001',0.0276,-0.2167,0.2147,'EPSG','9109',0.1218,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rws-Nld-Nsea',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3905','ED87 to WGS 84 (2)','Parameter values taken from ED87 to ETRS89 (1) (tfm code 4078) assuming that ETRS89 is coincident with WGS 84 within the accuracy of the transformation. Used as a tfm between ED50 and WGS 84 - see code 3904.','Scientific research.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4231','EPSG','4326','EPSG','1297',1.0,-83.11,-97.38,-117.22,'EPSG','9001',0.0276,-0.2167,0.2147,'EPSG','9109',0.1218,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3914','MGI 1901 to ETRS89 (3)','Derived at 11 points. May be taken as approximate transformation MGI 1901 to WGS 84 - see code 3915. Superseded by MGI 1901 to Slovenia 1996 (12) (code 8689).','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','3906','EPSG','4258','EPSG','3307',1.0,426.9,142.6,460.1,'EPSG','9001',4.91,4.49,-12.42,'EPSG','9104',17.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GURS-Svn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3915','MGI 1901 to WGS 84 (5)','Parameter values from MGI 1901 to ETRS89 (3) (code 3914). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','3906','EPSG','4326','EPSG','3307',1.0,426.9,142.6,460.1,'EPSG','9001',4.91,4.49,-12.42,'EPSG','9104',17.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Svn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3916','MGI 1901 to Slovenia 1996 (1)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible. May be taken as approx tfm MGI 1901 to WGS 84 (see code 3917).','1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3307',1.0,409.545,72.164,486.872,'EPSG','9001',-3.085957,-5.46911,11.020289,'EPSG','9104',17.919665,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3917','MGI 1901 to WGS 84 (9)','Parameter values from MGI 1901 to Slovenia 1996 (1) (code 3916). Assumes Slovenia 1996 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4326','EPSG','3307',1.0,409.545,72.164,486.872,'EPSG','9001',-3.085957,-5.46911,11.020289,'EPSG','9104',17.919665,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Svn 96',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3918','MGI 1901 to Slovenia 1996 (2)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.5m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3564',0.5,315.393,186.223,499.609,'EPSG','9001',-6.445954,-8.131631,13.208641,'EPSG','9104',23.449046,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn W',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3919','MGI 1901 to Slovenia 1996 (3)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.5m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3565',0.5,464.939,-21.478,504.497,'EPSG','9001',0.403,-4.228747,9.954942,'EPSG','9104',12.795378,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn NE',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3921','MGI 1901 to Slovenia 1996 (4)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.5m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3566',0.5,459.968,82.193,458.756,'EPSG','9001',-3.565234,-3.700593,10.860523,'EPSG','9104',15.507563,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn SE 0.5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3922','MGI 1901 to Slovenia 1996 (5)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3567',0.3,427.914,105.528,510.908,'EPSG','9001',-4.992523,-5.898813,10.306673,'EPSG','9104',12.431493,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn SE 0.3m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3923','MGI 1901 to Slovenia 1996 (6)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3568',0.3,468.63,81.389,445.221,'EPSG','9001',-3.839242,-3.262525,10.566866,'EPSG','9104',16.132726,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn Dol',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3924','MGI 1901 to Slovenia 1996 (7)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3569',0.3,439.5,-11.77,494.976,'EPSG','9001',-0.026585,-4.65641,10.155824,'EPSG','9104',16.270002,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn Staj',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3925','MGI 1901 to Slovenia 1996 (8)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3570',0.3,524.442,3.275,519.002,'EPSG','9001',0.013287,-3.119714,10.232693,'EPSG','9104',4.184981,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn Pom',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3926','MGI 1901 to Slovenia 1996 (9)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3571',0.3,281.529,45.963,537.515,'EPSG','9001',-2.570437,-9.648271,10.759507,'EPSG','9104',26.465548,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn Gor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3927','MGI 1901 to Slovenia 1996 (10)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3572',0.3,355.845,274.282,462.979,'EPSG','9001',-9.086933,-6.491055,14.502181,'EPSG','9104',20.888647,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn Prim',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3928','MGI 1901 to Slovenia 1996 (11)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3573',0.3,400.629,90.651,472.249,'EPSG','9001',-3.261138,-5.263404,11.83739,'EPSG','9104',20.022676,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn cen',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3962','MGI 1901 to WGS 84 (1)','Accuracy estimate not available from information source but established empirically by OGP.','For military purposes only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','3906','EPSG','4326','EPSG','2370',5.0,682.0,-203.0,480.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-balk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3963','MGI 1901 to ETRS89 (2)','May be taken as approximate transformation MGI 1901 to WGS 84 - see code 3964.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','3906','EPSG','4258','EPSG','3234',1.0,551.7,162.9,467.9,'EPSG','9001',6.04,1.96,-11.38,'EPSG','9104',-4.82,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DGU-Hrv',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3964','MGI 1901 to WGS 84 (4)','Parameter values from MGI 1901 to ETRS89 (2) (code 3963). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','3906','EPSG','4326','EPSG','3234',1.0,551.7,162.9,467.9,'EPSG','9001',6.04,1.96,-11.38,'EPSG','9104',-4.82,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Hrv',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3965','MGI 1901 to WGS 84 (6)','','Oil industry','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','3906','EPSG','4326','EPSG','3536',10.0,695.5,-216.6,491.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'JPet-Yug',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3971','PSAD56 to SIRGAS 1995 (1)','Derived at 42 points. May be taken as transformation PSAD56 to WGS 84 - see code 3990.','Suitable for mapping at 1:25,000 scale and smaller.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4248','EPSG','4170','EPSG','3241',5.0,-60.31,245.935,31.008,'EPSG','9001',-12.324,-3.755,7.37,'EPSG','9104',0.447,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Ecu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3972','Chua to WGS 84 (2)','Mandatory for SICAD use until 2005. Replaced by Chua to SIRGAS 2000 (tfm code 4069).','Used by governmental agencies in Distrito Federal until adoption of SIRGAS 2000 by Brazil in 2005. Legally mandated for Cartography System of Distrito Federal (SICAD) until 2005.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4224','EPSG','4326','EPSG','3619',5.0,-143.87,243.37,-33.52,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SICAD-Bra DF pre 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3990','PSAD56 to WGS 84 (14)','Parameter values from PSAD56 to SIRGAS 1995 (1) (code 3971). Assumes SIRGAS 1995 and WGS 84 can be considered the same to within the accuracy of the transformation.','Suitable for mapping at 1:25,000 scale and smaller.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','3241',5.0,-60.31,245.935,31.008,'EPSG','9001',-12.324,-3.755,7.37,'EPSG','9104',0.447,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Ecu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','3998','Arc 1960 to WGS 84 (4)','Derived at 3 stations. From inspection of parameter values and geographic applicability of CRS, OGP believes that the published source CRS (Arc 1950) has been misidentified by information source. Analysis of TR8350.2 contour charts suggest Arc 1960.','For military purposes. Accuracy 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4210','EPSG','4326','EPSG','1058',35.0,-153.0,-5.0,-292.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bdi',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4064','RGRDC 2005 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RGRDC 2005 is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4046','EPSG','4326','EPSG','3613',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-DUC',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4065','Katanga 1955 to RGRDC 2005 (1)','Derived at 4 stations in Lubumbashi area. May be taken as approximate transformation Katanga 1955 to WGS 84 - see code 4066.','Accuracy 1.5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4695','EPSG','4046','EPSG','3614',1.5,-103.746,-9.614,-255.95,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rec-DUC',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4066','Katanga 1955 to WGS 84 (1)','Parameter values taken from Katanga 1955 to RGRDC 2005 (1) (code 4065) assuming that RGRDC 2005 is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy 1.5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4695','EPSG','4326','EPSG','3614',1.5,-103.746,-9.614,-255.95,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rec-DUC',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4067','Katanga 1955 to RGRDC 2005 (2)','Derived at 5 stations across Lubumbashi-Likasi region. Used as transformation Katanga 1955 to WGS 84 - see code 4068.','Accuracy 0.5m.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4695','EPSG','4046','EPSG','3614',0.5,-102.283,-10.277,-257.396,'EPSG','9001',-3.976,-0.002,-6.203,'EPSG','9104',12.315,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5580868.818,2826402.46,-1243557.996,'EPSG','9001','SDG-DUC',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4068','Katanga 1955 to WGS 84 (2)','Parameter values taken from Katanga 1955 to RGRDC 2005 (2) (code 4067) assuming that RGRDC 2005 is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy 1m.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4695','EPSG','4326','EPSG','3614',1.0,-102.283,-10.277,-257.396,'EPSG','9001',-3.976,-0.002,-6.203,'EPSG','9104',12.315,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5580868.818,2826402.46,-1243557.996,'EPSG','9001','SDG-DUC',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4069','Chua to SIRGAS 2000 (1)','Mandatory for SICAD use. Replaces Chua to WGS 84 (2) (code 3972). May be used as a tfm to WGS 84 - see tfm code 4834.','Used by governmental agencies in Distrito Federal after adoption of SIRGAS 2000 by Brazil in 2005. Legally mandated for Cartography System of Distrito Federal (SICAD).','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4224','EPSG','4674','EPSG','3619',5.0,-144.35,242.88,-33.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SICAD-Bra DF',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4070','Chua to WGS 84 (3)','Parameter values from Chua to SIRGAS 2000 (1) (tfm code 4069) assuming that within the tfm accuracy SIRGAS 2000 is equivalent to WGS 84.','Cartography System of Distrito Federal (SICAD)','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4224','EPSG','4674','EPSG','1053',5.0,-144.35,242.88,-33.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bra DF post 2000',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4076','SREF98 to ETRS89 (1)','May be taken as approximate transformation SREF98 to WGS 84 - see code 4077.','SREF98 is a natiional realization of ETRS89.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4075','EPSG','4258','EPSG','4543',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Srb',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4077','SREF98 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84. SREF98 is a regional realisation of ETRS89.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4075','EPSG','4326','EPSG','4543',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Srb',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4078','ED87 to ETRS89 (1)','May be used as a transformation between ED87 and WGS 84 - see tfm code 3905.','Scientific research.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4231','EPSG','4258','EPSG','1297',0.3,-83.11,-97.38,-117.22,'EPSG','9001',0.0276,-0.2167,0.2147,'EPSG','9109',0.1218,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4084','REGCAN95 to WGS 84 (1)','Approximation at the +/- 1m level assuming that REGCAN95 is equivalent to WGS 84.','Accuracy +/- 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4081','EPSG','4326','EPSG','3199',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-esp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4290','Cadastre 1997 to WGS 84 (1)','Parameter values taken from Cadastre 1997 to RGM04 (1) (transformation code 4478) assuming that RGM04 is coincident with WGS 84 within the accuracy of the transformation.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4475','EPSG','4326','EPSG','3340',1.0,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Myt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4461','NAD83(HARN) to NAD83(NSRS2007) (1)','Accuracy 0.1 to 0.2m in California, 0.05-0.11 in Oregon, elsewhere better than 0.05m.','For applications to an accuracy of 0.2 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4152','EPSG','4759','EPSG','1323',0.1,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-USA conus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4476','RGM04 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RGM04 is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4470','EPSG','4326','EPSG','1159',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Myt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4477','RGSPM06 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RGSPM06 is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4463','EPSG','4326','EPSG','1220',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-SPM',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4478','Cadastre 1997 to RGM04 (1)','May be taken as approximate transformation Cadastre 1997 to WGS 84 - see transformation code 4290.','Accuracy +/- 0.1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4475','EPSG','4470','EPSG','3340',0.1,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Certu-Myt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4560','RRAF 1991 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RRAF91 is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4558','EPSG','4326','EPSG','2824',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-FrAnt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4590','ITRF88 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4910','EPSG','4919','EPSG','1262',0.0,-0.0247,-0.0115,0.0979,'EPSG','9001',-0.0001,0.0,0.00018,'EPSG','9104',-0.00895,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4591','ITRF89 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4911','EPSG','4919','EPSG','1262',0.0,-0.0297,-0.0475,0.0739,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',-0.00585,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4592','ITRF90 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4912','EPSG','4919','EPSG','1262',0.0,-0.0247,-0.0235,0.0359,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',-0.00245,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4593','ITRF91 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4913','EPSG','4919','EPSG','1262',0.0,-0.0267,-0.0275,0.0199,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',-0.00215,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4594','ITRF92 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4914','EPSG','4919','EPSG','1262',0.0,-0.0147,-0.0135,0.0139,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',-0.00075,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4595','ITRF93 to ITRF2000 (1)','At epoch 1988.0. Rates dX=0.0029 m/yr, dy=0.0002 m/yr, dZ=0.0006 m/yr, rX=0.00011"/yr, rY=0.00019"/yr, rZ=-0.00007"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4915','EPSG','4919','EPSG','1262',0.0,-0.0127,-0.0065,0.0209,'EPSG','9001',0.00039,-0.0008,0.00114,'EPSG','9104',-0.00195,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4596','ITRF94 to ITRF2000 (1)','At epoch 1997.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4916','EPSG','4919','EPSG','1262',0.0,-0.0067,-0.0061,0.0185,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00155,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4597','ITRF96 to ITRF2000 (1)','At epoch 1997.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4917','EPSG','4919','EPSG','1262',0.0,-0.0067,-0.0061,0.0185,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00155,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4598','ITRF97 to ITRF2000 (1)','At epoch 1997.0. Rates dX=0.0000 m/yr, dy=0.0006 m/yr, dZ=0.0014 m/yr, rX=rY=0.0"/yr, rZ=-0.00002"/yr, dS=-0.00001 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4918','EPSG','4919','EPSG','1262',0.0,-0.0067,-0.0061,0.0185,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00155,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4599','ITRF2000 to ITRF2005 (1)','At epoch 2000.0. Rates dX=0.0002 m/yr, dy=-0.0001 m/yr, dZ=0.0018 m/yr, rX=rY=rZ=0.0"/yr, dS=-0.00008 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4919','EPSG','4896','EPSG','1262',0.0,-0.0001,0.0008,0.0058,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.0004,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4827','S-JTSK to ETRS89 (4)','Derived at approximately 700 points. Scale difference incorporated into rotation matrix. Replaces S-JTSK to ETRS89 (3) (code 4829) to use more common method. May be taken as approximate transformation S-JTSK to WGS 84 - see code 4836.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4156','EPSG','4258','EPSG','1211',1.0,485.0,169.5,483.8,'EPSG','9001',7.786,4.398,4.103,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UGKK-Svk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4828','S-JTSK to WGS 84 (4)','Parameter values from S-JTSK to ETRS89 (4) (code 4827). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4156','EPSG','4326','EPSG','1211',1.0,485.0,169.5,483.5,'EPSG','9001',7.786,4.398,4.103,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Svk',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4829','S-JTSK to ETRS89 (3)','Replaced by S-JTSK to ETRS89 (4) (code 4827) to use more commonly encountered transformation method.','For applications to an accuracy of 0.5 metre.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4156','EPSG','4258','EPSG','1211',0.5,558.7,68.8,452.2,'EPSG','9001',-8.025,-4.105,-4.295,'EPSG','9104',5.74,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3977358.114,1407223.203,4765441.589,'EPSG','9001','UGKK-Svk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4830','Amersfoort to ETRS89 (5)','Replaces Amersfoort to ETRS89 (3) (tfm code 15739). Dutch sources also quote an equivalent transformation using the Molodenski-Badekas method - see tfm code 4831.','Accuracy 0.5m','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4289','EPSG','4258','EPSG','1275',0.5,565.4171,50.3319,465.5524,'EPSG','9001',1.9342,-1.6677,9.1019,'EPSG','9109',4.0725,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NCG-Nld 2008',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4831','Amersfoort to ETRS89 (6)','Replaces Amersfoort to ETRS89 (4) (tfm code 15740). Dutch sources also quote an equivalent transformation using the Coordinate Frame 7-parameter method - see tfm code 4830.','Accuracy 0.5m','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4289','EPSG','4258','EPSG','1275',0.5,593.0248,25.9984,478.7459,'EPSG','9001',1.9342,-1.6677,9.1019,'EPSG','9109',4.0725,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3903453.1482,368135.3134,5012970.3051,'EPSG','9001','NCG-Nld 2008',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4832','Mexico ITRF92 to WGS 84 (1)','','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4483','EPSG','4326','EPSG','1160',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Mex',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4833','Amersfoort to WGS 84 (4)','Parameter values from Amersfoort to ETRS89 (5) (tfm code 4830) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. Replaces Amersfoort to WGS 84 (3) (code 15934).','Approximation at the +/- 1m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4289','EPSG','4326','EPSG','1275',1.0,565.4171,50.3319,465.5524,'EPSG','9001',1.9342,-1.6677,9.1019,'EPSG','9109',4.0725,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Nld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4834','Chua to WGS 84 (3)','Parameter values from Chua to SIRGAS 2000 (1) (tfm code 4069) assuming that within the tfm accuracy SIRGAS 2000 is equivalent to WGS 84.','Cartography System of Distrito Federal (SICAD)','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4224','EPSG','4326','EPSG','3619',5.0,-144.35,242.88,-33.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bra DF post 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4835','Tahiti 79 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from Tahiti 79 to RGPF (1) (tfm code 15756).','Accuracy +/- 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4690','EPSG','4326','EPSG','3124',1.0,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.877,'EPSG','9104',11.4741,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','4836','S-JTSK to WGS 84 (4)','Parameter values from S-JTSK to ETRS89 (4) (code 4827). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4156','EPSG','4326','EPSG','1211',1.0,485.0,169.5,483.8,'EPSG','9001',7.786,4.398,4.103,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Svk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4840','RGFG95 to WGS 84 (2)','Replaces RGFG95 to WGS 84 (1) (code 1907) which was not put into official use but issued in error.','Accuracy +/- 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4624','EPSG','4326','EPSG','1097',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Guf 2',0); INSERT INTO "helmert_transformation" VALUES('EPSG','4905','PTRA08 to WGS 84 (1)','','PTRA08 and WGS 84 are realizations of ITRS coincident to within 1 metre. This transformation has an accuracy equal to the coincidence figure.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5013','EPSG','4326','EPSG','3670',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-pt RA',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5021','Porto Santo 1995 to PTRA08 (1)','Derived at 34 points in May 2009. Residuals at 25 test points within 0.5m horizontal and 2m vertical. Info source also provides a Position Vector tfm of similar accuracy. See codes 5022 and 5023 for preferred tfms for islands of Porto Santo and Maderia.','2-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4663','EPSG','5013','EPSG','1314',2.0,-503.229,-247.375,312.582,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt MadArch',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5022','Porto Santo 1995 to PTRA08 (2)','Derived at 22 points in May 2009. Residuals at 17 test points within 0.1m horizontal and 1m vertical. Info source also provides a less accurate 3-parameter transformation (dX=-503.174m, dY=-247.255m, dZ=312.316m).','1 metre accuracy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4663','EPSG','5013','EPSG','3679',1.0,-303.956,224.556,214.306,'EPSG','9001',9.405,-6.626,-12.583,'EPSG','9104',1.327,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Mad',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5023','Porto Santo 1995 to PTRA08 (3)','Derived at 14 points in May 2009. Residuals at 6 test points within 0.1m horizontal and 0.2m vertical. Info source also provides a 7-parameter Position Vector transformation of similar accuracy.','For applications requiring sub-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4663','EPSG','5013','EPSG','3680',0.2,-503.3,-247.574,313.025,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Porto Santo',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5024','Azores Oriental 1995 to PTRA08 (1)','Derived at 53 points in May 2009. Residuals at 58 test points within 0.2m horizontal and 2m vertical. Info source also provides a Position Vector tfm of similar accuracy. See codes 5025-26 for preferred tfms for islands of Sao Miguel and Santa Maria.','2-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4664','EPSG','5013','EPSG','1345',2.0,-204.926,140.353,55.063,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5025','Azores Oriental 1995 to PTRA08 (2)','Derived at 36 points in May 2009. Residuals at 43 test points within 0.2m horizontal and 0.3m vertical. Info source also provides a 7-parameter Position Vector transformation of similar accuracy.','0.3-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4664','EPSG','5013','EPSG','2871',0.3,-204.519,140.159,55.404,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az Mig',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5026','Azores Oriental 1995 to PTRA08 (3)','Derived at 18 points in May 2009. Residuals at 14 test points within 0.1m. Info source also provides a 7-parameter Position Vector transformation of similar accuracy.','0.1-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4664','EPSG','5013','EPSG','3683',0.1,-205.808,140.771,54.326,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az S.Maria',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5027','Azores Central 1995 to PTRA08 (1)','Derived at 112 points in May 2009. Residuals at 184 test points within 0.5m horizontal and 1m vertical. Info source also provides a Position Vector tfm of similar accuracy. See codes 5028-32 for preferred tfms for individual islands.','2-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','5013','EPSG','1301',2.0,-105.679,166.1,-37.322,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az C',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5028','Azores Central 1995 to PTRA08 (2)','Derived at 24 points in May 2009. Residuals at 37 test points within 0.1m horizontal and 0.3m vertical. Info source also provides a Position Vector tfm of similar accuracy.','0.5-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','5013','EPSG','2873',0.5,-105.377,165.769,-36.965,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az Faial',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5029','Azores Central 1995 to PTRA08 (3)','Derived at 11 points in May 2009. Residuals at 15 test points within 0.1m horizontal and 0.2m vertical. Info source also provides a Position Vector tfm of similar accuracy.','0.2-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','5013','EPSG','3681',0.2,-105.359,165.804,-37.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az Graciosa',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5030','Azores Central 1995 to PTRA08 (4)','Derived at 34 points in May 2009. Residuals at 38 test points within 0.2m horizontal and 1m vertical. Info source also provides a Position Vector tfm of similar accuracy.','1-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','5013','EPSG','2874',1.0,-105.531,166.39,-37.326,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az Pico',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5031','Azores Central 1995 to PTRA08 (5)','Derived at 17 points in May 2009. Residuals at 60 test points within 0.1m horizontal and 0.8m vertical. Info source also provides a Position Vector tfm of similar accuracy.','0.8-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','5013','EPSG','2875',0.8,-105.756,165.972,-37.313,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az S.Jorge',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5032','Azores Central 1995 to PTRA08 (6)','Derived at 26 points in May 2009. Residuals at 34 test points within 0.1m horizontal and 0.6m vertical. Info source also provides a Position Vector tfm of similar accuracy.','0.6-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4665','EPSG','5013','EPSG','2872',0.6,-106.235,166.236,-37.768,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az Terceira',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5033','Azores Occidental 1939 to PTRA08 (1)','Derived at 21 points in May 2009. Residuals at 18 test points within 0.1m horizontal and 0.2m vertical. Info source also provides a Position Vector tfm of similar accuracy. See codes 5034-35 for preferred tfms for islands of Flores and Corvo.','0.5-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4182','EPSG','5013','EPSG','1344',0.5,-423.058,-172.868,83.772,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az W',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5034','Azores Occidental 1939 to PTRA08 (2)','Derived at 18 points in May 2009. Residuals at 15 test points within 0.1m horizontal and 0.2m vertical. Info source also provides a Position Vector tfm of similar accuracy.','0.2-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4182','EPSG','5013','EPSG','3684',0.2,-423.053,-172.871,83.771,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az Flores',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5035','Azores Occidental 1939 to PTRA08 (3)','Derived at 3 points in May 2009. Residuals at these points within 0.1m horizontal and 0.3m vertical. Info source also provides a Position Vector tfm of similar accuracy.','0.3-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4182','EPSG','5013','EPSG','3685',0.3,-423.024,-172.923,83.83,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt Az Corvo',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5036','Datum 73 to ETRS89 (4)','Derived in July 2009 from 119 common stations. Residuals at 833 test points under 3m.','3-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4274','EPSG','4258','EPSG','1294',3.0,-223.15,110.132,36.711,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 2009 3m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5037','Datum 73 to ETRS89 (5)','Derived in July 2009 from 119 common stations. Residuals at 833 test points under 2m. Replaces Datum 73 to ETRS89 (3) (tfm code 1992).','2-metre accuracy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4274','EPSG','4258','EPSG','1294',2.0,-230.994,102.591,25.199,'EPSG','9001',0.633,-0.239,0.9,'EPSG','9104',1.95,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 2009 2m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5038','Lisbon to ETRS89 (3)','Derived in July 2009 from 119 common stations. Info source also gives a Position Vector tfm which is of similar accuracy. Replaces Lisbon to ETRS89 (2) (tfm code 1997).','Average residual at 833 test points 2.5m, maximum 7m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4207','EPSG','4258','EPSG','1294',2.5,-303.861,-60.693,103.607,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 2009 7m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5039','Lisbon 1890 to ETRS89 (1)','Parameter values taken from Lisbon 1890 to WGS 84 (1) (tfm code 1986) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation.','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4666','EPSG','4258','EPSG','1294',5.0,508.088,-191.042,565.223,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5040','ED50 to ETRS89 (13)','Parameter values taken from ED50 to WGS 84 (33) (tfm code 1985) assuming that ETRS89 and WGS 84 are the same within the accuracy of the transformation.','For low resolution applications.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4258','EPSG','1294',5.0,-87.987,-108.639,-121.593,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5043','Pulkovo 1995 to WGS 84 (2)','Derived through concatenation of Pulkovo 1995 to PZ-90.02 to WGS 84. Replaces Pulkovo 1995 to WGS 84 (1), tfm code 1281.','Accuracy 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4200','EPSG','4326','EPSG','1198',1.0,24.47,-130.89,-81.56,'EPSG','9001',0.0,0.0,-0.13,'EPSG','9104',-0.22,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GOST-Rus 2008',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5044','Pulkovo 1942 to WGS 84 (20)','Derived through concatenation of Pulkovo 1942 to PZ-90.02 to WGS 84. Replaces Pulkovo 1942 to WGS 84 (17) (code 1267).','Accuracy 3 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','3296',3.0,23.57,-140.95,-79.8,'EPSG','9001',0.0,-0.35,-0.79,'EPSG','9104',-0.22,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GOST-Rus 2008',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5050','Aratu to SIRGAS 2000 (1)','Derived in 2002. Petrobras preferred transformation for all purposes in the area. May be used as transformation between Aratu and WGS 84 - see tfm code 5051.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4674','EPSG','3700',0.5,-157.84,308.54,-146.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BS 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5051','Aratu to WGS 84 (13)','Parameters from Aratu to SIRGAS 2000 (1) (tfm code 5050) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation. Petrobras preferred parameters for all purposes in the area. Replaces tfm codes 15711 and 15734.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','3700',1.0,-157.84,308.54,-146.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BS 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5052','Aratu to SIRGAS 2000 (2)','Derived in 2002. Petrobras preferred transformation for all purposes in the area. May be used as transformation between Aratu and WGS 84 - see tfm code 5053.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4674','EPSG','2963',0.5,-160.31,314.82,-142.25,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BC 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5053','Aratu to WGS 84 (14)','Parameters from Aratu to SIRGAS 2000 (2) (tfm code 5052) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation. Petrobras preferred parameters for all purposes in the area. Replaces tfm codes 15710 and 15754.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2963',1.0,-160.31,314.82,-142.25,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BC 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5054','Aratu to SIRGAS 2000 (3)','Derived in 2002. Petrobras preferred transformation for all purposes in the area. May be used as transformation between Aratu and WGS 84 - see tfm code 5055.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4674','EPSG','2964',0.5,-161.11,310.25,-144.64,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra ES 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5055','Aratu to WGS 84 (15)','Parameters from Aratu to SIRGAS 2000 (3) (tfm code 5054) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation. Petrobras preferred parameters for all purposes in the area. Replaces tfms 15712 and 15754.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2964',1.0,-161.11,310.25,-144.64,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra ES 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5056','Aratu to SIRGAS 2000 (4)','Derived in 2002. Petrobras preferred transformation for all purposes in the area. May be used as transformation between Aratu and WGS 84 - see tfm code 5057.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4674','EPSG','3699',0.5,-160.4,302.29,-144.19,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BSUL 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5057','Aratu to WGS 84 (16)','Parameters from Aratu to SIRGAS 2000 (4) (tfm code 5056) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation. Petrobras preferred parameters for all purposes in the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','3699',1.0,-160.4,302.29,-144.19,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BSUL 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5058','Aratu to SIRGAS 2000 (5)','Derived in 2002. Petrobras preferred transformation for all purposes in the area. May be used as transformation between Aratu and WGS 84 - see tfm code 5059.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4674','EPSG','3692',0.5,-153.54,302.33,-152.37,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BREC 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5059','Aratu to WGS 84 (17)','Parameters from Aratu to SIRGAS 2000 (5) (tfm code 5058) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation. Petrobras preferred parameters for all purposes in the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','3692',1.0,-153.54,302.33,-152.37,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BREC 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5060','Aratu to SIRGAS 2000 (6)','Derived in 2002. Petrobras preferred transformation for all purposes in the area. May be used as transformation between Aratu and WGS 84 - see tfm code 5061.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4674','EPSG','3693',0.5,-151.5,300.09,-151.15,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BTUC 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5061','Aratu to WGS 84 (18)','Parameters from Aratu to SIRGAS 2000 (6) (tfm code 5060) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation. Petrobras preferred parameters for all purposes in the area. Replaces tfms 1550-1552.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','3693',1.0,-151.5,300.09,-151.15,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BTUC 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5062','Aratu to SIRGAS 2000 (7)','Derived in 2002. Petrobras preferred transformation for all purposes in the area. May be used as transformation between Aratu and WGS 84 - see tfm code 5063.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4674','EPSG','3696',0.5,-156.8,298.41,-147.41,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra SEAL 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5063','Aratu to WGS 84 (19)','Parameters from Aratu to SIRGAS 2000 (7) (tfm code 5062) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation. Petrobras preferred parameters for all purposes in the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','3696',1.0,-156.8,298.41,-147.41,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra SEAL 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5064','Aratu to SIRGAS 2000 (8)','Derived in 2002. Petrobras preferred transformation for all purposes in the area. May be used as transformation between Aratu and WGS 84 - see tfm code 5065.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4674','EPSG','3697',0.5,-157.4,295.05,-150.19,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra PEPB 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5065','Aratu to WGS 84 (20)','Parameters from Aratu to SIRGAS 2000 (8) (tfm code 5064) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation.Petrobras preferred parameters for all purposes in the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','3697',1.0,-157.4,295.05,-150.19,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra PEPB 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5066','Aratu to SIRGAS 2000 (9)','Derived in 2002. Petrobras preferred transformation for all purposes in the area. May be used as transformation between Aratu and WGS 84 - see tfm code 5067.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4674','EPSG','3698',0.5,-151.99,287.04,-147.45,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra RNCE 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5067','Aratu to WGS 84 (21)','Parameters from Aratu to SIRGAS 2000 (9) (tfm code 5066) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation. Petrobras preferred parameters for all purposes in the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','3698',1.0,-151.99,287.04,-147.45,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra RNCE 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5077','Karbala 1979 to IGRS (1)','Derived at 95 stations mostly south of Baghdad but including 3 in Kirkuk-Erbil area. Maximum residuals 0.3m. May be used as a tfm to WGS 84 - see tfm code 5078.','Accuracy 0.3m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4743','EPSG','3889','EPSG','3625',0.3,70.995,-335.916,262.898,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MWR-Irq 2009',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5078','Karbala 1979 to WGS 84 (2)','Parameter values from Karbala 1979 to IGRS (1) (tfm code 5077) assuming that IGRS is equivalent to WGS 84 within the accuracy of the transformation. Replaces Karbala 1979 to WGS 84 (1) (tfm code 15872).','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4743','EPSG','4326','EPSG','3625',1.0,70.995,-335.916,262.898,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Irq 2009',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5189','Korean 1985 to Korea 2000 (1)','May be taken as approximate transformation Korean 1985 to WGS 84 - see code 5191.','For accuracies commensurate with mapping at 1/5000 scale.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4162','EPSG','4737','EPSG','3266',1.0,-145.907,505.034,685.756,'EPSG','9001',-1.162,2.347,1.592,'EPSG','9104',6.342,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,-3159521.31,4068151.32,3748113.85,'EPSG','9001','NGII-Kor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5191','Korean 1985 to WGS 84 (1)','Parameter values from Korean 1985 to Korea 2000 (1) (code 5189). Assumes Korea 2000 and WGS 84 can be considered the same to within the accuracy of the transformation.','Accuracy 1m','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4162','EPSG','4326','EPSG','3266',1.0,-145.907,505.034,685.756,'EPSG','9001',-1.162,2.347,1.592,'EPSG','9104',6.342,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,-3159521.31,4068151.32,3748113.85,'EPSG','9001','OGP-Kor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5194','VN-2000 to WGS 84 (1)','Used by Total in Mekong delta.','Academic research not officially adopted.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4756','EPSG','4326','EPSG','3770',1.0,-192.873,-39.382,-111.202,'EPSG','9001',0.00205,0.0005,-0.00335,'EPSG','9104',0.0188,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'HCMCTU-Vnm',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5226','S-JTSK/05 to ETRS89 (1)','Derived through the relationship between the R05 realisation of ETRS89 and the astrogeodetic S-JTSK network. Replaces tfm code 1622. May be taken as approximate transformation S-JTSK to WGS 84 - see code 5227.','Defined as exact for S-JTSK/05 (Ferro) / Modified Krovak projCRSs (CRS codes 5224-25).','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','5228','EPSG','4258','EPSG','1079',0.0,572.213,85.334,461.94,'EPSG','9001',-4.9732,-1.529,-5.2484,'EPSG','9104',3.5378,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CUZK-Cze 05',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5227','S-JTSK/05 to WGS 84 (1)','Parameter values from S-JTSK/05 to ETRS89 (1) (code 5226). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. Replaces tfm code 1622.','For applications to an accuracy of 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','5228','EPSG','4326','EPSG','1079',1.0,572.213,85.334,461.94,'EPSG','9001',-4.9732,-1.529,-5.2484,'EPSG','9104',3.5378,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Cze 05',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5236','SLD99 to WGS 84 (1)','Derived at 58 stations.','Accuracy 14m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','5233','EPSG','4326','EPSG','3310',14.0,-0.293,766.95,87.713,'EPSG','9001',-0.195704,-1.695068,-3.473016,'EPSG','9104',-0.039338,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSU-Lka',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5239','S-JTSK to WGS 84 (5)','Parameter values from S-JTSK/05 to WGS 84 (1) (code 5227). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. Replaces tfm code 1622.','For applications to an accuracy of 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4156','EPSG','4326','EPSG','1079',1.0,572.213,85.334,461.94,'EPSG','9001',-4.9732,-1.529,-5.2484,'EPSG','9104',3.5378,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Cze 05',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5248','Timbalai 1948 to GDBD2009 (1)','','Oil exploration.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4298','EPSG','4326','EPSG','1055',1.0,-689.5937,623.84046,-65.93566,'EPSG','9001',0.02331,-1.17094,0.80054,'EPSG','9104',5.88536,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SD-Brn',1); INSERT INTO "helmert_transformation" VALUES('EPSG','5249','Timbalai 1948 to WGS 84 (5)','Parameter values taken from Timbalai 1948 to GDBD2009 (1) (code 5878) assuming that GDBD2009 is equivalent to WGS 84 within the accuracy of the transformation.','Oil exploration.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4298','EPSG','4326','EPSG','1055',1.0,-689.5937,623.84046,-65.93566,'EPSG','9001',0.02331,-1.17094,0.80054,'EPSG','9104',5.88536,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Brn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5260','TUREF to ETRS89 (1)','Note: the ETRS89 CRS is not used in Turkey.','Accuracy better than 1dm.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','5252','EPSG','4258','EPSG','1237',0.1,0.023,0.036,-0.068,'EPSG','9001',0.00176,0.00912,-0.01136,'EPSG','9104',0.00439,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GCM-Tur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5261','TUREF to WGS 84 (1)','','Approximation at the +/- 1m level as both TUREF and WGS 84 are realizations of ITRS.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5252','EPSG','4326','EPSG','1237',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Tur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5267','DRUKREF 03 to WGS 84 (1)','DRUKREF 03 and WGS 84 are both realisations of ITRS.','For applications to an accuracy of 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5264','EPSG','4326','EPSG','1048',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Btn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5327','ISN2004 to WGS 84 (1)','For many purposes ISN2004 can be considered to be coincident with WGS 84.','Approximation at the +/- 1m level assuming that ISN2004 is equivalent to WGS 84.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5324','EPSG','4326','EPSG','1120',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Isl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5333','ITRF2005 to ITRF2008 (1)','At epoch 2005.0. Rates dX=-0.0003 m/yr, dy=dz=0.000 m/yr, rX=rY=rZ=0.0"/yr, dS=0.0000 ppm/yr.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4896','EPSG','5332','EPSG','1262',0.0,0.0005,0.0009,0.0047,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00094,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','5350','Campo Inchauspe to POSGAR 2007 (1)','Adopted from U.S. Defense Mapping Agency values for Campo Inchauspe to WGS 84 (tfm code 1127) assuming that POSGAR 2007 is equivalent to WGS 84.','Accuracy 5m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4221','EPSG','5340','EPSG','3215',5.0,-148.0,136.0,90.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Arg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5351','POSGAR 2007 to WGS 84 (1)','','Approximation at the sub meter level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5340','EPSG','4326','EPSG','1033',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Arg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5374','MARGEN to WGS 84 (1)','','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5354','EPSG','4326','EPSG','1049',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bol',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5375','SIRGAS-Chile to WGS 84 (1)','','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','9184','EPSG','4326','EPSG','1066',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Chl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5376','CR05 to WGS 84 (1)','','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5365','EPSG','4326','EPSG','1074',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Cri',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5377','MACARIO SOLIS to WGS 84 (1)','','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5371','EPSG','4326','EPSG','1186',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Pan',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5378','Peru96 to WGS 84 (1)','','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5373','EPSG','4326','EPSG','1189',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Per',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5384','SIRGAS-ROU98 to WGS 84 (1)','','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5381','EPSG','4326','EPSG','1247',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Ury',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5385','Yacare to SIRGAS-ROU98 (1)','Derived at 11 stations during 1998 densification of Uruguay control based on SIRGAS 1995.','Accuracy at stations used for derivation: 0.13 to 1.17m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4309','EPSG','5381','EPSG','3326',1.5,-124.45,183.74,44.64,'EPSG','9001',-0.4384,0.5446,-0.9706,'EPSG','9104',-2.1365,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SGM-Ury',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5386','Yacare to WGS 84 (2)','Derived at 11 stations during 1998 densification of Uruguay control based on SIRGAS 1995.','Accuracy at stations used for derivation: 0.13 to 1.17m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4309','EPSG','4326','EPSG','3326',1.5,-124.45,183.74,44.64,'EPSG','9001',-0.4384,0.5446,-0.9706,'EPSG','9104',-2.1365,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SGM-Ury',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5395','SIRGAS_ES2007.8 to WGS 84 (1)','','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5393','EPSG','4326','EPSG','1087',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Slv',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5470','Ocotepeque 1935 to WGS 84 (1)','Parameter values taken from Ocotepeque to CR05 (1) (tfm code 6890) assuming that CR05 is equivalent to WGS 84 within the accuracy of the transformation.','Topographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5451','EPSG','4326','EPSG','3232',8.0,213.11,9.37,-74.95,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Cri',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5473','Ocotepeque 1935 to WGS 84 (2)','Rotations in original source given in radians are equivalent to Rx = 2.35", Ry = -0.06", Rz = 6.39".','Topographic mapping.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','5451','EPSG','4326','EPSG','3232',5.0,213.116,9.358,-74.946,'EPSG','9001',1.14e-05,-2.98e-07,3.1e-05,'EPSG','9101',-5.22,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNA-Cri',1); INSERT INTO "helmert_transformation" VALUES('EPSG','5474','Ocotepeque 1935 to NAD27 (1)','','Topographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5451','EPSG','4326','EPSG','3876',9.0,205.435,-29.099,292.202,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cri',1); INSERT INTO "helmert_transformation" VALUES('EPSG','5483','Luxembourg 1930 to ETRS89 (4)','Replaces transformation code 1078, this being derived through more observations. May be taken as approximate transformation Luxembourg 1930 to WGS 84 - see code 5484. For an equivalent transformation using the Coordinate Frame method see code 5485.','For applications to an accuracy of 0.1 metre.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4181','EPSG','4258','EPSG','1146',0.1,-265.8867,76.9851,20.2667,'EPSG','9001',0.33746,3.09264,-2.53861,'EPSG','9104',0.4598,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4103620.3943,440486.4235,4846923.4558,'EPSG','9001','ACT-Lux MB 2011',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5484','Luxembourg 1930 to WGS 84 (4)','Parameter values from Luxembourg 1930 to ETRS89 (4) (code 5483) assuming ETRS89 and WGS 84 are coincident within the one metre level. Replaces tfm code 1079. For an equivalent transformation using the Coordinate Frame method see code 5486.','For applications to an accuracy of 1 metre.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4181','EPSG','4326','EPSG','1146',1.0,-265.8867,76.9851,20.2667,'EPSG','9001',0.33746,3.09264,-2.53861,'EPSG','9104',0.4598,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4103620.3943,440486.4235,4846923.4558,'EPSG','9001','OGP-Lux MB 2011',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5485','Luxembourg 1930 to ETRS89 (3)','Replaces transformation code 1642, this being derived through more observations. May be taken as approximate transformation Luxembourg 1930 to WGS 84 - see code 5486. For an equivalent transformation using the Molodensky-Badekas method see code 5483.','For applications to an accuracy of 0.1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4181','EPSG','4258','EPSG','1146',0.1,-189.6806,18.3463,-42.7695,'EPSG','9001',0.33746,3.09264,-2.53861,'EPSG','9104',0.4598,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ACT-Lux CF 2011',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5486','Luxembourg 1930 to WGS 84 (3)','Parameter values from Luxembourg 1930 to ETRS89 (3) (code 5485) assuming ETRS89 and WGS 84 are coincident within the one metre level. Replaces tfm code 1643. For an equivalent transformation using the Molodensky-Badekas method see code 5484.','For applications to an accuracy of 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4181','EPSG','4326','EPSG','1146',1.0,-189.6806,18.3463,-42.7695,'EPSG','9001',0.33746,3.09264,-2.53861,'EPSG','9104',0.4598,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Lux CF 2011',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5491','Martinique 1938 to RGAF09 (1)','','Accuracy +/- 0.1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4625','EPSG','5489','EPSG','3276',0.1,127.744,547.069,118.359,'EPSG','9001',-3.1116,4.9509,-0.8837,'EPSG','9104',14.1012,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Mtq',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5492','Guadeloupe 1948 to RGAF09 (1)','','Accuracy +/- 10 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4622','EPSG','5489','EPSG','2829',10.0,-471.06,-3.212,-305.843,'EPSG','9001',0.4752,-0.9978,0.2068,'EPSG','9104',2.1353,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Glp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5493','Fort Marigot to RGAF09 (1)','','Accuracy +/- 10 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4621','EPSG','5489','EPSG','2828',10.0,151.613,253.832,-429.084,'EPSG','9001',-0.0506,0.0958,-0.5974,'EPSG','9104',-0.3971,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Glp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5494','RRAF 1991 to RGAF09 (1)','','Accuracy +/- 0.1 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4558','EPSG','5489','EPSG','1156',0.1,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.0239,'EPSG','9104',0.2829,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Glp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5495','RRAF 1991 to RGAF09 (2)','','Accuracy +/- 0.1 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4558','EPSG','5489','EPSG','2829',0.1,1.2239,2.4156,-1.7598,'EPSG','9001',0.038,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Glp GT',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5496','RRAF 1991 to RGAF09 (3)','','Accuracy +/- 0.1 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4558','EPSG','5489','EPSG','2828',0.1,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Glp SM',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5497','POSGAR 2007 to SIRGAS 2000 (1)','','Agreement at the decimeter level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5340','EPSG','4674','EPSG','1033',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Arg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5501','RGAF09 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RGAF09 is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5489','EPSG','4326','EPSG','2824',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-FrAnt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5521','Grand Comoros to WGS 84 (1)','','For military purposes. Accuracy unknown.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4646','EPSG','4326','EPSG','2807',999.0,-963.0,510.0,-359.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SHOM-Com',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5553','PNG94 to WGS 84 (1)','Exact in 1994 but due to significant and variable tectonic activity in PNG, in 2011 PNG94 and WGS 84 differ generally by 2m but in areas of significant tectonic activity differences can exceed 9m.','Approximation at the 2-10m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5546','EPSG','4326','EPSG','1187',2.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-PNG',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5584','MOLDREF99 to ETRS89 (1)','MOLDREF is a densification of ETRS89 in Moldova.','For applications with an accuracy of 0.1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4023','EPSG','4258','EPSG','1162',0.1,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Mda',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5585','MOLDREF99 to WGS 84 (1)','Parameter values from MOLDREF99 to ETRS89 (1) (code 5584). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications with an accuracy of 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4023','EPSG','4326','EPSG','1162',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Mda',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5586','Pulkovo 1942 to UCS-2000 (1)','UCS-2000 is defined to be approximately consistent with Pulkovo 1942 and this transformation''s accuracy is due to deformation of the Pulkovo system across Ukranian territory.','For applications to an accuracy of 3.5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4284','EPSG','5561','EPSG','1242',3.5,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Ukr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5590','UCS-2000 to WGS 84 (1)','Derived through concatenation of UCS-2000 to S-42 (1) (tfm code 5586 reversed) [an approximation] and S-42 to WGS 84 (16) (tfm code 15865) [derived for whole FSU rather than Ukraine]. Replaced by UCS-2000 to WGS 84 (2) (tfm code 5840).','Accuracy 5 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','5561','EPSG','4326','EPSG','1242',5.0,25.0,-141.0,-78.5,'EPSG','9001',0.0,-0.35,-0.736,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Ukr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5599','FEH2010 to WGS 84 (1)','','Approximation at the 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5593','EPSG','4326','EPSG','3889',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Dnk-Deu Feh',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5622','OSGB 1936 to WGS 84 (8)','Derived by CGG for 1994 3D seismic survey.','Oil exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4277','EPSG','4326','EPSG','3893',3.0,370.936,-108.938,435.682,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bp-Gbr WytchF',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5630','Nord Sahara 1959 to WGS 84 (8)','Derived at 1 station (L38).','Used by Total in Ahnet licence area.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4307','EPSG','4326','EPSG','3917',5.0,-168.52,-72.05,304.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tot-Dza Ahnet',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5660','Nord Sahara 1959 to WGS 84 (9)','Derived in 2006 at 45 points in north and central Algeria.','Accuracy at 75 common points better than 1m..','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4307','EPSG','4326','EPSG','1026',1.0,-209.3622,-87.8162,404.6198,'EPSG','9001',0.0046,3.4784,0.5805,'EPSG','9104',-1.4547,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'INCT-Dza',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5662','AGD66 to PNG94 (1)','Derived at 25 stations in 2007. Replaced by AGD66 to PNG94 (4) (code 6939).','Accuracy 2m in 2007.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','5546','EPSG','4013',2.0,-124.0,-60.0,153.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png PFTB 2007',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5822','UCS-2000 to ITRF2005 (1)','May be taken as approximate transformation UCS-2000 to WGS 84 - see code 5840.','For applications to an accuracy of 1 metre.','EPSG','1031','Geocentric translations (geocentric domain)','EPSG','5558','EPSG','4896','EPSG','1242',1.0,24.0,-121.0,-76.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SSGC-Ukr',1); INSERT INTO "helmert_transformation" VALUES('EPSG','5823','Ukraine 2000 to WGS 84 (1)','Parameter values taken from Ukraine 2000 to ITRF2005 (1) (code 5822) assuming that ITRS2005 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level assuming that ITRS2005 is equivalent to WGS 84.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5561','EPSG','4326','EPSG','1242',1.0,24.0,-121.0,-76.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Ukr',1); INSERT INTO "helmert_transformation" VALUES('EPSG','5826','DB_REF to ETRS89 (1)','Given with rotation and scale to greater resolution: dX = -1.1155214628", dY = -0.2824339890", dZ = 3.1384490633", dS = 7.992235". The truncated values given by OGP do not impact calculation accuracy.','Engineering survey for railway applications.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','5681','EPSG','4258','EPSG','3339',0.5,584.9636,107.7175,413.8067,'EPSG','9001',-1.1155,-0.2824,3.1384,'EPSG','9104',7.9922,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DB-Deu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5827','AGD66 to GDA94 (19)','Replaces nationally-derived transformation code 1458.','Recommended for mid-accuracy use in A.C.T. 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4283','EPSG','2283',0.5,-129.164,-41.188,130.718,'EPSG','9001',-0.246,-0.374,-0.329,'EPSG','9104',-2.955,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PLA-ACT',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5840','UCS-2000 to WGS 84 (2)','Rounded parameter values taken from UCS-2000 to ITRF2000 (1) (code 7817) assuming that WGS 84 is equivalent to ITRS2000 within the accuracy of the transformation. Replaces UCS-2000 to WGS 84 (1) (tfm code 5590).','Approximation at the +/- 1m level assuming that WGS 84 is equivalent to ITRS2000.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5561','EPSG','4326','EPSG','1242',1.0,24.0,-121.0,-76.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Ukr SSGC',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5841','AGD66 to WGS 84 (19)','Derived at 25 stations in 2007.','Accuracy 2m in 2007. Due to significant tectonic activity in PNG, AGD66 and WGS 84 are separating by approximately 7cm per year.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','4013',2.0,-124.0,-60.0,154.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png PFTB 2007',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5878','Timbalai 1948 to GDBD2009 (1)','May be taken as approximate transformation Timbalai 1948 to WGS 84 - see code 5249.','Oil exploration.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4298','EPSG','5246','EPSG','1055',1.0,-689.5937,623.84046,-65.93566,'EPSG','9001',0.02331,-1.17094,0.80054,'EPSG','9104',5.88536,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SD-Brn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5881','SAD69(96) to SIRGAS 2000 (2)','Parameter values from SAD69 to SIRGAS 2000 (1) (tfm code 15485) assuming that SAD69 and SAD69(96) are equal within the accuracy of the transformation. Used by Petrobras and ANP throughout Brazil from 1994.','Accuracy generally better than 1m except in Amazon basin where it degenerates to 5m. Should be used only to transform data obtained independently of the classical geodetic network (GPS observations conducted after 1994).','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5527','EPSG','4674','EPSG','1053',5.0,-67.35,3.88,-38.22,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IBGE-Bra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5882','SAD69 to WGS 84 (16)','Parameter values from SAD69 to SIRGAS 2000 (1) (tfm code 15485) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation. Used by ANP and Petrobras throughout Brazil from 1994, replacing use of tfm code 1877.','Accuracy generally better than 1m except in Amazon basin where it degenerates to 5m. Should be used only to transform data obtained independently of the classical geodetic network (GPS observations conducted after 1994).','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','1053',5.0,-67.35,3.88,-38.22,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5888','Combani 1950 to RGM04 (1)','','Accuracy +/- 0.3 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4632','EPSG','4470','EPSG','3340',0.3,-599.928,-275.552,-195.665,'EPSG','9001',-0.0835,-0.4715,0.0602,'EPSG','9104',49.2814,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Myt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','5900','ITRF2005 to ETRF2005 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Definition of ETRF2005.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4896','EPSG','8397','EPSG','1298',0.0,56.0,48.0,-37.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1027',0.054,0.518,-0.781,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6136','GCGD59 to CIGD11 (1)','May be taken as approximate transformation GCGD61 to WGS 84 - see code 6142.','For applications to an accuracy of 1 foot (0.3m).','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4723','EPSG','6135','EPSG','3185',0.3,-179.483,-69.379,-27.584,'EPSG','9001',7.862,-8.163,-6.042,'EPSG','9104',-13.925,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LSD-Cym',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6137','SIGD61 to CIGD11 (1)','May be taken as approximate transformation SIGD61 to WGS 84 - see code 6143.','For applications to an accuracy of 0.5 foot (0.15m).','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4726','EPSG','6135','EPSG','3186',0.15,8.853,-52.644,180.304,'EPSG','9001',0.393,2.323,-2.96,'EPSG','9104',-24.081,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LSD-Cym',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6142','GCGD59 to WGS 84 (2)','Parameter values are taken from GCGD59 to CIGD11 (1) (code 6136) assuming that CIGD11 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4723','EPSG','4326','EPSG','3185',1.0,-179.483,-69.379,-27.584,'EPSG','9001',7.862,-8.163,-6.042,'EPSG','9104',-13.925,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Cym',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6143','SIGD61 to WGS 84 (3)','Parameter values are taken from SIGD59 to CIGD11 (1) (code 6137) assuming that CIGD11 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4726','EPSG','4326','EPSG','3186',1.0,8.853,-52.644,180.304,'EPSG','9001',0.393,2.323,-2.96,'EPSG','9104',-24.081,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Cym',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6177','CIGD11 to WGS 84 (1)','Approximation at the +/- 1m level assuming that CIGD11 is equivalent to WGS 84.','Accuracy +/- 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6135','EPSG','4326','EPSG','1063',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Cym',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6191','Corrego Alegre 1970-72 to SAD69 (1)','Derived by Brazilian Institute of Geography and Statistics (IBGE) in 1983 at Chua origin point.','Medium and small scale mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4225','EPSG','4618','EPSG','1293',5.0,-138.7,164.4,34.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGBE-Bra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6192','Corrego Alegre 1970-72 to WGS 84 (3)','Formed by concatenation of tfms codes 6191 and 1877. Used by Petrobras and ANP until February 2005 when replaced by Corrego Alegre 1970-72 to WGS 84 (4) (tfm code 6194).','Medium and small scale mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4225','EPSG','4326','EPSG','1293',5.0,-205.57,168.77,-4.12,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PBS-Bra 1983',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6193','Corrego Alegre 1970-72 to SIRGAS 2000 (2)','Formed by concatenation of tfms codes 6191 and 15485. May be used as transformation between Corrego Alegre 1970-72 and WGS 84 - see tfm code 6194. Used by Petrobras and ANP from February 2005.','Medium and small scale mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4225','EPSG','4674','EPSG','1293',5.0,-206.05,168.28,-3.82,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PBS-Bra 2005',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6194','Corrego Alegre 1970-72 to WGS 84 (4)','Parameter values from Corrego Alegre to SIRGAS 2000 (2) (tfm code 6193) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation. Used by ANP and Petrobras from February 2005, replacing use of tfm code 6192.','Medium and small scale mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4225','EPSG','4326','EPSG','1293',5.0,-206.05,168.28,-3.82,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PBS-Bra 2005',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6195','SAD69(96) to WGS 84 (2)','Parameter values from SAD69(96) to SIRGAS 2000 (2)) (tfm code 5881) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation, based on SAD69 to SIRGAS 2000 (1)) (tfm code 15485). Used by Petrobras and ANP from 1994.','Accuracy generally better than 1m except in Amazon basin where it degenerates to 5m. Should be used only to transform data obtained independently of the classical geodetic network (GPS observations conducted after 1994).','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5527','EPSG','4326','EPSG','1053',5.0,-67.35,3.88,-38.22,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6196','Minna to WGS 84 (16)','Used by Addax for OPL 118 and OML 124. Derived in 1999 at 4 stations during extension into OPL 118 of control in Chevron block OML 53.','Oil industry exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','4127',5.0,-93.179,-87.124,114.338,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ADX-Nga OPL 118',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6205','MGI 1901 to ETRS89 (5)','Derived at 31 stations in July 2010.','1m accuracy. Residuals generally less than +/- 0.7m horizontally.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4258','EPSG','1148',1.0,517.4399,228.7318,579.7954,'EPSG','9001',-4.045,-4.304,15.612,'EPSG','9104',-8.312,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KAT-Mkd',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6206','MGI 1901 to WGS 84 (10)','Derived at 13 stations.','1m accuracy. Residuals generally less than +/- 1m horizontally and vertically.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4326','EPSG','1148',2.0,521.748,229.489,590.921,'EPSG','9001',-4.029,-4.488,15.521,'EPSG','9104',-9.78,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kat-Mkd',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6208','Nepal 1981 to WGS 84 (1)','Derived at 11 points.','Topographic mapping. Accuracy 0.26m (1-sigma).','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6207','EPSG','4326','EPSG','1171',0.3,293.17,726.18,245.36,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SD-Npl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6276','ITRF2008 to GDA94 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy. RMS residuals 5mm north, 8mm east and 28mm vertical, maximum residuals 10mm north, 13mm east and 51mm vertical.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','5332','EPSG','4938','EPSG','1036',0.03,-84.68,-19.42,32.01,'EPSG','1025',-0.4254,2.2578,2.4015,'EPSG','1031',9.71,'EPSG','1028',1.42,1.34,0.9,'EPSG','1027',1.5461,1.182,1.1551,'EPSG','1032',0.109,'EPSG','1030',1994.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus 2010',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6277','ITRF2005 to GDA94 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy. RMS residuals 4mm north, 8mm east and 30mm vertical, maximum residuals 10mm north, 17 mm east and 61mm vertical.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4896','EPSG','4938','EPSG','1036',0.03,-79.73,-6.86,38.03,'EPSG','1025',-0.0351,2.1211,2.1411,'EPSG','1031',6.636,'EPSG','1028',2.25,-0.62,-0.56,'EPSG','1027',1.4707,1.1443,1.1701,'EPSG','1032',0.294,'EPSG','1030',1994.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus 2010',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6278','ITRF2000 to GDA94 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Replaces 2001 transformation by Dawson and Steed, tfm code 6315.','Geodesy. RMS residuals 3mm north, 8mm east and 55mm vertical, maximum residuals 5mm north, 13mm east and 84mm vertical.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4919','EPSG','4938','EPSG','1036',0.06,-45.91,-29.85,-20.37,'EPSG','1025',-1.6705,0.4594,1.9356,'EPSG','1031',7.07,'EPSG','1028',-4.66,3.55,11.24,'EPSG','1027',1.7454,1.4868,1.224,'EPSG','1032',0.249,'EPSG','1030',1994.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus 2010',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6279','ITRF97 to GDA94 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Replaces 2001 transformation by Dawson and Steed, tfm code 6392.','Geodesy. RMS residuals 26mm north, 12mm east and 179mm vertical, maximum residuals 49mm north, 24mm east and 464mm vertical.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4918','EPSG','4938','EPSG','1036',0.18,-14.63,-27.62,-25.32,'EPSG','1025',-1.7893,-0.6047,0.9962,'EPSG','1031',6.695,'EPSG','1028',-8.6,0.36,11.25,'EPSG','1027',1.6394,1.5198,1.3801,'EPSG','1032',0.007,'EPSG','1030',1994.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus 2010',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6280','ITRF96 to GDA94 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Replaces 2001 transformation by Dawson and Steed, code 6313.','Geodesy. RMS residuals 22mm north, 56mm east and 90mm vertical, maximum residuals 49mm north, 126mm east and 193mm vertical.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4917','EPSG','4938','EPSG','1036',0.11,24.54,-36.43,-68.12,'EPSG','1025',-2.7359,-2.0431,0.3731,'EPSG','1031',6.901,'EPSG','1028',-21.8,4.71,26.27,'EPSG','1027',2.0203,2.1735,1.629,'EPSG','1032',0.388,'EPSG','1030',1994.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus 2010',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6281','ITRF88 to ITRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4910','EPSG','4919','EPSG','1262',0.01,-2.47,-1.15,9.79,'EPSG','1033',-0.1,0.0,0.18,'EPSG','1031',-8.95,'EPSG','1028',0.0,0.06,0.14,'EPSG','1034',0.0,0.0,-0.02,'EPSG','1032',-0.01,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6282','ITRF89 to ITRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4911','EPSG','4919','EPSG','1262',0.01,-2.97,-4.75,7.39,'EPSG','1033',0.0,0.0,0.18,'EPSG','1031',-5.85,'EPSG','1028',0.0,0.6,-3.2,'EPSG','1034',0.0,0.0,-0.02,'EPSG','1032',-0.01,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',1); INSERT INTO "helmert_transformation" VALUES('EPSG','6283','ITRF90 to ITRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4912','EPSG','4919','EPSG','1262',0.01,-2.47,-2.35,3.59,'EPSG','1033',0.0,0.0,0.18,'EPSG','1031',-2.45,'EPSG','1028',0.0,0.06,0.14,'EPSG','1034',0.0,0.0,-0.02,'EPSG','1032',-0.01,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6284','ITRF91 to ITRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4913','EPSG','4919','EPSG','1262',0.01,-2.67,-2.75,1.99,'EPSG','1033',0.0,0.0,0.18,'EPSG','1031',-2.15,'EPSG','1028',0.0,0.06,0.14,'EPSG','1034',0.0,0.0,-0.02,'EPSG','1032',-0.01,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6285','ITRF92 to ITRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4914','EPSG','4919','EPSG','1262',0.01,-1.47,-1.35,1.39,'EPSG','1033',0.0,0.0,0.18,'EPSG','1031',-0.75,'EPSG','1028',0.0,0.06,0.14,'EPSG','1034',0.0,0.0,-0.02,'EPSG','1032',-0.01,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6286','ITRF93 to ITRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4915','EPSG','4919','EPSG','1262',0.01,-1.27,-0.65,2.09,'EPSG','1033',0.39,-0.8,1.14,'EPSG','1031',-1.95,'EPSG','1028',0.29,0.02,0.06,'EPSG','1034',0.11,0.19,-0.07,'EPSG','1032',-0.01,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6287','ITRF94 to ITRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4916','EPSG','4919','EPSG','1262',0.01,-0.67,-0.61,1.85,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',-1.55,'EPSG','1028',0.0,0.06,0.14,'EPSG','1034',0.0,0.0,-0.02,'EPSG','1032',-0.01,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6288','ITRF96 to ITRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4917','EPSG','4919','EPSG','1262',0.01,-0.67,-0.61,1.85,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',-1.55,'EPSG','1028',0.0,0.06,0.14,'EPSG','1034',0.0,0.0,-0.02,'EPSG','1032',-0.01,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6289','ITRF97 to ITRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4918','EPSG','4919','EPSG','1262',0.01,-0.67,-0.61,1.85,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',-1.55,'EPSG','1028',0.0,0.06,0.14,'EPSG','1034',0.0,0.0,-0.02,'EPSG','1032',-0.01,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6290','ITRF2000 to ITRF2005 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4919','EPSG','4896','EPSG','1262',0.01,-0.1,0.8,5.8,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',-0.4,'EPSG','1028',0.2,-0.1,0.18,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.08,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',1); INSERT INTO "helmert_transformation" VALUES('EPSG','6291','ITRF88 to ITRF2008 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4910','EPSG','5332','EPSG','1262',0.01,-22.8,-2.6,125.2,'EPSG','1025',-0.1,0.0,-0.06,'EPSG','1031',-10.41,'EPSG','1028',-0.1,0.5,3.2,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.09,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6292','ITRF89 to ITRF2008 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4911','EPSG','5332','EPSG','1262',0.01,-27.8,-38.6,101.2,'EPSG','1025',0.0,0.0,-0.06,'EPSG','1031',-7.31,'EPSG','1028',-0.1,0.5,3.2,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.09,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6293','ITRF90 to ITRF2008 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4912','EPSG','5332','EPSG','1262',0.01,-22.8,-14.6,63.2,'EPSG','1025',0.0,0.0,-0.06,'EPSG','1031',-3.91,'EPSG','1028',-0.1,0.5,3.2,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.09,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6294','ITRF91 to ITRF2008 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4913','EPSG','5332','EPSG','1262',0.01,-24.8,-18.6,47.2,'EPSG','1025',0.0,0.0,-0.06,'EPSG','1031',-3.61,'EPSG','1028',-0.1,0.5,3.2,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.09,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6295','ITRF92 to ITRF2008 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4914','EPSG','5332','EPSG','1262',0.01,-12.8,-4.6,41.2,'EPSG','1025',0.0,0.0,-0.06,'EPSG','1031',-2.21,'EPSG','1028',-0.1,0.5,3.2,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.09,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6296','ITRF93 to ITRF2008 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4915','EPSG','5332','EPSG','1262',0.01,24.0,-2.4,38.6,'EPSG','1025',1.71,1.48,0.3,'EPSG','1031',-3.41,'EPSG','1028',2.8,0.1,2.4,'EPSG','1027',0.11,0.19,-0.07,'EPSG','1032',-0.09,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6297','ITRF94 to ITRF2008 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4916','EPSG','5332','EPSG','1262',0.01,-4.8,-2.6,33.2,'EPSG','1025',0.0,0.0,-0.06,'EPSG','1031',-2.92,'EPSG','1028',-0.1,0.5,3.2,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.09,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6298','ITRF96 to ITRF2008 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4917','EPSG','5332','EPSG','1262',0.01,-4.8,-2.6,33.2,'EPSG','1025',0.0,0.0,-0.06,'EPSG','1031',-2.92,'EPSG','1028',-0.1,0.5,3.2,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.09,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6299','ITRF97 to ITRF2008 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4918','EPSG','5332','EPSG','1262',0.01,-4.8,-2.6,33.2,'EPSG','1025',0.0,0.0,-0.06,'EPSG','1031',-2.92,'EPSG','1028',-0.1,0.5,3.2,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.09,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6300','ITRF2000 to ITRF2008 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4919','EPSG','5332','EPSG','1262',0.01,1.9,1.7,10.5,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',-1.34,'EPSG','1028',-0.1,-0.1,1.8,'EPSG','1027',0.0,0.0,0.0,'EPSG','1032',-0.08,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6301','ITRF2005 to ITRF2008 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4896','EPSG','5332','EPSG','1262',0.01,2.0,0.9,4.7,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',-0.94,'EPSG','1028',-0.1,-0.3,0.0,'EPSG','1027',0.0,0.0,0.0,'EPSG','1032',0.0,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld 2008',1); INSERT INTO "helmert_transformation" VALUES('EPSG','6302','ITRF2000 to ITRF2005 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Estimated using 70 stations.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4919','EPSG','4896','EPSG','1262',0.01,-0.1,0.8,5.8,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',-0.4,'EPSG','1028',0.2,-0.1,1.8,'EPSG','1027',0.0,0.0,0.0,'EPSG','1032',-0.08,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6313','ITRF96 to GDA94 (1)','Replaced by Dawson and Woods transformation of 2010, code 6280.','Geodesy.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4917','EPSG','4938','EPSG','1036',0.1,-0.014,0.0431,0.201,'EPSG','9001',0.012464,0.012013,0.006434,'EPSG','9104',0.024607,'EPSG','9202',0.0411,0.0218,0.0383,'EPSG','1042',0.002542,0.001431,-0.000234,'EPSG','1043',0.005897,'EPSG','1041',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus 2001',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6314','ITRF97 to GDA94 (1)','Replaced by Dawson and Woods transformation of 2010, tfm code 6279.','Geodesy.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4918','EPSG','4938','EPSG','1036',999.0,-0.2088,0.0119,0.1805,'EPSG','9001',0.012059,0.013369,0.011825,'EPSG','9104',0.004559,'EPSG','9202',-0.022,0.0049,0.0169,'EPSG','1042',0.00204,0.001782,0.001697,'EPSG','1043',-0.00109,'EPSG','1041',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus 2001',1); INSERT INTO "helmert_transformation" VALUES('EPSG','6315','ITRF2000 to GDA94 (1)','Replaced by Dawson and Woods transformation of 2010, tfm code 6278.','Geodesy.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4919','EPSG','4938','EPSG','1036',0.1,-0.0761,-0.0101,0.0444,'EPSG','9001',0.008765,0.009361,0.009325,'EPSG','9104',0.007935,'EPSG','9202',0.011,-0.0045,-0.0174,'EPSG','1042',0.001034,0.000671,0.001039,'EPSG','1043',-0.000538,'EPSG','1041',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus 2001',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6373','Mexico ITRF2008 to WGS 84 (1)','','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6365','EPSG','4326','EPSG','1160',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Mex',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6388','Ocotepeque 1935 to NAD27 (1)','','Topographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5451','EPSG','4267','EPSG','3876',9.0,205.435,-29.099,292.202,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cri',1); INSERT INTO "helmert_transformation" VALUES('EPSG','6389','ITRF2005 to ITRF2008 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. IERS also publish parameter values for epoch 2005.0; because most rates are zero all values as above except tX=0.5mm. Estimated using 171 stations at 131 sites.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4896','EPSG','5332','EPSG','1262',0.01,2.0,0.9,4.7,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',-0.94,'EPSG','1028',-0.3,0.0,0.0,'EPSG','1027',0.0,0.0,0.0,'EPSG','1032',0.0,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld 2008',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6392','ITRF97 to GDA94 (1)','Replaced by Dawson and Woods transformation of 2010, tfm code 6279.','Geodesy.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4918','EPSG','4938','EPSG','1036',0.1,-0.2088,0.0119,0.1855,'EPSG','9001',0.012059,0.013639,0.011825,'EPSG','9104',0.004559,'EPSG','9202',-0.022,0.0049,0.0169,'EPSG','1042',0.00204,0.001782,0.001697,'EPSG','1043',-0.00109,'EPSG','1041',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus 2001',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6698','JGD2000 to JGD2011 (2)','Excludes areas of northern Honshu affected by 2008 Iwate-Miyagi and 2011 Tohoku earthquakes. For these areas use GSI PatchJGD application or JGD2000 to JGD2011 (1) (tfm code 6713).','Approximation at the +/- 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4612','EPSG','6668','EPSG','4163',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Jpn ex N Honshu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6701','GDBD2009 to WGS 84 (1)','Approximation at the +/- 1m level assuming that GDBD2009 is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5246','EPSG','4326','EPSG','1055',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Brn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6710','RDN2008 to ETRS89 (1)','May be taken as approximate transformation RDN2008 to WGS 84 - see code 6711.','RDN2008 is a national realization of ETRS89.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6706','EPSG','4258','EPSG','1127',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Ita',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6711','RDN2008 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84. RDN2008 is a regional realisation of ETRS89.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6706','EPSG','4326','EPSG','1127',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Ita',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6864','ITRF96 to NAD83(CORS96) (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Jointly derived by Canada and US at 12 North American VLBI stations. Replaced by tfm code 6865 from 2000-01-01. See tfm code 8259 for Canadian equivalent.','Geodesy. Definition of NAD83(CORS96) from 1st January 1997 through 31st December 1999 and is therefore treated as errorless.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4917','EPSG','6781','EPSG','1511',0.0,0.991,-1.9072,-0.5129,'EPSG','9001',25.79,9.65,11.66,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1042',0.0532,-0.7423,-0.0316,'EPSG','1032',0.0,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NGS-US CORS96',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6865','ITRF97 to NAD83(CORS96) (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. 1996 derivation (see tfm 6864) concatenated with IGS value of ITRF96>ITRF97. Replaced by tfm code 6865 from 2000-01-01. See tfm code 8260 for Canadian equivalent.','Geodesy. Redefinition of NAD83(CORS96) from January 2000 through December 2001.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4918','EPSG','6781','EPSG','1511',0.0,0.9889,-1.9074,-0.503,'EPSG','9001',25.915,9.426,11.599,'EPSG','1031',-0.93,'EPSG','1028',0.0007,-0.0001,0.0019,'EPSG','1042',0.067,-0.757,-0.031,'EPSG','1032',-0.19,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NGS-US CORS96',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6866','ITRF2000 to NAD83(CORS96) (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Joint derivation by Canada and US (tfm 6864) concatenated with IGS value for ITRF96>97 and IERS ITRF97>2000 transformations. See tfm 8261 for Canadian equivalent.','Geodesy. Definition of NAD83(CORS96) from 1st January 2002 through 6th September 2011 and is therefore treated as errorless.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4919','EPSG','6781','EPSG','1511',0.0,0.9956,-1.9013,-0.5215,'EPSG','9001',25.915,9.426,11.599,'EPSG','1031',0.62,'EPSG','1028',0.0007,-0.0007,0.0005,'EPSG','1042',0.067,-0.757,-0.051,'EPSG','1032',-0.18,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NGS-US CORS96',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6872','Abidjan 1987 to WGS 84 (2)','Derived and used by Western Geophysical for offshore surveys in the 1990s, but exact provenance uncertain. Used by OMV.','Accuracy uncertain but there is some evidence of unknown reliability that suggests accuracy of better than 2m throughout offshore.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4143','EPSG','4326','EPSG','2296',2.0,-123.1,53.2,465.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'WGC-Civ',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6873','Tananarive to WGS 84 (2)','Derived at 9 points throughout Madagascar. Adopted by OMV.','For applications with an accuracy of 3m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4297','EPSG','4326','EPSG','1149',3.0,-198.383,-240.517,-107.909,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ROG-Mdg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6888','Ocotepeque 1935 to NAD27 (1)','','Topographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5451','EPSG','4267','EPSG','3876',9.0,205.435,-29.099,-292.202,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cri',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6889','Ocotepeque 1935 to WGS 84 (2)','Rotations in original source given in radians are equivalent to Rx = 2.35", Ry = -0.06", Rz = 6.39".','Topographic mapping.','EPSG','1063','Molodensky-Badekas (PV geog2D domain)','EPSG','5451','EPSG','4326','EPSG','3232',5.0,213.116,9.358,-74.946,'EPSG','9001',1.14e-05,-2.98e-07,3.1e-05,'EPSG','9101',5.22,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,617749.7118,-6250547.7336,1102063.6099,'EPSG','9001','UNA-Cri',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6890','Ocotepeque 1935 to CR05 (1)','May be taken as approximate transformation Ocotepeque to WGS 84 - see code 5470.','Topographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5451','EPSG','5365','EPSG','3232',8.0,213.11,9.37,-74.95,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Cri',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6891','Ocotepeque 1935 to WGS 84 (3)','Concatenation (via NAD27) of transformations 6888 and 1171. Accuracy not given, but accuracy of constituent transformations given as 9m and 10m respectively.','For military purposes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5451','EPSG','4326','EPSG','3876',14.0,205.0,96.0,-98.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Cri',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6895','Viti Levu 1912 to WGS 84 (2)','Derived at 9 stations. Replaces Viti Levu 1912 to WGS 84 (1) (code 15897).','For military and topographic mapping. Accuracy +/-3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4752','EPSG','4326','EPSG','3195',5.0,98.0,390.0,-22.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Fji GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6896','Accra to WGS 84 (4)','Derived at 4 stations.','For military purposes. Accuracy 3m, 4m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4168','EPSG','4326','EPSG','3252',6.0,-170.0,33.0,326.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Gha GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6897','St. Lucia 1955 to WGS 84 (2)','Derived at 3 stations.','For military purposes only. Accuracy 1m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4606','EPSG','4326','EPSG','3298',2.0,-153.0,153.0,307.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Lca GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6898','Lisbon to WGS 84 (5)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4207','EPSG','4326','EPSG','1294',43.0,-306.0,-62.0,105.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Prt GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6899','Pulkovo 1942 to WGS 84 (21)','Derived at 19 stations.','For military purposes. Accuracy 2m, 3m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','3246',5.0,22.0,-126.0,-85.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Est GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6900','Observatario to WGS 84 (1)','Derived at 3 stations.','For military purposes. Accuracy 10m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4129','EPSG','4326','EPSG','1329',17.0,-132.0,-110.0,-335.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Moz Geotrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6901','Tete to WGS 84 (6)','Derived at 4 stations.','For military purposes. Accuracy 10m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4127','EPSG','4326','EPSG','3281',17.0,-80.0,-100.0,-228.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Moz GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6902','Timbalai 1948 to WGS 84 (6)','Derived at 9 stations.','For military purposes. Accuracy 1m, 6m and 2m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4298','EPSG','4326','EPSG','2349',6.0,-679.0,667.0,-49.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Brn GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6903','Yoff to WGS 84 (2)','Derived at 7 stations.','For military purposes only. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4310','EPSG','4326','EPSG','1207',5.0,-30.0,190.0,89.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Sen GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6904','Arc 1950 to WGS 84 (11)','Derived at 7 stations. Info source gives source CRS as Arc 1960. From inspection of parameter values, comparison of those from DMA TR8350.2 transformations and geographic applicability of CRS, OGP believes that this should be Arc 1950.','For military purposes only. Accuracy 13m, 25m and 7m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','1150',29.0,-179.0,-81.0,-314.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Mwi GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6905','AGD66 to WGS 84 (20)','Derived at 161 stations. Replaces AGD66 to WGS 84 (1) (code 1108).','For military purposes only. Accuracy 5m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','2575',9.0,-128.0,-52.0,153.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Aus GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6906','Arc 1950 to WGS 84 (10)','Derived at 38 stations. Replaces Arc 1950 to WGS 84 (9), tfm code 1121.','For military purposes. Accuracy 10m in each of X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4209','EPSG','4326','EPSG','1261',17.0,-145.0,-97.0,-292.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Zwe GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6907','Ayabelle Lighthouse to WGS 84 (2)','Derived at 2 stations. Replaces Ayabelle Lighthouse to WGS 84 (1) (code 15800).','For military purposes only. Accuracy 10m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4713','EPSG','4326','EPSG','3238',17.0,-77.0,-128.0,142.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Dji GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6908','Fahud to WGS 84 (3)','Derived at 11 stations. Replaces Fahud to WGS 84 (1) (code 1256).','For military purposes. Accuracy 3m, 3m and 6m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4232','EPSG','4326','EPSG','4009',7.0,-345.0,3.0,223.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Omn GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6909','Hjorsey 1955 to WGS 84 (2)','Derived at 16 stations. Replaces Hjorsey 1955 to WGS 84 (1) (code 1951).','Accuracy 3m, 3m and 6m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4658','EPSG','4326','EPSG','3262',7.0,-73.0,47.0,-83.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Isl GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6910','Aden 1925 to WGS 84 (1)','Derivation not given.','For military purposes. Accuracy not specified.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6881','EPSG','4326','EPSG','1340',999.0,-24.0,-203.0,268.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Yem GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6911','Bekaa Valley 1920 to WGS 84 (1)','Derivation not given.','For military purposes. Accuracy not specified.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6882','EPSG','4326','EPSG','3269',999.0,-183.0,-15.0,273.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Lbn GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6912','Bioko to WGS 84 (1)','Derived at 6 stations.','For military purposes. Accuracy 5m, 17m and 38m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6883','EPSG','4326','EPSG','4220',42.0,-235.0,-110.0,393.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Gnq GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6913','Gambia to WGS 84 (1)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6894','EPSG','4326','EPSG','3250',43.0,-63.0,176.0,185.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Gmb GeoTrans3-4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6914','South East Island 1943 to WGS 84 (1)','Derived by UK DOS at 10 stations in 1998, RMS ±0.314m. Also published by NGA in Standard 0036 v1.0.0 of 2014-07-08 and in GeoTrans v3.4 software with parameter values rounded to integer.','Topographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6892','EPSG','4326','EPSG','4183',1.0,-43.685,-179.785,-267.721,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DOS-Syc 3-param',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6926','South East Island 1943 to WGS 84 (2)','Derived by UKHO at 13 stations in 1999, RMS ±0.271m.','Hydrographic survey and charting.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','6892','EPSG','4326','EPSG','4183',1.0,-76.269,-16.683,68.562,'EPSG','9001',-6.275,10.536,-4.286,'EPSG','9104',-13.686,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UKHO-Syc 7-param',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6935','IGS08 to IGRS (1)','Derived by least squares adjustment from the coordinates of the IRAQ-CORS network in both CRSs. Station Baghdad was excluded (high residuals). RMSE = 0.004 m. Application yields identical results to transformation 6936.','Geodetic survey, large scale mapping and engineering surveys.','EPSG','1061','Molodensky-Badekas (PV geocentric domain)','EPSG','6934','EPSG','3887','EPSG','1124',0.05,0.208,-0.012,-0.229,'EPSG','9001',-0.01182,0.00811,-0.01677,'EPSG','9104',-0.0059,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3777505.028,3779254.396,3471111.632,'EPSG','9001','IRQ-MB(PV)',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6936','IGS08 to IGRS (2)','Derived by least squares adjustment from the coordinates of the IRAQ-CORS network in both CRSs. Station Baghdad was excluded (high residuals). RMSE = 0.004 m. Application yields identical results to transformation 6935.','Geodetic survey, large scale mapping and engineering surveys.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','6934','EPSG','3887','EPSG','1124',0.05,-0.214,0.119,0.156,'EPSG','9001',-0.01182,0.00811,-0.01677,'EPSG','9104',-0.0059,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IRQ-7PV',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6937','AGD66 to PNG94 (2)','Derived in 2014 at 38 stations around the PNG mainland. Aligned to the Bevan Rapids Geodetic Origin AA 070 as required by the Papua New Guinea Oil and Gas Act 1998.','Medium accuracy (1m) transformations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4202','EPSG','5546','EPSG','4214',1.0,-0.41,-2.37,2.0,'EPSG','9001',3.592,3.698,3.989,'EPSG','9104',8.843,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png Mainland 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6938','AGD66 to PNG94 (3)','Derived in 2014 at 38 stations around the PNG mainland. See AGD66 to PNG94 (2) for a more accurate 7-parameter transformation. May be taken as an approximate transformation AGD66 to WGS 84 - see tfm code 6943.','Low accuracy transformation suitable for mapping and navigation purposes only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','5546','EPSG','4214',4.0,-129.0,-58.0,152.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png Mainland 4m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6939','AGD66 to PNG94 (4)','Derived in 2014 at 23 stations around the Kutubu oilfields. Aligned to the Bevan Rapids Geodetic Origin AA 070 as required by the Papua New Guinea Oil and Gas Act 1998. Replaces AGD66 to PNG94 (1) (tfm code 5662).','Medium accuracy (1m) transformations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4202','EPSG','5546','EPSG','4013',1.0,-131.876,-54.554,453.346,'EPSG','9001',-5.2155,-8.2042,0.09,'EPSG','9104',5.02,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png PFTB 2014 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6940','AGD66 to PNG94 (5)','Derived in 2014 at 23 stations around the Kutubu oilfields. See AGD66 to PNG94 (4) for a more accurate 7-parameter transformation. May be taken as an approximate transformation AGD66 to WGS 84 - see tfm code 6944.','Low accuracy transformation suitable for mapping and navigation purposes only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','5546','EPSG','4013',2.0,-131.3,-55.3,151.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png PFTB 2014 2m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6941','AGD66 to PNG94 (6)','Derived in 2014 at 7 stations in Ningerum and Tabubil (North Fly District).','Medium accuracy (1m) transformations.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4202','EPSG','5546','EPSG','4216',0.5,45.928,-177.212,336.867,'EPSG','9001',-4.6039,-3.0921,0.5729,'EPSG','9104',36.796,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png North Fly 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6942','AGD66 to PNG94 (7)','Derived in 2014 at 7 stations in Ningerum and Tabubil (North Fly District). See AGD66 to PNG94 (6) for a more accurate 7-parameter transformation. May be taken as an approximate transformation AGD66 to WGS 84 - see tfm code 6945.','Low accuracy transformation suitable for mapping and navigation purposes only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','5546','EPSG','4216',2.5,-137.4,-58.9,150.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png North Fly 3m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6943','AGD66 to WGS 84 (21)','Parameter values taken from AGD66 to PNG94 (3) (code 6938). Approximation at the +/- 5m level assuming that PNG94 is equivalent to WGS 84 within the accuracy of the transformation.','Low accuracy transformation suitable for mapping and navigation purposes only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','4214',5.0,-129.0,-58.0,152.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png Mainland',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6944','AGD66 to WGS 84 (22)','Parameter values taken from AGD66 to PNG94 (5) (code 6940). Approximation at the +/- 4m level assuming that PNG94 is equivalent to WGS 84 within the accuracy of the transformation.','Low accuracy transformation suitable for mapping and navigation purposes only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','4013',4.0,-131.3,-55.3,151.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png PFTB 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6945','AGD66 to WGS 84 (23)','Parameter values taken from AGD66 to PNG94 (7) (code 6942). Approximation at the +/- 4m level assuming that PNG94 is equivalent to WGS 84 within the accuracy of the transformation.','Low accuracy transformation suitable for mapping and navigation purposes only.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','4216',4.0,-137.4,-58.9,150.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Qcl-Png North Fly',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6949','PSAD56 to SIRGAS-Chile (1)','Also used as a transformation from PSAD56 to WGS 84 - see code 6971.','Small and medium scale cartographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','9184','EPSG','4231',5.0,-302.0,272.0,-360.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Chl A',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6950','PSAD56 to SIRGAS-Chile (2)','Also used as a transformation from PSAD56 to WGS 84 - see code 6972.','Small and medium scale cartographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','9184','EPSG','4222',5.0,-328.0,340.0,-329.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Chl B',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6951','PSAD56 to SIRGAS-Chile (3)','Also used as a transformation from PSAD56 to WGS 84 - see code 6973.','Small and medium scale cartographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','9184','EPSG','4221',5.0,-352.0,403.0,-287.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Chl C',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6960','VN-2000 to WGS 84 (2)','','Academic research not officially adopted.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4756','EPSG','4326','EPSG','3328',1.0,-191.90441429,-39.30318279,-111.45032835,'EPSG','9001',-0.00928836,0.01975479,-0.00427372,'EPSG','9104',0.252906278,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DoSM-Vnm',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6963','Albanian 1987 to ETRS89 (1)','Derived using 90 stations, mse 18cm. May be taken as approximate transformation from Albanian 1987 to WGS 84 (see code 6964).','Use only for horizontal coordinates; geoid heights must be calculated with ALBGEO3 software.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4191','EPSG','4258','EPSG','3212',0.2,-44.183,-0.58,-38.489,'EPSG','9001',2.3867,2.7072,-3.5196,'EPSG','9104',-8.2703,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Alb 2D',1); INSERT INTO "helmert_transformation" VALUES('EPSG','6964','Albanian 1987 to WGS 84 (1)','Parameter values from Albanian 1987 to ETRS89 (1) (code 6963). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','Use only for horizontal coordinates; geoid heights must be calculated with ALBGEO3 software.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4191','EPSG','4326','EPSG','3212',1.0,-44.183,-0.58,-38.489,'EPSG','9001',2.3867,2.7072,-3.5196,'EPSG','9104',-8.2703,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Alb 2D',1); INSERT INTO "helmert_transformation" VALUES('EPSG','6967','SAD69 to SIRGAS-Chile (1)','Also used as a transformation from SAD69 to WGS 84 - see code 6974. Note: SAD69 adopted in Chile only south of 43°30''S.','Small and medium scale cartographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','4232',5.0,-59.0,-11.0,-52.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Chl A',1); INSERT INTO "helmert_transformation" VALUES('EPSG','6968','SAD69 to SIRGAS-Chile (2)','Also used as a transformation from SAD69 to WGS 84 - see code 6975. Note: SAD69 adopted in Chile only south of 43°30''S.','Small and medium scale cartographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','9184','EPSG','4224',5.0,-64.0,0.0,-32.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Chl B',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6969','SAD69 to SIRGAS-Chile (3)','Also used as a transformation from SAD69 to WGS 84 - see code 6976. Note: SAD69 adopted in Chile only south of 43°30''S.','Small and medium scale cartographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','4221',5.0,-72.0,10.0,-32.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Chl C',1); INSERT INTO "helmert_transformation" VALUES('EPSG','6970','SAD69 to SIRGAS-Chile (4)','Also used as a transformation from SAD69 to WGS 84 - see code 6977.','Small and medium scale cartographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','9184','EPSG','2805',5.0,-79.0,13.0,-14.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Chl D',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6971','PSAD56 to WGS 84 (15)','Derived at 5 stations. Replaces PSAD56 to WGS 84 (3) (code 1203). Also used as a transformation from PSAD56 to SIRGAS-Chile - see code 6949.','For military purposes. Accuracy 10m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','4231',17.0,-302.0,272.0,-360.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Chl N 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6972','PSAD56 to WGS 84 (16)','Derived at 7 stations. Also used as a transformation from PSAD56 to SIRGAS-Chile - see code 6950.','For military purposes. Accuracy 10m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','4222',17.0,-328.0,340.0,-329.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Chl Cen 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6973','PSAD56 to WGS 84 (17)','Derived at 6 stations. Replaces PSAD56 to WGS 84 (4) (code 1204). Info source gives S limit as 44°S but Chilean IGM states that PSAD56 limit is 43°30''S. Also used as a transformation from PSAD56 to SIRGAS-Chile - see code 6951.','For military purposes. Accuracy 10m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4248','EPSG','4326','EPSG','4221',17.0,-352.0,403.0,-287.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Chl S 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6974','SAD69 to WGS 84 (17)','Derived at 8 stations. Along with transformations 6975 and 6976, replaces SAD69 to WGS 84 (5) (code 1868). Also used as a transformation from SAD69 to SIRGAS-Chile - see code 7448. Note: SAD69 adopted by Chile authorities only south of 43°30''S.','For military purposes only. Accuracy 2m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','4232',4.0,-59.0,-11.0,-52.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Chl 17-32',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6975','SAD69 to WGS 84 (18)','Derived at 6 stations. Along with transformations 6974 and 6976, replaces SAD69 to WGS 84 (5) (code 1868). Also used as a transformation from SAD69 to SIRGAS-Chile - see code 6968. Note: SAD69 adopted by Chile authorities only south of 43°30''S.','For military purposes only. Accuracy 2m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','4224',4.0,-64.0,0.0,-32.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Chile 32-36',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6976','SAD69 to WGS 84 (19)','Derived at 4 stations. Along with transformations 6974 and 6975, replaces SAD69 to WGS 84 (5) (code 1868). Also used as a transformation from SAD69 to SIRGAS-Chile - see code 7449. Note: SAD69 adopted by Chile authorities only south of 43°30''S.','For military purposes only. Accuracy 4m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','4221',7.0,-72.0,10.0,-32.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Chl 36-44',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6977','SAD69 to WGS 84 (20)','Derived at 6 stations. Also used as a transformation from SAD69 to SIRGAS-Chile - see code 6970. Unlike IGM Chile, NGA extends use of this tfm to all Chile south of 44°S.','For military purposes only. Accuracy 3m, 3m and 4m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4326','EPSG','2805',6.0,-79.0,13.0,-14.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Chile 44-',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6992','IGD05 to IGD05/12','','Geodesy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','7136','EPSG','7139','EPSG','1126',0.05,0.2255,-0.3709,-0.1171,'EPSG','9001',-0.00388,0.00063,-0.0182,'EPSG','9104',0.013443,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SOI-Isr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6993','IGD05/12 to IG05/12 Intermediate CRS','Replaces IGD05 transformation (code 7140). Defines the IG05/12 Intermediate CRS so is considered errorless. Israeli documentation refers to target CRS as "in GRS80". Use this CT for cadastre and precise engineering but see CTs 9186 or 9189 for GIS use.','Legally-defined transformation between IGD05/12 (ITRF) and Israeli Grid 05/12.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','7139','EPSG','6990','EPSG','2603',0.0,-24.0024,-17.1032,-17.8444,'EPSG','9001',-0.33009,-1.85269,1.66969,'EPSG','9104',5.4248,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SOI-Isr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6998','Nahrwan 1967 to WGS 84 (11)','Derived via WGS 72 but provenance uncertain. In ADMA replaces tfm code 15938. In ADCO replaced by tfm code 6999 from October 2013.','Oil exploration and production.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','4226',5.0,-233.4,-160.7,381.5,'EPSG','9001',0.0,0.0,-0.554,'EPSG','9104',0.2263,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ADNOC-UAE Abd',0); INSERT INTO "helmert_transformation" VALUES('EPSG','6999','Nahrwan 1967 to WGS 84 (12)','Derived in October 2013 at four control points of the ADCO CRF and evaluated at four others. Estimated horizontal accuracy of 0.14 m at the 95% confidence level.','Oil exploration and production horizontal coordinate transformation. Although a 3D transformation, should not be used for vertical dimension.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','4225',0.15,-253.4392,-148.452,386.5267,'EPSG','9001',-0.15605,-0.43,0.1013,'EPSG','9104',-0.0424,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ADCO-UAE Abd 2013',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7002','Nahrwan 1967 to WGS 84 (13)','','Abu Dhabi Municipality GIS.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','4229',1.0,-246.1633,-152.9047,382.6047,'EPSG','9001',-0.0989,-0.1382,-0.0768,'EPSG','9104',2.1e-06,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ADM-UAE Abd Isl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7003','Nahrwan 1967 to WGS 84 (14)','','Abu Dhabi Municipality GIS.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','1850',1.0,-242.8907,-149.0671,384.416,'EPSG','9001',-0.19044,-0.24987,-0.13925,'EPSG','9104',0.0001746,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ADM-UAE Abd U39',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7004','Nahrwan 1967 to WGS 84 (15)','','Abu Dhabi Municipality GIS.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','4227',1.0,-246.734,-153.4345,382.1477,'EPSG','9001',0.116617,0.165167,0.091327,'EPSG','9104',1.94e-05,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ADM-UAE Abd U40',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7033','Nahrwan 1934 to WGS 84 (6)','Derived by concatenation of parameter values published by IGN Paris from Nahrwan 1934 to WGS 72 at the Nahrwan SE Base station near Baghdad with DMA WGS 72 to WGS 84 parameter values. For more accurate transformation away from origin see codes 7008-7032.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4744','EPSG','4326','EPSG','3625',30.0,-242.2,-144.9,370.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Irq',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7083','Perroud 1950 to RGTAAF07 (1)','Derived at three point on Petrels island at which residuals about 20 cm.','Coordinate transformation.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4637','EPSG','7073','EPSG','2817',0.5,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN Ata Petrel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7140','IGD05 to IG05 Intermediate CRS','Defines the IG05 Intermediate CRS so is considered errorless. Target CRS is referred to in Israeli documentation as "in GRS80". Replaced by IG05/12 transformation (code 6993).','Legally-defined transformation between IGD05 (ITRF) and Israeli Grid 05.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','7136','EPSG','6983','EPSG','2603',0.0,-23.8085,-17.5937,-17.801,'EPSG','9001',-0.3306,-1.85706,1.64828,'EPSG','9104',5.4374,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SOI-Isr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7377','ONGD14 to WGS 84 (1)','Translations given by information source in mm. Derived at 20 stations, RMS 0.0313m in northing, 0.0377m in easting and 0.0678m in height.','Geodesy.','EPSG','1032','Coordinate Frame rotation (geocentric domain)','EPSG','7371','EPSG','4978','EPSG','1183',0.1,0.819,-0.5762,-1.6446,'EPSG','9001',0.00378,0.03317,-0.00318,'EPSG','9104',0.0693,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NSA-Omn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7442','Nord Sahara 1959 to WGS 84 (10)','Derived at 1 astro station central to concession. Significant and varying differences (>100m) known to exist in neighbouring astro stations.','Oil industry operations.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4307','EPSG','4326','EPSG','4382',100.0,-181.7,64.7,247.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Isa-Alg Ain Tsila',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7443','ONGD14 to WGS 84 (2)','Approximation at the +/- 1m level assuming that ONG14 is equivalent to WGS 84. See transformation code 7377 for authoritative values.','Geodesy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','7373','EPSG','4326','EPSG','1183',2.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Omn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7444','CGRS93 to ETRS89 (1)','Derived at 6 points at epoch 1993.1. May be taken as approximate transformation CGRS93 to WGS 84 - see code 7445.','Small scale hydrographic and aviation mapping.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','6311','EPSG','4258','EPSG','3236',0.1,8.846,-4.394,-1.122,'EPSG','9001',0.00237,0.146528,-0.130428,'EPSG','9104',0.783926,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DLS-Cyp',1); INSERT INTO "helmert_transformation" VALUES('EPSG','7445','CGRS93 to WGS 84 (1)','Parameter values from CGRS93 to ETRS89 (1) (code 7444). Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','Small scale hydrographic and aviation mapping.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','6311','EPSG','4326','EPSG','3236',1.0,8.846,-4.394,-1.122,'EPSG','9001',0.00237,0.146528,-0.130428,'EPSG','9104',0.783926,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Cyp',1); INSERT INTO "helmert_transformation" VALUES('EPSG','7448','SAD69 to SIRGAS-Chile (1)','Also used as a transformation from SAD69 to WGS 84 - see code 6974. Note: SAD69 adopted in Chile only south of 43°30''S.','Small and medium scale cartographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','9184','EPSG','4232',5.0,-59.0,-11.0,-52.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Chl A',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7449','SAD69 to SIRGAS-Chile (3)','Also used as a transformation from SAD69 to WGS 84 - see code 6976. Note: SAD69 adopted in Chile only south of 43°30''S.','Small and medium scale cartographic mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','9184','EPSG','4221',5.0,-72.0,10.0,-32.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Chl C',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7666','WGS 84 (G1762) to ITRF2008 (1)','Defined at epoch 2005.0. Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1032','Coordinate Frame rotation (geocentric domain)','EPSG','7664','EPSG','5332','EPSG','1262',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Wld 2005.0',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7667','WGS 84 (G1674) to WGS 84 (G1762) (1)','Defined at epoch 2005.0. Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1032','Coordinate Frame rotation (geocentric domain)','EPSG','7662','EPSG','7664','EPSG','1262',0.01,-4.0,3.0,4.0,'EPSG','1025',0.27,-0.27,0.38,'EPSG','1031',-6.9,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Wld 2005.0',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7668','WGS 84 (G1150) to WGS 84 (G1762) (1)','Defined at epoch 2001.0. Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1032','Coordinate Frame rotation (geocentric domain)','EPSG','7660','EPSG','7664','EPSG','1262',0.02,-6.0,5.0,20.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',-4.5,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Wld 2001.0',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7669','WGS 84 (G1674) to ITRF2008 (1)','Defined at epoch 2005.0. Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1032','Coordinate Frame rotation (geocentric domain)','EPSG','7662','EPSG','5332','EPSG','1262',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Wld 2005.0',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7670','WGS 84 (G1150) to ITRF2000 (1)','Defined at epoch 2001.0.','Geodesy.','EPSG','1032','Coordinate Frame rotation (geocentric domain)','EPSG','7660','EPSG','4919','EPSG','1262',0.02,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Wld 2001.0',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7671','WGS 84 (G873) to ITRF92 (1)','Defined at epoch 1997.0.','Geodesy','EPSG','1032','Coordinate Frame rotation (geocentric domain)','EPSG','7658','EPSG','4914','EPSG','1262',0.1,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Wld 1997.0',1); INSERT INTO "helmert_transformation" VALUES('EPSG','7672','WGS 84 (G730) to ITRF92 (1)','Defined at epoch 1994.0.','Geodesy.','EPSG','1032','Coordinate Frame rotation (geocentric domain)','EPSG','7656','EPSG','4914','EPSG','1262',0.2,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Wld 1994.0',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7675','MGI 1901 to ETRS89 (6)','Derived at 5506 points across the Repulic of Serbia. May be taken as approximate transformation MGI 1901 to WGS 84 assuming ETRS89 is equivalent to WGS 84 within the accuracy of the transformation - see tfm code 7676.','0.5m accuracy suitable for large and medium scale mapping.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4258','EPSG','4543',0.5,577.88891,165.22205,391.18289,'EPSG','9001',-4.9145,0.94729,13.05098,'EPSG','9104',7.78664,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'RGZ-Srb',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7676','MGI 1901 to WGS 84 (11)','Parameter values from MGI 1901 to ETRS89 (6) (code 7675). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications with an accuracy of 1m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4326','EPSG','4543',1.0,577.88891,165.22205,391.18289,'EPSG','9001',-4.9145,0.94729,13.05098,'EPSG','9104',7.78664,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Srb',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7697','Egypt 1907 to WGS 84 (4)','Derived at 30 stations throughout Egypt 1907 network. Accuracy determined at 15 stations 0.7m in each axis.','Unified transformation for whole country. Accuracy under 1m in X, Y and Z axes.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4229','EPSG','4326','EPSG','1086',1.2,-127.535,113.495,-12.7,'EPSG','9001',1.603747,-0.153612,-5.364408,'EPSG','9104',5.33745,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4854969.728,2945552.013,2868447.61,'EPSG','9001','SRI-Egy',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7698','NAD27 to WGS 84 (89)','Derived at stations in the provinces of Colón, Panamá, Coclé, Veraguas,¶Herrera, Los Santos y Chiriquí. Standard deviation 0.871m in north and 0.531m in east.','Accuracy 1m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','3290',1.0,-32.3841359,180.4090461,120.8442577,'EPSG','9001',2.1545854,0.1498782,-0.5742915,'EPSG','9104',8.1049164,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGNTG-Pan',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7702','PZ-90 to PZ-90.02 (1)','','Geodesy.','EPSG','1066','Time-specific Coordinate Frame rotation (geocen)','EPSG','4922','EPSG','7677','EPSG','1262',0.17,-1.07,-0.03,0.02,'EPSG','9001',0.0,0.0,-130.0,'EPSG','1031',-0.22,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2002.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'MTD-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7703','PZ-90.02 to PZ-90.11 (1)','','Geodesy.','EPSG','1066','Time-specific Coordinate Frame rotation (geocen)','EPSG','7677','EPSG','7679','EPSG','1262',0.07,-0.373,0.186,0.202,'EPSG','9001',-2.3,3.54,-4.21,'EPSG','1031',-0.008,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'MTD-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7704','PZ-90 to PZ-90.11 (1)','Concatenation of transformations 7702 and 7703.','Geodesy.','EPSG','1032','Coordinate Frame rotation (geocentric domain)','EPSG','4922','EPSG','7679','EPSG','1262',0.2,-1.443,0.156,0.222,'EPSG','9001',-2.3,3.54,-134.21,'EPSG','1031',-0.228,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MTD-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7705','GSK-2011 to PZ-90.11 (1)','','Geodesy.','EPSG','1066','Time-specific Coordinate Frame rotation (geocen)','EPSG','7681','EPSG','7679','EPSG','1198',0.03,0.0,0.014,-0.008,'EPSG','9001',-0.562,-0.019,0.053,'EPSG','1031',-0.0006,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2011.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'MTD-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7720','CGRS93 to ETRS89 (1)','Derived at 6 points at epoch 1993.1. May be taken as approximate transformation CGRS93 to WGS 84 - see code 7721.','Small scale hydrographic and aviation mapping.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','6311','EPSG','4258','EPSG','3236',0.1,8.846,-4.394,-1.122,'EPSG','9001',0.00237,0.146528,-0.130428,'EPSG','9104',0.783926,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DLS-Cyp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7721','CGRS93 to WGS 84 (1)','Parameter values from CGRS93 to ETRS89 (1) (code 7720). Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','Small scale hydrographic and aviation mapping.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','6311','EPSG','4326','EPSG','3236',1.0,8.846,-4.394,-1.122,'EPSG','9001',0.00237,0.146528,-0.130428,'EPSG','9104',0.783926,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Cyp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7790','ITRF2008 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Estimated using 127 stations at 125 sites.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','5332','EPSG','7789','EPSG','1262',0.01,-1.6,-1.9,-2.4,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.02,'EPSG','1028',0.0,0.0,0.1,'EPSG','1027',0.0,0.0,0.0,'EPSG','1032',-0.03,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7806','Pulkovo 1942(83) to BGS2005 (1)','Older CRSs (CS30, CS50, CS70) must first be transformed to Pulkovo 1942(83) before this transformation is applied.','Official transformation for converting existing geodetic and cartographic materials to BGS2005.','EPSG','1063','Molodensky-Badekas (PV geog2D domain)','EPSG','4178','EPSG','7798','EPSG','3224',5.0,5.0,-133.0,-104.0,'EPSG','9001',-1.4,-2.0,3.4,'EPSG','9104',-3.9901,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4223032.0,2032778.0,4309209.0,'EPSG','9001','RD-Bul',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7807','ITRF2008 to NAD83(2011) (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Joint derivation by Canada and US (tfm 6864) concatenated with IGS value for ITRF96>97 and IERS ITRF97>2008 transformations. See tfm 8264 for Canadian equivalent.','Geodesy.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','5332','EPSG','6317','EPSG','1511',0.0,0.99343,-1.90331,-0.52655,'EPSG','9001',25.91467,9.42645,11.59935,'EPSG','1031',1.71504,'EPSG','1028',0.00079,-0.0006,-0.00134,'EPSG','1042',0.06667,-0.75744,-0.05133,'EPSG','1032',-0.10201,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NGS-NA',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7808','ITRF2008 to NAD83(PA11) (1)','Information source gives IGS08 as source CRS: for most practical purposes IGS08 is equivalent to ITRF2008.','Geodesy.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','5332','EPSG','6320','EPSG','4162',0.0,0.908,-2.0161,-0.5653,'EPSG','9001',27.741,13.469,2.712,'EPSG','1031',1.1,'EPSG','1028',0.0001,0.0001,-0.0018,'EPSG','1042',-0.384,1.007,-2.186,'EPSG','1032',0.08,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NGS-PA',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7809','ITRF2008 to NAD83(MA11) (1)','Information source gives IGS08 as source CRS: for most practical purposes IGS08 is equivalent to ITRF2008.','Geodesy.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','5332','EPSG','6323','EPSG','4167',0.0,0.908,-2.0161,-0.5653,'EPSG','9001',28.971,10.42,8.928,'EPSG','1031',1.1,'EPSG','1028',0.0001,0.0001,-0.0018,'EPSG','1042',-0.02,0.105,-0.347,'EPSG','1032',0.08,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NGS-MA',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7814','ITRF89 to ITRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4911','EPSG','4919','EPSG','1262',0.01,-2.97,-4.75,7.39,'EPSG','1033',0.0,0.0,0.18,'EPSG','1031',-5.85,'EPSG','1028',0.0,0.06,0.14,'EPSG','1034',0.0,0.0,-0.02,'EPSG','1032',-0.01,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7817','UCS-2000 to ITRF2000 (1)','Derived for epoch 2005.0 at which time it defines UCS-2000 and is therefore exact (accuracy = 0) at this epoch. May be taken as approximate transformation UCS-2000 to WGS 84 - see code 5840.','For applications to an accuracy of 1 metre.','EPSG','1031','Geocentric translations (geocentric domain)','EPSG','5558','EPSG','4919','EPSG','1242',0.0,24.322,-121.372,-75.847,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SSGC-Ukr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7833','Albanian 1987 to ETRS89 (1)','Derived using 90 stations by Military Geographical Institute of Italy (IGM) on behalf of ASIG. mse = 18cm. May be taken as approximate transformation from Albanian 1987 to WGS 84 (see code 7834).','Use only for horizontal coordinates; geoid heights must be calculated with ALBGEO3 software.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4191','EPSG','4258','EPSG','3212',0.2,-44.183,-0.58,-38.489,'EPSG','9001',-2.3867,-2.7072,3.5196,'EPSG','9104',-8.2703,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Alb 2D',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7834','Albanian 1987 to WGS 84 (1)','Parameter values from Albanian 1987 to ETRS89 (1) (code 7833). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','Use only for horizontal coordinates; geoid heights must be calculated with ALBGEO3 software.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4191','EPSG','4326','EPSG','3212',1.0,-44.183,-0.58,-38.489,'EPSG','9001',-2.3867,-2.7072,3.5196,'EPSG','9104',-8.2703,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Alb 2D',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7835','Pulkovo 1942(58) to WGS 84 (22)','Derived by Deminex for nearshore Rodoni block in 1991-1992. Used by Shell for onshore seismic in 1995.','Oil industry exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4179','EPSG','4326','EPSG','4446',2.0,74.5,-112.5,-44.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Dmnx-Alb',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7836','Pulkovo 1942(58) to Albanian 1987 (1)','Albanian 1987 may be considered to be approximately equivalent to Pulkovo 1942(58) at the +/- 1m level.','Approximation to +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4179','EPSG','4191','EPSG','1025',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Alb',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7892','SHGD2015 to WGS 84 (1)','SHGD2015 is realized by ITRF2008 at epoch 2015.0 and can be considered coincident with WGS 84 at epoch 2015.0 Accuracy 3 cm at 1/1/2015 then degrades by 3 cm/yr from 1/1/2015 depending upon epoch of WGS 84 due to motion of the Nubian Plate','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','7886','EPSG','4326','EPSG','3183',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENRD-Shn Hel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7893','Astro DOS 71 to SHGD2015 (1)','Derived at 19 stations, RMS = 12cm. May be used as an approximate transformation to WGS 84 - see code 7894.','Medium Accuracy transformation to St Helena Geodetic Datum 2015.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4710','EPSG','7886','EPSG','3183',0.15,-323.65,551.39,-491.22,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENRD-Shn Hel 0.15m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7894','Astro DOS 71 to WGS 84 (2)','Parameter values from Astro DOS 71 to SHGD2015 (1) (tfm code 7893). Assumes SHGD2015 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications requiring an accuracy of better than 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4710','EPSG','4326','EPSG','3183',1.0,-323.65,551.39,-491.22,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENRD-Shn Hel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7895','Astro DOS 71 to SHGD2015 (2)','Derived at 19 stations, RMS = 6cm. Note: Because of the large rotations about the Y- and Z-axes this transformation is not reversible. For the reverse transformation use SHGD2015 to Astro DOS 71 (2) (code 9226).','High Accuracy transformation to St Helena Geodetic Datum 2015. Not reversible - see remarks.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4710','EPSG','7886','EPSG','3183',0.1,-112.854,12.27,-18.913,'EPSG','9001',2.1692,16.8896,17.1961,'EPSG','9104',-19.54517,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENRD-Shn Hel 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7896','SHGD2015 to Astro DOS 71 (2)','Derived at 19 stations, RMS = 6cm. Note: Because of the large rotations about the Y- and Z-axes this transformation is not reversible. For the reverse transformation use Astro DOS 71 to SHGD2015 (2) (code 7895).','High Accuracy transformation from St Helena Geodetic Datum 2015. Not reversible - see remarks.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4710','EPSG','4710','EPSG','3183',0.1,112.771,-12.282,18.935,'EPSG','9001',-2.1692,-16.8896,-17.1961,'EPSG','9104',19.54517,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENRD-Shn Hel 0.1m Rev',1); INSERT INTO "helmert_transformation" VALUES('EPSG','7897','St. Helena Tritan to SHGD2015 (1)','Derived at 19 stations, RMS = 5cm. May be used as an approximate transformation to WGS 84 - see code 7898.','High Accuracy transformation to St Helena Geodetic Datum 2015.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','7881','EPSG','7886','EPSG','3183',0.05,-0.077,0.079,0.086,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENRD-Shn Hel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7898','St. Helena Tritan to WGS 84 (1)','Parameter values from Tritan St. Helena to SHGD2015 (1) (tfm code 7897). Assumes Tritan St. Helena and SHGD2015 can be considered the same to within the accuracy of the transformation.','For applications requiring an accuracy of better than 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','7881','EPSG','4326','EPSG','3183',1.0,-0.077,0.079,0.086,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENRD-Shn Hel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7932','ITRF89 to ETRF89 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Definition of ETRF89.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4911','EPSG','7914','EPSG','1298',0.0,0.0,0.0,0.0,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1034',0.11,0.57,-0.71,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7933','ITRF90 to ETRF90 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Definition of ETRF90.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4912','EPSG','7916','EPSG','1298',0.0,1.9,2.8,-2.3,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1034',0.11,0.57,-0.71,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7934','ITRF91 to ETRF91 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Definition of ETRF91.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4913','EPSG','7918','EPSG','1298',0.0,2.1,2.5,-3.7,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1034',0.21,0.52,-0.68,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7935','ITRF92 to ETRF92 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Definition of ETRF92.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4914','EPSG','7920','EPSG','1298',0.0,3.8,4.0,-3.7,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1034',0.21,0.52,-0.68,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7936','ITRF93 to ETRF93 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Definition of ETRF93.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4915','EPSG','7922','EPSG','1298',0.0,1.9,5.3,-2.1,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1034',0.32,0.78,-0.67,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7937','ITRF94 to ETRF94 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Definition of ETRF94.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4916','EPSG','7924','EPSG','1298',0.0,4.1,4.1,-4.9,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1034',0.2,0.5,-0.65,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7938','ITRF96 to ETRF96 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Definition of ETRF96.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4917','EPSG','7926','EPSG','1298',0.0,4.1,4.1,-4.9,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1034',0.2,0.5,-0.65,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7939','ITRF97 to ETRF97 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Definition of ETRF97.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4918','EPSG','7928','EPSG','1298',0.0,4.1,4.1,-4.9,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1034',0.2,0.5,-0.65,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7940','ITRF2000 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. See ITRF2000 to ETRF2000 (2) (code 7941) for an exactly equivalent transformation but with the transformation''s parameter values at epoch 2000.00.','Definition of ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4919','EPSG','7930','EPSG','1298',0.0,5.4,5.1,-4.8,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1034',0.081,0.49,-0.792,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7941','ITRF2000 to ETRF2000 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. See ITRF2000 to ETRF2000 (1) (code 7940) for transformation which defines ETRF2000. 7941 is equivalent but with the transformation''s parameters at epoch 2000.00.','Realization of ETRS89 from ITRF2000 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4919','EPSG','7930','EPSG','1298',0.0,54.0,51.0,-48.0,'EPSG','1025',0.891,5.39,-8.712,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1027',0.081,0.49,-0.792,'EPSG','1032',0.0,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7942','ITRF89 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF89 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4911','EPSG','7930','EPSG','1298',0.0,24.3,10.7,42.7,'EPSG','1025',0.891,5.39,-8.772,'EPSG','1031',-5.97,'EPSG','1028',0.0,0.6,1.4,'EPSG','1027',0.081,0.49,-0.812,'EPSG','1032',-0.01,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7943','ITRF90 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF90 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4912','EPSG','7930','EPSG','1298',0.0,29.3,34.7,4.7,'EPSG','1025',0.891,5.39,-8.772,'EPSG','1031',-2.57,'EPSG','1028',0.0,0.6,1.4,'EPSG','1027',0.081,0.49,-0.812,'EPSG','1032',-0.01,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7944','ITRF91 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF91 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4913','EPSG','7930','EPSG','1298',0.0,27.3,30.7,-11.3,'EPSG','1025',0.891,5.39,-8.772,'EPSG','1031',-2.27,'EPSG','1028',0.0,0.6,1.4,'EPSG','1027',0.081,0.49,-0.812,'EPSG','1032',-0.01,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7945','ITRF92 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF92 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4914','EPSG','7930','EPSG','1298',0.0,39.3,44.7,-17.3,'EPSG','1025',0.891,5.39,-8.772,'EPSG','1031',-0.87,'EPSG','1028',0.0,0.6,1.4,'EPSG','1027',0.081,0.49,-0.812,'EPSG','1032',-0.01,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7946','ITRF93 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF93 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4915','EPSG','7930','EPSG','1298',0.0,76.1,46.9,-19.9,'EPSG','1025',2.601,6.87,-8.412,'EPSG','1031',-2.07,'EPSG','1028',2.9,0.2,0.6,'EPSG','1027',0.191,0.68,-0.862,'EPSG','1032',-0.01,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7947','ITRF94 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF94 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4916','EPSG','7930','EPSG','1298',0.0,47.3,46.7,-25.3,'EPSG','1025',0.891,5.39,-8.772,'EPSG','1031',-1.58,'EPSG','1028',0.0,0.6,1.4,'EPSG','1027',0.081,0.49,-0.812,'EPSG','1032',-0.01,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7948','ITRF96 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF96 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4917','EPSG','7930','EPSG','1298',0.0,47.3,46.7,-25.3,'EPSG','1025',0.891,5.39,-8.772,'EPSG','1031',-1.58,'EPSG','1028',0.0,0.6,1.4,'EPSG','1027',0.081,0.49,-0.812,'EPSG','1032',-0.01,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7949','ITRF97 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF97 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4918','EPSG','7930','EPSG','1298',0.0,47.3,46.7,-25.3,'EPSG','1025',0.891,5.39,-8.772,'EPSG','1031',-1.58,'EPSG','1028',0.0,0.6,1.4,'EPSG','1027',0.081,0.49,-0.812,'EPSG','1032',-0.01,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7950','ITRF2005 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF2005 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4896','EPSG','7930','EPSG','1298',0.0,54.1,50.2,-53.8,'EPSG','1025',0.891,5.39,-8.712,'EPSG','1031',0.4,'EPSG','1028',-0.2,0.1,-1.8,'EPSG','1027',0.081,0.49,-0.792,'EPSG','1032',0.08,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7951','ITRF2008 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF2008 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','5332','EPSG','7930','EPSG','1298',0.0,52.1,49.3,-58.5,'EPSG','1025',0.891,5.39,-8.712,'EPSG','1031',1.34,'EPSG','1028',0.1,0.1,-1.8,'EPSG','1027',0.081,0.49,-0.792,'EPSG','1032',0.08,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7960','PZ-90.11 to ITRF2008 (1)','','Geodesy.','EPSG','1066','Time-specific Coordinate Frame rotation (geocen)','EPSG','7679','EPSG','5332','EPSG','1262',0.004,-0.003,-0.001,0.0,'EPSG','9001',0.019,-0.042,0.002,'EPSG','1031',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'MTD-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','7961','WGS 84 (G1150) to PZ-90.02 (1)','','Geodesy.','EPSG','1066','Time-specific Coordinate Frame rotation (geocen)','EPSG','7660','EPSG','7677','EPSG','1262',0.17,0.36,-0.08,-0.18,'EPSG','9001',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2002.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'MTD-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8048','GDA94 to GDA2020 (1)','Scale difference in ppb where 1/billion = 1E-9. See CT codes 8444-46 for NTv2 method giving equivalent results for Christmas Island, Cocos Islands and Australia respectively. See CT code 8447 for alternative including distortion model for Australia only.','Conformal transformation of GDA94 coordinates that have been derived through GNSS CORS.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4283','EPSG','7844','EPSG','4177',0.01,61.55,-10.87,-40.19,'EPSG','1025',-39.4924,-32.7221,-32.8979,'EPSG','1031',-9.994,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ICSM-Aus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8049','ITRF2014 to GDA2020 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived at 109 stations of the Australian Reginal GNSS network (ARGN).','Geodesy. RMS residuals 26mm north, 12mm east and 179mm vertical, maximum residuals 49mm north, 24mm east and 464mm vertical.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','7789','EPSG','7842','EPSG','4177',0.001,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1027',1.50379,1.18346,1.20716,'EPSG','1032',0.0,'EPSG','1030',2020.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8069','ITRF88 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4910','EPSG','7789','EPSG','1262',0.01,-25.4,0.5,154.8,'EPSG','1025',-0.1,0.0,-0.26,'EPSG','1031',-11.29,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8070','ITRF89 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4911','EPSG','7789','EPSG','1262',0.01,-30.4,-35.5,130.8,'EPSG','1025',0.0,0.0,-0.26,'EPSG','1031',-8.19,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8071','ITRF90 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4912','EPSG','7789','EPSG','1262',0.01,-25.4,-11.5,92.8,'EPSG','1025',0.0,0.0,-0.26,'EPSG','1031',-4.79,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8072','ITRF91 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4913','EPSG','7789','EPSG','1262',0.01,-27.4,-15.5,76.8,'EPSG','1025',0.0,0.0,-0.26,'EPSG','1031',-4.49,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8073','ITRF92 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4914','EPSG','7789','EPSG','1262',0.01,-15.4,-1.5,70.8,'EPSG','1025',0.0,0.0,-0.26,'EPSG','1031',-3.09,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8074','ITRF93 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4915','EPSG','7789','EPSG','1262',0.01,50.4,-3.3,60.2,'EPSG','1025',2.81,3.38,-0.4,'EPSG','1031',-4.29,'EPSG','1028',2.8,0.1,2.5,'EPSG','1027',0.11,0.19,-0.07,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8075','ITRF94 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4916','EPSG','7789','EPSG','1262',0.01,-7.4,0.5,62.8,'EPSG','1025',0.0,0.0,-0.26,'EPSG','1031',-3.8,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8076','ITRF96 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4917','EPSG','7789','EPSG','1262',0.01,-7.4,0.5,62.8,'EPSG','1025',0.0,0.0,-0.26,'EPSG','1031',-3.8,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8077','ITRF97 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4918','EPSG','7789','EPSG','1262',0.01,-7.4,0.5,62.8,'EPSG','1025',0.0,0.0,-0.26,'EPSG','1031',-3.8,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.0,0.0,-0.02,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8078','ITRF2000 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4919','EPSG','7789','EPSG','1262',0.01,-0.7,-1.2,26.1,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',-2.12,'EPSG','1028',-0.1,-0.1,1.9,'EPSG','1027',0.0,0.0,0.0,'EPSG','1032',-0.11,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8079','ITRF2005 to ITRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Derived by IERS from previously published information.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4896','EPSG','7789','EPSG','1262',0.01,-2.6,-1.0,2.3,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',-0.92,'EPSG','1028',-0.3,0.0,0.1,'EPSG','1027',0.0,0.0,0.0,'EPSG','1032',-0.03,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8256','ITRF92 to NAD83(CSRS96) (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Superseded by tfm from ITRF93 (see code 8257).','Geodesy. Initial definition of NAD83(CSRS96) and is therefore treated as errorless.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4914','EPSG','8230','EPSG','1061',0.0,0.936,-1.984,-0.543,'EPSG','9001',-27.5,-15.5,-10.7,'EPSG','1031',5.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1042',-0.052,0.742,0.032,'EPSG','1032',0.0,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NRC-Can CSRS96 92',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8257','ITRF93 to NAD83(CSRS96) (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Superseded by tfm from ITRF94 (see code 8258).','Geodesy. Updates definition of NAD83(CSRS96) and is therefore treated as errorless.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4915','EPSG','8230','EPSG','1061',0.0,0.94,-1.979,-0.534,'EPSG','9001',-27.09,-16.22,-9.87,'EPSG','1031',4.1,'EPSG','1028',0.0023,0.0004,-0.0008,'EPSG','1042',0.078,0.962,-0.008,'EPSG','1032',0.11,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NRC-Can CSRS96 93',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8258','ITRF94 to NAD83(CSRS96) (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy. Further updates definition of NAD83(CSRS96) and is therefore treated as errorless.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4916','EPSG','8230','EPSG','1061',0.0,0.942,-1.979,-0.534,'EPSG','9001',-27.3,-15.4,-10.7,'EPSG','1031',4.9,'EPSG','1028',-0.0004,0.0004,-0.0008,'EPSG','1042',-0.052,0.762,0.032,'EPSG','1032',0.0,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NRC-Can CSRS96 94',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8259','ITRF96 to NAD83(CSRS)v2 (1)','Jointly derived by Canada and US at 12 North American VLBI stations. Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. See tfm code 6864 for US equivalent.','Geodesy. Defines NAD83(CSRS98) = NAD83(CSRS)v2 and is therefore treated as errorless.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4917','EPSG','8233','EPSG','1061',0.0,0.991,-1.9072,-0.5129,'EPSG','9001',-25.79,-9.65,-11.66,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1042',-0.0532,0.7423,0.0316,'EPSG','1032',0.0,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NRC-Can CSRSv2',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8260','ITRF97 to NAD83(CSRS)v3 (1)','Concatenation of joint Canada-US transformation NAD83>ITRF96 (see tfm code 8259) and IGS value for ITRF96>ITRF97 transformation. Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. See tfm 6865 for US equivalent.','Geodesy. Defines NAD83(CSRS)v3 and is therefore treated as errorless.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4918','EPSG','8238','EPSG','1061',0.0,0.9889,-1.9074,-0.503,'EPSG','9001',-25.915,-9.426,-11.599,'EPSG','1031',-0.935,'EPSG','1028',0.0007,-0.0001,0.0019,'EPSG','1042',-0.067,0.757,0.031,'EPSG','1032',-0.192,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NRC-Can CSRSv3',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8261','ITRF2000 to NAD83(CSRS)v4 (1)','Concatenation of joint Canada-US NAD83>ITRF96 tfm (code 8259) with IGS value of ITRF96>ITRF97 and IERS tfm ITRF97>ITRF2000. Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. See tfm code 6866 for US equivalent.','Geodesy. Defines NAD83(CSRS)v4 and is therefore treated as errorless.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4919','EPSG','8242','EPSG','1061',0.0,0.9956,-1.9013,-0.5214,'EPSG','9001',-25.915,-9.426,-11.599,'EPSG','1031',0.615,'EPSG','1028',0.0007,-0.0007,0.0005,'EPSG','1042',-0.067,0.757,0.051,'EPSG','1032',-0.182,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NRC-Can CSRSv4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8262','ITRF2005 to NAD83(CSRS)v5 (1)','Concatenation of joint Canada-US NAD83>ITRF96 transformation (code 8259) with IGS value for ITRF96>ITRF97 and IERS transformations ITRF97>ITRF2005. Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy. Defines NAD83(CSRS)v5 and is therefore treated as errorless.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4896','EPSG','8248','EPSG','1061',0.0,0.9963,-1.9024,-0.5219,'EPSG','9001',-25.915,-9.426,-11.599,'EPSG','1031',0.775,'EPSG','1028',0.0005,-0.0006,-0.0013,'EPSG','1042',-0.067,0.757,0.051,'EPSG','1032',-0.102,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NRC-Can CSRSv5',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8264','ITRF2008 to NAD83(CSRS)v6 (1)','Concatenation of joint Canada-US transformation NAD83>ITRF96 (code 8259) with IGS tfm ITRF96>97 and IERS tfms ITRF97>2008. Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. See tfm code 7807 for US equivalent.','Geodesy. Defines NAD83(CSRS)v6 and is therefore treated as errorless.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','5332','EPSG','8250','EPSG','1061',0.0,0.99343,-1.90331,-0.52655,'EPSG','9001',-25.91467,-9.42645,-11.59935,'EPSG','1031',1.71504,'EPSG','1028',0.00079,-0.0006,-0.00134,'EPSG','1042',-0.06667,0.75744,0.05133,'EPSG','1032',-0.102,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NRC-Can CSRSv6',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8265','ITRF2014 to NAD83(CSRS)v7 (1)','Concatenation of joint Canada-US tfm NAD83>ITRF96 (see tfm code 8259) with IGS value for ITRF96>ITRF97 and IERS values for ITRF97>ITRF2014 transformations. Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy. Defines NAD83(CSRS)v7 and is therefore treated as errorless.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','7789','EPSG','8253','EPSG','1061',0.0,1.0053,-1.9092,-0.5416,'EPSG','9001',-26.7814,0.4203,-10.9321,'EPSG','1031',0.37,'EPSG','1028',0.0008,-0.0006,-0.0014,'EPSG','1042',-0.0667,0.7574,0.0513,'EPSG','1032',-0.07,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NRC-Can CSRSv7',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8270','Saint Pierre et Miquelon 1950 to WGS 84 (2)','Replaces Saint Pierre et Miquelon 1950 to WGS 84 (1) (code 1923) from March 2006.','Accuracy +/- 0.5 to 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4638','EPSG','4326','EPSG','3299',1.0,11.363,424.148,373.13,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Spm 2017',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8365','ETRS89 to S-JTSK [JTSK03] (1)','Derived at 684 points with known S-JTSK and ETRS89 (ETRF2000 realization) coordinates. Scale parameter was constrained to be zero. UGKK consider this transformation to not be reversible at the 1mm accuracy level: for reverse see transformation code 8367.','Defines the S-JTSK [JTSK03] realization.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4258','EPSG','8351','EPSG','1211',0.001,-485.014055,-169.473618,-483.842943,'EPSG','9001',7.78625453,4.39770887,4.10248899,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UGKK-Svk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8366','ITRF2014 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. See ITRF2014 to ETRF2014 (2) (code 8407) for an exactly equivalent transformation but with the transformation''s parameter values at epoch 2010.00.','Definition of ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','7789','EPSG','8401','EPSG','1298',0.0,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1027',0.085,0.531,-0.77,'EPSG','1032',0.0,'EPSG','1030',1989.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8367','S-JTSK [JTSK03] to ETRS89 (1)','Derived at 684 points. At the 1mm accuracy level this transformation is not reversible: for reverse see transformation code 8365. May be taken as approximate transformation to WGS 84 - see code 8368.','Geodesy to 1mm accuracy if ETRS89 coordinates are in ETRF2000 reference frame. (Accuracy is reduced if the coordinates are in other ETRF reference frames).','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8351','EPSG','4258','EPSG','1211',0.001,485.021,169.465,483.839,'EPSG','9001',-7.786342,-4.397554,-4.102655,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UGKK-Svk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8368','S-JTSK [JTSK03] to WGS 84 (1)','Parameter values taken from S-JTSK [JTSK03] to ETRS89 (1) (code 8367) assuming that ETRS89 (ETRF2000 realization) is coincident with WGS 84 within the accuracy of the transformation. Within the 1m accuracy of this transformation, it is reversible.','Approximation at the +/- 1m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8351','EPSG','4326','EPSG','1211',1.0,485.021,169.465,483.839,'EPSG','9001',-7.786342,-4.397554,-4.102655,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UGKK-Svk',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8393','Camacupa to WGS 84 (11)','Derived by Univ. of Lisbon for IGCA using 38 REPANGOL points in Angola (except SE) and Cabinda. Application differs from Camacupa to WGS 84 (1) to (10) by approx 25 m. Average horizontal error 1m, vertical 3m; max radial error 6m. For onshore use only.','Onshore use only.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4220','EPSG','4326','EPSG','4469',3.0,-93.799,-132.737,-219.073,'EPSG','9001',1.844,-0.648,6.37,'EPSG','9104',-0.169,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGCA-Ago',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8405','ITRF2014 to ETRF2000 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF2014 through ETRF2000.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','7789','EPSG','7930','EPSG','1298',0.0,54.7,52.2,-74.1,'EPSG','1025',1.701,10.29,-16.632,'EPSG','1031',2.12,'EPSG','1028',0.1,0.1,-1.9,'EPSG','1027',0.081,0.49,-0.792,'EPSG','1032',0.11,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8407','ITRF2014 to ETRF2014 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9. See ITRF2014 to ETRF2014 (1) (code 8366) for transformation which defines ETRF2014. Transformation 8407 is equivalent to 8366 but with parameter values at epoch 2010.00.','Realization of ETRS89 from ITRF2014 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','7789','EPSG','7930','EPSG','1298',0.0,0.0,0.0,0.0,'EPSG','1025',1.785,11.151,-16.17,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1027',0.085,0.531,-0.77,'EPSG','1032',0.0,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8409','ITRF2008 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF2008 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','5332','EPSG','7789','EPSG','1298',0.0,-1.6,-1.9,-2.4,'EPSG','1025',1.785,11.151,-16.17,'EPSG','1031',0.02,'EPSG','1028',0.0,0.0,0.1,'EPSG','1027',0.085,0.531,-0.77,'EPSG','1032',-0.03,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8410','ITRF2005 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF2005 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4896','EPSG','7789','EPSG','1298',0.0,-2.6,-1.0,-2.3,'EPSG','1025',1.785,11.151,-16.17,'EPSG','1031',-0.92,'EPSG','1028',-0.3,0.0,0.1,'EPSG','1027',0.085,0.531,-0.77,'EPSG','1032',-0.03,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8411','ITRF2000 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF2000 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4919','EPSG','7789','EPSG','1298',0.0,-0.7,-1.2,26.1,'EPSG','1025',1.785,11.151,-16.17,'EPSG','1031',-2.12,'EPSG','1028',-0.1,-0.1,1.9,'EPSG','1027',0.085,0.531,-0.77,'EPSG','1032',-0.11,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8412','ITRF97 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF97 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4918','EPSG','7789','EPSG','1298',0.0,-7.4,0.5,62.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-3.8,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8413','ITRF96 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF96 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4917','EPSG','7789','EPSG','1298',0.0,-7.4,0.5,62.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-3.8,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8414','ITRF94 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF94 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4916','EPSG','7789','EPSG','1298',0.0,-7.4,0.5,62.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-3.8,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8415','ITRF93 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF93 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4915','EPSG','7789','EPSG','1298',0.0,50.4,-3.3,60.2,'EPSG','1025',4.595,14.531,-16.57,'EPSG','1031',-4.29,'EPSG','1028',2.8,0.1,2.5,'EPSG','1027',0.195,0.721,-0.84,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8416','ITRF92 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF92 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4914','EPSG','7789','EPSG','1298',0.0,-15.4,-1.5,70.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-3.09,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8417','ITRF91 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF91 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4913','EPSG','7789','EPSG','1298',0.0,-27.4,-15.5,76.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-4.49,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8423','ITRF90 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF90 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4912','EPSG','7789','EPSG','1298',0.0,-25.4,-11.5,92.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-4.79,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8424','ITRF89 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF89 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4911','EPSG','7789','EPSG','1298',0.0,-30.4,-35.5,130.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-8.19,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8435','Macao 2008 to Macao 1920 (1)','Derived at 3 stations in 2008. Accuracy not stated.','Transformation of GNSS coordinates to Macao Grid.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','8431','EPSG','8428','EPSG','1147',999.0,202.865,303.99,155.873,'EPSG','9001',34.067,-76.126,-32.647,'EPSG','9104',-6.096,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,-2361757.652,5417232.187,2391453.053,'EPSG','9001','DSCC-Mac',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8436','Macao 2008 to WGS 84 (1)','Approximation at the +/- 1m level assuming that Macao 2008 is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','8431','EPSG','4326','EPSG','1147',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bmu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8437','Hong Kong 1980 to Hong Kong Geodetic CS (1)','Also published as a transformation to WGS 84 using the position vector method - see Hong Kong 1980 to WGS 84 (1) (code 1825).','1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4611','EPSG','8427','EPSG','1118',1.0,-162.619,-276.961,-161.763,'EPSG','9001',0.067741,-2.243649,-1.158827,'EPSG','9104',-1.094239,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LSD-HKG 2002',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8438','Macao 1920 to WGS 84 (1)','Derived from Macao 2008 to Macao 1920 (1) (code 8435) (reversed) assuming that Macao 2008 is equivalent to WGS 84 within the accuracy of the transformation. Some parameter values differ in the reverse due to the high rotations.','Transformation of GNSS coordinates to Macao Grid.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','8428','EPSG','4326','EPSG','1147',1.0,-202.865,-303.99,-155.873,'EPSG','9001',-34.079,76.126,32.66,'EPSG','9104',6.096,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,-2361554.788,5417536.177,2391608.926,'EPSG','9001','EPSG-Mac',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8439','Hong Kong Geodetic CS to WGS 84 (1)','Approximation at the +/- 1m level assuming that Hong Kong Geodetic CS is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','8427','EPSG','4326','EPSG','1118',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Hkg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8448','GDA2020 to WGS 84 (G1762) (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Parameter values taken from ITRF2014 to GDA2020 (1) (code 8049), assuming WGS 84 (G1762) is equivalent to ITRF2014 within the accuracy of the transformation.','Spatial referencing.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','7842','EPSG','7664','EPSG','4177',0.2,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1027',-1.50379,-1.18346,-1.20716,'EPSG','1032',0.0,'EPSG','1030',2020.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GA-Aus 0.2m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8450','GDA2020 to WGS 84 (2)','Approximation at the 3m level assuming WGS 84 is equivalent to ITRF2014 within the accuracy of the transformation. See GDA2020 to WGS 84 (G1762) (1) (code 8448) for a better approximation and ITRF2014 to GDA2020 (1) (code 8049) for actual relationship.','Spatial referencing with 3-metre accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','7844','EPSG','4326','EPSG','4177',3.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus 3m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8452','Batavia to WGS 84 (1)','Derived at 5 stations. Note: U.S. DMA TR8350.2 September 1987 gives source CRS as Batavia and area as Sumatra. The Batavia (Genuk) CRS applies to Java and western Sumatra. EPSG presumes this CT applies to both. Sometimes found applied to all Sumatra.','For military purposes. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4211','EPSG','4326','EPSG','1285',6.0,-377.0,681.0,-50.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Idn Sumatra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8674','La Canoa to PSAD56 (1)','In Venezuela PSAD56 is coincident with La Canoa.','Spatial referencing.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4247','EPSG','4248','EPSG','3327',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LAG-Ven E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8680','MGI 1901 to ETRS89 (7)','Derived at 1385 points across the area of Bosnia and Herzegovina. May be taken as approximate transformation MGI 1901 to WGS 84 (see code 8823).','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','3906','EPSG','4258','EPSG','1050',1.0,489.88,183.912,533.711,'EPSG','9001',5.76545,4.69994,-12.58211,'EPSG','9104',1.00646,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'FGA-Bih',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8681','MGI 1901 to WGS 84 (12)','Parameter values from MGI 1901 to ETRS89 (7) (code 8680). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','3906','EPSG','4258','EPSG','1050',1.0,489.88,183.912,533.711,'EPSG','9001',5.76545,4.69994,-12.58211,'EPSG','9104',1.00646,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'FGA-Bih',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8688','MGI 1901 to WGS 84 (12)','Parameter values from MGI to Slovenia 1996 (12) (tfm code 8689) assuming Slovenia 1996 and WGS 84 can be considered the same to within the accuracy of the transformation.','1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4326','EPSG','3307',1.0,476.08,125.947,417.81,'EPSG','9001',-4.610862,-2.388137,11.942335,'EPSG','9104',9.896638,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn 2010',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8689','MGI 1901 to Slovenia 1996 (12)','Derived at 479 nodes of Delauney triangulation generated from 1958 control points. Replaces MGI 1901 to Slovenia 1996 (1) (code 3916). May be taken as approximate transformation MGI 1901 to WGS 84 (see code 8688).','1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','3906','EPSG','4765','EPSG','3307',1.0,476.08,125.947,417.81,'EPSG','9001',-4.610862,-2.388137,11.942335,'EPSG','9104',9.896638,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn 2010',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8695','Camacupa 1948 to Camacupa 2015 (1)','Concatenation of transformations 1327 and 8882.','Geodesy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4220','EPSG','8694','EPSG','2324',5.8,42.899,-214.863,-11.927,'EPSG','9001',-1.844,0.648,-6.37,'EPSG','9104',0.169,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Ago',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8696','Camacupa 1948 to Camacupa 2015 (2)','Concatenation of transformations 1324 and 8882.','Geodesy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4220','EPSG','8694','EPSG','2322',4.2,45.799,-212.263,-11.927,'EPSG','9001',-1.844,0.648,-6.37,'EPSG','9104',0.169,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Ago B15',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8819','RSAO13 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RSAO13 is equivalent to WGS 84within the accuracy of the transformation.','Approximation at the 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','8699','EPSG','4326','EPSG','1029',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Ago',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8822','MTRF-2000 to WGS 84 (1)','Approximation at the +/- 1m level assuming that MTRF-2000 (ITRF2000 at epoch 2004.00) is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','8818','EPSG','4326','EPSG','1206',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Sau',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8823','MGI 1901 to WGS 84 (13)','Parameter values from MGI 1901 to ETRS89 (7) (code 8680). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','3906','EPSG','4326','EPSG','1050',1.0,489.88,183.912,533.711,'EPSG','9001',5.76545,4.69994,-12.58211,'EPSG','9104',1.00646,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'FGA-Bih',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8824','Ain el Abd to MTRF-2000 (1)','Accuracy given as ''several metres''. More precise national cellular transformation parameters were also determined. Software coded for these cellular transformations is available in MOMRA.','National transformation parameters.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4204','EPSG','8818','EPSG','3303',5.0,-61.15,-315.86,-3.51,'EPSG','9001',0.41,0.74,-3.52,'EPSG','9104',1.36,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MOMRA-Sau',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8827','Camacupa 2015 to RSAO13 (1)','Derived by Univ. of Lisbon for CIDDEMA using 38 REPANGOL points in Angola (except SE) and Cabinda. Average horizontal error 1m, vertical 3m; max radial error 6m.','Demarcation of Angola EEZ.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8694','EPSG','8699','EPSG','1029',3.0,-93.799,-132.737,-219.073,'EPSG','9001',1.844,-0.648,6.37,'EPSG','9104',-0.169,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CIDDEMA-Ago',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8828','RGPF to WGS 84 (1)','SHOM report gives scale difference as 0.999 999 9907 (wrt unity). Transformation is to original Transit definition of WGS 84. It is consistent with later WGS 84 realisations G730, G873 and G1150 to no better than 1m.','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4687','EPSG','4326','EPSG','1098',0.5,0.072,-0.507,-0.245,'EPSG','9001',0.0183,-0.0003,0.007,'EPSG','9104',-0.0093,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8829','Tahiti 79 to RGPF (1)','','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4690','EPSG','4687','EPSG','3124',0.5,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.877,'EPSG','9104',11.4741,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8830','Tahiti 79 to WGS 84 (2)','Concatenation of Tahiti 79 to RGPF (1) and RGPF to WGS 84 (1) (CT codes 8829 and 8828).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4690','EPSG','4326','EPSG','3124',1.0,221.597,152.441,176.523,'EPSG','9001',2.403,1.3893,0.884,'EPSG','9104',11.4648,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8831','Moorea 87 to RGPF (2)','Recalculated in 2009 using corrected coordinates of deriving stations.','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4691','EPSG','4687','EPSG','3125',0.5,218.697,151.257,176.995,'EPSG','9001',3.5048,2.004,1.281,'EPSG','9104',10.991,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8832','Moorea 87 to WGS 84 (2)','Concatenation of Moorea 87 to RGPF (2) and RGPF to WGS 84 (1) (CT codes 8831 and 8828).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4691','EPSG','4326','EPSG','3125',1.0,218.769,150.75,176.75,'EPSG','9001',3.5231,2.0037,1.288,'EPSG','9104',10.9817,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8833','Tahaa 54 to RGPF (1)','','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4629','EPSG','4687','EPSG','2812',0.5,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8834','Tahaa 54 to WGS 84 (3)','Concatenation of Tahaa 54 to RGPF (1) and RGPF to WGS 84 (1) (CT codes 8833 and 8828).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4629','EPSG','4326','EPSG','2812',1.0,72.51,345.411,79.241,'EPSG','9001',-1.5862,-0.8826,-0.5495,'EPSG','9104',1.3653,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8835','Fatu Iva 72 to RGPF (1)','','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4688','EPSG','4687','EPSG','3133',2.0,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8842','Fatu Iva 72 to WGS 84 (2)','Concatenation of Fatu Iva 72 to RGPF (1) and RGPF to WGS 84 (1) (CT codes 8835 and 8828).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4688','EPSG','4326','EPSG','3133',2.0,347.175,1077.618,2623.677,'EPSG','9001',33.9058,-70.6776,9.4013,'EPSG','9104',186.0647,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8843','IGN63 Hiva Oa to RGPF (1)','','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4689','EPSG','4687','EPSG','3131',0.5,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf HivaOa',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8844','IGN63 Hiva Oa to WGS 84 (3)','Concatenation of IGN63 Hiva Oa to RGPF (1) and RGPF to WGS 84 (1) (CT codes 8843 and 8828).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4689','EPSG','4326','EPSG','3131',2.0,410.793,54.542,80.501,'EPSG','9001',-2.5596,-2.3517,-0.6594,'EPSG','9104',17.3218,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf HivaOa',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8845','IGN63 Hiva Oa to RGPF (2)','','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4689','EPSG','4687','EPSG','3132',2.0,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf Tahuata',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8846','IGN63 Hiva Oa to WGS 84 (4)','Concatenation of TIGN63 Hiva Oa to RGPF (2) and RGPF to WGS 84 (1) (CT codes 8845 and 8828).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4689','EPSG','4326','EPSG','3132',2.0,374.787,-58.914,-1.202,'EPSG','9001',-16.1928,-11.4629,-5.5287,'EPSG','9104',-0.5502,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf Tahuata',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8847','IGN72 Nuku Hiva to RGPF (1)','','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4630','EPSG','4687','EPSG','2810',0.5,165.732,216.72,180.505,'EPSG','9001',-0.6434,-0.4512,-0.0791,'EPSG','9104',7.4204,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf NukuHiva',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8848','IGN72 Nuku Hiva to WGS 84 (5)','Concatenation of IGN72 Nuku Hiva to RGPF (1) and RGPF to WGS 84 (1) (CT codes 8847 and 8828).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4630','EPSG','4326','EPSG','2810',1.0,165.804,216.213,180.26,'EPSG','9001',-0.6251,-0.4515,-0.0721,'EPSG','9104',7.4111,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf NukuHiva',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8849','IGN72 Nuku Hiva to RGPF (2)','','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4630','EPSG','4687','EPSG','3127',2.0,1363.785,1362.687,398.811,'EPSG','9001',-4.5322,-6.7579,-1.0574,'EPSG','9104',268.361,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf UaHuka',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8850','IGN72 Nuku Hiva to WGS 84 (6)','Concatenation of IGN72 Nuku Hiva to RGPF (2) and RGPF to WGS 84 (1) (CT codes 8849 and 8828).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4630','EPSG','4326','EPSG','3127',2.0,1363.857,1362.18,398.566,'EPSG','9001',-4.5139,-6.7582,-1.0504,'EPSG','9104',268.3517,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf UaHuka',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8851','IGN72 Nuku Hiva to RGPF (3)','','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4630','EPSG','4687','EPSG','3128',0.5,259.551,297.612,197.833,'EPSG','9001',1.4866,2.1224,0.4612,'EPSG','9104',27.0249,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf UaPou',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8852','IGN72 Nuku Hiva to WGS 84 (7)','Concatenation of IGN72 Nuku Hiva to RGPF (3) and RGPF to WGS 84 (1) (CT codes 8851 and 8828).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4630','EPSG','4326','EPSG','3128',1.0,259.623,297.105,197.588,'EPSG','9001',1.5049,2.1221,0.4682,'EPSG','9104',27.0156,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf UaPou',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8853','Maupiti 83 to WGS 84 (2)','Concatenation of Maupiti 83 to RGPF (1) and RGPF to WGS 84 (1) (CT codes 15759 and 8828).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4692','EPSG','4326','EPSG','3126',1.0,217.109,86.452,23.711,'EPSG','9001',0.0183,-0.0003,0.007,'EPSG','9104',-0.0093,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'URB-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8869','ITRF2008 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF2008 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','5332','EPSG','8401','EPSG','1298',0.0,-1.6,-1.9,-2.4,'EPSG','1025',1.785,11.151,-16.17,'EPSG','1031',0.02,'EPSG','1028',0.0,0.0,0.1,'EPSG','1027',0.085,0.531,-0.77,'EPSG','1032',-0.03,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8870','ITRF2005 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF2005 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4896','EPSG','8401','EPSG','1298',0.0,-2.6,-1.0,2.3,'EPSG','1025',1.785,11.151,-16.17,'EPSG','1031',-0.92,'EPSG','1028',-0.3,0.0,0.1,'EPSG','1027',0.085,0.531,-0.77,'EPSG','1032',-0.03,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8871','ITRF2000 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF2000 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4919','EPSG','8401','EPSG','1298',0.0,-0.7,-1.2,26.1,'EPSG','1025',1.785,11.151,-16.17,'EPSG','1031',-2.12,'EPSG','1028',-0.1,-0.1,1.9,'EPSG','1027',0.085,0.531,-0.77,'EPSG','1032',-0.11,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8872','ITRF97 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF97 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4918','EPSG','8401','EPSG','1298',0.0,-7.4,0.5,62.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-3.8,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8873','ITRF96 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF96 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4917','EPSG','8401','EPSG','1298',0.0,-7.4,0.5,62.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-3.8,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8874','ITRF94 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF94 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4916','EPSG','8401','EPSG','1298',0.0,-7.4,0.5,62.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-3.8,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8875','ITRF93 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF93 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4915','EPSG','8401','EPSG','1298',0.0,50.4,-3.3,60.2,'EPSG','1025',4.595,14.531,-16.57,'EPSG','1031',-4.29,'EPSG','1028',2.8,0.1,2.5,'EPSG','1027',0.195,0.721,-0.84,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8876','ITRF92 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF92 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4914','EPSG','8401','EPSG','1298',0.0,-15.4,-1.5,70.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-3.09,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8877','ITRF91 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF91 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4913','EPSG','8401','EPSG','1298',0.0,-27.4,-15.5,76.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-4.49,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8878','ITRF90 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF90 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4912','EPSG','8401','EPSG','1298',0.0,-25.4,-11.5,92.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-4.79,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8879','ITRF89 to ETRF2014 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Realization of ETRS89 from ITRF89 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4911','EPSG','8401','EPSG','1298',0.0,-30.4,-35.5,130.8,'EPSG','1025',1.785,11.151,-16.43,'EPSG','1031',-8.19,'EPSG','1028',-0.1,0.5,3.3,'EPSG','1027',0.085,0.531,-0.79,'EPSG','1032',-0.12,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8880','ITRF2014 to ETRF2014 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9. See ITRF2014 to ETRF2014 (1) (code 8366) for transformation which defines ETRF2014. Transformation 8407 is equivalent to 8366 but with parameter values at epoch 2010.00.','Realization of ETRS89 from ITRF2014 through ETRF2014.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','7789','EPSG','8401','EPSG','1298',0.0,0.0,0.0,0.0,'EPSG','1025',1.785,11.151,-16.17,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1027',0.085,0.531,-0.77,'EPSG','1032',0.0,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'EUREF-Eur 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8882','Camacupa 2015 to WGS 84 (11)','Derived by Univ. of Lisbon for CIDDEMA using 38 REPANGOL points in Angola (except SE) and Cabinda. Average horizontal error 1m, vertical 3m; max radial error 6m. Application offshore differs from Camacupa 1948 to WGS 84 by approx 25m.','Used by CIDDEMA for delimitation of Angola''s EEZ boundary.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8694','EPSG','4326','EPSG','1029',3.0,-93.799,-132.737,-219.073,'EPSG','9001',1.844,-0.648,6.37,'EPSG','9104',-0.169,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CIDDEMA-Ago',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8883','Camacupa 1948 to RSAO13 (1)','Parameter values taken from Camacupa 1948 to WGS 84 (7) (code 1324) assuming that RSAO13 is coincident with WGS 84 within the accuracy of the transformation.','Spatial referencing.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','8699','EPSG','2322',3.0,-48.0,-345.0,-231.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Ago B15',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8884','Camacupa 1948 to RSAO13 (2)','Parameter values taken from Camacupa 1948 to WGS 84 (10) (code 1327) assuming that RSAO13 is coincident with WGS 84 within the accuracy of the transformation.','Spatial referencing.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4220','EPSG','8699','EPSG','2324',5.0,-50.9,-347.6,-231.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Ago N',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8886','SVY21 to WGS 84 (1)','Considered exact at 1994-01-01 when SVY21 aligned to WGS 84 (Transit).','Approximation at the +/- 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4757','EPSG','4326','EPSG','1210',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SLA-sgp',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8887','GDA2020 to WGS 84 (Transit) (1)','Approximation at the 3m level assuming WGS 84 (Transit) is equivalent to ITRF2014 within the accuracy of the transformation.','Spatial referencing with 3-metre accuracy.','EPSG','1031','Geocentric translations (geocentric domain)','EPSG','7842','EPSG','7815','EPSG','4177',3.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus 3m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8889','BGS2005 to ETRS89 (1)','BGS2005 is a national realization of ETRS89. May be taken as approximate transformation BGS2005 to WGS 84 - see code 8890.','Pan-European spatial positioning.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','7798','EPSG','4258','EPSG','1056',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Bgr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8890','BGS2005 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84. BGS2005 is a national realization of ETRS89.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','7798','EPSG','4326','EPSG','1056',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Bgr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8891','LKS92 to ETRS89 (1)','LKS92 is a national realization of ETRS89. May be taken as approximate transformation LKS92 to WGS 84 - see code 1958.','Pan-European spatial positioning.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4661','EPSG','4258','EPSG','1139',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Lva',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8892','LKS94 to ETRS89 (1)','LKS94 is a national realization of ETRS89. May be taken as approximate transformation LKS94 to WGS 84 - see code 1283.','Pan-European spatial positioning.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4669','EPSG','4258','EPSG','1145',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Ltu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8893','SRB_ETRS89 to ETRS89 (1)','SRB_ETRS89 is a national realization of ETRS89. May be taken as approximate transformation SRB_ETRS89 to WGS 84 - see code 8894.','Pan-European spatial positioning.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','8685','EPSG','4258','EPSG','4543',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Sbr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8894','SRB_ETRS89 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84. SRB_ETRS89 is a national realisation of ETRS89.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','8685','EPSG','4326','EPSG','4543',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Srb',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8895','CHTRF95 to ETRS89 (1)','CHTRF95 is a national realization of ETRS89. May be taken as approximate transformation CHTRF95 to WGS 84 - see code 1511.','Pan-European spatial positioning.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4151','EPSG','4258','EPSG','1286',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Che',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8913','CR05 to CR-SIRGAS (1)','Derived at 16 stations. CR05 is static, CR-SIRGAS is dynamic: transformation is valid at epoch 2014.59 but accuracy will deteriorate due to tectonic motion. May be taken as an approximate transformation to ITRF08 / IGb08 / WGS 84 - see code 8914.','For applications to an accuracy of 0.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','5364','EPSG','8906','EPSG','1074',0.5,-0.16959,0.35312,0.51846,'EPSG','9001',-0.03385,0.16325,-0.03446,'EPSG','9104',0.03693,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Cri 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8914','CR05 to WGS 84 (2)','Parameter vales are from CR05 to CR-SIRGAS (1) (code 8913) assuming that CR-SIRGAS (ITRF08 (IGb08)@2014.59) is equivalent to WGS 84 within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','5364','EPSG','4326','EPSG','1074',1.0,-0.16959,0.35312,0.51846,'EPSG','9001',-0.03385,0.16325,-0.03446,'EPSG','9104',0.03693,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Cri 2014',1); INSERT INTO "helmert_transformation" VALUES('EPSG','8952','ITRF97 to SIRGAS-CON DGF00P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4918','EPSG','8915','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2000.4,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8953','ITRF2000 to SIRGAS-CON DGF01P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4919','EPSG','8917','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8954','ITRF2000 to SIRGAS-CON DGF01P02 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4919','EPSG','8919','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1998.4,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8955','ITRF2000 to SIRGAS-CON DGF02P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4919','EPSG','8921','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8956','ITRF2000 to SIRGAS-CON DGF04P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4919','EPSG','8923','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2003.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8957','ITRF2000 to SIRGAS-CON DGF05P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4919','EPSG','8925','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2004.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8958','ITRF2000 to SIRGAS-CON DGF06P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4919','EPSG','8927','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2004.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8959','IGS05 to SIRGAS-CON DGF07P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','9010','EPSG','8929','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2004.5,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8960','IGS05 to SIRGAS-CON DGF08P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','9010','EPSG','8931','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2004.5,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8961','IGS05 to SIRGAS-CON SIR09P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','9010','EPSG','8933','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2005.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8962','ITRF2008 to SIRGAS-CON SIR10P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','5332','EPSG','8935','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2005.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8963','ITRF2008 to SIRGAS-CON SIR11P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','5332','EPSG','8937','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2005.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8964','IGb08 to SIRGAS-CON SIR13P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','9015','EPSG','8939','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2012.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8965','IGb08 to SIRGAS-CON SIR14P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','9015','EPSG','8941','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2013.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8966','IGb08 to SIRGAS-CON SIR15P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','9015','EPSG','8943','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2013.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8967','IGS14 to SIRGAS-CON SIR17P01 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','8227','EPSG','8945','EPSG','4530',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2015.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8968','CR05 to CR-SIRGAS (1)','Derived at 16 stations. CR05 is static, CR-SIRGAS is dynamic: transformation is valid at epoch 2014.59 but accuracy will deteriorate due to tectonic motion. May be taken as an approximate transformation to ITRF08 / IGb08 / WGS 84 - see code 8969.','For applications to an accuracy of 0.5 metres.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','5365','EPSG','8907','EPSG','1074',0.5,-0.16959,0.35312,0.51846,'EPSG','9001',-0.03385,0.16325,-0.03446,'EPSG','9104',0.03693,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Cri 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8969','CR05 to WGS 84 (2)','Parameter vales are from CR05 to CR-SIRGAS (1) (code 8968) assuming that CR-SIRGAS (ITRF08 (IGb08)@2014.59) is equivalent to WGS 84 within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','5365','EPSG','4326','EPSG','1074',1.0,-0.16959,0.35312,0.51846,'EPSG','9001',-0.03385,0.16325,-0.03446,'EPSG','9104',0.03693,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Cri 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8970','ITRF2014 to NAD83(2011) (1)','Concatenation of joint US-Canada transformation NAD83(CORS96)>ITRF96 (CT code 6864) with IGS value for ITRF96>ITRF97 and IERS values for ITRF97>ITRF2014 CTs. Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Oil and gas exploration and production.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','7789','EPSG','6317','EPSG','1511',0.0,1.0053,-1.9092,-0.5416,'EPSG','9001',26.7814,-0.4203,10.9321,'EPSG','1031',0.37,'EPSG','1028',0.0008,-0.0006,-0.0014,'EPSG','1042',0.0667,-0.7574,-0.0513,'EPSG','1032',-0.07,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IOGP-Usa CONUS-AK PRVI',0); INSERT INTO "helmert_transformation" VALUES('EPSG','8971','NAD83 to NAD83(2011) (1)','','Oil and gas exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4269','EPSG','6318','EPSG','3357',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Usa GoM',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9020','ITRF88 to ITRF89 (1)','Scale difference (dS) in ppb where 1/billion = 1E-9 or nm/m. rX and dS derived through summing CTs to later realizations ITRF2000 (CT 6281 + 7814), ITRF2008 (CT 6291 + 6292) and ITRF2014 (CT 8069 + 8070) are 0.0mas and -3.1ppb: these are recommended.','Geodesy','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4910','EPSG','4911','EPSG','1262',0.01,0.5,3.6,2.4,'EPSG','1033',-0.1,0.0,0.0,'EPSG','1031',-3.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9021','ITRF89 to ITRF90 (1)','Scale difference (dS) in ppb where 1/billion = 1E-9 or nm/m. dS derived through summing CTs to later realizations ITRF2000 (CT 6281 + 7814), ITRF2008 (CT 6291 + 6292) and ITRF2014 (CT 8069 + 8070) is -3.4ppb: this value is recommended.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4911','EPSG','4912','EPSG','1262',0.01,-0.5,-2.4,3.8,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',-3.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9022','ITRF90 to ITRF91 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4912','EPSG','4913','EPSG','1262',0.007,-0.1,0.4,1.6,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',-0.3,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9023','ITRF91 to ITRF92 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','4913','EPSG','4914','EPSG','1262',0.005,-1.1,-1.4,0.6,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',-1.4,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9024','ITRF92 to ITRF93 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Note: info source gives translation rates in mm/year.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4914','EPSG','4915','EPSG','1262',0.003,-0.2,-0.7,-0.7,'EPSG','1033',-0.39,0.8,-0.96,'EPSG','1031',1.2,'EPSG','1028',-0.29,0.04,0.08,'EPSG','1034',-0.11,-0.19,0.05,'EPSG','1032',0.0,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9025','ITRF93 to ITRF94 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4915','EPSG','4916','EPSG','1262',0.01,-0.6,0.5,1.5,'EPSG','1033',0.39,-0.8,0.96,'EPSG','1031',-0.4,'EPSG','1028',0.29,-0.04,-0.08,'EPSG','1034',0.11,0.19,-0.05,'EPSG','1032',0.0,'EPSG','1030',1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9026','ITRF94 to ITRF96 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. ITRF96 is by definition aligned with ITRF94.','Geodesy','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4916','EPSG','4917','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9027','ITRF96 to ITRF97 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. ITRF97 is by definition aligned with ITRF96.','Geodesy','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4917','EPSG','4918','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1988.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9028','ITRF97 to IGS97 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. IGS97 is by definition aligned with ITRF97.','Geodesy','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4918','EPSG','9001','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9029','ITRF2000 to IGS00 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. IGS00 is by definition aligned with ITRF2000.','Geodesy','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4919','EPSG','9004','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1998.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9030','ITRF2005 to IGS05 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. IGS05 is by definition aligned with ITRF2005.','Geodesy','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4896','EPSG','9010','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9031','ITRF2008 to IGS08 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. IGS08 is by definition aligned with ITRF2008.','Geodesy','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','5332','EPSG','6934','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2005.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9032','ITRF2014 to IGS14 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. IGS14 is by definition aligned with ITRF2014.','Geodesy','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','7789','EPSG','8227','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','1033',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9033','IGS97 to IGS00 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','9001','EPSG','9004','EPSG','1262',0.007,-6.0,-5.6,20.1,'EPSG','1025',-0.04,0.001,0.043,'EPSG','1031',-1.403,'EPSG','1028',0.4,0.8,1.5,'EPSG','1027',0.004,-0.001,-0.003,'EPSG','1032',-0.012,'EPSG','1030',1998.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9034','IGS00 to IGb00 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. IGS00 and IGb00 are both by definition aligned with ITRF2000. The actual IGS00-IGb00 transformation parameter values are not null but are statistically insignificant and treated as null by IGS.','Geodesy','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','9004','EPSG','9007','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1998.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9035','IGb00 to IGS05 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','9007','EPSG','9010','EPSG','1262',0.001,0.0,1.7,5.3,'EPSG','1025',0.0224,-0.0341,0.0099,'EPSG','1031',-0.8473,'EPSG','1028',0.4,-0.7,1.8,'EPSG','1027',-0.0033,0.0001,0.0161,'EPSG','1032',-0.1748,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9036','IGS05 to IGS08 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','9010','EPSG','6934','EPSG','1262',0.001,1.5,0.0,5.8,'EPSG','1025',-0.012,0.014,0.014,'EPSG','1031',-1.04,'EPSG','1028',-0.1,0.0,-0.1,'EPSG','1027',-0.002,-0.003,0.001,'EPSG','1032',0.01,'EPSG','1030',2005.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9037','IGS08 to IGb08 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. IGS08 and IGb08 are both by definition aligned with ITRF2008.','Geodesy','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','6934','EPSG','9015','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2005.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9038','IGb08 to IGS14 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Parameter values from ITRS2008 to ITRS2014 (1) (code 7790) as IGb08 is aligned to ITRF2008 and IGS14 is aligned to ITRF2014.','Geodesy','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','9015','EPSG','8227','EPSG','1262',0.01,-1.6,-1.9,-2.4,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.02,'EPSG','1028',0.0,0.0,0.1,'EPSG','1027',0.0,0.0,0.0,'EPSG','1032',-0.03,'EPSG','1030',2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IGS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9051','ITRF94 to SIRGAS 1995 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4916','EPSG','4974','EPSG','3448',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1995.4,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-S Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9052','ITRF2000 to SIRGAS 2000 (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4919','EPSG','4988','EPSG','3418',0.01,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2000.4,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'SIR-SC Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9076','WGS 84 (G873) to ITRF94 (1)','Defined at epoch 1997.0.','Geodesy','EPSG','1032','Coordinate Frame rotation (geocentric domain)','EPSG','7658','EPSG','4916','EPSG','1262',0.1,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGA-Wld 1997.0',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9077','ITRF2000 to NAD83(MARP00) (1)','Defines NAD83(MARP00). Equivalent transformation published on NGS web site and used in HDTP with rX=28.971 mas, rY=10.420 mas and rZ=8.928 mas at epoch 1997.00.','Geodesy.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4919','EPSG','9070','EPSG','4167',0.0,0.9102,-2.0141,-0.5602,'EPSG','9001',29.039,10.065,10.101,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1042',-0.02,0.105,-0.347,'EPSG','1032',0.0,'EPSG','1030',1993.62,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NGS-MA',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9078','ITRF2000 to NAD83(PACP00) (1)','Defines NAD83(PACP00). Equivalent transformation published on NGS web site and used in HDTP with rX=27.741 mas, rY=13.469 mas and rZ=2.712 mas at epoch 1997.00.','Geodesy.','EPSG','1056','Time-dependent Coordinate Frame rotation (geocen)','EPSG','4919','EPSG','9073','EPSG','4162',0.0,0.9102,-2.0141,-0.5602,'EPSG','9001',29.039,10.065,10.101,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1042',-0.384,1.007,-2.186,'EPSG','1032',0.0,'EPSG','1030',1993.62,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NGS-PA',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9079','ITRF97 to ITRF96 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Uses IGS determination. Used as first step in ITRF97 to NZGD2000 concatenated operations, followed by application of NZGD2000 deformation model.','Geodesy.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4918','EPSG','4917','EPSG','1175',0.01,0.0,-0.51,15.53,'EPSG','1025',-0.16508,0.26897,0.05984,'EPSG','1031',-1.51099,'EPSG','1028',0.69,-0.1,1.86,'EPSG','1027',-0.01347,0.01514,-0.00027,'EPSG','1032',-0.19201,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'LINZ-Nzl 97',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9080','ITRF2000 to ITRF96 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Used as first step in ITRF2000 to NZGD2000 concatenated operations, followed by application of NZGD2000 deformation model.','Geodesy.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4919','EPSG','4917','EPSG','1175',0.01,6.7,3.79,-7.17,'EPSG','1025',-0.16508,0.26897,0.11984,'EPSG','1031',0.06901,'EPSG','1028',0.69,-0.7,0.46,'EPSG','1027',-0.01347,0.01514,0.01973,'EPSG','1032',-0.18201,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'LINZ-Nzl 2000',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9081','ITRF2005 to ITRF96 (1)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Used as first step in ITRF2005 to NZGD2000 concatenated operations, followed by application of NZGD2000 deformation model.','Geodesy.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4896','EPSG','4917','EPSG','1175',0.01,6.8,2.99,-12.97,'EPSG','1025',-0.16508,0.26897,0.11984,'EPSG','1031',0.46901,'EPSG','1028',0.49,-0.6,-1.34,'EPSG','1027',-0.01347,0.01514,0.01973,'EPSG','1032',-0.10201,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'LINZ-Nzl 2005',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9082','ITRF2008 to ITRF96 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Used as first step in ITRF2008 to NZGD2000 concatenated operations, followed by application of NZGD2000 deformation model.','Geodesy.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','5332','EPSG','4917','EPSG','1175',0.01,4.8,2.09,-17.67,'EPSG','1025',-0.16508,0.26897,0.11984,'EPSG','1031',1.40901,'EPSG','1028',0.79,-0.6,-1.34,'EPSG','1027',-0.01347,0.01514,0.01973,'EPSG','1032',-0.10201,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'LINZ-Nzl 2008',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9083','ITRF2014 to ITRF96 (2)','Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Used as first step in ITRF2014 to NZGD2000 concatenated operations, followed by application of NZGD2000 deformation model.','Geodesy.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','7789','EPSG','4917','EPSG','1175',0.01,6.4,3.99,-14.27,'EPSG','1025',-0.16508,0.26897,0.11984,'EPSG','1031',1.08901,'EPSG','1028',0.79,-0.6,-1.44,'EPSG','1027',-0.01347,0.01514,0.01973,'EPSG','1032',-0.07201,'EPSG','1030',2000.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'LINZ-Nzl 2014',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9126','NAD83(CSRS)v2 to NAD83(CORS96) (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. Source and target CRSs defined from ITRF96 by common transformations (codes 6864 and 8259). 6864 defines CORS96 from 1st January 1997 to 31st December 1999.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','8233','EPSG','6781','EPSG','4544',0.0,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'ISO-N Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9127','NAD83(CSRS)v3 to NAD83(CORS96) (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. Source and target CRSs defined from ITRF97 by common transformations (codes 6865 and 8260). 6865 defines CORS96 from 1st January 2000 to 31st December 2001.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','8238','EPSG','6781','EPSG','4544',0.0,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'ISO-N Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9128','NAD83(CSRS)v4 to NAD83(CORS96) (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. Source and target CRSs defined from ITRF2000 by common transformations (codes 6866 and 8261). 6866 defines CORS96 from 1st January 2002 to 6th September 2011.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','8242','EPSG','6781','EPSG','4544',0.0,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2002.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'ISO-N Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9129','NAD83(CSRS)v6 to NAD83(2011) (1)','Scale difference in ppb where 1/billion = 1E-9 or nm/m. Source and target CRSs defined from ITRF2008 by common transformations (codes 7807 and 8264).','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','8250','EPSG','6317','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'ISO-N Am',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9142','MGI 1901 to KOSOVAREF01 (1)','Derived at 18 points across the area of Kosovo. May be taken as approximate transformation MGI 1901 to WGS 84 (see code 9143).','Spatial referencing.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','3906','EPSG','9140','EPSG','4542',1.0,628.54052,192.2538,498.43507,'EPSG','9001',-13.79189,-0.81467,41.21533,'EPSG','9104',-17.40368,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KCA-Kos',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9143','MGI 1901 to WGS 84 (14)','Parameter values from MGI 1901 to KOSOVAREF01 (1) (code 9142). Assumes KOSOVAREF01 and WGS 84 can be considered the same to within the accuracy of the transformation.','Approximation at the 1m level.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','3906','EPSG','4326','EPSG','4542',1.0,628.54052,192.2538,498.43507,'EPSG','9001',-13.79189,-0.81467,41.21533,'EPSG','9104',-17.40368,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Kos',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9144','KOSOVAREF01 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84. KOSOVAREF01 is a national realization of ETRS89.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','9140','EPSG','4326','EPSG','4542',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Kos',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9145','WGS 84 (Transit) to ITRF90 (1)','','Geodesy','EPSG','1033','Position Vector transformation (geocentric domain)','EPSG','7815','EPSG','4912','EPSG','1262',1.0,-0.06,0.517,0.223,'EPSG','9001',-0.0183,0.0003,-0.007,'EPSG','9104',0.011,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS-Wld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9177','SIRGAS-Chile 2002 to ITRF2000 (1)','Transformation is exact at epoch 2002.00 but accuracy then decreasing with time.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','5358','EPSG','4919','EPSG','1066',0.1,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2002.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IOGP-Chl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9178','SIRGAS-Chile 2010 to IGS08 (1)','Transformation is exact at epoch 2010.00 but accuracy then decreasing with time.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','8947','EPSG','6934','EPSG','1066',0.1,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2010.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IOGP-Chl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9179','SIRGAS-Chile 2013 to IGb08 (1)','Transformation is exact at epoch 2013.00 but accuracy then decreasing with time.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','9146','EPSG','9015','EPSG','1066',0.1,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2013.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IOGP-Chl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9180','SIRGAS-Chile 2016 to IGb08 (1)','Transformation is exact at epoch 2016.00 but accuracy then decreasing with time.','Geodesy.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','9151','EPSG','9015','EPSG','1066',0.1,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2016.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'IOGP-Chl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9185','AGD66 to GDA2020 (1)','This transformation is for users wanting to apply a 7-parameter conformal transformation from AGD66 to GDA2020 in the ACT.','Spatial referencing.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','7844','EPSG','2283',0.05,-136.9703,-37.5638,124.4242,'EPSG','9001',-0.25676,-0.42966,-0.30077,'EPSG','9104',-4.61966,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPD-Aus ACT',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9186','ITRF2008 to IG05/12 Intermediate CRS','Derived from Israeli CORS on ITRF2008 at epoch 2018.50. Updates CT 6993 for approx. 40cm tectonic plate motion 2012 to 2019 for GIS purposes. CT 6993 remains the legal definition of IG05/12 and must be used for cadastral and precise engineering purposes.','GIS. Note: not to be used for cadastre or precise engineering survey: see remarks.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8999','EPSG','6990','EPSG','2603',0.05,-23.772,-17.49,-17.859,'EPSG','9001',-0.3132,-1.85274,1.67299,'EPSG','9104',5.4262,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SOI-Isr 2019',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9189','WGS 84 to IG05/12 Intermediate CRS','Parameter values from CT code 9186 assuming that WGS 84 is coincident with ITRF2008. Updates CT 6993 for approx. 40cm tectonic plate motion for GIS purposes. CT 6993 remains the legal definition of IG05/12 and must be used for cadastre and engineering.','GIS. Note: not to be used for cadastre or precise engineering survey: see remarks.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','6990','EPSG','2603',0.1,-23.772,-17.49,-17.859,'EPSG','9001',-0.3132,-1.85274,1.67299,'EPSG','9104',5.4262,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SOI-Isr 2019',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9223','WGS 84 to ETRS89 (2)','Parameter values derived from ITRF2008 to ETRF2000 (1), code 7951, as a time-specific transformation @2014.81, assuming ITRF2008 = WGS 84 (G1762) = WGS 84 and ETRF2000 = ETRS89.','Oil and gas exploration and production.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4936','EPSG','4978','EPSG','4566',0.1,0.054,0.051,-0.085,'EPSG','9001',0.0021,0.0126,-0.0204,'EPSG','9104',0.0025,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2014.81,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'ONE-Deu/Nld 2014.81',1); INSERT INTO "helmert_transformation" VALUES('EPSG','9224','ED50 to ETRS89 (15)','Parameter values from ED50 to WGS 84 (36) assuming that ETRS89 is equivalent to WGS 84 at epoch 1989.00..','Oil and gas exploration and production..','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','4258','EPSG','4566',1.0,-157.89,-17.16,-78.41,'EPSG','9001',2.118,2.697,-1.434,'EPSG','9104',-5.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ONE-Ger Nsea',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9225','WGS 84 to ETRS89 (2)','Parameter values derived from ITRF2008 to ETRF2000 (1), code 7951, as a time-specific transformation @2014.81, assuming ITRF2008 = WGS 84 (G1762) = WGS 84 and ETRF2000 = ETRS89.','Oil and gas exploration and production.','EPSG','1065','Time-specific Position Vector transform (geocen)','EPSG','4978','EPSG','4936','EPSG','4566',0.1,0.054,0.051,-0.085,'EPSG','9001',0.0021,0.0126,-0.0204,'EPSG','9104',0.0025,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2014.81,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'ONE-Deu/Nld 2014.81',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9226','SHGD2015 to Astro DOS 71 (2)','Derived at 19 stations, RMS = 6cm. Note: Because of the large rotations about the Y- and Z-axes this transformation is not reversible. For the reverse transformation use Astro DOS 71 to SHGD2015 (2) (code 7895).','High Accuracy transformation from St Helena Geodetic Datum 2015. Not reversible - see remarks.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','7886','EPSG','4710','EPSG','3183',0.1,112.771,-12.282,18.935,'EPSG','9001',-2.1692,-16.8896,-17.1961,'EPSG','9104',19.54517,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENRD-Shn Hel 0.1m Rev',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9227','ITRF2005 to NAD83(CSRS)v5 (1)','Concatenation of joint Canada-US NAD83>ITRF96 transformation (code 8259) with IGS value for ITRF96>ITRF97 and IERS transformations ITRF97>ITRF2005. Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.','Geodesy. Defines NAD83(CSRS)v5 and is therefore treated as errorless.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','4896','EPSG','8247','EPSG','1061',0.0,0.9963,-1.9024,-0.5219,'EPSG','9001',-25.915,-9.426,-11.599,'EPSG','1031',0.775,'EPSG','1028',0.0005,-0.0006,-0.0013,'EPSG','1042',-0.067,0.757,0.051,'EPSG','1032',-0.102,'EPSG','1030',1997.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'NRC-Can CSRSv5',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9234','Kalianpur 1962 to WGS 84 (5)','Derived by Western Geophysical for UTP 1996 East Sind 2D survey. Very similar parameter values (higher resolution but no better accuracy) were used by BGP for the ENI 2006 East Sind 2D survey.','Oil exploration.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4145','EPSG','4326','EPSG','2983',3.0,230.25,632.76,161.03,'EPSG','9001',-1.114,1.115,1.212,'EPSG','9104',12.584,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'utp-Pak E Sind',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9257','Chos Malal 1914 to WGS 84 (2)','Derived through common coordinates at 13 stations.','Oil and gas exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4160','EPSG','4326','EPSG','4561',2.5,8.88,184.86,106.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'YPF-Arg Cuyo',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9258','Chos Malal 1914 to WGS 84 (3)','Derived through common coordinates at 43 stations.','Oil and gas exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4160','EPSG','4326','EPSG','1292',2.5,15.75,164.93,126.18,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'YPF-Arg Neuq',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9259','Pampa del Castillo to WGS 84 (2)','Derived through common coordinates at 22 stations. Used by YPF throughout the Golfo San Jorge basin.','Oil and gas exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4161','EPSG','4326','EPSG','4572',2.5,-233.43,6.65,173.64,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'YPF-Arg GSJB',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9260','Tapi Aike to WGS 84 (1)','Used by YPF throughout the Tapi Aike basin.','Oil and gas exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','9248','EPSG','4326','EPSG','4569',5.0,-192.26,65.72,132.08,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'YPF-Arg TapiAike',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9261','MMN to WGS 84 (1)','','Oil and gas exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','9251','EPSG','4326','EPSG','2357',2.5,-9.5,122.9,138.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'YPF-Arg MMN',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9262','MMS to WGS 84 (1)','','Oil and gas exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','9253','EPSG','4326','EPSG','2357',2.5,-78.1,101.6,133.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'YPF-Arg MMS',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9263','Hito XVIII 1963 to WGS 84 (3)','','Oil and gas exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4254','EPSG','4326','EPSG','2357',2.5,18.2,190.7,100.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'YPF-Arg TdF Hito',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9264','POSGAR 2007 to WGS 84 (2)','Derived as average at all points common between the POSGAR 94 and POSGAR 2007 networks. POSGAR 94 was adjusted to the WGS 84 coordinates of 20 stations in March to May 1994. Accuracy 0.1m in 1994 + 1.5cm per year.','Oil and gas exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5340','EPSG','4326','EPSG','1033',0.5,-0.41,0.46,-0.35,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'YPF-Arg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9281','Amersfoort to ETRS89 (8)','Derived using ETRF2014. In RDNAPTRANS2018 software used assuming an ETRS89 ellipsoidal height of 43m and with an additional correction grid (corrections of up to 0.25m). Replaces Amersfoort to ETRS89 (5) and (6) (tfm codes 4830 and 4831).','Accuracy 0.25m','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4289','EPSG','4258','EPSG','1275',0.25,565.7381,50.4018,465.2904,'EPSG','9001',1.91514,-1.60363,9.09546,'EPSG','9109',4.07244,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-Nld 2018',0); INSERT INTO "helmert_transformation" VALUES('EPSG','9334','ITRF2014 to KSA-GRF17 (1)','Arabian plate rotations derived during KSA-GRF17 adjustment from observations at 41 sites with at least 2.5 years of continuous observations.','Geodesy.','EPSG','1053','Time-dependent Position Vector tfm (geocentric)','EPSG','7789','EPSG','9331','EPSG','1206',0.001,0.0,0.0,0.0,'EPSG','1025',0.0,0.0,0.0,'EPSG','1031',0.0,'EPSG','1028',0.0,0.0,0.0,'EPSG','1027',-1.199,0.107,-1.468,'EPSG','1032',0.0,'EPSG','1030',2017.0,'EPSG','1029',NULL,NULL,NULL,NULL,NULL,'GCS-Sau',0); INSERT INTO "helmert_transformation" VALUES('EPSG','10085','Trinidad 1903 to WGS 84 (2)','Parameter values provided to EOG by Trinidad Ministry of Energy and Energy Industries. Used by EOG offshore Trinidad (including Pelican, Kiskadee and Ibis fields) since 1996.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4302','EPSG','4326','EPSG','1339',3.0,-61.0,285.2,471.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EOG-Tto Trin',0); INSERT INTO "helmert_transformation" VALUES('EPSG','10086','JAD69 to WGS 72 (1)','Derived in 1977 through Transit observations at 2 stations by US DMA.','For military mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4242','EPSG','4322','EPSG','3342',15.0,48.0,208.0,382.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SD-Jam',0); INSERT INTO "helmert_transformation" VALUES('EPSG','10089','Aratu to WGS 84 (5)','Used by ExxonMobil for block BMS1. See WGS 84 (13) (tfm code 5051) which Petrobras now recommends for the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2962',7.0,-163.466,317.396,-147.538,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EXM-Bra Santos',0); INSERT INTO "helmert_transformation" VALUES('EPSG','10090','Aratu to WGS 84 (6)','Used by ExxonMobil for block BC10. Derived from earlier Shell position vector tfm of dX = -181m, dY = +294m, dZ = -144.5m, rX = rY = 0, rZ = +0.554s, dS = +0.219 ppm. See Aratu to WGS 84 (14) (tfm code 5053) which Petrobras now recommends for the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2963',7.0,-170.0,305.0,-145.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EXM-Bra Campos',0); INSERT INTO "helmert_transformation" VALUES('EPSG','10091','Aratu to WGS 84 (7)','Used by ExxonMobil for block BMES1. See Aratu to WGS 84 (15) (tfm code 5055) which Petrobras now recommends for the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2964',7.0,-162.904,312.531,-137.109,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EXM-Bra EspS',0); INSERT INTO "helmert_transformation" VALUES('EPSG','10092','Aratu to WGS 84 (8)','Used by ExxonMobil for block BP1. Also used by BG as part of a concatenated tfm to SAD69 for offshore regional studies. See WGS 84 (13) (tfm code 5051) for transformation Petrobras now recommends for the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2965',7.0,-158.0,309.0,-151.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EXM-Bra Pel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','10093','Aratu to WGS 84 (9)','Used by ExxonMobil for offshore regional studies. See Aratu to WGS 84 (13) through (21) (tfm codes 5051-67 [odd numbers only]) which Petrobras now recommends for various areas.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2966',15.0,-161.0,308.0,-142.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EXM-Bra off',0); INSERT INTO "helmert_transformation" VALUES('EPSG','10094','Nouakchott 1965 to WGS 84 (1)','Derived by IGN in 1992 at 7 stations within Nouakchott city.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2972',5.0,124.5,-63.5,-281.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Mau',1); INSERT INTO "helmert_transformation" VALUES('EPSG','10098','KKJ to ETRS89 (2)','May be taken as approximate transformation KKJ to WGS 84 - see code 10099. Replaces KKJ to ETRS89 (1) (code 1638).','In most areas accuracy is approximately 0.5m although in some areas it is in the order of 2m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4123','EPSG','4258','EPSG','3333',0.5,-96.062,-82.428,-121.753,'EPSG','9001',-4.801,-0.345,1.376,'EPSG','9104',1.496,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLS-Fin JHS153',0); INSERT INTO "helmert_transformation" VALUES('EPSG','10099','KKJ to WGS 84 (2)','Parameter values from KKJ to ETRS89 (2) (code 10098). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. Replaces KKJ to WGS 84 (1) (code 1639).','For applications to an accuracy of 1 to 2 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4123','EPSG','4326','EPSG','3333',1.0,-96.062,-82.428,-121.753,'EPSG','9001',-4.801,-0.345,1.376,'EPSG','9104',1.496,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Fin JHS153',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15483','Tokyo to JGD2000 (1)','Derived at Tokyo datum origin. Also used on remote islands with significantly less accuracy: Io-To 793m, Kitadaito and Minamidaito Jima 642m, Tarama and Minna Shima 560m, Ishigaki and Taketomi Jima 251m, Yonaguni Jima 248m.','Surveying, mapping and civil engineering purposes. Accuracy on main islands 9m, see remarks for accuracy on outlying islands. For an accuracy of a few tens of centimetres on all main and outlying islands use programme TKY2JGD.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4301','EPSG','4612','EPSG','3957',9.0,-146.414,507.337,680.507,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15484','Tokyo to WGS 84 (108)','Parameter values from Tokyo to JGD2000 (1) (code 15483). Assumes JGD2000 and WGS 84 can be considered the same to within the accuracy of the transformation.','Surveying, mapping and civil engineering purposes. Accuracy on main islands 9m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4301','EPSG','4326','EPSG','3957',9.0,-146.414,507.337,680.507,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Jpn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15485','SAD69 to SIRGAS 2000 (1)','May be used as transformations between SAD69(96) and SIRGAS 2000 and between SAD69 and WGS 84 - see tfm codes 5881 and 5882. Used by Petrobras and ANP throughout Brazil from 1994.','Accuracy generally better than 1m except in Amazon basin where it degenerates to 5m. Should be used only to transform data obtained independently of the classical geodetic network (GPS observations conducted after 1994).','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4618','EPSG','4674','EPSG','1053',5.0,-67.35,3.88,-38.22,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IBGE-Bra',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15493','Minna to WGS 84 (15)','Adopted by MPN for all joint venture operations from 1/1/1996.','Oil industry exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','3590',5.0,-94.031,-83.317,116.708,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MPN-Nga',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15494','Kalianpur 1962 to WGS 84 (6)','Derived by Fugro-Geodetic in 2004 at 6 closely-spaced stations. Used by OMV in all blocks in Pakistan where operator.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4145','EPSG','4326','EPSG','3589',3.0,274.164,677.282,226.704,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'omv-Pak Gambat',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15495','Accra to WGS 84 (3)','Derived via WGS 72BE. Found in use within oil industry erroneously concatenated via WGS 72. See tfm code 8571.','Oil industry.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4168','EPSG','4326','EPSG','1505',25.0,-171.16,17.29,325.21,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Gha 1',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15496','Pulkovo 1942(58) to WGS 84 (18)','','Oil exploration','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4179','EPSG','4326','EPSG','1197',10.0,44.107,-116.147,-54.648,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shell-Rom',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15497','Pulkovo 1942(58) to WGS 84 (9)','Derived at 4 stations.','For military purposes. Accuracy 3m, 5m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4179','EPSG','4326','EPSG','1197',7.0,28.0,-121.0,-77.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Rom',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15698','ITRF2000 to ITRF2005 (1)','At epoch 2000.0. Rates dX=0.0002 m/yr, dy=-0.0001 m/yr, dZ=0.0018 m/yr, rX=rY=rZ=0.0"/yr, dS=-0.00008 ppm/yr.','Geodesy.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4919','EPSG','4896','EPSG','1262',0.0,-0.0001,0.0008,0.0058,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.0004,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IERS',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15699','NAD27 to WGS 84 (87)','Developed by John E Chance and Associates at 19°44''N, 92°21''W. Geoid height used =-13.34m.','Oil exploration and production. Horizontal transformation accuracy (1 sigma) is considered to be at the +/- 5 meter level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','3462',5.0,-2.0,124.7,196.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'JECA-Mex GoM CamS',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15700','Gulshan 303 to WGS 84 (1)','Derived at origin station in Dhaka.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4682','EPSG','4326','EPSG','1041',1.0,283.8,735.9,261.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SB-BGD',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15701','Kalianpur 1962 to WGS 84 (2)','Derived at Geodetic Survey office in Karachi in 1997.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4145','EPSG','4326','EPSG','2985',1.0,275.57,676.78,229.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Pak Indus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15702','Kalianpur 1962 to WGS 84 (3)','Derived at station S0001, an approximate offset to Survey of India primary station Kat Baman, in 1992 from 180 single point Transit passes observed in 1991 by Fugro-Geodetic for UTP.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4145','EPSG','4326','EPSG','2984',3.0,278.9,684.39,226.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'utp-Pak Badin',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15703','Kalianpur 1962 to WGS 84 (4)','Derived at Chitrawala triangulation station by Fugro-Geodetic for UTP.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4145','EPSG','4326','EPSG','2982',3.0,271.905,669.593,231.495,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'utp-Pak Karachi',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15704','Kalianpur 1962 to WGS 84 (5)','Derived by Western Geophysical for UTP 1996 East Sind 2D survey.','Oil exploration.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4145','EPSG','4326','EPSG','2983',3.0,230.25,632.76,161.03,'EPSG','9001',-1.114,1.115,1.212,'EPSG','9104',12.584,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'utp-Pak E Sind',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15705','Minna to WGS 84 (12)','Derived via WGS 72(BE). Minna to WGS 72(BE) transformation derived in 1981 for Mobil E&P Nigeria (MEPCON) by Geodetic Survey through Transit translocation at six stations in southern Nigeria. Used by MEPCON in blocks OPL 215 and 221.','Oil industry exploration.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','3819',8.0,-83.13,-104.95,114.63,'EPSG','9001',0.0,0.0,0.554,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'WGC-Nga 211',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15706','Minna to WGS 84 (13)','Used by Elf in Blocks OPL 222 and OPL 223 and by Mobil in 1994.','Oil industry exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','1717',7.0,-93.6,-83.7,113.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Elf-Nga',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15707','ELD79 to WGS 84 (6)','Used by Petrocanada and previous licence holders in Amal field, concession 12.','Oil exploration and production','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4159','EPSG','4326','EPSG','2987',10.0,-118.996,-111.177,-198.687,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PCan-Lby Amal',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15708','PRS92 to WGS 84 (1)','Derived during GPS campaign which established PRS92 coordinates at 330 first order stations.','Accuracy: 1-10 parts per million.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4683','EPSG','4326','EPSG','1190',0.05,-127.62,-67.24,-47.04,'EPSG','9001',3.068,-4.903,-1.578,'EPSG','9104',-1.06,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGS-Phl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15709','Nouakchott 1965 to WGS 84 (1)','Derived by IGN in 1992 at 7 stations within Nouakchott city.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4680','EPSG','4326','EPSG','2972',5.0,124.5,-63.5,-281.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Mau',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15710','Aratu to WGS 84 (10)','Replaced by Aratu to WGS 84 (14) (tfm code 5053) which Petrobras now recommends for the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2963',5.0,-160.0,315.0,-142.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra Campos',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15711','Aratu to WGS 84 (11)','Replaced by Aratu to WGS 84 (13) (tfm code 5051) which Petrobras now recommends for the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2962',5.0,-158.0,309.0,-147.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra Santos',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15712','Aratu to WGS 84 (12)','Replaced by Aratu to WGS 84 (15) (tfm code 5055) which Petrobras now recommends for the area.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2964',5.0,-161.0,310.0,-145.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra EspS',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15713','Gan 1970 to WGS 84 (1)','Derived at 1 station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4684','EPSG','4326','EPSG','3274',44.0,-133.0,-321.0,50.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Mdv',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15714','Bogota 1975 to MAGNA-SIRGAS (1)','May be taken as transformation to WGS 84 - see tfm code 15715. See Bogota 1975 to MAGNA-SIRGAS (9), tfm code 15730, for an equivalent transformation using the Molodenski-Badekas 10-parameter method. OGP recommends this alternative.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3082',1.0,-806.413,-263.5,-622.671,'EPSG','9001',6.018583e-05,-1.450001e-05,-0.0001892455,'EPSG','9101',-20.81616,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGAC-Col CF reg 1',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15715','Bogota 1975 to WGS 84 (3)','Approximation at the +/- 1m level assuming that MAGNA-SIRGAS is equivalent to WGS 84. Parameter values taken from Bogota 1975 to MAGNA-SIRGAS (1) (tfm code 15714).','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4326','EPSG','3082',1.0,-806.413,-263.5,-622.671,'EPSG','9001',6.018583e-05,-1.450001e-05,-0.0001892455,'EPSG','9101',-20.81616,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Col reg 1',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15716','Bogota 1975 to MAGNA-SIRGAS (2)','May be taken as transformation to WGS 84 - see tfm code 15717. See Bogota 1975 to MAGNA-SIRGAS (10), tfm code 15731, for an equivalent transformation using the Molodenski-Badekas 10-parameter method. OGP recommends this alternative.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3083',1.0,100.783,187.382,-47.0,'EPSG','9001',-4.471839e-05,1.175093e-05,-4.027967e-05,'EPSG','9101',-13.56561,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGAC-Col CF reg 2',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15717','Bogota 1975 to WGS 84 (4)','Approximation at the +/- 1m level assuming that MAGNA-SIRGAS is equivalent to WGS 84. Parameter values taken from Bogota 1975 to MAGNA-SIRGAS (2) (tfm code 15716).','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4326','EPSG','3083',1.0,100.783,187.382,-47.0,'EPSG','9001',-4.471839e-05,1.175093e-05,-4.027967e-05,'EPSG','9101',-13.56561,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Col reg 2',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15718','Bogota 1975 to MAGNA-SIRGAS (3)','May be taken as transformation to WGS 84 - see tfm code 15719. See Bogota 1975 to MAGNA-SIRGAS (10), tfm code 15732, for an equivalent transformation using the Molodenski-Badekas 10-parameter method. OGP recommends this alternative.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3084',1.0,336.026,348.565,252.978,'EPSG','9001',-8.358813e-05,-3.057474e-05,7.573031e-06,'EPSG','9101',-5.771909,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGAC-Col CF reg 3',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15719','Bogota 1975 to WGS 84 (5)','Approximation at the +/- 1m level assuming that MAGNA-SIRGAS is equivalent to WGS 84. Parameter values taken from Bogota 1975 to MAGNA-SIRGAS (3) (tfm code 15718).','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4326','EPSG','3084',1.0,336.026,348.565,252.978,'EPSG','9001',-8.358813e-05,-3.057474e-05,7.573031e-06,'EPSG','9101',-5.771909,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Col reg 3',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15720','Bogota 1975 to MAGNA-SIRGAS (4)','May be taken as transformation to WGS 84 - see tfm code 15721. See Bogota 1975 to MAGNA-SIRGAS (10), tfm code 15733, for an equivalent transformation using the Molodenski-Badekas 10-parameter method. OGP recommends this alternative.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3085',1.0,963.273,486.386,190.997,'EPSG','9001',-7.992171e-05,-8.090696e-06,0.0001051699,'EPSG','9101',-13.89914,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGAC-Col CF reg 4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15721','Bogota 1975 to WGS 84 (6)','Approximation at the +/- 1m level assuming that MAGNA-SIRGAS is equivalent to WGS 84. Parameter values taken from Bogota 1975 to MAGNA-SIRGAS (4) (tfm code 15720).','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4326','EPSG','3085',1.0,963.273,486.386,190.997,'EPSG','9001',-7.992171e-05,-8.090696e-06,0.0001051699,'EPSG','9101',-13.89914,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Col reg 4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15722','Bogota 1975 to MAGNA-SIRGAS (5)','May be taken as transformation to WGS 84 - see tfm code 15723. See Bogota 1975 to MAGNA-SIRGAS (10), tfm code 15734, for an equivalent transformation using the Molodenski-Badekas 10-parameter method. OGP recommends this alternative.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3086',1.0,-90.29,247.559,-21.989,'EPSG','9001',-4.216369e-05,-2.030416e-05,-6.209623e-05,'EPSG','9101',2.181658,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGAC-Col CF reg 5',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15723','Bogota 1975 to WGS 84 (7)','Approximation at the +/- 1m level assuming that MAGNA-SIRGAS is equivalent to WGS 84. Parameter values taken from Bogota 1975 to MAGNA-SIRGAS (5) (tfm code 15722).','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4326','EPSG','3086',1.0,-90.29,247.559,-21.989,'EPSG','9001',-4.216369e-05,-2.030416e-05,-6.209623e-05,'EPSG','9101',2.181658,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Col reg 5',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15724','Bogota 1975 to MAGNA-SIRGAS (6)','May be taken as transformation to WGS 84 - see tfm code 15725. See Bogota 1975 to MAGNA-SIRGAS (10), tfm code 15735, for an equivalent transformation using the Molodenski-Badekas 10-parameter method. OGP recommends this alternative.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3087',1.0,-0.562,244.299,-456.938,'EPSG','9001',3.329153e-05,-4.001009e-05,-4.507206e-05,'EPSG','9101',3.74656,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGAC-Col CF reg 6',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15725','Bogota 1975 to WGS 84 (8)','Approximation at the +/- 1m level assuming that MAGNA-SIRGAS is equivalent to WGS 84. Parameter values taken from Bogota 1975 to MAGNA-SIRGAS (6) (tfm code 15724).','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4326','EPSG','3087',1.0,-0.562,244.299,-456.938,'EPSG','9001',3.329153e-05,-4.001009e-05,-4.507206e-05,'EPSG','9101',3.74656,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Col reg 6',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15726','Bogota 1975 to MAGNA-SIRGAS (7)','May be taken as transformation to WGS 84 - see tfm code 15727. See Bogota 1975 to MAGNA-SIRGAS (10), tfm code 15736, for an equivalent transformation using the Molodenski-Badekas 10-parameter method. OGP recommends this alternative.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3088',1.0,-305.356,222.004,-30.023,'EPSG','9001',-4.698084e-05,5.003123e-06,-9.578655e-05,'EPSG','9101',6.325747,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGAC-Col CF reg 7',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15727','Bogota 1975 to WGS 84 (9)','Approximation at the +/- 1m level assuming that MAGNA-SIRGAS is equivalent to WGS 84. Parameter values taken from Bogota 1975 to MAGNA-SIRGAS (7) (tfm code 15726).','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4326','EPSG','3088',1.0,-305.356,222.004,-30.023,'EPSG','9001',-4.698084e-05,5.003123e-06,-9.578655e-05,'EPSG','9101',6.325747,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Col reg 7',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15728','Bogota 1975 to MAGNA-SIRGAS (8)','May be taken as transformation to WGS 84 - see tfm code 15729. See Bogota 1975 to MAGNA-SIRGAS (10), tfm code 15737, for an equivalent transformation using the Molodenski-Badekas 10-parameter method. OGP recommends this alternative.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3089',1.0,221.899,274.136,-397.554,'EPSG','9001',1.361573e-05,-2.174431e-06,-1.36241e-05,'EPSG','9101',-2.199943,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGAC-Col CF reg 8',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15729','Bogota 1975 to WGS 84 (10)','Approximation at the +/- 1m level assuming that MAGNA-SIRGAS is equivalent to WGS 84. Parameter values taken from Bogota 1975 to MAGNA-SIRGAS (8) (tfm code 15728).','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4218','EPSG','4326','EPSG','3089',1.0,221.899,274.136,-397.554,'EPSG','9001',1.361573e-05,-2.174431e-06,-1.36241e-05,'EPSG','9101',-2.199943,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Col reg 8',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15730','Bogota 1975 to MAGNA-SIRGAS (9)','Source also quotes an equivalent transformation using the Coordinate Frame 7-parameter method - see Bogota 1975 to MAGNA-SIRGAS (1), tfm code 15714.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3082',1.0,300.449,293.757,-317.306,'EPSG','9001',6.018581e-05,-1.450002e-05,-0.0001892455,'EPSG','9101',-20.81615,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1891881.173,-5961263.267,1248403.057,'EPSG','9001','IGAC-Col MB reg 1',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15731','Bogota 1975 to MAGNA-SIRGAS (10)','Source also quotes an equivalent transformation using the Coordinate Frame 7-parameter method - see Bogota 1975 to MAGNA-SIRGAS (2), tfm code 15716.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3083',1.0,308.833,282.519,-314.571,'EPSG','9001',-4.471845e-05,1.175087e-05,-4.027981e-05,'EPSG','9101',-13.56561,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1625036.59,-6054644.061,1172969.151,'EPSG','9001','IGAC-Col MB reg 2',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15732','Bogota 1975 to MAGNA-SIRGAS (11)','Source also quotes an equivalent transformation using the Coordinate Frame 7-parameter method - see Bogota 1975 to MAGNA-SIRGAS (3), tfm code 15718.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3084',1.0,311.118,289.167,-310.641,'EPSG','9001',-8.358815e-05,-3.057474e-05,7.573043e-06,'EPSG','9101',-5.771882,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1555622.801,-6105353.313,991255.656,'EPSG','9001','IGAC-Col MB reg 3',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15733','Bogota 1975 to MAGNA-SIRGAS (12)','Source also quotes an equivalent transformation using the Coordinate Frame 7-parameter method - see Bogota 1975 to MAGNA-SIRGAS (4), tfm code 15720.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3085',1.0,306.666,315.063,-318.837,'EPSG','9001',-7.992173e-05,-8.090698e-06,0.0001051699,'EPSG','9101',-13.89912,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1845222.398,-6058604.495,769132.398,'EPSG','9001','IGAC-Col MB reg 4',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15734','Bogota 1975 to MAGNA-SIRGAS (13)','Source also quotes an equivalent transformation using the Coordinate Frame 7-parameter method - see Bogota 1975 to MAGNA-SIRGAS (5), see tfm code 15722.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3086',1.0,307.871,305.803,-311.992,'EPSG','9001',-4.216368e-05,-2.030416e-05,-6.209624e-05,'EPSG','9101',2.181655,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1594396.206,-6143812.398,648855.829,'EPSG','9001','IGAC-Col MB reg 5',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15735','Bogota 1975 to MAGNA-SIRGAS (14)','Source also quotes an equivalent transformation using the Coordinate Frame 7-parameter method - see Bogota 1975 to MAGNA-SIRGAS (6), tfm code 15724.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3087',1.0,302.934,307.805,-312.121,'EPSG','9001',3.329153e-05,-4.001009e-05,-4.507205e-05,'EPSG','9101',3.746562,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1558280.49,-6167355.092,491954.219,'EPSG','9001','IGAC-Col MB reg 6',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15736','Bogota 1975 to MAGNA-SIRGAS (15)','Source also quotes an equivalent transformation using the Coordinate Frame 7-parameter method - see Bogota 1975 to MAGNA-SIRGAS (7), tfm code 15726.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3088',1.0,295.282,321.293,-311.001,'EPSG','9001',-4.698084e-05,5.003127e-06,-9.578653e-05,'EPSG','9101',6.325744,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1564000.62,-6180004.879,243257.955,'EPSG','9001','IGAC-Col MB reg 7',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15737','Bogota 1975 to MAGNA-SIRGAS (16)','Source also quotes an equivalent transformation using the Coordinate Frame 7-parameter method - see Bogota 1975 to MAGNA-SIRGAS (8), tfm code 15728.','Accuracy about 1 part in 10^5 of distance between points, depending on relative tectonic motion.','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4218','EPSG','4686','EPSG','3089',1.0,302.529,317.979,-319.08,'EPSG','9001',1.361566e-05,-2.174456e-06,-1.362418e-05,'EPSG','9101',-2.199976,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1738580.767,-6120500.388,491473.306,'EPSG','9001','IGAC-Col MB reg 8',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15738','MAGNA-SIRGAS to WGS 84 (1)','','MAGNA-SIRGAS is a national realization of SIRGAS and coincident with WGS 84 to within 1 metre. This transformation has an accuracy equal to the coincidence figure.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4686','EPSG','4326','EPSG','1070',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15739','Amersfoort to ETRS89 (3)','Replaces Amersfoort to ETRS89 (1) (tfm code 1751). Replaced by Amersfoort to ETRS89 (5) (tfm code 4830). Dutch sources also quote an equivalent transformation using the Molodenski-Badekas 10-parameter method (M-B) - see tfm code 15740.','Accuracy 0.5m','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4289','EPSG','4258','EPSG','1275',0.5,565.2369,50.0087,465.658,'EPSG','9001',1.9725,-1.7004,9.0677,'EPSG','9109',4.0812,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NCG-Nld 2004',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15740','Amersfoort to ETRS89 (4)','Replaces Amersfoort to ETRS89 (2) (tfm code 1066). Replaced by Amersfoort to ETRS89 (6) (tfm code 4831). Dutch sources also quote an equivalent transformation using the Coordinate Frame 7-parameter method - see tfm code 15739.','Accuracy 0.5m','EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4289','EPSG','4258','EPSG','1275',0.5,593.0297,26.0038,478.7534,'EPSG','9001',1.9725,-1.7004,9.0677,'EPSG','9109',4.0812,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3903453.1482,368135.3134,5012970.3051,'EPSG','9001','NCG-Nld 2004',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15741','Deir ez Zor to WGS 84 (2)','Derived by Elf in 1991 from tfm code 1584 concatenated with a tfm from WGS72BE to WGS84.','Oil exploration. Accuracy 5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4227','EPSG','4326','EPSG','2329',5.0,-187.5,14.1,237.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Elf-Syr Deir 1991',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15742','Deir ez Zor to WGS 84 (5)','Derived for 1998 Omar seismic survey and used in 2000 for El Isba seismic survey.','Oil exploration. Accuracy 5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4227','EPSG','4326','EPSG','3314',5.0,-190.421,8.532,238.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGG-Syr Isba',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15743','Deir ez Zor to WGS 84 (6)','Derived 2005 at 5 triangulation stations and using (EGM96 geoid model +1.15m). Used by Total/DEZPC for Jafra and Mazraa seismic surveys. Can be approximated using geocentric translations of dX=-190.6m, dY=+8.8m, dZ=+239.6m.','Oil exploration. Accuracy 0.5m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4227','EPSG','4326','EPSG','2329',0.5,-83.58,-397.54,458.78,'EPSG','9001',-17.595,-2.847,4.256,'EPSG','9104',3.225,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tot-Syr Deir 2005',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15745','ED50(ED77) to WGS 84 (6)','Derived in Tombak district in March 2005. Used for South Pars phase 11.','Petroleum Exploration and Production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4154','EPSG','4326','EPSG','3140',0.2,-123.02,-158.95,-168.47,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tot-Irn Spars',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15746','Nakhl-e Ghanem to WGS 84 (6)','Derived in Tombak district in March 2005. Used for South Pars phase 11 and Pars LNG plants.','Petroleum Exploration and Production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4693','EPSG','4326','EPSG','3141',0.2,0.0,-0.15,0.68,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TFE-Irn Tombak',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15748','BD72 to ETRS89 (2)','May be taken as approximate transformation BD72 to WGS 84 - see code 15749. Scale difference is given by information source as 1.0000012747. Given in this record in ppm to assist application usage.','For applications to an accuracy of 0.2 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4313','EPSG','4258','EPSG','1044',0.2,-106.8686,52.2978,-103.7239,'EPSG','9001',-0.3366,0.457,-1.8422,'EPSG','9104',1.2747,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Bel 0.2m',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15749','BD72 to WGS 84 (3)','Parameter values from BD72 to ETRS89 (2) (code 15748). Scale difference is given by information source as 1.0000012747. Given in this record in ppm to assist application usage.','For applications to an accuracy of 0.5 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4313','EPSG','4326','EPSG','1044',0.2,-106.8686,52.2978,-103.7239,'EPSG','9001',-0.3366,0.457,-1.8422,'EPSG','9104',1.2747,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Bel 0.2m',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15750','St. Kitts 1955 to WGS 84 (2)','Derived at 2 stations.','For military purposes. Accuracy 25m in each of X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4605','EPSG','4326','EPSG','3297',44.0,-7.0,215.0,225.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Kna',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15751','Reunion 1947 to WGS 84 (2)','Derived at 1 station.','For military purposes. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4626','EPSG','4326','EPSG','3337',44.0,94.0,-948.0,-1262.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Reu 30m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15752','ED79 to WGS 84 (1)','Derived at 22 stations.','For military purposes. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4668','EPSG','4326','EPSG','1297',6.0,-86.0,-98.0,-119.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Eur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15754','Aratu to WGS 84 (1)','Mean for 3 basins. See Aratu to WGS 84 (10) through (12) (codes 15710-12) for transformations for individual basins. Replaced by Aratu to WGS 84 (13) through (15) (tfm codes 5051, 5053 and 5055) which Petrobras now recommends for the areas.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4208','EPSG','4326','EPSG','2307',10.0,-158.0,315.0,-148.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PB-Bra BC BS ES',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15755','Minna to WGS 84 (14)','Derived in 1995 at unspecified DMA ADOS stations and Racal stations M101 and ZVS3003. Used by Elf in onshore Block OML 58.','Oil industry exploration and production. Accuracy 0.5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4263','EPSG','4326','EPSG','3113',7.0,-90.2,-87.32,114.17,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Elf-Nga-OML58',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15756','Tahiti 79 to RGPF (1)','May be taken as approximate transformation Tahiti 79 to WGS 84 - see code 4835.','Accuracy +/- 0.5 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4690','EPSG','4687','EPSG','3124',0.5,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.877,'EPSG','9104',11.4741,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15757','Moorea 87 to RGPF (1)','May be taken as approximate transformation Moorea 87 to WGS 84 - see code 15769.','Accuracy +/- 0.5 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4691','EPSG','4687','EPSG','3125',0.5,215.525,149.593,176.229,'EPSG','9001',3.2624,1.692,1.1571,'EPSG','9104',10.4773,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15758','Tahaa 54 to RGPF (1)','May be taken as approximate transformation Tahaa 54 to WGS 84 - see code 15770.','Accuracy +/- 0.5 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4629','EPSG','4687','EPSG','2812',0.5,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15759','Maupiti 83 to RGPF (1)','May be taken as approximate transformation Maupiti 83 to WGS 84 - see code 15771.','Accuracy +/- 0.5 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4692','EPSG','4687','EPSG','3126',0.5,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15760','Fatu Iva 72 to RGPF (1)','May be taken as approximate transformation Fatu Iva 72 to WGS 84 - see code 15772.','Accuracy +/- 1 to 2 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4688','EPSG','4687','EPSG','3133',2.0,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15761','IGN63 Hiva Oa to RGPF (1)','May be taken as approximate transformation IGN63 Hiva Oa to WGS 84 - see code 15773.','Accuracy +/- 0.5 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4689','EPSG','4687','EPSG','3131',0.5,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf HivaOa',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15762','IGN63 Hiva Oa to RGPF (2)','May be taken as approximate transformation IGN63 Hiva Oa to WGS 84 - see code 15774.','Accuracy +/- 1 to 2 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4689','EPSG','4687','EPSG','3132',2.0,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf Tahuata',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15763','IGN72 Nuku Hiva to RGPF (1)','May be taken as approximate transformation IGN72 Nuku Hiva to WGS 84 - see code 15775.','Accuracy +/- 0.5 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4630','EPSG','4687','EPSG','2810',0.5,165.732,216.72,180.505,'EPSG','9001',-0.6434,-0.4512,-0.0791,'EPSG','9104',7.4204,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf NukuHiva',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15764','IGN72 Nuku Hiva to RGPF (2)','May be taken as approximate transformation IGN72 Nuku Hiva to WGS 84 - see code 15776.','Accuracy +/- 1 to 2 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4630','EPSG','4687','EPSG','3127',2.0,1363.785,1362.687,398.811,'EPSG','9001',-4.5322,-6.7579,-1.0574,'EPSG','9104',268.361,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf UaHuka',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15765','IGN72 Nuku Hiva to RGPF (3)','May be taken as approximate transformation IGN72 Nuku Hiva to WGS 84 - see code 15777.','Accuracy +/- 0.5 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4630','EPSG','4687','EPSG','3128',0.5,259.551,297.612,197.833,'EPSG','9001',1.4866,2.1224,0.4612,'EPSG','9104',27.0249,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf UaPou',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15766','RGPF to WGS 84 (1)','Transformation is to original definition of WGS 84. It is consistent with later WGS 84 realisations G730, G873 and G1150 to no better than 1m.','Accuracy +/- 0.5 metre (to original definition of WGS 84 - see remarks).','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4999','EPSG','4979','EPSG','1098',0.5,0.072,-0.507,-0.245,'EPSG','9001',0.0183,-0.0003,0.007,'EPSG','9104',-0.0093,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15767','RGPF to WGS 84 (2)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4999','EPSG','4979','EPSG','1098',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15768','Tahiti 79 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from Tahiti 79 to RGPF (1) (tfm code 15756).','Accuracy +/- 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4690','EPSG','4687','EPSG','3124',1.0,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.877,'EPSG','9104',11.4741,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15769','Moorea 87 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from Moorea 87 to RGPF (1) (tfm code 15757).','Accuracy +/- 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4691','EPSG','4326','EPSG','3125',1.0,215.525,149.593,176.229,'EPSG','9001',3.2624,1.692,1.1571,'EPSG','9104',10.4773,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15770','Tahaa 54 to WGS 84 (2)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from Tahaa 54 to RGPF (1) (tfm code 15758).','Accuracy +/- 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4629','EPSG','4326','EPSG','2812',1.0,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15771','Maupiti 83 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from Maupiti 83 to RGPF (1) (tfm code 15759).','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4692','EPSG','4326','EPSG','3126',1.0,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15772','Fatu Iva 72 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from Fatu Iva 72 to RGPF (1) (tfm code 15760).','Accuracy +/- 2 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4688','EPSG','4326','EPSG','3133',2.0,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15773','IGN63 Hiva Oa to WGS 84 (1)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from IGN63 Hiva Oa to RGPF (1) (tfm code 15761).','Accuracy +/- 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4689','EPSG','4326','EPSG','3131',2.0,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf HivaOa',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15774','IGN63 Hiva Oa to WGS 84 (2)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from IGN63 Hiva Oa to RGPF (2) (tfm code 15762).','Accuracy +/- 2 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4689','EPSG','4326','EPSG','3132',2.0,374.716,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf Tahuata',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15775','IGN72 Nuku Hiva to WGS 84 (2)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from IGN72 Nuku Hiva to RGPF (1) (tfm code 15763).','Accuracy +/- 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4630','EPSG','4326','EPSG','2810',1.0,165.732,216.72,180.505,'EPSG','9001',-0.6434,-0.4512,-0.0791,'EPSG','9104',7.4204,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf NukuHiva',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15776','IGN72 Nuku Hiva to WGS 84 (3)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from IGN72 Nuku Hiva to RGPF (2) (tfm code 15764).','Accuracy +/- 2 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4630','EPSG','4326','EPSG','3127',2.0,1363.785,1362.687,398.811,'EPSG','9001',-4.5322,-6.7579,-1.0574,'EPSG','9104',268.361,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf UaHuka',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15777','IGN72 Nuku Hiva to WGS 84 (4)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84. Parameter values taken from IGN72 Nuku Hiva to RGPF (2) (tfm code 15765).','Accuracy +/- 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4630','EPSG','4326','EPSG','3128',1.0,259.551,297.612,197.833,'EPSG','9001',1.4866,2.1224,0.4612,'EPSG','9104',27.0249,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf UaPou',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15778','ELD79 to WGS 84 (7)','Derived by Total at stations SDL 130-03, 04 and 05 in May 2005.','Oil exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4159','EPSG','4326','EPSG','3142',0.5,-114.7,-98.5,-150.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tot-Lby NC192',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15779','Gulshan 303 to WGS 84 (1)','Derived at origin station in Dhaka. Source information given to 3 decimal places but rounded by OGP to be commensurate with stated accuracy.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4682','EPSG','4326','EPSG','1041',1.0,283.7,735.9,261.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SB-Bgd',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15780','POSGAR 94 to WGS 84 (1)','','Approximation at the +/- 1m level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4190','EPSG','4326','EPSG','1033',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Arg',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15782','Campo Inchauspe to POSGAR 94 (1)','Adopted from U.S. Defense Mapping Agency values for Campo Inchauspe to WGS 84 (tfm code 1127) assuming that POSGAR 94 is equivalent to WGS 84.','Accuracy 5m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4221','EPSG','4694','EPSG','3215',5.0,-148.0,136.0,90.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGM-Arg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15783','IGN53 Mare to WGS 84 (2)','Withdrawn by information source and replaced by improved information from local authority - see tfm code 15901.','Accuracy 5 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4641','EPSG','4326','EPSG','2819',5.0,287.0,178.0,-136.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Ncl Mare',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15784','Le Pouce 1934 to WGS 84 (1)','Derived at 17 stations in 1994 by University of East London. Residuals less than 2m.','Accuracy 2m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4699','EPSG','4326','EPSG','3209',2.0,-770.1,158.4,-498.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UEL-Mus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15787','IGCB 1955 to WGS 84 (1)','Derived by Topnav in 1991 at station TSH 85.','Oil exploration. Accuracy 5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4701','EPSG','4326','EPSG','3171',5.0,-79.9,-158.0,-168.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tot-Cod',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15788','AGD66 to WGS 84 (16)','Parameter values from AGD66 to GDA94 (1) (code 1278). Derived at 162 stations. Assumes GDA94 and WGS 84 can be considered the same to within the accuracy of the transformation.','5m accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','2575',5.0,-127.8,-52.3,152.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Aus 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15789','AGD84 to WGS 84 (8)','Parameter values from AGD84 to GDA94 (1) (code 1279). Derived at 327 stations. Assumes GDA94 and WGS 84 can be considered the same to within the accuracy of the tfm. AGD84 officially adopted only in Queensland, South Australia and Western Australia.','5m accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4203','EPSG','4326','EPSG','2576',5.0,-128.5,-53.0,153.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Aus 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15790','Mhast (offshore) to WGS 72BE (1)','Derived by Oceaneering for CABGOC in 1979. Mean of parameters derived by single point Transit translocation at 2 stations (Mongo Tando and N''To). Applied to single point Transit translocations at other stations to define Mhast (offshore) coordinates.','Oil industry exploration and production between 1979 and 1987.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4705','EPSG','4324','EPSG','3180',10.0,-255.0,-29.0,-105.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CHV-Ago Cab',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15791','Malongo 1987 to WGS 84 (3)','Derived via WGS 72BE by Geodetic for Chevron in 1987 by single point Transit translocation at 1 station (Malongo Y). Replaced in 1989 by Malongo 1987 to WGS 84 (1) (code 1330).','Oil industry exploration and production between September 1987 and April 1989.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4259','EPSG','4326','EPSG','3180',10.0,-259.99,-5.28,-97.09,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CHV-Ago Cab87',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15792','Egypt Gulf of Suez S-650 TL to WGS 72BE (1)','Derived by Egypt Surveys Limited through single point Transit translocation at 1 station (S-650).','Oil industry exploration and production between 1980 and 1984.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4706','EPSG','4324','EPSG','2341',5.0,-123.0,98.0,2.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ESL-Egy GoS',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15793','Barbados 1938 to WGS 84 (1)','Derived at 2 stations (S40 and M1, St Annes Tower) in 2004.','Accuracy 2.5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4212','EPSG','4326','EPSG','3218',3.0,31.95,300.99,419.19,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UKHO-Brb',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15794','Cocos Islands 1965 to WGS 84 (1)','Derived at 1 satellite station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4708','EPSG','4326','EPSG','1069',44.0,-491.0,-22.0,435.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cck',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15795','Tern Island 1961 to WGS 84 (1)','Derived at 1 satellite station. Same transformation parameter values related to same datum area given in original 1987 DMA TR8350.2 edition for Sorol Atoll.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4707','EPSG','4326','EPSG','3181',44.0,114.0,-116.0,-333.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Usa HI Tern',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15796','Iwo Jima 1945 to WGS 84 (1)','Derived at 1 satellite station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4709','EPSG','4326','EPSG','3200',44.0,145.0,75.0,-272.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Jpn IwoJ',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15797','Ascension Island 1958 to WGS 84 (1)','Derived at 2 satellite stations.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4712','EPSG','4326','EPSG','3182',44.0,-205.0,107.0,53.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Shn Asc',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15798','Astro DOS 71 to WGS 84 (1)','Derived at 1 satellite station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4710','EPSG','4326','EPSG','3183',44.0,-320.0,550.0,-494.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Shn Hel',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15799','Marcus Island 1952 to WGS 84 (1)','Derived at 1 satellite station.','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4711','EPSG','4326','EPSG','1872',44.0,124.0,-234.0,-25.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Jpn Marcus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15800','Ayabelle Lighthouse to WGS 84 (1)','Derived at 1 satellite station. Replaced by Ayabelle Lighthouse to WGS 84 (2) (code 6907).','For military purposes only. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4713','EPSG','4326','EPSG','1081',44.0,-79.0,-129.0,145.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Dji',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15801','Bellevue to WGS 84 (1)','Derived at 3 satellite stations.','Military and topographic mapping; Accuracy +/- 20 m in each axis','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4714','EPSG','4326','EPSG','3193',35.0,-127.0,-769.0,472.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Vut',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15802','Camp Area Astro to WGS 84 (1)','No accuracy estimate available.','Military and scientific mapping.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4715','EPSG','4326','EPSG','3205',999.0,-104.0,-129.0,239.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ata McMurdo',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15803','Phoenix Islands 1966 to WGS 84 (1)','Derived at 4 satellite stations.','Military and topographic mapping. Accuracy +/- 15 m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4716','EPSG','4326','EPSG','3196',26.0,298.0,-304.0,-375.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Kir Phoenix',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15804','Cape Canaveral to WGS 84 (1)','Derived at 19 satellite stations.','US space and military operations. Accuracy +/- 3 m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4717','EPSG','4326','EPSG','3206',6.0,-2.0,151.0,181.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Bha Usa-FL',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15805','Solomon 1968 to WGS 84 (1)','Derived at 1 satellite station.','Military and topographic mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4718','EPSG','4326','EPSG','3198',44.0,230.0,-199.0,-752.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Slb Gizo',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15806','Easter Island 1967 to WGS 84 (1)','Derived at 1 satellite station.','Military and topographic mapping. Accuracy +/- 25m in each axis','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4719','EPSG','4326','EPSG','3188',44.0,211.0,147.0,111.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Chl Easter',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15807','Solomon 1968 to WGS 84 (2)','Derived at 1 satellite station.','Military and topographic mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4718','EPSG','4326','EPSG','3197',44.0,252.0,-209.0,-751.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Slb Guad',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15808','Diego Garcia 1969 to WGS 84 (1)','Derived at 2 satellite stations.','Military and topographic mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4724','EPSG','4326','EPSG','3189',44.0,208.0,-435.0,-229.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Iot Garcia',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15809','Johnston Island 1961 to WGS 84 (1)','Derived at 2 satellite stations. Note: NGA online html files carry a different dZ value - OGP believe this is an erroneous transcription from the TR8350.2 line above.','Military and topographic mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4725','EPSG','4326','EPSG','3201',44.0,189.0,-79.0,-202.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Umi Johnston',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15810','Kusaie 1951 to WGS 84 (1)','Derived at 1 satellite station.','Military and topographic mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4735','EPSG','4326','EPSG','3192',44.0,647.0,1777.0,-1124.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Fsm Carol',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15811','Antigua 1943 to WGS 84 (2)','Determined from 1 satellite station.','Military mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4601','EPSG','4326','EPSG','1273',44.0,-270.0,13.0,62.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Atg Ant',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15812','Deception Island to WGS 84 (1)','','Scientific mapping. Accuracy +/- 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4736','EPSG','4326','EPSG','3204',35.0,260.0,12.0,-147.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Ata Dec',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15813','South Georgia 1968 to WGS 84 (1)','Determined from 1 satellite station.','Military and topographic mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4722','EPSG','4326','EPSG','3529',44.0,-794.0,119.0,-298.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Sgs Sgeorg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15814','SIGD61 to WGS 84 (1)','Determined from 1 satellite station.','Military mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4726','EPSG','4326','EPSG','3186',44.0,42.0,124.0,147.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Cym Little Brac',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15815','Pico de las Nieves 1984 to WGS 84 (1)','Determined at 1 satellite station.','Military and topographic mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4728','EPSG','4326','EPSG','3873',44.0,-307.0,-92.0,127.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Esp Canary',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15816','Tristan 1968 to WGS 84 (1)','Determined at 1 satellite station.','Military and topographic mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4734','EPSG','4326','EPSG','3184',44.0,-632.0,438.0,-609.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Shn Tris',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15817','Midway 1961 to WGS 84 (1)','Derived at 1 satellite station. Information source states "provided for historical purposes only. These parameter [values] should not be used". Replaced by Midway 1961 to WGS 84 (2) (tfm code 15818).','Military and topographic mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4727','EPSG','4326','EPSG','3202',44.0,912.0,-58.0,1227.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Umi Midway 1987',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15818','Midway 1961 to WGS 84 (2)','Derived at 1 satellite station. Replaces Midway 1961 to WGS 84 (1) (tfm code 15817).','Military and topographic mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4727','EPSG','4326','EPSG','3202',44.0,403.0,-81.0,277.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Umi Midway 2003',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15819','Pitcairn 1967 to WGS 84 (1)','Derived at 1 satellite station.','Military and topographic mapping. Accuracy +/- 25 m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4729','EPSG','4326','EPSG','3208',44.0,185.0,165.0,42.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Pcn Pitcairn Isl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15820','Santo 1965 to WGS 84 (1)','Derived at 1 satellite station.','For military and topographic mapping. Accuracy 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4730','EPSG','4326','EPSG','3194',44.0,170.0,42.0,84.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Vut',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15821','Viti Levu 1916 to WGS 84 (1)','Derived at 1 satellite station.','For military and topographic mapping. Accuracy +/-25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4731','EPSG','4326','EPSG','3195',44.0,51.0,391.0,-36.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Fji',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15822','Marshall Islands 1960 to WGS 84 (1)','Derived at 10 satellite stations.','For military and topographic mapping. Accuracy +/-3 m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4732','EPSG','4326','EPSG','3191',6.0,102.0,52.0,-38.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Mhl 1960',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15823','Wake Island 1952 to WGS 84 (1)','Derived at 2 satellite stations.','For military and topographic mapping. Accuracy +/-25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4733','EPSG','4326','EPSG','3190',44.0,276.0,-57.0,149.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Mhl Wake',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15824','Old Hawaiian to WGS 84 (3)','Derived at 15 satellite stations.','Military mapping. Accuracy +/- 25m in X axis, +/- 20m in Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4135','EPSG','4326','EPSG','1334',38.0,61.0,-285.0,-181.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Usa HI 1987',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15825','Old Hawaiian to WGS 84 (4)','Derived at 2 satellite stations.','Military mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4135','EPSG','4326','EPSG','1546',44.0,89.0,-279.0,-183.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Usa HI Haw 1991',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15826','Old Hawaiian to WGS 84 (5)','Derived at 3 satellite stations.','Military mapping. Accuracy +/- 20m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4135','EPSG','4326','EPSG','1549',35.0,45.0,-290.0,-172.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Usa HI Kauai 1991',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15827','Old Hawaiian to WGS 84 (6)','Derived at 2 satellite stations.','Military mapping. Accuracy +/- 25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4135','EPSG','4326','EPSG','1547',44.0,65.0,-290.0,-190.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Usa HI Maui 1991',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15828','Old Hawaiian to WGS 84 (7)','Derived at 8 satellite stations.','Military mapping only. Accuracy +/- 10m in X axis, +/- 6m in Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4135','EPSG','4326','EPSG','1548',14.0,58.0,-283.0,-182.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Usa HI Oahu 1991',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15829','SIGD61 to WGS 84 (2)','Determined from 2 satellite stations.','Topographic survey. Accuracy +/- 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4726','EPSG','4326','EPSG','3186',1.0,44.4,109.0,151.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNO-Cym Little Brac',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15830','GCGD59 to WGS 84 (1)','Determined from 6 satellite stations.','Topographic survey. Accuracy +/- 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4723','EPSG','4326','EPSG','3185',1.0,67.8,106.1,138.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNO-Cym Grand',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15831','Korea 2000 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ITRF2000 is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4737','EPSG','4326','EPSG','1135',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Kor',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15832','RGPF to WGS 84 (1)','Transformation is to original definition of WGS 84. It is consistent with later WGS 84 realisations G730, G873 and G1150 to no better than 1m.','Accuracy +/- 0.5 metre (to original definition of WGS 84 - see remarks).','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4687','EPSG','4326','EPSG','1098',0.5,0.072,-0.507,-0.245,'EPSG','9001',0.0183,-0.0003,0.007,'EPSG','9104',-0.0093,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Pyf',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15833','RGPF to WGS 84 (2)','Approximation at the +/- 1m level assuming that RGPF is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4687','EPSG','4326','EPSG','1098',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Pyf',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15842','Hong Kong 1963(67) to WGS 84 (1)','Derived at 2 satellite stations. Care: does not use Hong Kong 1963 (code 4838) as the source CRS.','Military mapping. Accuracy +/- 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4739','EPSG','4326','EPSG','1118',1.0,-156.0,-271.0,-189.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UKHO-Hkg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15843','PZ-90 to WGS 84 (1)','Derived through Glonass and GPS at 30 stations throughout USSR - Former Soviet Union (FSU).','Geodetic applications. Accuracy better than 1.5 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4740','EPSG','4326','EPSG','1262',1.5,0.0,0.0,1.5,'EPSG','9001',0.0,0.0,-0.076,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GiK-World',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15844','Pulkovo 1942 to PZ-90 (1)','Derived through Glonass at 30 stations throughout USSR - Former Soviet Union (FSU). Mandated for use in Russia by GosStandard of Russia Decree #327 of August 9, 2001.','Accuracy within area of primary CS42 control = 1 to 2m; accuracy at distant points 3 to 4 m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4284','EPSG','4740','EPSG','2423',4.0,25.0,-141.0,-80.0,'EPSG','9001',0.0,-0.35,-0.66,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GiK-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15845','Pampa del Castillo to WGS 84 (1)','Transformation parameter precision given to millimetres in information source but due to accuracy rounded to nearest decimetre for EPSG database.','Geodetic surveying within the oil industry. Accuracy 25 m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4161','EPSG','4326','EPSG','1265',25.0,27.5,14.0,186.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNO-Arg ComRiv',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15846','Egypt Gulf of Suez S-650 TL to WGS 84 (2)','Sometime referred to as "Egypt 1907 to WGS 84". However, application to WGS 84 coordinates of the reverse of this tfm results in Gulf of Suez S-650 TL, not Egypt 1907, position. Gulf of Suez S-650 TL and Egypt 1907 CRSs differ by some 20 metres.','Used for oil exploration by GUPCO.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4706','EPSG','4326','EPSG','2341',5.0,-146.21,112.63,4.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Racal-Egy GoS',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15847','MOP78 to WGS 84 (2)','Replaces information from 2001 (tfm code 1925).','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4639','EPSG','4326','EPSG','2815',10.0,253.0,-132.0,-127.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Wlf Wallis',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15848','ST84 Ile des Pins to WGS 84 (2)','','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4642','EPSG','4326','EPSG','2820',10.0,-13.0,-348.0,292.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Ncl Pins',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15849','Beduaram to WGS 84 (2)','Used by Elf / CGG between December 1991 and March 1992. Probably derived from results of concatenated tfm Beduaram to WGS 84 (1) (code 8634).','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4213','EPSG','4326','EPSG','2771',15.0,-106.0,-87.0,188.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ELF-Ner SE 91',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15850','IGN 1962 Kerguelen to WGS 84 (1)','Also published in US NIMA/NGA TR8350.2 which gives accuracy of +/-25m in each axis and states that derived at one station.','Accuracy +/- 10 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4698','EPSG','4326','EPSG','2816',10.0,145.0,-187.0,103.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Atf Kerg',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15852','NAD27 to WGS 84 (80)','Developed by John E Chance and Associates. Replaced by NAD27 to WGS 84 (79) (tfm code 15851).','Oil exploration and production. Horizontal transformation accuracy (1 sigma) is considered to be at the +/- 5 meter level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','3358',5.0,-3.0,154.0,177.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'JECA-Usa GoM E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15853','NAD27 to WGS 84 (81)','Developed by John E Chance and Associates. Replaced by NAD27 to WGS 84 (79) (tfm code 15851).','Oil exploration and production. Horizontal transformation accuracy (1 sigma) is considered to be at the +/- 5 meter level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','3359',5.0,-7.0,151.0,175.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'JECA-Usa GoM C',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15854','NAD27 to WGS 84 (82)','Developed by John E Chance and Associates. Replaced by NAD27 to WGS 84 (79) (tfm code 15851).','Oil exploration and production. Horizontal transformation accuracy (1 sigma) is considered to be at the +/- 5 meter level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','3360',5.0,-7.0,151.0,178.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'JECA-Usa GoM W',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15855','NAD27 to WGS 84 (83)','Developed by John E Chance and Associates at 21°55''N, 97°20''W. Geoid height used =-17m.','Oil exploration and production. Horizontal transformation accuracy (1 sigma) is considered to be at the +/- 5 meter level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','3361',5.0,-8.0,125.0,190.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'JECA-Mex GoM Tam',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15856','NAD27 to WGS 84 (84)','Developed by EnSoCo Inc. Replaced by NAD27 to WGS 84 (79) (tfm code 15851).','Oil exploration and production. Accuracy 8 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','3357',8.0,-7.0,158.0,172.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ESC-Usa GoM',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15860','Mauritania 1999 to WGS 84 (1)','Mauritania 1999 can be considered to be the same as WGS 84 within the accuracy of this transformation.','Minerals management. Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4702','EPSG','4326','EPSG','1157',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Mau',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15865','Pulkovo 1942 to WGS 84 (16)','Derived via PZ-90 at 30 stations throughout USSR (Former Soviet Union, FSU) through concatenation of Pulkovo 1942 to PZ-90 (1) (tfm code 15844) and PZ-90 to WGS 84 (1) (tfm code 15843).','Accuracy 4.5 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4284','EPSG','4326','EPSG','2423',4.5,25.0,-141.0,-78.5,'EPSG','9001',0.0,-0.35,-0.736,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Rus',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15866','FD54 to ED50 (1)','Derived at 3 points in 1976. This transformation then used to define ED50 on the Faroe Islands.','Defines ED50 in the Faroe Islands: transformation therefore considered exact.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4741','EPSG','4230','EPSG','3248',0.0,-153.33,-169.41,86.39,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KMS-Fro',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15867','PD/83 to ETRS89 (1)','Derived at 10 points of the German GPS Network DREF.','For applications with an accuracy at the sub-metre level','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4746','EPSG','4258','EPSG','2544',1.0,599.4,72.4,419.2,'EPSG','9001',-0.062,-0.022,-2.723,'EPSG','9104',6.46,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BKG-Deu Thur',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15868','RD/83 to ETRS89 (1)','Derived in 2001 at 31 points of the German GPS Network DREF in former East Germany. Although for high accuracy limited to Saxony, may be taken as approximate transformation between DHDN and WGS 84 for all former East German states - see code 15869.','For applications with an accuracy at the sub-metre level.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4745','EPSG','4258','EPSG','2545',1.0,612.4,77.0,440.2,'EPSG','9001',-0.054,0.057,-2.797,'EPSG','9104',2.55,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BKG-Deu Sach',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15869','DHDN to WGS 84 (3)','Parameter values taken from RD/83 to ETRS89 (1) (tfm code 15868) assuming that within the accuracy of the transformation ETRS89 is equivalent to WGS 84 and RD/83 is equivalent to DHDN.','For applications with an accuracy at 2m level','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4326','EPSG','1343',2.0,612.4,77.0,440.2,'EPSG','9001',-0.054,0.057,-2.797,'EPSG','9104',2.55,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Deu E',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15870','Jouik 1961 to WGS 84 (1)','Derived at 5 points in 2002.','Hydrographic survey','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4679','EPSG','4326','EPSG','2967',1.0,-80.01,253.26,291.19,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Wood-Mrt',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15871','Nahrwan 1967 to WGS 84 (6)','Derived by concatenation of parameter values published by IGN Paris from Nahrwan 1967 to WGS 72 at the Nahrwan SE Base trig station near Baghdad with DMA WGS 72 to WGS 84 parameter values.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','3625',5.0,-242.2,-144.9,370.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Irq',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15872','Karbala 1979 to WGS 84 (1)','Derived from shifts in UTM rectangular coordinates for one point in Basra area provided by Iraq National Oil Exploration Company. Replaced by Karbala 1979 to WGS 84 (2) (tfm code 5078).','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4743','EPSG','4326','EPSG','3397',5.0,84.1,-320.1,218.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OEC-Irq Bas',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15873','Douala 1948 to WGS 84 (1)','Derived at Manoca tower assuming the pyramid on the tower and the centre of the tower reservoir are co-located. This assumption carries a few metres uncertainty.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4192','EPSG','4326','EPSG','2555',10.0,-206.1,-174.7,-87.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tot-Cmr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15874','Nord Sahara 1959 to WGS 84 (7)','Derived at 11 stations throughout blocks 317b, 319b, 321b and 322b. Network based on station P4 (horizontal) and benchmark RN51 (vertical) using EGM96 geoid height. Used by Statoil in Hassi Mouina.','Oil exploration and production. Accuracy 5m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4307','EPSG','4326','EPSG','3402',5.0,-169.559,-72.34,303.102,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ENG-Dza Mou',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15875','Fiji 1956 to WGS 84 (1)','Derived at 20 stations. Also published by NGA in GeoTrans v3.4 software with parameter values rounded to integer.','For military purposes. Accuracy 5m, 3m and 2m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4721','EPSG','4326','EPSG','3398',7.0,265.025,384.929,-194.046,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DGC-Fji',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15876','Fiji 1986 to WGS 84 (1)','Approximation at the +/- 2m level assuming that Fiji 1986 is equivalent to WGS 72. Parameter values taken from WGS 72 to WGS 84 (1) (tfm code 1237).','tbc','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4720','EPSG','4326','EPSG','1094',2.0,0.0,0.0,4.5,'EPSG','9001',0.0,0.0,0.554,'EPSG','9104',0.2263,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Fji',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15877','Fiji 1986 to WGS 84 (2)','Suitable for GIS mapping purposes but not rigorous surveying. Very similar results may be obtained through Fiji 1986 to WGS 84 (1) (tfm code 15876).','Horizontal accuracy 2m, vertical accuracy approximately 40 metres..','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4720','EPSG','4326','EPSG','3398',40.0,-35.173,136.571,-36.964,'EPSG','9001',1.37,-0.842,-4.718,'EPSG','9104',-1.537,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'FD-Fji',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15878','Vanua Levu 1915 to WGS 84 (1)','Parameter values taken from Viti Levu 1912 to WGS 84 (1) (tfm code 15897). Approximation at the +/- 50m level assuming that CRS 4748 is equivalent to CRS 4752 within the transformation accuracy. Source CRSs 4748 and 4752 are independent but connected.','For applications with an accuracy of +/-50m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4748','EPSG','4326','EPSG','3401',50.0,51.0,391.0,-36.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Fji',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15879','GR96 to WGS 84 (1)','Approximation at the +/- 1m level assuming that GR96 is equivalent to WGS 84 within the accuracy of the transformation.','For applications with an accuracy of +/- 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4747','EPSG','4326','EPSG','1107',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Grl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15880','RGNC91-93 to WGS 84 (1)','','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4749','EPSG','4326','EPSG','1174',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15881','ST87 Ouvea to WGS 84 (2)','Parameter values taken from ST87 Ouvea to RGNC91-93 (1) ( code 15885) assuming that RGNC91-93 is equivalent to WGS 84 to within the accuracy of the transformation.','Accuracy better than +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4750','EPSG','4326','EPSG','2813',1.0,-56.263,16.136,-22.856,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15882','IGN72 Grande Terre to RGNC91-93 (1)','Determined in May 2001. May be taken as approximate transformation to WGS 84 - see IGN72 Grande Terre to WGS 84 (3) (code 15903).','Accuracy better than +/- 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4662','EPSG','4749','EPSG','2822',2.0,-11.64,-348.6,291.98,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 2m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15883','IGN56 Lifou to RGNC91-93 (1)','Determined in April 1993. May be taken as approximate transformation to WGS 84 - see IGN56 Lifou to WGS 84 (3) (code 15902).','Accuracy better than +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4633','EPSG','4749','EPSG','2814',1.0,335.47,222.58,-230.94,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15884','IGN53 Mare to RGNC91-93 (1)','Determined in April 1993, modified in December 1999. May be taken as approximate transformation to WGS 84: see IGN53 Mare to WGS 84 (3) (code 15901).','Accuracy better than +/- 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4641','EPSG','4749','EPSG','2819',2.0,287.58,177.78,-135.41,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15885','ST87 Ouvea to RGNC91-93 (1)','Determined in December 1999. May be used as approximate transformation to WGS 84 - see ST87 Ouvea to WGS 84 (2) (code 15881).','Accuracy better than +/- 0.5 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4750','EPSG','4749','EPSG','2813',0.5,-56.263,16.136,-22.856,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15886','NEA74 Noumea to RGNC91-93 (1)','Determined in July 2000. May be taken as approximate transformation to WGS 84 - see NEA74 Noumea to WGS 84 (3) (code 15904).','Accuracy better than +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4644','EPSG','4749','EPSG','2823',1.0,-10.18,-350.43,291.37,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15887','IGN72 Grande Terre to RGNC91-93 (2)','Determined in April 1993.','Accuracy better than +/- 0.3 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4662','EPSG','4749','EPSG','2822',0.3,97.297,-263.243,310.879,'EPSG','9001',1.5999,-0.8387,-3.1409,'EPSG','9104',13.326,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15888','IGN72 Grande Terre to RGNC91-93 (3)','Determined in July 2000','Accuracy better than +/- 0.1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4662','EPSG','4749','EPSG','2823',0.1,48.812,-205.932,343.993,'EPSG','9001',3.4427,0.4999,-4.0878,'EPSG','9104',6.5215,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl Noum 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15889','NEA74 Noumea to RGNC91-93 (2)','Determined in May 2001','Accuracy better than +/- 0.1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4644','EPSG','4749','EPSG','2823',0.1,-166.0684,-154.7826,254.8282,'EPSG','9001',37.546,-7.7018,10.2029,'EPSG','9104',-30.84,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15890','IGN56 Lifou to RGNC91-93 (2)','Determined in April 1993.','Accuracy better than +/- 0.1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4633','EPSG','4749','EPSG','2814',0.1,137.092,131.675,91.478,'EPSG','9001',1.9435,11.5995,4.3316,'EPSG','9104',-7.4801,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15891','IGN53 Mare to RGNC91-93 (2)','Determined in April 1993, modified in December 1999.','Accuracy better than +/- 0.1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4641','EPSG','4749','EPSG','2819',0.1,-408.809,366.857,-412.987,'EPSG','9001',-1.8843,0.5308,-2.1657,'EPSG','9104',-121.0994,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15892','ST87 Ouvea to RGNC91-93 (2)','Determined in December 1999.','Accuracy better than +/- 0.1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4750','EPSG','4749','EPSG','2813',0.1,-122.386,-188.707,103.334,'EPSG','9001',-3.511,4.9665,5.7048,'EPSG','9104',4.4799,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15893','ST84 Ile des Pins to RGNC91-93 (1)','Determined in December 1999.','Accuracy better than +/- 0.1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4642','EPSG','4749','EPSG','2820',0.1,244.42,85.352,168.129,'EPSG','9001',8.936,-7.752,-12.5952,'EPSG','9104',14.2723,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl 0.1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15894','SIRGAS 2000 to WGS 84 (1)','','Accuracy 1m.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4674','EPSG','4326','EPSG','3418',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-C&S America',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15896','Kertau (RSO) to Kertau 1968 (1)','To transform Kertau (RSO) to WGS 84, see concatenated transformation code 8659.','For transformation of MRT68 RSO grid coordinates to other datums.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4751','EPSG','4245','EPSG','1309',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Mys',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15897','Viti Levu 1912 to WGS 84 (1)','Derived at 1 satellite station. Replaced by Viti Levu 1912 to WGS 84 (2) (code 6895).','For military and topographic mapping. Accuracy +/-25m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4752','EPSG','4326','EPSG','3195',44.0,51.0,391.0,-36.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMA-Fji',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15898','Qornoq to GR96 (1)','Derived via NWL 9D.','For applications with an accuracy of +/- 1m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4747','EPSG','4747','EPSG','1107',1.0,163.511,127.533,-159.789,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.6,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KMS-Grl',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15899','Scoresbysund 1952 to GR96 (1)','Derived via NWL 9D.','For applications with an accuracy of +/- 1m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4195','EPSG','4747','EPSG','2570',1.0,105.0,326.0,-102.5,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.6,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KMS-Grl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15900','Ammassalik 1958 to GR96 (1)','Derived via NWL 9D.','For applications with an accuracy of +/- 1m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4196','EPSG','4747','EPSG','2571',1.0,-45.0,417.0,-3.5,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.6,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KMS-Grl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15901','IGN53 Mare to WGS 84 (3)','Parameter values taken from IGN53 Mare to RGNC91-93 (1) ( code 15884) assuming that RGNC91-93 is equivalent to WGS 84 to within the accuracy of the transformation.','Accuracy 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4641','EPSG','4326','EPSG','2819',2.0,287.58,177.78,-135.41,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15902','IGN56 Lifou to WGS 84 (3)','Parameter values taken from IGN56 Lifou to RGNC91-93 (1) ( code 15883) assuming that RGNC91-93 is equivalent to WGS 84 to within the accuracy of the transformation.','Accuracy 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4633','EPSG','4326','EPSG','2814',1.0,335.47,222.58,-230.94,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15903','IGN72 Grande Terre to WGS 84 (3)','Parameter values taken from IGN72 Grande Terre to RGNC91-93 (1) ( code 15882) assuming that RGNC91-93 is equivalent to WGS 84 to within the accuracy of the transformation.','Accuracy +/- 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4662','EPSG','4326','EPSG','2822',2.0,-11.64,-348.6,291.98,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15904','NEA74 Noumea to WGS 84 (2)','Parameter values taken from NEA74 Noumea to RGNC91-93 (1) ( code 15886) assuming that RGNC91-93 is equivalent to WGS 84 to within the accuracy of the transformation.','Accuracy 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4644','EPSG','4326','EPSG','2823',1.0,-10.18,-350.43,291.37,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGN-Ncl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15908','LGD2006 to WGS 84 (1)','Derived at 5 stations throughout Libya used to define LGD2006 in May 2006.','For applications to an accuracy of 0.1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4754','EPSG','4326','EPSG','1143',0.1,-208.4058,-109.8777,-2.5764,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SDL-Lby',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15909','ELD79 to WGS 84 (8)','Derived at 29 stations throughout Libya in May 2006.','For applications to an accuracy of 5 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4159','EPSG','4326','EPSG','3271',5.0,-115.8543,-99.0583,-152.4616,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SDL-Lby',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15910','ELD79 to LGD2006 (1)','Derived at 29 stations throughout Libya in May 2006.','For applications to an accuracy of 2 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4159','EPSG','4754','EPSG','3271',5.0,-92.5515,-10.8194,149.8852,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SDL-Lby',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15911','ID74 to DGN95 (1)','Derived at 38 stations. May be taken as a tfm ID74 to WGS 84 - see tfm 1833.','Standard deviations of translations are 1.3, 1.1 and 3.6m, of rotations 0.11, 0.06 and 0.04 sec and ppm 0.18.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4238','EPSG','4755','EPSG','4020',3.0,-1.977,-13.06,-9.993,'EPSG','9001',-0.364,-0.254,-0.689,'EPSG','9104',-1.037,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Bak-Idn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15912','DGN95 to WGS 84 (1)','Approximation at the +/- 1m level assuming that DGN95 is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4755','EPSG','4326','EPSG','1122',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Idn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15913','NAD27 to WGS 84 (86)','Developed by John E Chance and Associates at 21°33''N, 92°33''W. Geoid height used =-16.7m.','Oil exploration and production. Horizontal transformation accuracy (1 sigma) is considered to be at the +/- 5 meter level.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','3461',5.0,0.0,125.0,196.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'JECA-Mex GoM CamN',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15918','Beijing 1954 to WGS 84 (1)','Provided by BGP to TOTAL in June 2006.','Geophysical exploration in Ordos basin. Accuracy stated as 1m within basin.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4214','EPSG','4326','EPSG','3466',1.0,12.646,-155.176,-80.863,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGP-Chn Ord',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15919','Beijing 1954 to WGS 84 (2)','Derived via WGS 72BE. Original transformation derived in 1979 at 4 stations on Yellow Sea coast.','Geophysical exploration in Yellow Sea.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4214','EPSG','4326','EPSG','3469',15.0,15.53,-113.82,-41.38,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BP-Chn YS',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15920','Beijing 1954 to WGS 84 (3)','Derived via WGS 72BE. Original transformation derived by GSI in 1980-81. The GSI memo incorrectly gave the parameters as from WGS 72 to Beijing 1954, but it has been determined by the OGP that the memo should have stated from Beijing 1954 to WGS 72BE.','Geophysical exploration in South China Sea.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4214','EPSG','4326','EPSG','3470',15.0,31.4,-144.3,-74.8,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Chn SCS',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15921','Beijing 1954 to WGS 84 (4)','Provided by BGP to ELF in 1994.','Geophysical exploration in Tarim basin. Accuracy stated as 1m within basin.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4214','EPSG','4326','EPSG','3507',1.0,15.8,-154.4,-82.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BGP-Chn Tarim',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15923','ELD79 to WGS 84 (9)','Derived by SDL for Total in Cyrenaica blocks 2 & 4.','Oil and gas exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4159','EPSG','4326','EPSG','3477',2.0,-117.7,-100.3,-152.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-Lby Cyr',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15924','ELD79 to LGD2006 (1)','Derived at 29 stations throughout Libya in May 2006.','For applications to an accuracy of 5 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4159','EPSG','4754','EPSG','3271',5.0,92.5515,10.8194,-149.8852,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SDL-Lby',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15925','JAD2001 to WGS 84 (1)','','For all practical purposes JAD2001 can be considered to be coincident with WGS 84.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4758','EPSG','4326','EPSG','1128',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLA-Jam',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15926','JAD69 to JAD2001 (1)','May be used as tfm to WGS 84 - see JAD69 to WGS 84 (3) (tfm code 15927).','Accuracy 0.3 to 0.5 metres.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4242','EPSG','4758','EPSG','3342',0.5,-33.722,153.789,94.959,'EPSG','9001',8.581,4.478,-4.54,'EPSG','9104',8.95,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLA-Jam',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15927','JAD69 to WGS 84 (3)','Derived at 4 stations, tested at a further 9. Also used as tfm to JAD69 to JAD2001 (see code 15926).¶Note: Info source paper contains an error in sign of dS, subsequently confirmed by primary author and NLA of Jamaica, and corrected in this record.','For applications requiring 1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4242','EPSG','4326','EPSG','3342',1.0,-33.722,153.789,94.959,'EPSG','9001',8.581,4.478,-4.54,'EPSG','9104',8.95,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UT-Jam 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15928','BD72 to ETRS89 (2)','May be taken as approximate transformation BD72 to WGS 84 - see code 15929. Scale difference is given by information source as -1.0000012747. Given in this record in ppm to assist application usage.','For applications to an accuracy of 0.2 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4313','EPSG','4258','EPSG','1347',0.2,-106.8686,52.2978,-103.7239,'EPSG','9001',-0.3366,0.457,-1.8422,'EPSG','9104',-1.2747,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Bel 0.2m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15929','BD72 to WGS 84 (3)','Parameter values from BD72 to ETRS89 (2) (code 15928) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the tfm. Scale difference is given by information source as -1.0000012747; given in this record in ppm to assist application usage.','For applications to an accuracy of 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4313','EPSG','4326','EPSG','1347',1.0,-106.8686,52.2978,-103.7239,'EPSG','9001',-0.3366,0.457,-1.8422,'EPSG','9104',-1.2747,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Bel 1m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15930','NAD83(HARN) to NAD83(NSRS2007) (1)','Accuracy 0.1 to 0.2m in California, 0.05-0.11 in Oregon, elsewhere better than 0.05m.','For applications to an accuracy of 0.2 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4152','EPSG','4326','EPSG','1323',0.1,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-USA conus',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15931','NAD83(NSRS2007) to WGS 84 (1)','Approximation at the +/- 1m level assuming that NAD83(NSRS2007) is equivalent to WGS 84 within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4759','EPSG','4326','EPSG','1511',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-USA conus AK',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15934','Amersfoort to WGS 84 (3)','Parameter values from Amersfoort to ETRS89 (3) (tfm code 15739) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. Replaces Amersfoort to WGS 84 (2) (code 1672). Replaced by Amersfoort to WGS 84 (4) (tfm code 4833).','Approximation at the +/- 1m level.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4289','EPSG','4326','EPSG','1275',1.0,565.2369,50.0087,465.658,'EPSG','9001',1.9725,-1.7004,9.0677,'EPSG','9109',4.0812,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Nld',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15935','Beijing 1954 to WGS 84 (5)','Concatenated via WGS 72BE. Recomputation by Shelltech in 1981 of SSB 1980 observation.','Geophysical exploration in Bei Bu basin. Accuracy stated as 1m within basin.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4214','EPSG','4326','EPSG','3561',10.0,18.0,-136.8,-73.7,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shlt-Chn BeiBu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15936','Beijing 1954 to WGS 84 (6)','Provided by Sinopec to TOTAL in January 2007.','Geophysical exploration in Ordos basin. Accuracy stated as 1m within basin.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4214','EPSG','4326','EPSG','3466',1.0,11.911,-154.833,-80.079,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sino-Chn Ord',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15937','Nahrwan 1967 to WGS 84 (7)','Parameter values adopted by Total are mean of those derived by Oceonics and Geoid through ties at station TC58 to 4 IGS stations in March 1995.','Oil exploration.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','3509',2.0,-245.8,-152.2,382.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TOT-UAE Abd',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15938','Nahrwan 1967 to WGS 84 (8)','Derived via WGS 72BE from Transit observations at station TC58 in 1976 by BP for ADMA.','Oil exploration.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','3509',5.0,-225.4,-158.7,380.8,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ADMA-UAE Abd',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15952','Nahrwan 1967 to WGS 84 (9)','Used by DPC for Al Fateh field. Applying this transformation gives same result as Nahrwan 1967 to WGS 84 (8) (code 15938).','Oil exploration and production.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','3530',5.0,-244.2,-149.8,379.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DPC-UAE Fat',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15953','Nahrwan 1967 to WGS 84 (10)','Used by Dubai Municipality before 1994.','Municipal operations.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4270','EPSG','4326','EPSG','3531',5.0,-250.7,-157.9,380.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Dub-UAE Dub',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15957','Qornoq 1927 to GR96 (1)','Derived via NWL 9D.','For applications with an accuracy of +/- 1m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4194','EPSG','4747','EPSG','3362',1.0,163.511,127.533,-159.789,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.6,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KMS-Grl',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15963','Yacare to SIRGAS (1)','Derived at 11 stations during 1998 densification of Uruguay control based on SIRAGAS 1995.','Accuracy at stations used for derivation: 0.13 to 1.17m.','EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4309','EPSG','4170','EPSG','1247',1.5,-124.45,183.74,44.64,'EPSG','9001',-0.4384,0.5446,-0.9706,'EPSG','9104',-2.1365,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SGM-Ury',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15964','ED50 to WGS 84 (42)','Developed by the Portuguese Hydrographic Institute and used by the Directorate of Energy and Geology.','Hydrography and minerals management offshore Portugal.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','3537',5.0,-86.277,-108.879,-120.181,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DGEG-Por off',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15965','S-JTSK to WGS 84 (3)','Derived at 6 stations.','For military purposes. Accuracy 4m, 2m and 3m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4156','EPSG','4326','EPSG','1306',6.0,589.0,76.0,480.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Cze',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15966','HTRS96 to ETRS89 (1)','May be taken as approximate transformation HTRS96 to WGS 84 - see code 15967.','HTRS96 is a national realization of ETRS89.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4761','EPSG','4258','EPSG','1076',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Hrv',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15967','HTRS96 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84. HTRS96 is a regional realisation of ETRS89.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4761','EPSG','4326','EPSG','1076',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Hrv',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15969','Bermuda 1957 to BDA2000 (1)','Derived in 1998 at 12 stations. May be taken as approximate transformation Bermuda 1957 to WGS 84 - see code 15970.','Accuracy +/- 1 metre. Used for transformation of 1:2500 mapping.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4216','EPSG','4762','EPSG','3221',1.0,-292.295,248.758,429.447,'EPSG','9001',-4.9971,-2.99,-6.6906,'EPSG','9104',1.0289,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LBS-Bmu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15970','Bermuda 1957 to WGS 84 (2)','Parameter values from Bermuda 1957 to BDA2000 (1) (code 15969). Assumes BDA2000 and WGS 84 can be considered the same to within the accuracy of the transformation.','Accuracy +/- 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4216','EPSG','4326','EPSG','3221',1.0,-292.295,248.758,429.447,'EPSG','9001',-4.9971,-2.99,-6.6906,'EPSG','9104',1.0289,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bmu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15971','BDA2000 to WGS 84 (1)','Approximation at the +/- 1m level assuming that BDA2000 is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4762','EPSG','4326','EPSG','1047',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bmu',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15972','Pitcairn 2006 to WGS 84 (1)','Approximation at the +/- 1m level assuming that Pitcairn 2006 is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4763','EPSG','4326','EPSG','3208',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Pcn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15973','Popular Visualisation CRS to WGS 84 (1)','Executes change of sphere/ellipsoid','Web mapping. Accuracy may be no better than 800 metres.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4055','EPSG','4326','EPSG','1262',800.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-web',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15974','RSRGD2000 to WGS 84 (1)','Approximation at the +/- 1m level assuming that RSRGD2000 is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4764','EPSG','4326','EPSG','3558',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Ata',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15975','NZGD49 to WGS 84 (4)','These parameter values are taken from NZGD49 to NZGD2000 (1) (code 1566) and assume that NZGD2000 and WGS 84 are coincident to within the accuracy of the tfm. For better accuracy use NZGD49 to WGS 84 (2) (code 1564) or NZGD49 to WGS 84 (3) (code 1670).','5m accuracy.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4272','EPSG','4326','EPSG','3285',5.0,54.4,-20.1,183.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Nzl 5m',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15976','Slovenia 1996 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4765','EPSG','4326','EPSG','1212',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Svn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15977','Slovenia 1996 to ETRS89 (1)','Slovenia 1996 is a local densification of ETRS89.','Accuracy +/- 1 metre.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4765','EPSG','4258','EPSG','1212',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Svn',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15978','NAD27 to WGS 84 (88)','','Accuracy 1m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4267','EPSG','4326','EPSG','1077',1.0,2.478,149.752,197.726,'EPSG','9001',-0.526,-0.498,0.501,'EPSG','9104',0.685,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ONHG-Cub',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15979','AGD66 to GDA94 (12)','Use only offshore: onshore, tfms 1458 (ACT), 1594 (Tas), 1460 (NSW and Vic) and 1595 (NT) are more accurate.May be used as a tfm to WGS 84 - see code 15980.','3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4283','EPSG','3559',3.0,-117.808,-51.536,137.784,'EPSG','9001',-0.303,-0.446,-0.234,'EPSG','9104',-0.29,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ICSM-Aus off',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15980','AGD66 to WGS 84 (18)','Parameter values from AGD66 to GDA94 (12) (code 15979). Assumes GDA94 and WGS 84 can be considered the same to within the accuracy of the transformation. Use only offshore: onshore tfms 1665-68 for ACT, NSW/Vic, Tas and NT respectively are more accurate.','3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4202','EPSG','4326','EPSG','3559',3.0,-117.808,-51.536,137.784,'EPSG','9001',-0.303,-0.446,-0.234,'EPSG','9104',-0.29,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Aus off',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15981','MGI to Slovenia 1996 (1)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible. May be taken as approximate tfm MGI to WGS 84 (see code 15982)','1m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','1212',1.0,409.545,72.164,486.872,'EPSG','9001',-3.085957,-5.46911,11.020289,'EPSG','9104',17.919665,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15982','MGI to WGS 84 (9)','Parameter values from MGI to Slovenia 1996 (1) (code 15981). Assumes Slovenia 1996 and WGS 84 can be considered the same to within the accuracy of the transformation.','For applications to an accuracy of 1 metre.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4326','EPSG','1212',1.0,409.545,72.164,486.872,'EPSG','9001',-3.085957,-5.46911,11.020289,'EPSG','9104',17.919665,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Svn 96',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15983','MGI to Slovenia 1996 (2)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.5m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','3564',0.5,315.393,186.223,499.609,'EPSG','9001',-6.445954,-8.131631,13.208641,'EPSG','9104',23.449046,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn W',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15984','MGI to Slovenia 1996 (3)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.5m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','3565',0.5,464.939,-21.478,504.497,'EPSG','9001',0.403,-4.228747,9.954942,'EPSG','9104',12.795378,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn NE',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15985','MGI to Slovenia 1996 (4)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.5m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','3566',0.5,459.968,82.193,458.756,'EPSG','9001',-3.565234,-3.700593,10.860523,'EPSG','9104',15.507563,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn SE 0.5m',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15986','MGI to Slovenia 1996 (5)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','3567',0.3,427.914,105.528,510.908,'EPSG','9001',-4.992523,-5.898813,10.306673,'EPSG','9104',12.431493,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn SE 0.3m',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15987','MGI to Slovenia 1996 (6)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','3568',0.3,468.63,81.389,445.221,'EPSG','9001',-3.839242,-3.262525,10.566866,'EPSG','9104',16.132726,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn Dol',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15988','MGI to Slovenia 1996 (7)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','3569',0.3,439.5,-11.77,494.976,'EPSG','9001',-0.026585,-4.65641,10.155824,'EPSG','9104',16.270002,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn Staj',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15989','MGI to Slovenia 1996 (8)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','3570',0.3,524.442,3.275,519.002,'EPSG','9001',0.013287,-3.119714,10.232693,'EPSG','9104',4.184981,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn Pom',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15990','MGI to Slovenia 1996 (9)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','3571',0.3,281.529,45.963,537.515,'EPSG','9001',-2.570437,-9.648271,10.759507,'EPSG','9104',26.465548,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn Gor',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15991','MGI to Slovenia 1996 (10)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','3572',0.3,355.845,274.282,462.979,'EPSG','9001',-9.086933,-6.491055,14.502181,'EPSG','9104',20.888647,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn Prim',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15992','MGI to Slovenia 1996 (11)','Info source also gives a separate reverse tfm with slightly different parameter values. Given the tfm accuracy these differences are not significant and this tfm can be considered reversible.','0.3m accuracy.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4765','EPSG','3573',0.3,400.629,90.651,472.249,'EPSG','9001',-3.261138,-5.263404,11.83739,'EPSG','9104',20.022676,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GuRS-Svn cen',1); INSERT INTO "helmert_transformation" VALUES('EPSG','15993','Pulkovo 1942(58) to ETRS89 (3)','Withdrawn and replaced by S-42 to ETRS89 (4) (tfm code 15994). Consistent with Transdat v2.0 to better than 10m.','Accuracy 5-10m.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4179','EPSG','4258','EPSG','1197',10.0,68.1564,32.7756,80.2249,'EPSG','9001',2.20333014,2.19256447,-2.54166911,'EPSG','9104',-0.14155333,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ANCPI-Rom 2007',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15994','Pulkovo 1942(58) to ETRS89 (4)','Replaces S-42 to ETRS89 (3) (tfm code 15993). Consistent with Transdat v3.0 to better than 0.5m. May be taken as approximate transformation Pulkovo 1942(58) to WGS 84 - see code 15995.','Accuracy of 1.5 to 3 metres horizontal, 3 to 5m vertical.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4179','EPSG','4258','EPSG','1197',3.0,2.3287,-147.0425,-92.0802,'EPSG','9001',0.3092483,-0.32482185,-0.49729934,'EPSG','9104',5.68906266,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ANCPI-Rom 2008',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15995','Pulkovo 1942(58) to WGS 84 (19)','Parameter values taken from Pulkovo 1942(58) to ETRS89 (4) (code 15994) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy of 1.5 to 3 metres horizontal, 3 to 5m vertical.','EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4179','EPSG','4326','EPSG','1197',3.0,2.329,-147.042,-92.08,'EPSG','9001',0.309,-0.325,-0.497,'EPSG','9104',5.69,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Rom',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15996','Pulkovo 1942(83) to WGS 84 (3)','Derived at 5 stations.','For military purposes. Accuracy 2m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4178','EPSG','4326','EPSG','1119',4.0,28.0,-121.0,-77.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Hun',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15997','Pulkovo 1942(58) to WGS 84 (4)','Derived at 11 stations.','For military purposes only. Accuracy 4m, 2m and 4m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4179','EPSG','4326','EPSG','3293',6.0,23.0,-124.0,-82.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Pol',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15998','Pulkovo 1942(83) to WGS 84 (5)','Derived at 6 stations.','For military purposes only. Accuracy 3m, 3m and 2m in X, Y and Z axes.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4178','EPSG','4326','EPSG','1306',5.0,26.0,-121.0,-78.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Cze',0); INSERT INTO "helmert_transformation" VALUES('EPSG','15999','Pulkovo 1942(58) to WGS 84 (8)','Derived at 7 stations.','For military purposes. Accuracy 3m in each axis.','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4179','EPSG','4326','EPSG','3212',6.0,24.0,-130.0,-92.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NIMA-Alb',0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "grid_transformation" VALUES('EPSG','1068','Guam 1963 to NAD83(HARN) (1)','NADCON method which expects longitudes positive west; EPSG GeogCRSs Guam 1963 and NAD83(HARN) (codes 4675 and 4152) have longitudes positive east. Can be used as approximation for tfm between Guam 1963 and WGS 84 - see tfm code 1069.','Geodetic survey. Accuracy 3 m in each component, 1 sigma.','EPSG','9613','NADCON','EPSG','4675','EPSG','4152','EPSG','3255',5.0,'EPSG','8657','Latitude difference file','guhpgn.las','EPSG','8658','Longitude difference file','guhpgn.los',NULL,NULL,'NGS-Gum',0); INSERT INTO "grid_transformation" VALUES('EPSG','1069','Guam 1963 to WGS 84 (2)','Parameter files are from Guam 1963 to NAD83(HARN) (1) (code 1068), but for many purposes NAD83(HARN) can be considered to be coincident with WGS 84 within the accuracy of the transformation.','Accuracy 5m.','EPSG','9613','NADCON','EPSG','4675','EPSG','4326','EPSG','3255',5.0,'EPSG','8657','Latitude difference file','guhpgn.las','EPSG','8658','Longitude difference file','guhpgn.los',NULL,NULL,'EPSG-Gum',0); INSERT INTO "grid_transformation" VALUES('EPSG','1241','NAD27 to NAD83 (1)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRS NAD27 (code 4267) and NAD83 (code 4269) have longitudes positive east.','Accuracy at 67% confidence level is 0.15m onshore, 5m nearshore and undetermined farther offshore.','EPSG','9613','NADCON','EPSG','4267','EPSG','4269','EPSG','2374',0.15,'EPSG','8657','Latitude difference file','conus.las','EPSG','8658','Longitude difference file','conus.los',NULL,NULL,'NGS-Usa Conus',0); INSERT INTO "grid_transformation" VALUES('EPSG','1243','NAD27 to NAD83 (2)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRS NAD27 (code 4267) and NAD83 (code 4269) have longitudes positive east. May be used as transformation to WGS 84 - see NAD27 to WGS 84 (85) (code 15864).','Accuracy at 67% confidence level is 0.5m onshore, 5m nearshore and undetermined farther offshore.','EPSG','9613','NADCON','EPSG','4267','EPSG','4269','EPSG','2373',0.5,'EPSG','8657','Latitude difference file','alaska.las','EPSG','8658','Longitude difference file','alaska.los',NULL,NULL,'NGS-Usa AK',0); INSERT INTO "grid_transformation" VALUES('EPSG','1295','RGNC91-93 to NEA74 Noumea (4)','Emulation using NTv2 method of tfm NEA74 Noumea to RGNC91-93 (3) (code 9328). Note reversal of sign of parameter values in grid file.','Accuracy 5-10cm.','EPSG','9615','NTv2','EPSG','4749','EPSG','4644','EPSG','2823',0.05,'EPSG','8656','Latitude and longitude difference file','RGNC1991_NEA74Noumea.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ESRI-Ncl 0.05m',0); INSERT INTO "grid_transformation" VALUES('EPSG','1312','NAD27 to NAD83 (3)','Uses NTv1 method. Replaced in Quebec by code 1462 and elsewhere in 1997 by NTv2 (transformation code 1313). Input expects longitudes to be positive west; EPSG GeogCRS NAD27 (code 4267) and NAD83 (code 4269) have longitudes positive east.','Historic record only - now superseded - see remarks.','EPSG','9614','NTv1','EPSG','4267','EPSG','4269','EPSG','1061',1.0,'EPSG','8656','Latitude and longitude difference file','NTv1_0.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'GC-Can NT1',0); INSERT INTO "grid_transformation" VALUES('EPSG','1313','NAD27 to NAD83 (4)','Uses NTv2 data files. Replaces NTv1 (transformation code 1312) except in Quebec. Input expects longitudes to be positive west; EPSG GeogCRS NAD27 (code 4267) and (code 4269) have longitudes positive east. May be used as tfm to WGS 84 - see code 1693.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4267','EPSG','4269','EPSG','4517',1.5,'EPSG','8656','Latitude and longitude difference file','NTv2_0.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'GC-Can NT2',0); INSERT INTO "grid_transformation" VALUES('EPSG','1451','NAD27(CGQ77) to NAD83 (1)','Replaced by NAD27(CGQ77) to NAD83 (2) (code 1575). Uses NT method which expects longitudes positive west; EPSG GeogCRSs CGQ77 (code 4609) and NAD83 (code 4269) have longitudes positive east.','Historic record only - now superseded - see remarks.','EPSG','9614','NTv1','EPSG','4609','EPSG','4269','EPSG','1368',1.0,'EPSG','8656','Latitude and longitude difference file','PQV4.DAC',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC NT1',0); INSERT INTO "grid_transformation" VALUES('EPSG','1454','Old Hawaiian to NAD83 (1)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs Old Hawaiian (code 4135) and NAD83 (code 4269) have longitudes positive east. NADCON data converts from Old Hawaiian Datum but makes the transformation appear to be from NAD27.','Accuracy at 67% confidence level is 0.2m.','EPSG','9613','NADCON','EPSG','4135','EPSG','4269','EPSG','1334',0.2,'EPSG','8657','Latitude difference file','hawaii.las','EPSG','8658','Longitude difference file','hawaii.los',NULL,NULL,'NGS-Usa HI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1455','St. Lawrence Island to NAD83 (1)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs St. Lawrence (code 4136) and NAD83 (code 4269) have longitudes positive east. NADCON data converts from St. Lawrence Datum to but makes the transformation appear to be from NAD27.','Accuracy 0.5m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4136','EPSG','4269','EPSG','1332',0.5,'EPSG','8657','Latitude difference file','stlrnc.las','EPSG','8658','Longitude difference file','stlrnc.los',NULL,NULL,'NGS-Usa AK StL',0); INSERT INTO "grid_transformation" VALUES('EPSG','1456','St. Paul Island to NAD83 (1)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs St. Paul (code 4137) and NAD83 (code 4269) have longitudes positive east. NADCON data converts from St. Paul Datum to but makes the transformation appear to be from NAD27.','Accuracy 0.5m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4137','EPSG','4269','EPSG','1333',0.5,'EPSG','8657','Latitude difference file','stpaul.las','EPSG','8658','Longitude difference file','stpaul.los',NULL,NULL,'NGS-Usa AK StP',0); INSERT INTO "grid_transformation" VALUES('EPSG','1457','St. George Island to NAD83 (1)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs St. George (code 4138) and NAD83 (code 4269) have longitudes positive east. NADCON data converts from St. George Datum to but makes the transformation appear to be from NAD27.','Accuracy 0.5m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4138','EPSG','4269','EPSG','1331',0.5,'EPSG','8657','Latitude difference file','stgeorge.las','EPSG','8658','Longitude difference file','stgeorge.los',NULL,NULL,'NGS-Usa AK StG',0); INSERT INTO "grid_transformation" VALUES('EPSG','1461','Puerto Rico to NAD83 (1)','May be taken as approximate transformation Puerto Rico-WGS 84 - see code 15841.','Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4139','EPSG','4269','EPSG','1335',0.05,'EPSG','8657','Latitude difference file','prvi.las','EPSG','8658','Longitude difference file','prvi.los',NULL,NULL,'NGS-PRVI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1462','NAD27 to NAD83 (5)','Densification for Quebec of code 1312. Replaced by NAD27 to NAD83 (6) (code 1573). Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD27 (code 4267) and NAD83 (code 4269) have longitudes positive east.','Historic record only - now superseded - see remarks.','EPSG','9614','NTv1','EPSG','4267','EPSG','4269','EPSG','1368',1.0,'EPSG','8656','Latitude and longitude difference file','GS2783v1.QUE',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC NT1',0); INSERT INTO "grid_transformation" VALUES('EPSG','1463','NAD27(76) to NAD83 (1)','Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD27(76) (code 4608) and NAD83 (code 4269) have longitudes positive east. May be taken as approximate transformation NAD27(76) to WGS 84 - see code 1690.','Not known.','EPSG','9615','NTv2','EPSG','4608','EPSG','4269','EPSG','1367',1.0,'EPSG','8656','Latitude and longitude difference file','May76v20.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can Ont',0); INSERT INTO "grid_transformation" VALUES('EPSG','1464','AGD66 to GDA94 (5)','Replaced by AGD66 to GDA94 (10) (code 1596) and then by AGD66 to GDA94 (11) (code 1803). Input expects longitudes to be positive west; EPSG GeogCRS AGD66 (code 4202) and GDA94 (code 4283) both have longitudes positive east.','0.1m accuracy.','EPSG','9615','NTv2','EPSG','4202','EPSG','4283','EPSG','2285',0.1,'EPSG','8656','Latitude and longitude difference file','vic_0799.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Aus Vic old',0); INSERT INTO "grid_transformation" VALUES('EPSG','1472','ATS77 to NAD83(CSRS98) (1)','Introduced in 1999. Can be taken as an approximate transformation ATS77 to WGS 84 - see code 1688.','?','EPSG','9615','NTv2','EPSG','4122','EPSG','4140','EPSG','1447',NULL,'EPSG','8656','Latitude and longitude difference file','NB7783v2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'GIC-Can NB',1); INSERT INTO "grid_transformation" VALUES('EPSG','1474','NAD83 to NAD83(HARN) (1)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1717.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1372',0.05,'EPSG','8657','Latitude difference file','alhpgn.las','EPSG','8658','Longitude difference file','alhpgn.los',NULL,NULL,'NGS-Usa AL',0); INSERT INTO "grid_transformation" VALUES('EPSG','1475','NAD83 to NAD83(HARN) (2)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1728.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1373',0.05,'EPSG','8657','Latitude difference file','azhpgn.las','EPSG','8658','Longitude difference file','azhpgn.los',NULL,NULL,'NGS-Usa AZ',0); INSERT INTO "grid_transformation" VALUES('EPSG','1476','NAD83 to NAD83(HARN) (3)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1739.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','2297',0.05,'EPSG','8657','Latitude difference file','cnhpgn.las','EPSG','8658','Longitude difference file','cnhpgn.los',NULL,NULL,'NGS-Usa CA n',0); INSERT INTO "grid_transformation" VALUES('EPSG','1477','NAD83 to NAD83(HARN) (4)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1750.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','2298',0.05,'EPSG','8657','Latitude difference file','cshpgn.las','EPSG','8658','Longitude difference file','cshpgn.los',NULL,NULL,'NGS-Usa CA s',0); INSERT INTO "grid_transformation" VALUES('EPSG','1478','NAD83 to NAD83(HARN) (5)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1712.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1376',0.05,'EPSG','8657','Latitude difference file','cohpgn.las','EPSG','8658','Longitude difference file','cohpgn.los',NULL,NULL,'NGS-Usa CO',0); INSERT INTO "grid_transformation" VALUES('EPSG','1479','NAD83 to NAD83(HARN) (6)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1713.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1380',0.05,'EPSG','8657','Latitude difference file','gahpgn.las','EPSG','8658','Longitude difference file','gahpgn.los',NULL,NULL,'NGS-Usa GA',0); INSERT INTO "grid_transformation" VALUES('EPSG','1480','NAD83 to NAD83(HARN) (7)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1714.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1379',0.05,'EPSG','8657','Latitude difference file','flhpgn.las','EPSG','8658','Longitude difference file','flhpgn.los',NULL,NULL,'NGS-Usa FL',0); INSERT INTO "grid_transformation" VALUES('EPSG','1481','NAD83 to NAD83(HARN) (8)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1715.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','2382',0.05,'EPSG','8657','Latitude difference file','emhpgn.las','EPSG','8658','Longitude difference file','emhpgn.los',NULL,NULL,'NGS-Usa ID MT e',0); INSERT INTO "grid_transformation" VALUES('EPSG','1482','NAD83 to NAD83(HARN) (9)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1716.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','2383',0.05,'EPSG','8657','Latitude difference file','wmhpgn.las','EPSG','8658','Longitude difference file','wmhpgn.los',NULL,NULL,'NGS-Usa ID MT w',0); INSERT INTO "grid_transformation" VALUES('EPSG','1483','NAD83 to NAD83(HARN) (10)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1718.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1386',0.05,'EPSG','8657','Latitude difference file','kyhpgn.las','EPSG','8658','Longitude difference file','kyhpgn.los',NULL,NULL,'NGS-Usa KY',0); INSERT INTO "grid_transformation" VALUES('EPSG','1484','NAD83 to NAD83(HARN) (11)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1719.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1387',0.05,'EPSG','8657','Latitude difference file','lahpgn.las','EPSG','8658','Longitude difference file','lahpgn.los',NULL,NULL,'NGS-Usa LA',0); INSERT INTO "grid_transformation" VALUES('EPSG','1485','NAD83 to NAD83(HARN) (12)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1720.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','2377',0.05,'EPSG','8657','Latitude difference file','mdhpgn.las','EPSG','8658','Longitude difference file','mdhpgn.los',NULL,NULL,'NGS-Usa DE MD',0); INSERT INTO "grid_transformation" VALUES('EPSG','1486','NAD83 to NAD83(HARN) (13)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1721.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1388',0.05,'EPSG','8657','Latitude difference file','mehpgn.las','EPSG','8658','Longitude difference file','mehpgn.los',NULL,NULL,'NGS-Usa ME',0); INSERT INTO "grid_transformation" VALUES('EPSG','1487','NAD83 to NAD83(HARN) (14)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1722.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1391',0.05,'EPSG','8657','Latitude difference file','mihpgn.las','EPSG','8658','Longitude difference file','mihpgn.los',NULL,NULL,'NGS-Usa MI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1488','NAD83 to NAD83(HARN) (15)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1723.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1393',0.05,'EPSG','8657','Latitude difference file','mshpgn.las','EPSG','8658','Longitude difference file','mshpgn.los',NULL,NULL,'NGS-Usa MS',0); INSERT INTO "grid_transformation" VALUES('EPSG','1489','NAD83 to NAD83(HARN) (16)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1724.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1396',0.05,'EPSG','8657','Latitude difference file','nbhpgn.las','EPSG','8658','Longitude difference file','nbhpgn.los',NULL,NULL,'NGS-Usa NE',0); INSERT INTO "grid_transformation" VALUES('EPSG','1490','NAD83 to NAD83(HARN) (17)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1725.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','2378',0.05,'EPSG','8657','Latitude difference file','nehpgn.las','EPSG','8658','Longitude difference file','nehpgn.los',NULL,NULL,'NGS-Usa NewEng',0); INSERT INTO "grid_transformation" VALUES('EPSG','1491','NAD83 to NAD83(HARN) (18)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1726.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1400',0.05,'EPSG','8657','Latitude difference file','nmhpgn.las','EPSG','8658','Longitude difference file','nmhpgn.los',NULL,NULL,'NGS-Usa NM',0); INSERT INTO "grid_transformation" VALUES('EPSG','1492','NAD83 to NAD83(HARN) (19)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1727.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1401',0.05,'EPSG','8657','Latitude difference file','nyhpgn.las','EPSG','8658','Longitude difference file','nyhpgn.los',NULL,NULL,'NGS-Usa NY',0); INSERT INTO "grid_transformation" VALUES('EPSG','1493','NAD83 to NAD83(HARN) (20)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1729.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1403',0.05,'EPSG','8657','Latitude difference file','ndhpgn.las','EPSG','8658','Longitude difference file','ndhpgn.los',NULL,NULL,'NGS-Usa ND',0); INSERT INTO "grid_transformation" VALUES('EPSG','1494','NAD83 to NAD83(HARN) (21)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1730.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1405',0.05,'EPSG','8657','Latitude difference file','okhpgn.las','EPSG','8658','Longitude difference file','okhpgn.los',NULL,NULL,'NGS-Usa OK',0); INSERT INTO "grid_transformation" VALUES('EPSG','1495','NAD83 to NAD83(HARN) (22)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1731.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','3634',0.05,'EPSG','8657','Latitude difference file','pvhpgn.las','EPSG','8658','Longitude difference file','pvhpgn.los',NULL,NULL,'NGS-PRVI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1496','NAD83 to NAD83(HARN) (23)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1732.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1410',0.05,'EPSG','8657','Latitude difference file','sdhpgn.las','EPSG','8658','Longitude difference file','sdhpgn.los',NULL,NULL,'NGS-Usa SD',0); INSERT INTO "grid_transformation" VALUES('EPSG','1497','NAD83 to NAD83(HARN) (24)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1733.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1411',0.05,'EPSG','8657','Latitude difference file','tnhpgn.las','EPSG','8658','Longitude difference file','tnhpgn.los',NULL,NULL,'NGS-Usa TN',0); INSERT INTO "grid_transformation" VALUES('EPSG','1498','NAD83 to NAD83(HARN) (25)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1734.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','2379',0.05,'EPSG','8657','Latitude difference file','ethpgn.las','EPSG','8658','Longitude difference file','ethpgn.los',NULL,NULL,'NGS-Usa TX e',0); INSERT INTO "grid_transformation" VALUES('EPSG','1499','NAD83 to NAD83(HARN) (26)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1735.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','2380',0.05,'EPSG','8657','Latitude difference file','wthpgn.las','EPSG','8658','Longitude difference file','wthpgn.los',NULL,NULL,'NGS-Usa TX w',0); INSERT INTO "grid_transformation" VALUES('EPSG','1500','NAD83 to NAD83(HARN) (27)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1736.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1415',0.05,'EPSG','8657','Latitude difference file','vahpgn.las','EPSG','8658','Longitude difference file','vahpgn.los',NULL,NULL,'NGS-Usa VA',0); INSERT INTO "grid_transformation" VALUES('EPSG','1501','NAD83 to NAD83(HARN) (28)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1737.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','2381',0.05,'EPSG','8657','Latitude difference file','wohpgn.las','EPSG','8658','Longitude difference file','wohpgn.los',NULL,NULL,'NGS-Usa OR WA',0); INSERT INTO "grid_transformation" VALUES('EPSG','1502','NAD83 to NAD83(HARN) (29)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1738.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1418',0.05,'EPSG','8657','Latitude difference file','wihpgn.las','EPSG','8658','Longitude difference file','wihpgn.los',NULL,NULL,'NGS-Usa WI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1503','NAD83 to NAD83(HARN) (30)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1740.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1419',0.05,'EPSG','8657','Latitude difference file','wyhpgn.las','EPSG','8658','Longitude difference file','wyhpgn.los',NULL,NULL,'NGS-Usa WY',0); INSERT INTO "grid_transformation" VALUES('EPSG','1506','AGD66 to GDA94 (6)','Replaced by AGD66 to GDA94 (11) (code 1803). Input expects longitudes to be positive west; EPSG GeogCRS AGD66 (code 4202) and GDA94 (code 4283) both have longitudes positive east.','0.1m accuracy.','EPSG','9615','NTv2','EPSG','4202','EPSG','4283','EPSG','1282',0.1,'EPSG','8656','Latitude and longitude difference file','tas_1098.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Tas 0.1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','1507','AGD66 to GDA94 (7)','Replaced by AGD66 to GDA94 (11) (code 1803). Input expects longitudes to be positive west; EPSG GeogCRS AGD66 (code 4202) and GDA94 (code 4283) both have longitudes positive east.','0.1m accuracy.','EPSG','9615','NTv2','EPSG','4202','EPSG','4283','EPSG','2284',0.1,'EPSG','8656','Latitude and longitude difference file','nt_0599.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-NT 0.1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','1520','NAD83 to NAD83(HARN) (31)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1741.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1334',0.05,'EPSG','8657','Latitude difference file','hihpgn.las','EPSG','8658','Longitude difference file','hihpgn.los',NULL,NULL,'NGS-Usa HI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1521','NAD83 to NAD83(HARN) (32)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1742.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1383',0.05,'EPSG','8657','Latitude difference file','inhpgn.las','EPSG','8658','Longitude difference file','inhpgn.los',NULL,NULL,'NGS-Usa IN',0); INSERT INTO "grid_transformation" VALUES('EPSG','1522','NAD83 to NAD83(HARN) (33)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1743.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1385',0.05,'EPSG','8657','Latitude difference file','kshpgn.las','EPSG','8658','Longitude difference file','kshpgn.los',NULL,NULL,'NGS-Usa KS',0); INSERT INTO "grid_transformation" VALUES('EPSG','1523','NAD83 to NAD83(HARN) (34)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1744.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1397',0.05,'EPSG','8657','Latitude difference file','nvhpgn.las','EPSG','8658','Longitude difference file','nvhpgn.los',NULL,NULL,'NGS-Usa NV',0); INSERT INTO "grid_transformation" VALUES('EPSG','1524','NAD83 to NAD83(HARN) (35)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1745.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1404',0.05,'EPSG','8657','Latitude difference file','ohhpgn.las','EPSG','8658','Longitude difference file','ohhpgn.los',NULL,NULL,'NGS-Usa OH',0); INSERT INTO "grid_transformation" VALUES('EPSG','1525','NAD83 to NAD83(HARN) (36)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1746.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1413',0.05,'EPSG','8657','Latitude difference file','uthpgn.las','EPSG','8658','Longitude difference file','uthpgn.los',NULL,NULL,'NGS-Usa UT',0); INSERT INTO "grid_transformation" VALUES('EPSG','1526','NAD83 to NAD83(HARN) (37)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1747.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1417',0.05,'EPSG','8657','Latitude difference file','wvhpgn.las','EPSG','8658','Longitude difference file','wvhpgn.los',NULL,NULL,'NGS-Usa WV',0); INSERT INTO "grid_transformation" VALUES('EPSG','1553','NAD83 to NAD83(HARN) (38)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1748.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1382',0.05,'EPSG','8657','Latitude difference file','ilhpgn.las','EPSG','8658','Longitude difference file','ilhpgn.los',NULL,NULL,'NGS-Usa IL',0); INSERT INTO "grid_transformation" VALUES('EPSG','1554','NAD83 to NAD83(HARN) (39)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1749.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1399',0.05,'EPSG','8657','Latitude difference file','njhpgn.las','EPSG','8658','Longitude difference file','njhpgn.los',NULL,NULL,'NGS-Usa NJ',0); INSERT INTO "grid_transformation" VALUES('EPSG','1559','AGD84 to GDA94 (3)','Withdrawn and replaced by AGD84 to GDA94 (4) (code 1593) due to binary file format error. Input expects longitudes to be positive west; EPSG GeogCRS AGD84 (code 4203) and GDA94 (code 4283) have longitudes positive east.','0.1m accuracy.','EPSG','9615','NTv2','EPSG','4203','EPSG','4283','EPSG','1280',0.1,'EPSG','8656','Latitude and longitude difference file','wa_0400.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'DOLA-Aus WA 0.1m old',1); INSERT INTO "grid_transformation" VALUES('EPSG','1568','NZGD49 to NZGD2000 (3)','These same parameter values may be used to transform to WGS 84 - see NZGD49 to WGS 84 (4) (code 1670).','0.2m accuracy.','EPSG','9615','NTv2','EPSG','4272','EPSG','4167','EPSG','3285',0.2,'EPSG','8656','Latitude and longitude difference file','nzgd2kgrid0005.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Nzl 1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','1572','NAD83 to NAD83(CSRS98) (1)','Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(CSRS98) (code 4140) have longitudes positive east. Can be taken as an approximate transformation NAD83 to WGS 84 - see code 1696.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4269','EPSG','4140','EPSG','1368',NULL,'EPSG','8656','Latitude and longitude difference file','NAD83-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC',1); INSERT INTO "grid_transformation" VALUES('EPSG','1573','NAD27 to NAD83 (6)','Also distributed with file name QUE27-83.gsb. Replaces NAD27 to NAD83 (5) (code 1462). Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD27 (code 4267) and NAD83 (code 4269) have longitudes positive east.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4267','EPSG','4269','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','NA27NA83.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC NT2',0); INSERT INTO "grid_transformation" VALUES('EPSG','1574','NAD27 to NAD83(CSRS98) (1)','Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD27 (code 4267) and NAD83(CSRS98) (code 4140) have longitudes positive east. Can be taken as an approximate transformation NAD27 to WGS 84 - see code 1692.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4267','EPSG','4140','EPSG','1368',NULL,'EPSG','8656','Latitude and longitude difference file','QUE27-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC',1); INSERT INTO "grid_transformation" VALUES('EPSG','1575','NAD27(CGQ77) to NAD83 (2)','Also distributed with file name CGQ77-83.gsb. Replaces NAD27(CGQ77) to NAD83 (1) (code 1451). Can be taken as approx transformation to WGS 84 - see code 1691.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4609','EPSG','4269','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','CQ77NA83.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC NT2',0); INSERT INTO "grid_transformation" VALUES('EPSG','1576','NAD27(CGQ77) to NAD83(CSRS98) (1)','Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD27(CGQ77) (code 4609) and NAD83(CSRS98) (code 4140) have 1691longitudes positive east. Can be taken as an approximate transformation NAD27(CGQ77) to WGS 84 - see code 1691.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4609','EPSG','4140','EPSG','1368',NULL,'EPSG','8656','Latitude and longitude difference file','CGQ77-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC',1); INSERT INTO "grid_transformation" VALUES('EPSG','1578','American Samoa 1962 to NAD83(HARN) (1)','NADCON method which expects longitudes positive west; EPSG GeogCRSs American Samoa 1962 and NAD83(HARN) (codes 4169 and 4152) have longitudes positive east. NADCON expects latitudes in northern hemisphere and values must be made positive prior to input.','Geodetic survey. No accuracy stated.','EPSG','9613','NADCON','EPSG','4169','EPSG','4152','EPSG','2288',5.0,'EPSG','8657','Latitude difference file','wshpgn.las','EPSG','8658','Longitude difference file','wshpgn.los',NULL,NULL,'NGS-Asm W',0); INSERT INTO "grid_transformation" VALUES('EPSG','1579','American Samoa 1962 to NAD83(HARN) (2)','NADCON method which expects longitudes positive west; EPSG GeogCRSs American Samoa 1962 and NAD83(HARN) (codes 4169 and 4152) have longitudes positive east. NADCON expects latitudes in northern hemisphere and values must be made positive prior to input.','Geodetic survey. No accuracy stated.','EPSG','9613','NADCON','EPSG','4169','EPSG','4152','EPSG','2289',5.0,'EPSG','8657','Latitude difference file','eshpgn.las','EPSG','8658','Longitude difference file','eshpgn.los',NULL,NULL,'NGS-Asm E',0); INSERT INTO "grid_transformation" VALUES('EPSG','1593','AGD84 to GDA94 (4)','Replaces AGD84 to GDA94 (3) (code 1559) and then replaced by AGD84 to GDA94 (5) (code 1804). Input expects longitudes to be positive west; EPSG GeogCRS AGD84 (code 4203) and GDA94 (code 4283) both have longitudes positive east.','0.1m accuracy.','EPSG','9615','NTv2','EPSG','4203','EPSG','4283','EPSG','1280',0.1,'EPSG','8656','Latitude and longitude difference file','wa_0700.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'DOLA-Aus WA 0.1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','1596','AGD66 to GDA94 (10)','Replaces AGD66 to GDA94 (5) (code 1464). Replaced by AGD66 to GDA94 (11) (code 1803). Input expects longitudes to be positive west; EPSG GeogCRS AGD66 (code 4202) and GDA94 (code 4283) both have longitudes positive east.','0.1m accuracy.','EPSG','9615','NTv2','EPSG','4202','EPSG','4283','EPSG','2287',0.1,'EPSG','8656','Latitude and longitude difference file','SEAust_21_06_00.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OSG-Aus SE 0.1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','1599','ATS77 to NAD83(CSRS98) (2)','Can be taken as an approximate transformation ATS77 to WGS 84 - see code 1689.','?','EPSG','9615','NTv2','EPSG','4122','EPSG','4140','EPSG','1533',NULL,'EPSG','8656','Latitude and longitude difference file','PE7783V2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'PEI DOT-Can PEI',1); INSERT INTO "grid_transformation" VALUES('EPSG','1600','NAD27 to NAD83(CSRS98) (2)','Can be taken as an approximate transformation NAD27 to WGS 84 - see code 1703.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4267','EPSG','4140','EPSG','2375',NULL,'EPSG','8656','Latitude and longitude difference file','SK27-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SK PMC-Can SK',1); INSERT INTO "grid_transformation" VALUES('EPSG','1601','NAD83 to NAD83(CSRS98) (2)','Can be taken as an approximate transformation NAD83 to WGS 84 - see code 1697.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4269','EPSG','4140','EPSG','2375',NULL,'EPSG','8656','Latitude and longitude difference file','SK83-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SK PMC-Can SK',1); INSERT INTO "grid_transformation" VALUES('EPSG','1602','NAD83 to NAD83(CSRS98) (3)','This gridded difference file AB_CSRS.DAC will need to be renamed to AB_CSRS.gsb to run in some software suites. Formats identical, but AB file is provincial fit only.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4267','EPSG','4140','EPSG','2376',NULL,'EPSG','8656','Latitude and longitude difference file','AB_CSRS.DAC',NULL,NULL,NULL,NULL,NULL,NULL,'AB Env-Can AB',1); INSERT INTO "grid_transformation" VALUES('EPSG','1670','NZGD49 to WGS 84 (3)','Parameter file is from NZGD49 to NZGD2000 (3) (code 1568) and assumes WGS 84 is coincident with NZGD2000 to the accuracy of the transformation.','Accuracy about 1m.','EPSG','9615','NTv2','EPSG','4272','EPSG','4326','EPSG','3285',1.0,'EPSG','8656','Latitude and longitude difference file','nzgd2kgrid0005.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Nzl 1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','1688','ATS77 to WGS 84 (1)','Parameter file is from ATS77 to NAD83(CSRS)v2 (1) (code 9237) assuming that NAD83(CSRS)v2 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1-2m level.','EPSG','9615','NTv2','EPSG','4122','EPSG','4326','EPSG','1447',1.5,'EPSG','8656','Latitude and longitude difference file','NB7783v2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can NB',0); INSERT INTO "grid_transformation" VALUES('EPSG','1689','ATS77 to WGS 84 (2)','Parameter file is from ATS77 to NAD83(CSRS)v2 (2) (code 9236) assuming that NAD83(CSRS)v2 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1-2m level.','EPSG','9615','NTv2','EPSG','4122','EPSG','4326','EPSG','1533',1.5,'EPSG','8656','Latitude and longitude difference file','PE7783V2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can PEI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1690','NAD27(76) to WGS 84 (1)','Parameter file is from NAD27(76) to NAD83 (1) (code 1463) assuming that NAD83 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9615','NTv2','EPSG','4608','EPSG','4326','EPSG','1367',1.0,'EPSG','8656','Latitude and longitude difference file','May76v20.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can On',0); INSERT INTO "grid_transformation" VALUES('EPSG','1691','NAD27(CGQ77) to WGS 84 (3)','Parameter file is from NAD27(CGQ77) to NAD83(CSRS)v2 (1) (code 9240) assuming that NAD83(CSRS)v2 is equivalent to WGS 84 within the accuracy of the transformation. Also distributed with file name CGQ77-98.gsb.','Approximation at the +/- 1-2m level.','EPSG','9615','NTv2','EPSG','4609','EPSG','4326','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','CQ77NA83.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can Qc NT2',0); INSERT INTO "grid_transformation" VALUES('EPSG','1692','NAD27 to WGS 84 (34)','Parameter file is from NAD27 to NAD83(CSRS)v2 (1) (code 9239) assuming that NAD83(CSRS)v2 is equivalent to WGS 84 within the accuracy of the transformation. Also distributed as QUE27-98.gsb.','Approximation at the +/- 1-2m level.','EPSG','9615','NTv2','EPSG','4267','EPSG','4326','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','NA27SCRS.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can QC',0); INSERT INTO "grid_transformation" VALUES('EPSG','1693','NAD27 to WGS 84 (33)','Parameter file is from NAD27 to NAD83 (4) (code 1313) assuming that NAD83 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9615','NTv2','EPSG','4267','EPSG','4326','EPSG','4517',1.0,'EPSG','8656','Latitude and longitude difference file','NTv2_0.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can',0); INSERT INTO "grid_transformation" VALUES('EPSG','1694','American Samoa 1962 to WGS 84 (2)','Parameter files are from American Samoa 1962 to NAD83(HARN) (1) (code 1578), but for many purposes NAD83(HARN) can be considered to be coincident with WGS 84 within the accuracy of the transformation.','No accuracy stated for source transformation.','EPSG','9613','NADCON','EPSG','4169','EPSG','4326','EPSG','2288',5.0,'EPSG','8657','Latitude difference file','wshpgn.las','EPSG','8658','Longitude difference file','wshpgn.los',NULL,NULL,'EPSG-Asm W',0); INSERT INTO "grid_transformation" VALUES('EPSG','1695','American Samoa 1962 to WGS 84 (3)','Parameter files are from American Samoa 1962 to NAD83(HARN) (2) (code 1579), but for many purposes NAD83(HARN) can be considered to be coincident with WGS 84 within the accuracy of the transformation.','No accuracy stated for source transformation.','EPSG','9613','NADCON','EPSG','4169','EPSG','4326','EPSG','2289',5.0,'EPSG','8657','Latitude difference file','eshpgn.las','EPSG','8658','Longitude difference file','eshpgn.los',NULL,NULL,'EPSG-Asm E',0); INSERT INTO "grid_transformation" VALUES('EPSG','1696','NAD83 to WGS 84 (6)','Parameter file is from NAD83 to NAD83(CSRS)v2 (1) (code 9241) assuming that NAD83(CSRS)v2 is equivalent to WGS 84 within the accuracy of the transformation. Also distributed with file name NAD83-98.gsb.','Approximation at the +/- 1-2m level.','EPSG','9615','NTv2','EPSG','4269','EPSG','4326','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','NA83SCRS.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can QC',0); INSERT INTO "grid_transformation" VALUES('EPSG','1697','NAD83 to WGS 84 (7)','Parameter file is from NAD83 to NAD83(CSRS8)v3 (2) (code 9243) assuming that NAD83(CSRS)v3 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1-2m level.','EPSG','9615','NTv2','EPSG','4269','EPSG','4326','EPSG','2375',1.5,'EPSG','8656','Latitude and longitude difference file','SK83-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can SK',0); INSERT INTO "grid_transformation" VALUES('EPSG','1698','St. George Island to WGS 84 (1)','Parameter files are from St. George Island to NAD83 (1) (code 1457) assuming that NAD83 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1 to 2m level.','EPSG','9613','NADCON','EPSG','4138','EPSG','4326','EPSG','1331',1.5,'EPSG','8657','Latitude difference file','stgeorge.las','EPSG','8658','Longitude difference file','stgeorge.los',NULL,NULL,'EPSG-Usa AK StG',0); INSERT INTO "grid_transformation" VALUES('EPSG','1699','St. Lawrence Island to WGS 84 (1)','Parameter files are from St. Lawrence Island to NAD83 (1) (code 1455) assuming that NAD83 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1 to 2m level.','EPSG','9613','NADCON','EPSG','4136','EPSG','4326','EPSG','1332',1.5,'EPSG','8657','Latitude difference file','stlrnc.las','EPSG','8658','Longitude difference file','stlrnc.los',NULL,NULL,'EPSG-Usa AK StL',0); INSERT INTO "grid_transformation" VALUES('EPSG','1700','St. Paul Island to WGS 84 (1)','Parameter files are from St. Paul Island to NAD83 (1) (code 1456) assuming that NAD83 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1 to 2m level.','EPSG','9613','NADCON','EPSG','4137','EPSG','4326','EPSG','1333',1.5,'EPSG','8657','Latitude difference file','stpaul.las','EPSG','8658','Longitude difference file','stpaul.los',NULL,NULL,'EPSG-Usa AK StP',0); INSERT INTO "grid_transformation" VALUES('EPSG','1702','NAD83 to WGS 84 (8)','Parameter file is from NAD83 to NAD83(CSRS)v4 (3) (code 9244) assuming that NAD83(CSRS)v4 is equivalent to WGS 84 within the accuracy of the transformation. This file AB_CSRS.DAC will need to be renamed to AB_CSRS.gsb to run in some sodtware.','Approximation at the +/- 1-2m level.','EPSG','9615','NTv2','EPSG','4269','EPSG','4326','EPSG','2376',1.5,'EPSG','8656','Latitude and longitude difference file','AB_CSRS.DAC',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can AB',0); INSERT INTO "grid_transformation" VALUES('EPSG','1703','NAD27 to WGS 84 (32)','Parameter file is from NAD27 to NAD83(CSRS)v3 (2) (code 9242) assuming that NAD83(CSRS)v3 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1-2m level.','EPSG','9615','NTv2','EPSG','4267','EPSG','4326','EPSG','2375',1.5,'EPSG','8656','Latitude and longitude difference file','SK27-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can SK',0); INSERT INTO "grid_transformation" VALUES('EPSG','1704','NAD83 to NAD83(HARN) (40)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1708.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1374',0.05,'EPSG','8657','Latitude difference file','arhpgn.las','EPSG','8658','Longitude difference file','arhpgn.los',NULL,NULL,'NGS-Usa AR',0); INSERT INTO "grid_transformation" VALUES('EPSG','1705','NAD83 to NAD83(HARN) (41)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1709.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1384',0.05,'EPSG','8657','Latitude difference file','iahpgn.las','EPSG','8658','Longitude difference file','iahpgn.los',NULL,NULL,'NGS-Usa IA',0); INSERT INTO "grid_transformation" VALUES('EPSG','1706','NAD83 to NAD83(HARN) (42)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1710.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1392',0.05,'EPSG','8657','Latitude difference file','mnhpgn.las','EPSG','8658','Longitude difference file','mnhpgn.los',NULL,NULL,'NGS-Usa MN',0); INSERT INTO "grid_transformation" VALUES('EPSG','1707','NAD83 to NAD83(HARN) (43)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 1711.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1394',0.05,'EPSG','8657','Latitude difference file','mohpgn.las','EPSG','8658','Longitude difference file','mohpgn.los',NULL,NULL,'NGS-Usa MO',0); INSERT INTO "grid_transformation" VALUES('EPSG','1708','NAD83 to WGS 84 (12)','Parameter files are from NAD83 to NAD83(HARN) (40) (code 1704) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1374',1.0,'EPSG','8657','Latitude difference file','arhpgn.las','EPSG','8658','Longitude difference file','arhpgn.los',NULL,NULL,'EPSG-USA Ar',0); INSERT INTO "grid_transformation" VALUES('EPSG','1709','NAD83 to WGS 84 (13)','Parameter files are from NAD83 to NAD83(HARN) (41) (code 1705) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1384',1.0,'EPSG','8657','Latitude difference file','iahpgn.las','EPSG','8658','Longitude difference file','iahpgn.los',NULL,NULL,'EPSG-Usa IA',0); INSERT INTO "grid_transformation" VALUES('EPSG','1710','NAD83 to WGS 84 (14)','Parameter files are from NAD83 to NAD83(HARN) (42) (code 1706) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1392',1.0,'EPSG','8657','Latitude difference file','mnhpgn.las','EPSG','8658','Longitude difference file','mnhpgn.los',NULL,NULL,'EPSG-Usa MN',0); INSERT INTO "grid_transformation" VALUES('EPSG','1711','NAD83 to WGS 84 (15)','Parameter files are from NAD83 to NAD83(HARN) (43) (code 1707) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1394',1.0,'EPSG','8657','Latitude difference file','mohpgn.las','EPSG','8658','Longitude difference file','mohpgn.los',NULL,NULL,'EPSG-Usa MO',0); INSERT INTO "grid_transformation" VALUES('EPSG','1712','NAD83 to WGS 84 (16)','Parameter files are from NAD83 to NAD83(HARN) (5) (code 1478) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1376',1.0,'EPSG','8657','Latitude difference file','cohpgn.las','EPSG','8658','Longitude difference file','cohpgn.los',NULL,NULL,'EPSG-Usa CO',0); INSERT INTO "grid_transformation" VALUES('EPSG','1713','NAD83 to WGS 84 (17)','Parameter files are from NAD83 to NAD83(HARN) (6) (code 1479) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1380',1.0,'EPSG','8657','Latitude difference file','gahpgn.las','EPSG','8658','Longitude difference file','gahpgn.los',NULL,NULL,'EPSG-Usa GA',0); INSERT INTO "grid_transformation" VALUES('EPSG','1714','NAD83 to WGS 84 (18)','Parameter files are from NAD83 to NAD83(HARN) (7) (code 1480) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1379',1.0,'EPSG','8657','Latitude difference file','flhpgn.las','EPSG','8658','Longitude difference file','flhpgn.los',NULL,NULL,'EPSG-Usa FL',0); INSERT INTO "grid_transformation" VALUES('EPSG','1715','NAD83 to WGS 84 (19)','Parameter files are from NAD83 to NAD83(HARN) (8) (code 1481) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','2382',1.0,'EPSG','8657','Latitude difference file','emhpgn.las','EPSG','8658','Longitude difference file','emhpgn.los',NULL,NULL,'EPSG-Usa ID MT e',0); INSERT INTO "grid_transformation" VALUES('EPSG','1716','NAD83 to WGS 84 (20)','Parameter files are from NAD83 to NAD83(HARN) (9) (code 1482) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','2383',1.0,'EPSG','8657','Latitude difference file','wmhpgn.las','EPSG','8658','Longitude difference file','wmhpgn.los',NULL,NULL,'EPSG-Usa ID MT w',0); INSERT INTO "grid_transformation" VALUES('EPSG','1717','NAD83 to WGS 84 (21)','Parameter files are from NAD83 to NAD83(HARN) (1) (code 1474) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1372',1.0,'EPSG','8657','Latitude difference file','alhpgn.las','EPSG','8658','Longitude difference file','alhpgn.los',NULL,NULL,'EPSG-Usa AL',0); INSERT INTO "grid_transformation" VALUES('EPSG','1718','NAD83 to WGS 84 (22)','Parameter files are from NAD83 to NAD83(HARN) (10) (code 1483) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1386',1.0,'EPSG','8657','Latitude difference file','kyhpgn.las','EPSG','8658','Longitude difference file','kyhpgn.los',NULL,NULL,'EPSG-Usa KY',0); INSERT INTO "grid_transformation" VALUES('EPSG','1719','NAD83 to WGS 84 (23)','Parameter files are from NAD83 to NAD83(HARN) (11) (code 1484) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1387',1.0,'EPSG','8657','Latitude difference file','lahpgn.las','EPSG','8658','Longitude difference file','lahpgn.los',NULL,NULL,'EPSG-Usa LA',0); INSERT INTO "grid_transformation" VALUES('EPSG','1720','NAD83 to WGS 84 (24)','Parameter files are from NAD83 to NAD83(HARN) (12) (code 1485) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','2377',1.0,'EPSG','8657','Latitude difference file','mdhpgn.las','EPSG','8658','Longitude difference file','mdhpgn.los',NULL,NULL,'EPSG-Usa DE MD',0); INSERT INTO "grid_transformation" VALUES('EPSG','1721','NAD83 to WGS 84 (25)','Parameter files are from NAD83 to NAD83(HARN) (13) (code 1486) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1388',1.0,'EPSG','8657','Latitude difference file','mehpgn.las','EPSG','8658','Longitude difference file','mehpgn.los',NULL,NULL,'EPSG-Usa ME',0); INSERT INTO "grid_transformation" VALUES('EPSG','1722','NAD83 to WGS 84 (26)','Parameter files are from NAD83 to NAD83(HARN) (14) (code 1487) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1391',1.0,'EPSG','8657','Latitude difference file','mihpgn.las','EPSG','8658','Longitude difference file','mihpgn.los',NULL,NULL,'EPSG-Usa MI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1723','NAD83 to WGS 84 (27)','Parameter files are from NAD83 to NAD83(HARN) (15) (code 1488) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1393',1.0,'EPSG','8657','Latitude difference file','mshpgn.las','EPSG','8658','Longitude difference file','mshpgn.los',NULL,NULL,'EPSG-Usa MS',0); INSERT INTO "grid_transformation" VALUES('EPSG','1724','NAD83 to WGS 84 (28)','Parameter files are from NAD83 to NAD83(HARN) (16) (code 1489) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1396',1.0,'EPSG','8657','Latitude difference file','nbhpgn.las','EPSG','8658','Longitude difference file','nbhpgn.los',NULL,NULL,'EPSG-Usa NE',0); INSERT INTO "grid_transformation" VALUES('EPSG','1725','NAD83 to WGS 84 (29)','Parameter files are from NAD83 to NAD83(HARN) (17) (code 1490) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','2378',1.0,'EPSG','8657','Latitude difference file','nehpgn.las','EPSG','8658','Longitude difference file','nehpgn.los',NULL,NULL,'EPSG-Usa NewEng',0); INSERT INTO "grid_transformation" VALUES('EPSG','1726','NAD83 to WGS 84 (30)','Parameter files are from NAD83 to NAD83(HARN) (18) (code 1491) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1400',1.0,'EPSG','8657','Latitude difference file','nmhpgn.las','EPSG','8658','Longitude difference file','nmhpgn.los',NULL,NULL,'EPSG-Usa NM',0); INSERT INTO "grid_transformation" VALUES('EPSG','1727','NAD83 to WGS 84 (31)','Parameter files are from NAD83 to NAD83(HARN) (19) (code 1492) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1401',1.0,'EPSG','8657','Latitude difference file','nyhpgn.las','EPSG','8658','Longitude difference file','nyhpgn.los',NULL,NULL,'EPSG-Usa NY',0); INSERT INTO "grid_transformation" VALUES('EPSG','1728','NAD83 to WGS 84 (32)','Parameter files are from NAD83 to NAD83(HARN) (2) (code 1475) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1373',1.0,'EPSG','8657','Latitude difference file','azhpgn.las','EPSG','8658','Longitude difference file','azhpgn.los',NULL,NULL,'EPSG-Usa AZ',0); INSERT INTO "grid_transformation" VALUES('EPSG','1729','NAD83 to WGS 84 (33)','Parameter files are from NAD83 to NAD83(HARN) (20) (code 1493) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1403',1.0,'EPSG','8657','Latitude difference file','ndhpgn.las','EPSG','8658','Longitude difference file','ndhpgn.los',NULL,NULL,'EPSG-Usa ND',0); INSERT INTO "grid_transformation" VALUES('EPSG','1730','NAD83 to WGS 84 (34)','Parameter files are from NAD83 to NAD83(HARN) (21) (code 1494) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1405',1.0,'EPSG','8657','Latitude difference file','okhpgn.las','EPSG','8658','Longitude difference file','okhpgn.los',NULL,NULL,'EPSG-Usa OK',0); INSERT INTO "grid_transformation" VALUES('EPSG','1731','NAD83 to WGS 84 (35)','Parameter files are from NAD83 to NAD83(HARN) (22) (code 1495) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','3634',1.0,'EPSG','8657','Latitude difference file','pvhpgn.las','EPSG','8658','Longitude difference file','pvhpgn.los',NULL,NULL,'EPSG-PRVI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1732','NAD83 to WGS 84 (36)','Parameter files are from NAD83 to NAD83(HARN) (23) (code 1496) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1410',1.0,'EPSG','8657','Latitude difference file','sdhpgn.las','EPSG','8658','Longitude difference file','sdhpgn.los',NULL,NULL,'EPSG-Usa SD',0); INSERT INTO "grid_transformation" VALUES('EPSG','1733','NAD83 to WGS 84 (37)','Parameter files are from NAD83 to NAD83(HARN) (24) (code 1497) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1411',1.0,'EPSG','8657','Latitude difference file','tnhpgn.las','EPSG','8658','Longitude difference file','tnhpgn.los',NULL,NULL,'EPSG-Usa TN',0); INSERT INTO "grid_transformation" VALUES('EPSG','1734','NAD83 to WGS 84 (38)','Parameter files are from NAD83 to NAD83(HARN) (25) (code 1498) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','2379',1.0,'EPSG','8657','Latitude difference file','ethpgn.las','EPSG','8658','Longitude difference file','ethpgn.los',NULL,NULL,'EPSG-Usa TX e',0); INSERT INTO "grid_transformation" VALUES('EPSG','1735','NAD83 to WGS 84 (39)','Parameter files are from NAD83 to NAD83(HARN) (26) (code 1499) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','2380',1.0,'EPSG','8657','Latitude difference file','wthpgn.las','EPSG','8658','Longitude difference file','wthpgn.los',NULL,NULL,'EPSG-Usa TX w',0); INSERT INTO "grid_transformation" VALUES('EPSG','1736','NAD83 to WGS 84 (40)','Parameter files are from NAD83 to NAD83(HARN) (27) (code 1500) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1415',1.0,'EPSG','8657','Latitude difference file','vahpgn.las','EPSG','8658','Longitude difference file','vahpgn.los',NULL,NULL,'EPSG-Usa VA',0); INSERT INTO "grid_transformation" VALUES('EPSG','1737','NAD83 to WGS 84 (41)','Parameter files are from NAD83 to NAD83(HARN) (28) (code 1501) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','2381',1.0,'EPSG','8657','Latitude difference file','wohpgn.las','EPSG','8658','Longitude difference file','wohpgn.los',NULL,NULL,'EPSG-Usa OR WA',0); INSERT INTO "grid_transformation" VALUES('EPSG','1738','NAD83 to WGS 84 (42)','Parameter files are from NAD83 to NAD83(HARN) (29) (code 1502) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1418',1.0,'EPSG','8657','Latitude difference file','wihpgn.las','EPSG','8658','Longitude difference file','wihpgn.los',NULL,NULL,'EPSG-Usa WI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1739','NAD83 to WGS 84 (43)','Parameter files are from NAD83 to NAD83(HARN) (3) (code 1476) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','2297',1.0,'EPSG','8657','Latitude difference file','cnhpgn.las','EPSG','8658','Longitude difference file','cnhpgn.los',NULL,NULL,'EPSG-Usa CA n',0); INSERT INTO "grid_transformation" VALUES('EPSG','1740','NAD83 to WGS 84 (44)','Parameter files are from NAD83 to NAD83(HARN) (30) (code 1503) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1419',1.0,'EPSG','8657','Latitude difference file','wyhpgn.las','EPSG','8658','Longitude difference file','wyhpgn.los',NULL,NULL,'EPSG-Usa WY',0); INSERT INTO "grid_transformation" VALUES('EPSG','1741','NAD83 to WGS 84 (45)','Parameter files are from NAD83 to NAD83(HARN) (31) (code 1520) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1334',1.0,'EPSG','8657','Latitude difference file','hihpgn.las','EPSG','8658','Longitude difference file','hihpgn.los',NULL,NULL,'EPSG-Usa HI',0); INSERT INTO "grid_transformation" VALUES('EPSG','1742','NAD83 to WGS 84 (46)','Parameter files are from NAD83 to NAD83(HARN) (32) (code 1521) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1383',1.0,'EPSG','8657','Latitude difference file','inhpgn.las','EPSG','8658','Longitude difference file','inhpgn.los',NULL,NULL,'EPSG-Usa IN',0); INSERT INTO "grid_transformation" VALUES('EPSG','1743','NAD83 to WGS 84 (47)','Parameter files are from NAD83 to NAD83(HARN) (33) (code 1522) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1385',1.0,'EPSG','8657','Latitude difference file','kshpgn.las','EPSG','8658','Longitude difference file','kshpgn.los',NULL,NULL,'EPSG-Usa KS',0); INSERT INTO "grid_transformation" VALUES('EPSG','1744','NAD83 to WGS 84 (48)','Parameter files are from NAD83 to NAD83(HARN) (34) (code 1523) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1397',1.0,'EPSG','8657','Latitude difference file','nvhpgn.las','EPSG','8658','Longitude difference file','nvhpgn.los',NULL,NULL,'EPSG-Usa NV',0); INSERT INTO "grid_transformation" VALUES('EPSG','1745','NAD83 to WGS 84 (49)','Parameter files are from NAD83 to NAD83(HARN) (35) (code 1524) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1404',1.0,'EPSG','8657','Latitude difference file','ohhpgn.las','EPSG','8658','Longitude difference file','ohhpgn.los',NULL,NULL,'EPSG-Usa OH',0); INSERT INTO "grid_transformation" VALUES('EPSG','1746','NAD83 to WGS 84 (50)','Parameter files are from NAD83 to NAD83(HARN) (36) (code 1525) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1413',1.0,'EPSG','8657','Latitude difference file','uthpgn.las','EPSG','8658','Longitude difference file','uthpgn.los',NULL,NULL,'EPSG-Usa UT',0); INSERT INTO "grid_transformation" VALUES('EPSG','1747','NAD83 to WGS 84 (51)','Parameter files are from NAD83 to NAD83(HARN) (37) (code 1526) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1417',1.0,'EPSG','8657','Latitude difference file','wvhpgn.las','EPSG','8658','Longitude difference file','wvhpgn.los',NULL,NULL,'EPSG-Usa WV',0); INSERT INTO "grid_transformation" VALUES('EPSG','1748','NAD83 to WGS 84 (52)','Parameter files are from NAD83 to NAD83(HARN) (38) (code 1553) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1382',1.0,'EPSG','8657','Latitude difference file','ilhpgn.las','EPSG','8658','Longitude difference file','ilhpgn.los',NULL,NULL,'EPSG-Usa IL',0); INSERT INTO "grid_transformation" VALUES('EPSG','1749','NAD83 to WGS 84 (53)','Parameter files are from NAD83 to NAD83(HARN) (39) (code 1554) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1399',1.0,'EPSG','8657','Latitude difference file','njhpgn.las','EPSG','8658','Longitude difference file','njhpgn.los',NULL,NULL,'EPSG-Usa NJ',0); INSERT INTO "grid_transformation" VALUES('EPSG','1750','NAD83 to WGS 84 (54)','Parameter files are from NAD83 to NAD83(HARN) (4) (code 1477) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','2298',1.0,'EPSG','8657','Latitude difference file','cshpgn.las','EPSG','8658','Longitude difference file','cshpgn.los',NULL,NULL,'EPSG-Usa CA s',0); INSERT INTO "grid_transformation" VALUES('EPSG','1752','NAD83 to NAD83(CSRS98) (3)','This gridded difference file AB_CSRS.DAC will need to be renamed to AB_CSRS.gsb to run in some software suites. Formats identical, but AB file is provincial fit only. Can be taken as an approximate transformation NAD83 to WGS 84 - see code 1702.','?','EPSG','9615','NTv2','EPSG','4269','EPSG','4140','EPSG','2376',NULL,'EPSG','8656','Latitude and longitude difference file','AB_CSRS.DAC',NULL,NULL,NULL,NULL,NULL,NULL,'AB Env-Can AB',1); INSERT INTO "grid_transformation" VALUES('EPSG','1803','AGD66 to GDA94 (11)','Replaces AGD66 to GDA94 variants 6, 7 and 10 (codes 1506 1507 1596). Input expects longitudes to be positive west; EPSG GeogCRS AGD66 (code 4202) and GDA94 (code 4283) both have longitudes positive east. May be used as tfm to WGS 84 - see code 15786.','0.1m accuracy.','EPSG','9615','NTv2','EPSG','4202','EPSG','4283','EPSG','2575',0.1,'EPSG','8656','Latitude and longitude difference file','A66 National (13.09.01).gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ICSM-Aus 0.1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','1804','AGD84 to GDA94 (5)','Replaces AGD84 to GDA94 (4) (code 1593) which itself replaced variant 3 (code 1559). Input expects longitudes to be + west; EPSG GeogCRS AGD84 (code 4203) and GDA94 (code 4283) both have longitudes positive east. May be used as tfm to WGS 84 - see 15785','0.1m accuracy.','EPSG','9615','NTv2','EPSG','4203','EPSG','4283','EPSG','2576',0.1,'EPSG','8656','Latitude and longitude difference file','National 84 (02.07.01).gsb',NULL,NULL,NULL,NULL,NULL,NULL,'Auslig-Aus 0.1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','1841','ATS77 to NAD83(CSRS) (1)','Introduced in 1999. Can be taken as an approximate transformation ATS77 to WGS 84 - see code 1688.','Used in the GeoNB Coordinate Transformation Service. Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4122','EPSG','4617','EPSG','1447',1.5,'EPSG','8656','Latitude and longitude difference file','NB7783v2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'GIC-Can NB',1); INSERT INTO "grid_transformation" VALUES('EPSG','1843','NAD83 to NAD83(CSRS) (1)','Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(CSRS) (code 4617) have longitudes positive east. Can be taken as an approximate transformation NAD83 to WGS 84 - see code 1696.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4269','EPSG','4617','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','NAD83-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC',1); INSERT INTO "grid_transformation" VALUES('EPSG','1844','NAD27 to NAD83(CSRS) (1)','Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD27 (code 4267) and NAD83(CSRS) (code 4617) have longitudes positive east. Can be taken as an approximate transformation NAD27 to WGS 84 - see code 1692.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4267','EPSG','4617','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','QUE27-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC',1); INSERT INTO "grid_transformation" VALUES('EPSG','1845','NAD27(CGQ77) to NAD83(CSRS) (1)','Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD27(CGQ77) (code 4609) and NAD83(CSRS) (code 4617) have longitudes positive east. Can be taken as an approximate transformation NAD27(CGQ77) to WGS 84 - see code 1691.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4609','EPSG','4617','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','CGQ77-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC',1); INSERT INTO "grid_transformation" VALUES('EPSG','1846','ATS77 to NAD83(CSRS) (2)','Can be taken as an approximate transformation ATS77 to WGS 84 - see code 1689.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4122','EPSG','4617','EPSG','1533',1.5,'EPSG','8656','Latitude and longitude difference file','PE7783V2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'PEI DOT-Can PEI',1); INSERT INTO "grid_transformation" VALUES('EPSG','1847','NAD27 to NAD83(CSRS) (2)','Can be taken as an approximate transformation NAD27 to WGS 84 - see code 1703.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4267','EPSG','4617','EPSG','2375',1.5,'EPSG','8656','Latitude and longitude difference file','SK27-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SK PMC-Can SK',1); INSERT INTO "grid_transformation" VALUES('EPSG','1848','NAD83 to NAD83(CSRS) (2)','Can be taken as an approximate transformation NAD83 to WGS 84 - see code 1697.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4269','EPSG','4617','EPSG','2375',1.5,'EPSG','8656','Latitude and longitude difference file','SK83-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SK PMC-Can SK',1); INSERT INTO "grid_transformation" VALUES('EPSG','1849','NAD83 to NAD83(CSRS) (3)','This gridded difference file AB_CSRS.DAC will need to be renamed to AB_CSRS.gsb to run in some software suites. Formats identical, but AB file is provincial fit only. Can be taken as an approximate transformation NAD83 to WGS 84 - see code 1702.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4269','EPSG','4617','EPSG','2376',1.5,'EPSG','8656','Latitude and longitude difference file','AB_CSRS.DAC',NULL,NULL,NULL,NULL,NULL,NULL,'AB Env-Can AB',1); INSERT INTO "grid_transformation" VALUES('EPSG','1850','ATS77 to NAD83(CSRS) (3)','Can be taken as an approximate transformation ATS77 to WGS 84 - see code 1851.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4122','EPSG','4617','EPSG','2313',1.5,'EPSG','8656','Latitude and longitude difference file','NS778301.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'NSGC-Can NS',1); INSERT INTO "grid_transformation" VALUES('EPSG','1851','ATS77 to WGS 84 (3)','Parameter file is from ATS77 to NAD83(CSRS)v3 (3) (code 9235) assuming that NAD83(CSRS)v3 is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1-2m level.','EPSG','9615','NTv2','EPSG','4122','EPSG','4326','EPSG','2313',1.5,'EPSG','8656','Latitude and longitude difference file','NS778301.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Can NS',0); INSERT INTO "grid_transformation" VALUES('EPSG','3858','WGS 84 to EGM2008 height (1)','Replaces WGS 84 to EGM96 height (1) (CT code 15781). Grid spacing is 2.5 arc-minutes. For a smaller spacing (in principle more exact but requiring greater computing resources) see CT code 3859. An executable using spherical harmonics is also available.','Derivation of gravity-related heights from GPS observations.','EPSG','1025','Geographic3D to GravityRelatedHeight (EGM2008)','EPSG','4979','EPSG','3855','EPSG','1262',1.0,'EPSG','8666','Geoid (height correction) model file','Und_min2.5x2.5_egm2008_isw=82_WGS84_TideFree.gz',NULL,NULL,NULL,NULL,NULL,NULL,'NGA-World',0); INSERT INTO "grid_transformation" VALUES('EPSG','3859','WGS 84 to EGM2008 height (2)','Replaces WGS 84 to EGM96 height (1) (CT code 15781). Grid spacing is 1 arc-minute. For a larger grid spacing (in principle less exact but requiring less computing resources) see CT code 3858. An executable using spherical harmonics is also available.','Derivation of gravity-related heights from GPS observations.','EPSG','1025','Geographic3D to GravityRelatedHeight (EGM2008)','EPSG','4979','EPSG','3855','EPSG','1262',0.5,'EPSG','8666','Geoid (height correction) model file','Und_min1x1_egm2008_isw=82_WGS84_TideFree.gz',NULL,NULL,NULL,NULL,NULL,NULL,'NGA-World',0); INSERT INTO "grid_transformation" VALUES('EPSG','4459','NZGD2000 to NZVD2009 height (1)','Defines NZVD2009 vertical datum (datum code 1039, CRS code 4440).','Derivation of gravity-related heights from GPS observations.','EPSG','1030','Geographic3D to GravityRelatedHeight (NZgeoid)','EPSG','4959','EPSG','4440','EPSG','1175',0.1,'EPSG','8666','Geoid (height correction) model file','nzgeoid09.sid',NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ 2009',0); INSERT INTO "grid_transformation" VALUES('EPSG','4561','RRAF 1991 to Martinique 1987 height (1)','May be used for transformations from WGS 84 to IGN 1987. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4557','EPSG','5756','EPSG','3276',998.0,'EPSG','8666','Geoid (height correction) model file','ggm00.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Mtq',0); INSERT INTO "grid_transformation" VALUES('EPSG','4562','RRAF 1991 to Guadeloupe 1988 height (1)','May be used for transformations from WGS 84 to IGN 1988. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore areas.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4557','EPSG','5757','EPSG','2892',0.2,'EPSG','8666','Geoid (height correction) model file','ggg00.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp GT',0); INSERT INTO "grid_transformation" VALUES('EPSG','4563','RRAF 1991 to IGN 1988 MG height (1)','May be used for transformations from WGS 84 to IGN 1988 MG. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4557','EPSG','5617','EPSG','2894',0.2,'EPSG','8666','Geoid (height correction) model file','ggg00_mg.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp MG',0); INSERT INTO "grid_transformation" VALUES('EPSG','4564','RRAF 1991 to IGN 1988 SM height (1)','May be used for transformations from WGS 84 to IGN 1988 SM. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4557','EPSG','5620','EPSG','2890',0.2,'EPSG','8666','Geoid (height correction) model file','ggg00_sm.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp StM',0); INSERT INTO "grid_transformation" VALUES('EPSG','4565','RRAF 1991 to IGN 1988 LS height (1)','May be used for transformations from WGS 84 to IGN 1988 LS. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4557','EPSG','5616','EPSG','2895',0.2,'EPSG','8666','Geoid (height correction) model file','ggg00_ls.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp LSt',0); INSERT INTO "grid_transformation" VALUES('EPSG','4566','RRAF 1991 to IGN 1992 LD height (1)','Accuracy 0.5m. Replaced by RRAF 1991 to IGN 2008 LD height (1) (CT code 9132).','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4557','EPSG','5618','EPSG','2893',0.5,'EPSG','8666','Geoid (height correction) model file','ggg00_ld.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp Des',0); INSERT INTO "grid_transformation" VALUES('EPSG','4567','RRAF 1991 to IGN 1988 SB height (1)','May be used for transformations from WGS 84 to IGN 1988 SB. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4557','EPSG','5619','EPSG','2891',0.2,'EPSG','8666','Geoid (height correction) model file','ggg00_sb.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp StB',0); INSERT INTO "grid_transformation" VALUES('EPSG','5334','ETRS89 to Belfast height (1)','May be used for transformations from WGS 84 to Belfast. Replaced by ETRS89 to Belfast height (2) (code 7958).','Derivation of gravity-related heights from GPS observations.','EPSG','1045','Geographic3D to GravityRelatedHeight (OSGM02-Ire)','EPSG','4937','EPSG','5732','EPSG','2530',0.03,'EPSG','8666','Geoid (height correction) model file','OSGM02_NI.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK NI',0); INSERT INTO "grid_transformation" VALUES('EPSG','5335','ETRS89 to Malin Head height (1)','May be used for transformations from WGS 84 to Malin Head. Replaced by ETRS89 to Malin Head height (2) (code 7959).','Derivation of gravity-related heights from GPS observations.','EPSG','1045','Geographic3D to GravityRelatedHeight (OSGM02-Ire)','EPSG','4937','EPSG','5731','EPSG','1305',0.04,'EPSG','8666','Geoid (height correction) model file','OSGM02_RoI.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-Ire',0); INSERT INTO "grid_transformation" VALUES('EPSG','5338','OSGB 1936 to ETRS89 (1)','Approximate alternative to official OSTN02 method (tfm code 7952). May be taken as approximate transformation OSGB 1936 to WGS 84 - see code 5339.','Accuracy at 2000 test points compared to official OSTN02 (tfm code 1039): latitude 0.5mm average, 17mm maximum; longitude 0.8mm average, 23mm maximum.','EPSG','9615','NTv2','EPSG','4277','EPSG','4258','EPSG','1264',0.03,'EPSG','8656','Latitude and longitude difference file','OSTN02_NTv2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OSGB-UK Gbr02 NT',0); INSERT INTO "grid_transformation" VALUES('EPSG','5339','OSGB 1936 to WGS 84 (7)','Parameter values taken from OSGB 1936 to ETRS89 (1) (tfm code 5338) assuming that ETRS89 is coincident with WGS 84 within the accuracy of the tfm. Within accuracy of the tfm equivalent to OSGB 1936 / British National Grid to WGS 84 (2) (tfm code 15956).','Accuracy 1m.','EPSG','9615','NTv2','EPSG','4277','EPSG','4326','EPSG','1264',1.0,'EPSG','8656','Latitude and longitude difference file','OSTN02_NTv2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-UK Gbr02 NT',0); INSERT INTO "grid_transformation" VALUES('EPSG','5409','NGVD29 height to NAVD88 height (1)','Interpolation within the gridded data file may be made using any of the horizontal CRSs NAD27, NAD83 or NAD83(HARN).','Accuracy 2cm','EPSG','9658','Vertical Offset by Grid Interpolation (VERTCON)','EPSG','5702','EPSG','5703','EPSG','2950',0.02,'EPSG','8732','Vertical offset file','vertconw.94',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus W',1); INSERT INTO "grid_transformation" VALUES('EPSG','5410','NGVD29 height to NAVD88 height (2)','Interpolation within the gridded data file may be made using any of the horizontal CRSs NAD27, NAD83 or NAD83(HARN).','Accuracy 2cm','EPSG','9658','Vertical Offset by Grid Interpolation (VERTCON)','EPSG','5702','EPSG','5703','EPSG','2949',0.02,'EPSG','8732','Vertical offset file','vertconc.94',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus C',1); INSERT INTO "grid_transformation" VALUES('EPSG','5411','NGVD29 height to NAVD88 height (3)','Interpolation within the gridded data file may be made using any of the horizontal CRSs NAD27, NAD83 or NAD83(HARN).','Accuracy 2cm','EPSG','9658','Vertical Offset by Grid Interpolation (VERTCON)','EPSG','5702','EPSG','5703','EPSG','2948',0.02,'EPSG','8732','Vertical offset file','vertcone.94',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus E',1); INSERT INTO "grid_transformation" VALUES('EPSG','5502','RGAF09 to Martinique 1987 height (1)','Replaces tfm from RRAF 1991, code 4561. May be used for transformations from WGS 84 to IGN 1987. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','5488','EPSG','5756','EPSG','3276',998.0,'EPSG','8666','Geoid (height correction) model file','gg10_mart.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Mtq',0); INSERT INTO "grid_transformation" VALUES('EPSG','5503','RGAF09 to Guadeloupe 1988 height (1)','Replaces tfm from RRAF 1991, code 4562. May be used for transformations from WGS 84 to IGN 1988. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore areas.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','5488','EPSG','5757','EPSG','2892',0.2,'EPSG','8666','Geoid (height correction) model file','gg10_gtbt.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp GT',0); INSERT INTO "grid_transformation" VALUES('EPSG','5504','RGAF09 to IGN 1988 MG height (1)','Replaces tfm from RRAF 1991, code 4563. May be used for transformations from WGS 84 to IGN 1988 MG. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','5488','EPSG','5617','EPSG','2894',0.2,'EPSG','8666','Geoid (height correction) model file','gg10_mg.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp MG',0); INSERT INTO "grid_transformation" VALUES('EPSG','5505','RGAF09 to IGN 1988 SM height (1)','Replaces tfm from RRAF 1991, code 4564. May be used for transformations from WGS 84 to IGN 1988 SM. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','5488','EPSG','5620','EPSG','2890',0.2,'EPSG','8666','Geoid (height correction) model file','gg10_sm.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp StM',0); INSERT INTO "grid_transformation" VALUES('EPSG','5506','RGAF09 to IGN 1988 LS height (1)','Replaces tfm from RRAF 1991, code 4565. May be used for transformations from WGS 84 to IGN 1988 LS. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','5488','EPSG','5616','EPSG','2895',0.2,'EPSG','8666','Geoid (height correction) model file','gg10_ls.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp LSt',0); INSERT INTO "grid_transformation" VALUES('EPSG','5507','RGAF09 to IGN 1992 LD height (1)','Replaces tfm from RRAF 1991, code 4566. Replaced by RGAF09 to IGN 2008 LD height (1), CT code 9131. May be used for transformations from WGS 84 to IGN 1992 LD. Accuracy at each 0.025° grid node is given within the geoid model file, approx. average 0.5m.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','5488','EPSG','5618','EPSG','2893',0.5,'EPSG','8666','Geoid (height correction) model file','gg10_ld.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp Des',0); INSERT INTO "grid_transformation" VALUES('EPSG','5508','RGAF09 to IGN 1988 SB height (1)','Replaces tfm from RRAF 1991, code 4567. May be used for transformations from WGS 84 to IGN 1988 SB. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','5488','EPSG','5619','EPSG','2891',0.2,'EPSG','8666','Geoid (height correction) model file','gg10_sb.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp StB',0); INSERT INTO "grid_transformation" VALUES('EPSG','5525','Corrego Alegre 1961 to SIRGAS 2000 (1)','May be used as transformation between Corrego Alegre 1961 and WGS 84 - see tfm code 5540.','Accuracy 2m.','EPSG','9615','NTv2','EPSG','5524','EPSG','4674','EPSG','3874',2.0,'EPSG','8656','Latitude and longitude difference file','CA61_003.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'IBGE-Bra',0); INSERT INTO "grid_transformation" VALUES('EPSG','5526','Corrego Alegre 1970-72 to SIRGAS 2000 (1)','May be used as transformation between Corrego Alegre 1970-72 and WGS 84 - see tfm code 5541.','Accuracy 2m.','EPSG','9615','NTv2','EPSG','4225','EPSG','4674','EPSG','1293',2.0,'EPSG','8656','Latitude and longitude difference file','CA7072_003.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'IBGE-Bra',0); INSERT INTO "grid_transformation" VALUES('EPSG','5528','SAD69 to SIRGAS 2000 (2)','For IBGE, in onshore east and south Brazil only, replaces SAD69 to SIRGAS 2000 (1) (tfm code 15485) for pre-1996 data based on the classical geodetic network. May be used as transformation between SAD69 and WGS 84 - see tfm code 5542.','Accuracy 1m. Should be used only for pre-1996 data related to the classical geodetic network.','EPSG','9615','NTv2','EPSG','4618','EPSG','4674','EPSG','3887',1.0,'EPSG','8656','Latitude and longitude difference file','SAD69_003.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'IBGE-Bra',0); INSERT INTO "grid_transformation" VALUES('EPSG','5529','SAD69(96) to SIRGAS 2000 (1)','May be used as transformation between SAD69(96) and WGS 84 - see tfm code 5543.','Accuracy 0.5m. Should be used for post-1996 data based on the classical geodetic network.','EPSG','9615','NTv2','EPSG','5527','EPSG','4674','EPSG','3887',0.5,'EPSG','8656','Latitude and longitude difference file','SAD96_003.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'IBGE-Bra',0); INSERT INTO "grid_transformation" VALUES('EPSG','5540','Corrego Alegre 1961 to WGS 84 (1)','Parameters from Corrego Alegre 1961 to SIRGAS 2000 (1) (tfm code 5525) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation.','Accuracy 2m.','EPSG','9615','NTv2','EPSG','5524','EPSG','4326','EPSG','3874',2.0,'EPSG','8656','Latitude and longitude difference file','CA61_003.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bra',0); INSERT INTO "grid_transformation" VALUES('EPSG','5541','Corrego Alegre 1970-72 to WGS 84 (2)','Parameters from Corrego Alegre 1970-72 to SIRGAS 2000 (1) (tfm code 5526) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation.','Accuracy 2m.','EPSG','9615','NTv2','EPSG','4225','EPSG','4326','EPSG','1293',2.0,'EPSG','8656','Latitude and longitude difference file','CA7072_003.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bra',0); INSERT INTO "grid_transformation" VALUES('EPSG','5542','SAD69 to WGS 84 (15)','Parameters from SAD69 to SIRGAS 2000 (2) (tfm code 5528) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation.','Accuracy 2m. Should be used only for pre-1996 data related to the classical geodetic network.','EPSG','9615','NTv2','EPSG','4618','EPSG','4326','EPSG','3887',2.0,'EPSG','8656','Latitude and longitude difference file','SAD69_003.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bra',0); INSERT INTO "grid_transformation" VALUES('EPSG','5543','SAD69(96) to WGS 84 (1)','Parameters from SAD69(96) to SIRGAS 2000 (1) (tfm code 5529) assuming that SIRGAS 2000 and WGS 84 are equal within the accuracy of the transformation.','Accuracy 1m. Should be used for post-1996 data based on the classical geodetic network.','EPSG','9615','NTv2','EPSG','5527','EPSG','4326','EPSG','3887',1.0,'EPSG','8656','Latitude and longitude difference file','SAD96_003.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Bra',0); INSERT INTO "grid_transformation" VALUES('EPSG','5594','FEH2010 to FCSVR10 height (1)','','Derivation of gravity-related heights from GPS observations.','EPSG','1030','Geographic3D to GravityRelatedHeight (NZgeoid)','EPSG','5592','EPSG','5597','EPSG','3890',0.1,'EPSG','8666','Geoid (height correction) model file','fehmarn_geoid10.gri',NULL,NULL,NULL,NULL,NULL,NULL,'FEM-Dnk-Deu Feh',1); INSERT INTO "grid_transformation" VALUES('EPSG','5626','FEH2010 to FCSVR10 height (1)','','Derivation of gravity-related heights from GPS observations.','EPSG','1047','Geographic3D to GravityRelatedHeight (Gravsoft)','EPSG','5592','EPSG','5597','EPSG','3890',0.1,'EPSG','8666','Geoid (height correction) model file','fehmarn_geoid10.gri',NULL,NULL,NULL,NULL,NULL,NULL,'FEM-Dnk-Deu Feh',0); INSERT INTO "grid_transformation" VALUES('EPSG','5656','GDA94 to AHD height (49)','Replaces AusGeoid98 model. Uses AusGeoid09 model which uses bi-cubic interpolation; bi-linear interpolation of the grid file will give results agreeing to within 1cm 99.97% of the time. May be used for transformations from WGS 84 to AHD.','Derivation of gravity-related heights from GPS observations.','EPSG','1048','Geographic3D to GravityRelatedHeight (Ausgeoid v2)','EPSG','4939','EPSG','5711','EPSG','1281',0.03,'EPSG','8666','Geoid (height correction) model file','AUSGeoid09_GDA94_V1.01_DOV_windows.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus09 mainland',0); INSERT INTO "grid_transformation" VALUES('EPSG','5657','GDA94 to AHD (Tasmania) height (2)','Replaces AusGeoid98 model. Uses AusGeoid09 model which uses bi-cubic interpolation; bi-linear interpolation of the grid file will give results agreeing to within 1cm 99.97% of the time. May be used for transformations from WGS 84 to AHD (Tasmania).','Derivation of gravity-related heights from GPS observations.','EPSG','1048','Geographic3D to GravityRelatedHeight (Ausgeoid v2)','EPSG','4939','EPSG','5712','EPSG','2947',0.03,'EPSG','8666','Geoid (height correction) model file','AUSGeoid09_GDA94_V1.01_DOV_windows.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus09 Tas',0); INSERT INTO "grid_transformation" VALUES('EPSG','5661','ED50 to ETRS89 (14)','When included in concatenation from and to projected CRSs, gives same results as ED50 / UTM zone 31N to ETRS89 / UTM zone 31N (1) - see CRS code 5166.','For applications to an accuracy of 0.05 m (map scales not larger than 1:1000).','EPSG','9615','NTv2','EPSG','4230','EPSG','4258','EPSG','3732',0.05,'EPSG','8656','Latitude and longitude difference file','100800401.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ICC-Esp Cat',0); INSERT INTO "grid_transformation" VALUES('EPSG','5891','MGI to ETRS89 (5)','Not to be used for cadastral purposes as it does not comply with the rules for control network tie-in as per Paragraph 3 of the Land Survey Regulations (Vermessungsverordnung) 2010.','For applications to an accuracy of 1 decimetre: GIS, topographic mapping, engineering survey. (See remarks for cadastral survey).','EPSG','9615','NTv2','EPSG','4312','EPSG','4258','EPSG','1037',0.15,'EPSG','8656','Latitude and longitude difference file','AT_GIS_GRID.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'BEV-Aut NTv2',0); INSERT INTO "grid_transformation" VALUES('EPSG','6138','CIGD11 to GCVD54 height (ft) (1)','Care: source CRS heights are in metres, transformation file parameter values and target CRS heights are in feet.','Derivation of gravity-related heights from GPS observations.','EPSG','1050','Geographic3D to GravityRelatedHeight (CI)','EPSG','6134','EPSG','6130','EPSG','3185',0.03,'EPSG','8666','Geoid (height correction) model file','GCGM0811.TXT',NULL,NULL,NULL,NULL,NULL,NULL,'LSD-Cym',0); INSERT INTO "grid_transformation" VALUES('EPSG','6139','CIGD11 to LCVD61 height (ft) (1)','Care: source CRS heights are in metres, transformation file parameter values and target CRS heights are in feet.','Derivation of gravity-related heights from GPS observations.','EPSG','1050','Geographic3D to GravityRelatedHeight (CI)','EPSG','6134','EPSG','6131','EPSG','4121',0.03,'EPSG','8666','Geoid (height correction) model file','LCGM0811.TXT',NULL,NULL,NULL,NULL,NULL,NULL,'LSD-Cym',0); INSERT INTO "grid_transformation" VALUES('EPSG','6140','CIGD11 to CBVD61 height (ft) (1)','Care: source CRS heights are in metres, transformation file parameter values and target CRS heights are in feet.','Derivation of gravity-related heights from GPS observations.','EPSG','1050','Geographic3D to GravityRelatedHeight (CI)','EPSG','6134','EPSG','6132','EPSG','3207',0.03,'EPSG','8666','Geoid (height correction) model file','CBGM0811.TXT',NULL,NULL,NULL,NULL,NULL,NULL,'LSD-Cym',0); INSERT INTO "grid_transformation" VALUES('EPSG','6188','Lisbon to ETRS89 (4)','Derived from 1129 common stations in the national geodetic network. Residuals at 130 further test points average 0.09m, maximum 0.30m.','Decimetre accuracy.','EPSG','9615','NTv2','EPSG','4207','EPSG','4258','EPSG','1294',0.1,'EPSG','8656','Latitude and longitude difference file','DLx_ETRS89_geo.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt 0.1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','6189','Datum 73 to ETRS89 (6)','Derived from 1129 common stations in the national geodetic network. Residuals at 130 further test points average 0.06m, maximum 0.16m.','Decimetre accuracy.','EPSG','9615','NTv2','EPSG','4274','EPSG','4258','EPSG','1294',0.1,'EPSG','8656','Latitude and longitude difference file','D73_ETRS89_geo.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'IGP-Prt 0.1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','6209','NAD27 to NAD83(CSRS) (4)','Introduced in 2011. Precision of 20 cm in area covered by the input data set and 40 cm anywhere else, with the exception of the northwest area of the province (near the border with Quebec) where the precision deteriorates to 80 cm.','Used in the GeoNB Coordinate Transformation Service.','EPSG','9615','NTv2','EPSG','4267','EPSG','4617','EPSG','1447',0.8,'EPSG','8656','Latitude and longitude difference file','NB2783v2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SNB-Can NB',1); INSERT INTO "grid_transformation" VALUES('EPSG','6326','NAD83(2011) to NAVD88 height (1)','Uses Geoid12B hybrid model. Renamed from Geoid12A but with no data changes. See information source for further information.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','6319','EPSG','5703','EPSG','1323',0.02,'EPSG','8666','Geoid (height correction) model file','g2012bu0.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus',0); INSERT INTO "grid_transformation" VALUES('EPSG','6327','NAD83(2011) to NAVD88 height (2)','Uses Geoid12B hybrid model. Renamed from Geoid12A but with no data changes. See information source for further information.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','6319','EPSG','5703','EPSG','1330',0.02,'EPSG','8666','Geoid (height correction) model file','g2012ba0.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US AK',0); INSERT INTO "grid_transformation" VALUES('EPSG','6648','NAD83(CSRS) to CGVD2013 height (1)','Uses CGG2013 model which uses bi-quadratic interpolation; bi-linear interpolation of the grid file will give results agreeing to within 1cm 99.97% of the time.','Derivation of gravity-related heights from GPS observations.','EPSG','1060','Geographic3D to GravityRelatedHeight (CGG2013)','EPSG','4955','EPSG','6647','EPSG','1061',0.03,'EPSG','8666','Geoid (height correction) model file','CGG2013n83.byn',NULL,NULL,NULL,NULL,NULL,NULL,'NRC Can CGG2013',1); INSERT INTO "grid_transformation" VALUES('EPSG','6712','Tokyo to JGD2000 (2)','NTv2 grid derived by ESRI from that supplied by GSI in application tky2jgd. After Tohoku earthquake of 2011 accuracy in northern Honshu reduced to 1-5m and in this area replaced by Tokyo to JGD2011 (tfm code 6714).','Surveying, mapping and civil engineering.','EPSG','9615','NTv2','EPSG','4301','EPSG','4612','EPSG','3957',0.2,'EPSG','8656','Latitude and longitude difference file','tky2jgd.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Jpn',0); INSERT INTO "grid_transformation" VALUES('EPSG','6713','JGD2000 to JGD2011 (1)','NTv2 grid derived by ESRI from that supplied by GSI in application patchjgd.','Surveying, mapping and civil engineering purposes','EPSG','9615','NTv2','EPSG','4612','EPSG','6668','EPSG','4170',0.2,'EPSG','8656','Latitude and longitude difference file','touhokutaiheiyouoki2011.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Jpn N Honshu',0); INSERT INTO "grid_transformation" VALUES('EPSG','6740','Tokyo to JGD2011 (2)','Parameter values from Tokyo to JGD2000 (2) (tfm code 6712) as in area of applicability JGD2011 = JGD2000. NTv2 grid derived by ESRI from that supplied by GSI in application tky2jgd. See Tokyo to JGD2011 (1) (tfm code 6714) for northern Honshu area.','Surveying, mapping and civil engineering.','EPSG','9615','NTv2','EPSG','4301','EPSG','6668','EPSG','4194',0.2,'EPSG','8656','Latitude and longitude difference file','tky2jgd.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Jpn ex N Honshu',0); INSERT INTO "grid_transformation" VALUES('EPSG','6946','TM75 to ETRS89 (3)','Approximate alternative to official OS polynomial method (tfm code 1041). May be taken as approximate transformation TM75 to WGS 84 - see code 6947.','Emulation of official polynomial (tfm code 1041). Accuracy of emulation at 23000 test points compared to official polynomial: 6mm maximum.','EPSG','9615','NTv2','EPSG','4300','EPSG','4258','EPSG','1305',0.41,'EPSG','8656','Latitude and longitude difference file','tm75_etrs89.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OSI-Ire NT',0); INSERT INTO "grid_transformation" VALUES('EPSG','6947','TM75 to WGS 84 (4)','Parameter values taken from TM75 to ETRS89 (3) (tfm code 6946) assuming that ETRS89 is coincident with WGS 84 within the accuracy of the tfm. Within accuracy of the tfm equivalent to TM75 to WGS 84 (1) (tfm code 1042).','Emulation of polynomial (tfm code 1042). Accuracy 1m.','EPSG','9615','NTv2','EPSG','4300','EPSG','4326','EPSG','1305',1.0,'EPSG','8656','Latitude and longitude difference file','tm75_etrs89.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Ire NT',0); INSERT INTO "grid_transformation" VALUES('EPSG','6948','RD/83 to ETRS89 (2)','Recommended by Saxony State Spatial Data and Land Survey Corporation for transformations based on official geospatial data of Saxony. See www.landesvermessung.sachsen.de/inhalt/etrs/method/method.html#ntv2.','Cadastre. Accuracy 3mm within Saxony; within the rest of RD/83 definition area results at least coincide with EPSG transformation code15868.','EPSG','9615','NTv2','EPSG','4745','EPSG','4258','EPSG','2545',0.03,'EPSG','8656','Latitude and longitude difference file','NTv2_SN.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'GeoSN-Deu SN',0); INSERT INTO "grid_transformation" VALUES('EPSG','7000','Amersfoort to ETRS89 (7)','Consistent to within 1mm with official RNAPTRANS(TM)2008 at ground level onshore and at MSL offshore. The horizontal deviation using this NTv2 grid is approximately 1mm per 50m height difference from ground level or MSL.','Approximation of horizontal component of official 3D RDNAPTRANS(TM) transformation, which since 1st October 2000 has defined Amersfoort geodetic datum.','EPSG','9615','NTv2','EPSG','4289','EPSG','4258','EPSG','1275',0.001,'EPSG','8656','Latitude and longitude difference file','rdtrans2008.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'RDNAP-Nld 2008',0); INSERT INTO "grid_transformation" VALUES('EPSG','7001','ETRS89 to NAP height (1)','Alternative to vertical component of official 3D RDNAPTRANS(TM)2008. The naptrans2008 correction grid incorporates the NLGEO2004 geoid model plus a fixed offset.','Derivation of gravity-related heights from GPS observations. When used in conjunction with transformation Amersfoort to ETRS89 (7) (code 7000), this transformation is reversible.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4937','EPSG','5709','EPSG','1275',0.01,'EPSG','8666','Geoid (height correction) model file','naptrans2008.gtx',NULL,NULL,NULL,NULL,NULL,NULL,'RDNAP-Nld 2008',1); INSERT INTO "grid_transformation" VALUES('EPSG','7646','NAD83(2011) to PRVD02 height (1)','Uses Geoid12B hybrid model. See information source for further information.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','6319','EPSG','6641','EPSG','3294',0.02,'EPSG','8666','Geoid (height correction) model file','g2012bp0.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Pri 12B',0); INSERT INTO "grid_transformation" VALUES('EPSG','7647','NAD83(2011) to VIVD09 height (1)','Uses Geoid12B hybrid model. See information source for further information.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','6319','EPSG','6642','EPSG','3330',0.02,'EPSG','8666','Geoid (height correction) model file','g2012bp0.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Vir 12B',0); INSERT INTO "grid_transformation" VALUES('EPSG','7648','NAD83(MA11) to GUVD04 height (1)','Uses Geoid12B hybrid model. See information source for further information.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','6324','EPSG','6644','EPSG','3255',0.02,'EPSG','8666','Geoid (height correction) model file','g2012bg0.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Gum 12B',0); INSERT INTO "grid_transformation" VALUES('EPSG','7649','NAD83(MA11) to NMVD03 height (1)','Uses Geoid12B hybrid model. See information source for further information.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','6324','EPSG','6640','EPSG','4171',0.02,'EPSG','8666','Geoid (height correction) model file','g2012bg0.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Mnp 12B',0); INSERT INTO "grid_transformation" VALUES('EPSG','7650','NAD83(PA11) to ASVD02 height (1)','Uses Geoid12B hybrid model. See information source for further information.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','6321','EPSG','6643','EPSG','2288',0.02,'EPSG','8666','Geoid (height correction) model file','g2012bs0.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Asm 12B',0); INSERT INTO "grid_transformation" VALUES('EPSG','7655','PNG94 to PNG08 height (1)','','Derivation of gravity-related heights from GPS observations.','EPSG','1059','Geographic3D to GravityRelatedHeight (PNG)','EPSG','5545','EPSG','7447','EPSG','4384',0.2,'EPSG','8666','Geoid (height correction) model file','PNG08.DAT',NULL,NULL,NULL,NULL,NULL,NULL,'QC-Png',0); INSERT INTO "grid_transformation" VALUES('EPSG','7673','CH1903 to CHTRF95 (1)','Equivalent to concatenation of transformations 15486 and 1509 to within 2cm. Also used as transformation between CH1903 and ETRS89 (see code 7674).','Approximation (to better than 2m) using NTv2 method of results of FINELTRA programme concatenated with LV-95 parameters.','EPSG','9615','NTv2','EPSG','4149','EPSG','4151','EPSG','1286',0.25,'EPSG','8656','Latitude and longitude difference file','CHENyx06_ETRS.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'BfL-Che NTv2',0); INSERT INTO "grid_transformation" VALUES('EPSG','7674','CH1903 to ETRS89 (2)','Replaces tfm code 1646. Equivalent to concatenation of transformations 15486 and 1647 to within 2cm. Also used as transformation between CH1903 and CHTRF95 (see code 7673). May be used as approximate tfm CH1903 to WGS 84 - see code 7788.','Approximation (to better than 2cm) using NTv2 method of results of FINELTRA programme concatenated with LV-95 parameters.','EPSG','9615','NTv2','EPSG','4149','EPSG','4258','EPSG','1286',0.25,'EPSG','8656','Latitude and longitude difference file','CHENyx06_ETRS.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'BfL-Che NTv2',0); INSERT INTO "grid_transformation" VALUES('EPSG','7709','OSGB 1936 to ETRS89 (2)','Approximate alternative to official OSTN15 method (tfm code 7953). May be taken as approximate transformation OSGB 1936 to WGS 84 - see code 7710. Replaces OSGB 1936 to ETRS89 (1) (tfm code 5338).','Accuracy at 2000 test points compared to official OSTN15 (tfm code 7708): latitude 0.5mm average, 17mm maximum; longitude 0.8mm average, 23mm maximum.','EPSG','9615','NTv2','EPSG','4277','EPSG','4258','EPSG','4390',0.03,'EPSG','8656','Latitude and longitude difference file','OSTN15_NTv2_OSGBtoETRS.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OSGB-UK Gbr15 NT',0); INSERT INTO "grid_transformation" VALUES('EPSG','7710','OSGB 1936 to WGS 84 (9)','Parameter values taken from OSGB 1936 to ETRS89 (3) (tfm code 7709) assuming that ETRS89 is coincident with WGS 84 within the accuracy of the tfm. Replaces OSGB 1936 to WGS 84 (7) (tfm code 5339).','Accuracy 1m.','EPSG','9615','NTv2','EPSG','4277','EPSG','4326','EPSG','4390',1.0,'EPSG','8656','Latitude and longitude difference file','OSTN15_NTv2_OSGBtoETRS.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-UK Gbr15 NT',0); INSERT INTO "grid_transformation" VALUES('EPSG','7711','ETRS89 to Newlyn height (2)','OSGM15 supersedes OSGM02 geoid model. Replaces ETRS89 to Newlyn height (1) (tfm code 10021).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5701','EPSG','2792',0.008,'EPSG','8666','Geoid (height correction) model file','OSTN15_OSGM15_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Gbr 2015',0); INSERT INTO "grid_transformation" VALUES('EPSG','7712','ETRS89 to Newlyn (Orkney Isles) height (2)','OSGM15 supersedes OSGM02 geoid model. Replaces ETRS89 to Newlyn (Orkney Isles) height (1) (tfm code 10029).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5740','EPSG','2793',0.017,'EPSG','8666','Geoid (height correction) model file','OSTN15_OSGM15_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Ork 2015',0); INSERT INTO "grid_transformation" VALUES('EPSG','7713','ETRS89 to Newlyn (Offshore) height (1)','Replaces ETRS89 to Fair Isle/Flannan Isles/Foula/North Rona/St Kilda/Sule Skerry height (1) (tfm codes 10024-26, 10030-31 and 10034).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','7707','EPSG','4391',0.02,'EPSG','8666','Geoid (height correction) model file','OSTN15_OSGM15_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Off 2015',0); INSERT INTO "grid_transformation" VALUES('EPSG','7714','ETRS89 to Lerwick height (2)','OSGM15 supersedes OSGM02 geoid model. Replaces ETRS89 to Lerwick height (1) (tfm code 10027).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5742','EPSG','2795',0.018,'EPSG','8666','Geoid (height correction) model file','OSTN15_OSGM15_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS -UK Shet 2015',0); INSERT INTO "grid_transformation" VALUES('EPSG','7715','ETRS89 to Stornoway height (2)','OSGM15 supersedes OSGM02 geoid model. Replaces ETRS89 to Stornaway height (1) (tfm code 10033).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5746','EPSG','2799',0.011,'EPSG','8666','Geoid (height correction) model file','OSTN15_OSGM15_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Heb 2015',0); INSERT INTO "grid_transformation" VALUES('EPSG','7716','ETRS89 to St. Marys height (2)','OSGM15 supersedes OSGM02 geoid model. Replaces ETRS89 to St Marys height (1) (tfm code 10032).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5749','EPSG','2802',0.01,'EPSG','8666','Geoid (height correction) model file','OSTN15_OSGM15_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Scilly 2015',0); INSERT INTO "grid_transformation" VALUES('EPSG','7717','ETRS89 to Douglas height (2)','OSGM15 supersedes OSGM02 geoid model. Replaces ETRS89 to Douglas height (1) (tfm code 10023).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5750','EPSG','2803',0.03,'EPSG','8666','Geoid (height correction) model file','OSTN15_OSGM15_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Man 2015',0); INSERT INTO "grid_transformation" VALUES('EPSG','7718','ETRS89 to Belfast height (2)','OSGM15 supersedes OSGM02 geoid model. Replaces ETRS89 to Belfast height (1) (tfm code 5334).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','1045','Geographic3D to GravityRelatedHeight (OSGM02-Ire)','EPSG','4937','EPSG','5732','EPSG','2530',0.014,'EPSG','8666','Geoid (height correction) model file','OSGM15_Belfast.gri',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK NI 2015',1); INSERT INTO "grid_transformation" VALUES('EPSG','7719','ETRS89 to Malin Head height (2)','OSGM15 supersedes OSGM02 geoid model. Replaces ETRS89 to Malin Head height (1) (tfm code 5335).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','1045','Geographic3D to GravityRelatedHeight (OSGM02-Ire)','EPSG','4937','EPSG','5731','EPSG','1305',0.023,'EPSG','8666','Geoid (height correction) model file','OSGM15_Malin.gri',NULL,NULL,NULL,NULL,NULL,NULL,'OS-Ire 2015',1); INSERT INTO "grid_transformation" VALUES('EPSG','7788','CH1903 to WGS 84 (3)','Parameter values from CH1903 to ETRS89 (2) (code 7674) assuming that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. Equivalent to concatenation of transformations 15486 and 1676.','Approximation at the +/- 1.5m level assuming that CH1903 is approximately equivalent to CH1903+ and that ETRS89 is equivalent to WGS 84.','EPSG','9615','NTv2','EPSG','4149','EPSG','4326','EPSG','1286',1.5,'EPSG','8656','Latitude and longitude difference file','CHENyx06_ETRS.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Che NTv2',0); INSERT INTO "grid_transformation" VALUES('EPSG','7840','NZGD2000 to NZVD2016 height (1)','Defines NZVD2016 vertical datum (datum code 1169, CRS code 7839).','Derivation of gravity-related heights from GPS observations.','EPSG','1030','Geographic3D to GravityRelatedHeight (NZgeoid)','EPSG','4959','EPSG','7839','EPSG','1175',0.1,'EPSG','8666','Geoid (height correction) model file','New_Zealand_Quasigeoid_2016.csv',NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ 2016',0); INSERT INTO "grid_transformation" VALUES('EPSG','7860','NZVD2016 height to Auckland 1946 height (1)','Derived at 260 control points. Mean offset 0.292m, standard deviation 0.029m, maximum difference from mean 0.075m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5759','EPSG','3764',0.02,'EPSG','8732','Vertical offset file','auckland-1946-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ AUCK',0); INSERT INTO "grid_transformation" VALUES('EPSG','7861','NZVD2016 height to Bluff 1955 height (1)','Derived at 71 control points. Mean offset 0.273m, standard deviation 0.034m, maximum difference from mean 0.079m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5760','EPSG','3801',0.02,'EPSG','8732','Vertical offset file','bluff-1955-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ BLUF',0); INSERT INTO "grid_transformation" VALUES('EPSG','7862','NZVD2016 height to Dunedin 1958 height (1)','Derived at 197 control points. Mean offset 0.326m, standard deviation 0.043m, maximum difference from mean 0.152m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5761','EPSG','3803',0.02,'EPSG','8732','Vertical offset file','dunedin-1958-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ DUNE',0); INSERT INTO "grid_transformation" VALUES('EPSG','7863','NZVD2016 height to Dunedin-Bluff 1960 height (1)','Derived at 205 control points. Mean offset 0.254m, standard deviation 0.039m, maximum difference from mean 0.11m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','4458','EPSG','3806',0.02,'EPSG','8732','Vertical offset file','dunedin-bluff-1960-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ DUBL',0); INSERT INTO "grid_transformation" VALUES('EPSG','7864','NZVD2016 height to Gisborne 1926 height (1)','Derived at 274 control points. Mean offset 0.343m, standard deviation 0.025m, maximum difference from mean 0.09m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5762','EPSG','3771',0.02,'EPSG','8732','Vertical offset file','gisborne-1926-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ GISB',0); INSERT INTO "grid_transformation" VALUES('EPSG','7865','NZVD2016 height to Lyttelton 1937 height (1)','Derived at 923 control points. Mean offset 0.34m, standard deviation 0.041m, maximum difference from mean 0.149m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5763','EPSG','3804',0.01,'EPSG','8732','Vertical offset file','lyttelton-1937-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ LYTT',0); INSERT INTO "grid_transformation" VALUES('EPSG','7866','NZVD2016 height to Moturiki 1953 height (1)','Derived at 519 control points. Mean offset 0.309m, standard deviation 0.071m, maximum difference from mean 0.231m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5764','EPSG','3768',0.02,'EPSG','8732','Vertical offset file','moturiki-1953-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ MOTU',0); INSERT INTO "grid_transformation" VALUES('EPSG','7867','NZVD2016 height to Napier 1962 height (1)','Derived at 207 control points. Mean offset 0.203m, standard deviation 0.034m, maximum difference from mean 0.096m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5765','EPSG','3772',0.02,'EPSG','8732','Vertical offset file','napier-1962-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ NAPI',0); INSERT INTO "grid_transformation" VALUES('EPSG','7868','NZVD2016 height to Nelson 1955 height (1)','Derived at 256 control points. Mean offset 0.329m, standard deviation 0.039m, maximum difference from mean 0.114m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5766','EPSG','3802',0.02,'EPSG','8732','Vertical offset file','nelson-1955-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ NELS',0); INSERT INTO "grid_transformation" VALUES('EPSG','7869','NZVD2016 height to One Tree Point 1964 height (1)','Derived at 137 control points. Mean offset 0.077m, standard deviation 0.042m, maximum difference from mean 0.107m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5767','EPSG','3762',0.01,'EPSG','8732','Vertical offset file','onetreepoint-1964-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ ONTP',0); INSERT INTO "grid_transformation" VALUES('EPSG','7870','NZVD2016 height to Stewart Island 1977 height (1)','Derived at 4 control points. Mean offset 0.299m, standard deviation 0.025m, maximum difference from mean 0.039m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5772','EPSG','3338',0.18,'EPSG','8732','Vertical offset file','stewartisland-1977-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ STWT',0); INSERT INTO "grid_transformation" VALUES('EPSG','7871','NZVD2016 height to Taranaki 1970 height (1)','Derived at 125 control points. Mean offset 0.286m, standard deviation 0.026m, maximum difference from mean 0.07m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5769','EPSG','3769',0.02,'EPSG','8732','Vertical offset file','taranaki-1970-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ TARA',0); INSERT INTO "grid_transformation" VALUES('EPSG','7872','NZVD2016 height to Wellington 1953 height (1)','Derived at 137 control points. Mean offset 0.408m, standard deviation 0.054m, maximum difference from mean 0.112m.','Transformation between national and local height systems.','EPSG','1071','Vertical Offset by Grid Interpolation (NZLVD)','EPSG','7839','EPSG','5770','EPSG','3773',0.02,'EPSG','8732','Vertical offset file','wellington-1953-to-nzvd2016-conversion.csv',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ WGTN',0); INSERT INTO "grid_transformation" VALUES('EPSG','7891','SHGD2015 to SHVD2015 height (1)','This transformation defines SHVD2015 heights.','Derivation of gravity-related heights from GPS observations.','EPSG','1025','Geographic3D to GravityRelatedHeight (EGM2008)','EPSG','7885','EPSG','7890','EPSG','3183',0.0,'EPSG','8666','Geoid (height correction) model file','Und_min2.5x2.5_egm2008_isw=82_WGS84_TideFree.gz',NULL,NULL,NULL,NULL,NULL,NULL,'ENRD-Shn Hel',0); INSERT INTO "grid_transformation" VALUES('EPSG','7957','Canada velocity grid v6','NOTE: Before being deprecated this record had a second parameter (code 1048, value 8251) which has been removed due to being non-compliant with the data model.','Change of coordinate epoch for points referenced to NAD83(CSRS)v6.','EPSG','1070','Point motion by grid (Canada NTv2_Vel)','EPSG','8251','EPSG','8251','EPSG','1061',0.01,'EPSG','1050','Point motion velocity grid file','cvg60.cvb',NULL,NULL,NULL,NULL,NULL,NULL,'NRC-Can cvg6.0',1); INSERT INTO "grid_transformation" VALUES('EPSG','7958','ETRS89 to Belfast height (2)','OSGM15 supersedes OSGM02 geoid model. Replaces ETRS89 to Belfast height (1) (tfm code 5334).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','1072','Geographic3D to GravityRelatedHeight (OSGM15-Ire)','EPSG','4937','EPSG','5732','EPSG','2530',0.014,'EPSG','8666','Geoid (height correction) model file','OSGM15_Belfast.gri',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK NI 2015',0); INSERT INTO "grid_transformation" VALUES('EPSG','7959','ETRS89 to Malin Head height (2)','OSGM15 supersedes OSGM02 geoid model. Replaces ETRS89 to Malin Head height (1) (tfm code 5335).','Derivation of gravity-related heights from OSGM15 geoid model.','EPSG','1072','Geographic3D to GravityRelatedHeight (OSGM15-Ire)','EPSG','4937','EPSG','5731','EPSG','1305',0.023,'EPSG','8666','Geoid (height correction) model file','OSGM15_Malin.gri',NULL,NULL,NULL,NULL,NULL,NULL,'OS-Ire 2015',0); INSERT INTO "grid_transformation" VALUES('EPSG','7969','NGVD29 height (m) to NAVD88 height (1)','In this area the NGVD29 vertical reference surface is approximately 0.6 to 1.6m below the NAVD88 datum surface. Interpolation within the gridded data file may be made using either NAD27 or any of the realizations of NAD83 applicable to US conus.','Change of height to a different vertical reference surface.','EPSG','9658','Vertical Offset by Grid Interpolation (VERTCON)','EPSG','7968','EPSG','5703','EPSG','2950',0.02,'EPSG','8732','Vertical offset file','vertconw.94',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus W',0); INSERT INTO "grid_transformation" VALUES('EPSG','7970','NGVD29 height (m) to NAVD88 height (2)','In the SE of this area the NGVD29 surface is 0 to 0.1m above the NAVD88 surface; in the W it is 0.6 to 0.9m below the NAVD88 surface. Interpolation in the data file may be made using either NAD27 or any of the NAD83 realizations applicable to US conus.','Change of height to a different vertical reference surface.','EPSG','9658','Vertical Offset by Grid Interpolation (VERTCON)','EPSG','7968','EPSG','5703','EPSG','2949',0.02,'EPSG','8732','Vertical offset file','vertconc.94',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus C',0); INSERT INTO "grid_transformation" VALUES('EPSG','7971','NGVD29 height (m) to NAVD88 height (3)','In this area the NGVD29 vertical reference surface is approximately 0 to 0.5m above the NAVD88 surface. Interpolation within the gridded data file may be made using either NAD27 or any of the realisations of NAD83 applicable to US conus.','Change of height to a different vertical reference surface.','EPSG','9658','Vertical Offset by Grid Interpolation (VERTCON)','EPSG','7968','EPSG','5703','EPSG','2948',0.02,'EPSG','8732','Vertical offset file','vertcone.94',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus E',0); INSERT INTO "grid_transformation" VALUES('EPSG','8037','WGS 84 to MSL height (1)','Parameter values are from WGS 84 to EGM2008 height (2) (tfm code 3859) assuming that the EGM2008 height surface approximates to MSL height within the accuracy of the transformation.','Derivation of gravity-related heights referenced to an unspecified mean sea level from GPS observations.','EPSG','1025','Geographic3D to GravityRelatedHeight (EGM2008)','EPSG','4979','EPSG','5714','EPSG','1262',0.5,'EPSG','8666','Geoid (height correction) model file','Und_min1x1_egm2008_isw=82_WGS84_TideFree.gz',NULL,NULL,NULL,NULL,NULL,NULL,'IOGP-World',0); INSERT INTO "grid_transformation" VALUES('EPSG','8268','GR96 to GVR2000 height (1)','Defines GVR2000. File is also available in NOAA VDatum format (ggeoid2000.gtx) and GeoTIFF format (ggeoid2000.tif).','Derivation of gravity-related heights from GNSS observations.','EPSG','1047','Geographic3D to GravityRelatedHeight (Gravsoft)','EPSG','4909','EPSG','8266','EPSG','4461',0.1,'EPSG','8666','Geoid (height correction) model file','gr2000g.gri',NULL,NULL,NULL,NULL,NULL,NULL,'SDFE-Grl',0); INSERT INTO "grid_transformation" VALUES('EPSG','8269','GR96 to GVR2016 height (1)','Defines GVR2016. File is also available in NOAA VDatum format (ggeoid2016.gtx) and GeoTIFF format (ggeoid2016.tif).','Derivation of gravity-related heights from GNSS observations.','EPSG','1047','Geographic3D to GravityRelatedHeight (Gravsoft)','EPSG','4909','EPSG','8267','EPSG','4454',0.1,'EPSG','8666','Geoid (height correction) model file','ggeoid16.gri',NULL,NULL,NULL,NULL,NULL,NULL,'SDFE-Grl',0); INSERT INTO "grid_transformation" VALUES('EPSG','8271','RGF93 to NGF IGN69 height (2)','Replaces RGF93 to NGF IGN69 height (1) (code 10000). Accuracy at each 0.1 deg x 0.1 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4965','EPSG','5720','EPSG','1326',0.02,'EPSG','8666','Geoid (height correction) model file','RAF09.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Fra 09',1); INSERT INTO "grid_transformation" VALUES('EPSG','8272','RGF93 to IGN78 Corsica height (1)','Replaces RGF93 to NGF IGN69 height (1) (code 10002). Accuracy at each 0.1 deg x 0.1 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4965','EPSG','5721','EPSG','1327',0.05,'EPSG','8666','Geoid (height correction) model file','RAC09.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Fra Cor 09',1); INSERT INTO "grid_transformation" VALUES('EPSG','8361','ETRS89 to ETRS89 + Baltic 1957 height (1)','Uses ETRS89 (realization ETRF2000) and quasigeoid model DVRM05. 1 sigma = 34 mm (test performed on 563 independent points). Uses method 9635 rather than method 9665 to facilitate Baltic 1957 to EVRF2007 transformation (see transformation code 8363).','Geodetic survey, GIS','EPSG','9635','Geog3D to Geog2D+GravityRelatedHeight (US .gtx)','EPSG','4937','EPSG','8360','EPSG','1211',0.03,'EPSG','8666','Geoid (height correction) model file','Slovakia_ETRS89h_to_Baltic1957.gtx',NULL,NULL,NULL,NULL,NULL,NULL,'UGKK-Svk',0); INSERT INTO "grid_transformation" VALUES('EPSG','8362','ETRS89 to ETRS89 + EVRF2007 height (1)','Uses ETRS89 (realization ETRF2000) and quasigeoid model DMQSK2014E. 1 sigma = 29 mm (test performed on 93 independent points). Uses method 9635 rather than method 9665 to facilitate Baltic 1957 to EVRF2007 transformation (see transformation code 8363).','Geodetic survey, GIS','EPSG','9635','Geog3D to Geog2D+GravityRelatedHeight (US .gtx)','EPSG','4937','EPSG','7423','EPSG','1211',0.03,'EPSG','8666','Geoid (height correction) model file','Slovakia_ETRS89h_to_EVRF2007.gtx',NULL,NULL,NULL,NULL,NULL,NULL,'UGKK-Svk',0); INSERT INTO "grid_transformation" VALUES('EPSG','8364','S-JTSK [JTSK03] to S-JTSK (1)','Derived at 684 identical points.','Applications to 5cm accuracy.','EPSG','9613','NADCON','EPSG','8351','EPSG','4156','EPSG','1211',0.05,'EPSG','8657','Latitude difference file','Slovakia_JTSK03_to_JTSK.LAS','EPSG','8658','Longitude difference file','Slovakia_JTSK03_to_JTSK.LOS',NULL,NULL,'UGKK-Svk',0); INSERT INTO "grid_transformation" VALUES('EPSG','8369','BD72 to ETRS89 (3)','File name is lower case and despite its name is between geographic CRSs. (Similarly-named file in upper case BD72LB72_ETRS89LB08 operates in projected CRS domain).','For applications to an accuracy of 0.01 metre.','EPSG','9615','NTv2','EPSG','4313','EPSG','4258','EPSG','1347',0.01,'EPSG','8656','Latitude and longitude difference file','bd72lb72_etrs89lb08.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Bel 0.01m',0); INSERT INTO "grid_transformation" VALUES('EPSG','8371','RGF93 to NGF IGN69 height (2)','Replaces RGF93 to NGF IGN69 height (1) (code 10000). Accuracy at each 0.0333333333333° in longitude and 0.025° in latitude grid node is given within the geoid model file. Recommended interpolation method given in file RAF09.xml.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','4965','EPSG','5720','EPSG','1326',0.02,'EPSG','8666','Geoid (height correction) model file','RAF09.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Fra 09',0); INSERT INTO "grid_transformation" VALUES('EPSG','8372','RGF93 to IGN78 Corsica height (2)','Replaces RGF93 to NGF IGN69 height (1) (code 10002). Accuracy at each 0.0333333333333° in longitude and 0.025° in latitude grid node is given within the geoid model file. Recommended interpolation method given in file RAC09.xml.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','4965','EPSG','5721','EPSG','1327',0.05,'EPSG','8666','Geoid (height correction) model file','RAC09.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Fra Cor 09',0); INSERT INTO "grid_transformation" VALUES('EPSG','8444','GDA94 to GDA2020 (4)','See GDA94 to GDA2020 (1) (code 8048) for transformation using Helmert method which gives identical results.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4283','EPSG','7844','EPSG','4169',0.05,'EPSG','8656','Latitude and longitude difference file','GDA94_GDA2020_conformal_christmas_island.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ICSM-Cxr Conf',0); INSERT INTO "grid_transformation" VALUES('EPSG','8445','GDA94 to GDA2020 (5)','See GDA94 to GDA2020 (1) (code 8048) for transformation using Helmert method which gives identical results.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4283','EPSG','7844','EPSG','1069',0.05,'EPSG','8656','Latitude and longitude difference file','GDA94_GDA2020_conformal_cocos_island.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ICSM-Cck Conf',0); INSERT INTO "grid_transformation" VALUES('EPSG','8446','GDA94 to GDA2020 (3)','Gives identical results to Helmert transformation GDA94 to GDA2020 (1) (code 8048). See GDA94 to GDA2020 (2) (code 8447) for alternative with local distortion modelling included. GDA2020 Technical Manual and fact sheet T1 give guidance on which to use.','Conformal transformation of GDA94 coordinates that have been derived through GNSS CORS.','EPSG','9615','NTv2','EPSG','4283','EPSG','7844','EPSG','2575',0.05,'EPSG','8656','Latitude and longitude difference file','GDA94_GDA2020_conformal.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ICSM-Aus NTv2 Conf',0); INSERT INTO "grid_transformation" VALUES('EPSG','8447','GDA94 to GDA2020 (2)','See GDA94 to GDA2020 (1) or (3) (codes 8048 and 8446) for alternative conformal-only transformation without local distortion modelling. GDA2020 Technical Manual and fact sheet T1 give guidance on which to use.','Transformation of GDA94 coordinates when localised distortion needs to be taken into account, e.g. if GDA94 coordinates were derived survey control monuments.','EPSG','9615','NTv2','EPSG','4283','EPSG','7844','EPSG','2575',0.05,'EPSG','8656','Latitude and longitude difference file','GDA94_GDA2020_conformal_and_distortion.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ICSM-Aus Conf and Dist',0); INSERT INTO "grid_transformation" VALUES('EPSG','8451','GDA2020 to AHD height (1)','Uncertainties given in accompanying file AUSGeoid2020_windows_binary_uncertainty.gsb','Derivation of gravity-related heights from GNSS observations.','EPSG','1048','Geographic3D to GravityRelatedHeight (Ausgeoid v2)','EPSG','7843','EPSG','5711','EPSG','4493',0.03,'EPSG','8666','Geoid (height correction) model file','AUSGeoid2020_windows_binary.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus 2020',0); INSERT INTO "grid_transformation" VALUES('EPSG','8546','St. George Island to NAD83 (2)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4138','EPSG','4269','EPSG','1331',0.15,'EPSG','8657','Latitude difference file','nadcon5.sg1952.nad83_1986.stgeorge.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.sg1952.nad83_1986.stgeorge.lon.trn.20160901.b',NULL,NULL,'NGS-Usa AK StG Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8547','St. Lawrence Island to NAD83 (2)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4136','EPSG','4269','EPSG','1332',0.5,'EPSG','8657','Latitude difference file','nadcon5.sl1952.nad83_1986.stlawrence.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.sl1952.nad83_1986.stlawrence.lon.trn.20160901.b',NULL,NULL,'NGS-Usa AK StL Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8548','St. Paul Island to NAD83 (2)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4137','EPSG','4269','EPSG','1333',0.5,'EPSG','8657','Latitude difference file','nadcon5.sp1952.nad83_1986.stpaul.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.sp1952.nad83_1986.stpaul.lon.trn.20160901.b',NULL,NULL,'NGS-Usa AK StP Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8549','NAD27 to NAD83 (8)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; source and target CRSs have longitudes positive east in range -180° to +180°. Accuracy at 67% confidence level is 0.5m onshore, 5m nearshore and undetermined farther offshore.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4267','EPSG','4269','EPSG','1330',0.5,'EPSG','8657','Latitude difference file','nadcon5.nad27.nad83_1986.alaska.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.nad27.nad83_1986.alaska.lon.trn.20160901.b',NULL,NULL,'NGS-Usa AK Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8550','NAD83 to NAD83(HARN) (48)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4269','EPSG','4152','EPSG','2373',0.15,'EPSG','8657','Latitude difference file','nadcon5.nad83_1986.nad83_1992.alaska.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.nad83_1986.nad83_1992.alaska.lon.trn.20160901.b',NULL,NULL,'NGS-Usa AK Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8555','NAD27 to NAD83 (7)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; source and target CRSs have longitudes positive east in range -180° to +180°. Accuracy at 67% confidence level is 0.15m onshore, 1m nearshore and undetermined farther offshore.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4267','EPSG','4269','EPSG','4516',0.15,'EPSG','8657','Latitude difference file','nadcon5.nad27.nad83_1986.conus.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.nad27.nad83_1986.conus.lon.trn.20160901.b',NULL,NULL,'NGS-Usa Conus Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8556','NAD83 to NAD83(HARN) (47)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4269','EPSG','4152','EPSG','4516',0.05,'EPSG','8657','Latitude difference file','nadcon5.nad83_1986.nad83_harn.conus.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.nad83_1986.nad83_harn.conus.lon.trn.20160901.b',NULL,NULL,'NGS-Usa Conus Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8561','Old Hawaiian to NAD83 (2)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4135','EPSG','4269','EPSG','1334',0.2,'EPSG','8657','Latitude difference file','nadcon5.ohd.nad83_1986.hawaii.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.ohd.nad83_1986.hawaii.lon.trn.20160901.b',NULL,NULL,'NGS-Usa HI Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8660','NAD83 to NAD83(HARN) (49)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4269','EPSG','4152','EPSG','1334',0.05,'EPSG','8657','Latitude difference file','nadcon5.nad83_1986.nad83_1993.hawaii.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.nad83_1986.nad83_1993.hawaii.lon.trn.20160901.b',NULL,NULL,'NGS-Usa HI Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8662','American Samoa 1962 to NAD83(HARN) (3)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4169','EPSG','4152','EPSG','3109',5.0,'EPSG','8657','Latitude difference file','nadcon5.as62.nad83_1993.as.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.as62.nad83_1993.as.lon.trn.20160901.b',NULL,NULL,'NGS-Asm Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8665','Guam 1963 to NAD83(HARN) (2)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4675','EPSG','4152','EPSG','4525',5.0,'EPSG','8657','Latitude difference file','nadcon5.gu63.nad83_1993.guamcnmi.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.gu63.nad83_1993.guamcnmi.lon.trn.20160901.b',NULL,NULL,'NGS-Gum NADCON5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8668','Puerto Rico to NAD83 (2)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4139','EPSG','4269','EPSG','3634',0.15,'EPSG','8657','Latitude difference file','nadcon5.pr40.nad83_1986.prvi.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.pr40.nad83_1986.prvi.lon.trn.20160901.b',NULL,NULL,'NGS-Pri Vir Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8669','NAD83 to NAD83(HARN) (50)','Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.','Spatial referencing.','EPSG','1074','NADCON5 (2D)','EPSG','4269','EPSG','4152','EPSG','3634',0.15,'EPSG','8657','Latitude difference file','nadcon5.nad83_1986.nad83_1993.prvi.lat.trn.20160901.b','EPSG','8658','Longitude difference file','nadcon5.nad83_1986.nad83_1993.prvi.lon.trn.20160901.b',NULL,NULL,'NGS-Pri Vir Nadcon5',0); INSERT INTO "grid_transformation" VALUES('EPSG','8676','Canada velocity grid v6','','Change of coordinate epoch for points referenced to NAD83(CSRS)v6.','EPSG','1070','Point motion by grid (Canada NTv2_Vel)','EPSG','8251','EPSG','8251','EPSG','1061',0.01,'EPSG','1050','Point motion velocity grid file','cvg60.cvb',NULL,NULL,NULL,NULL,NULL,NULL,'NRC-Can cvg6.0',0); INSERT INTO "grid_transformation" VALUES('EPSG','8885','RGF93 to NGF IGN69 height (3)','Replaces RGF93 to NGF IGN69 height (2) (code 8371). Accuracy at each 0.0333333333333° in longitude and 0.025° in latitude grid node is given within the geoid model file. Recommended interpolation method is bilinear.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','4965','EPSG','5720','EPSG','1326',0.01,'EPSG','8666','Geoid (height correction) model file','RAF18.tac',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Fra 18',0); INSERT INTO "grid_transformation" VALUES('EPSG','9105','ATS77 to NAD83 (1)','','Spatial referencing.','EPSG','9615','NTv2','EPSG','4122','EPSG','4269','EPSG','2313',0.5,'EPSG','8656','Latitude and longitude difference file','GS7783.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'NSGC-Can NS',0); INSERT INTO "grid_transformation" VALUES('EPSG','9106','ATS77 to NAD83(CSRS)v6 (4)','Derived through NAD83(CSRS)v6. Replaces ATS77 to NAD83(CSRS)v3 (3) (transformation code 9235).','Spatial referencing.','EPSG','9615','NTv2','EPSG','4122','EPSG','8252','EPSG','2313',0.06,'EPSG','8656','Latitude and longitude difference file','NS778302.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'NSGC-Can NS v2',0); INSERT INTO "grid_transformation" VALUES('EPSG','9107','NAD27 to NAD83(CSRS)v3 (5)','Derived through NAD83(CSRS)v3 but within accuracy of transformation may be assumed to apply to any version. For Toronto use NAD27 to NAD83(CSRS) (6) (CT code 9108).','Spatial referencing.','EPSG','9615','NTv2','EPSG','4267','EPSG','8240','EPSG','4537',1.5,'EPSG','8656','Latitude and longitude difference file','ON27CSv1.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'LIO-Can Ont ex Tor',0); INSERT INTO "grid_transformation" VALUES('EPSG','9108','NAD27 to NAD83(CSRS)v3 (6)','Derived through NAD83(CSRS)v3 but within accuracy of transformation may be assumed to apply to any version. For Ontario excluding Toronto use NAD27 to NAD83(CSRS) (5) (CT code 9107).','Spatial referencing.','EPSG','9615','NTv2','EPSG','4267','EPSG','8240','EPSG','4536',1.0,'EPSG','8656','Latitude and longitude difference file','TOR27CSv1.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'LIO-Can Ont Tor',0); INSERT INTO "grid_transformation" VALUES('EPSG','9109','NAD27(76) to NAD83(CSRS)v3 (1)','Derived through NAD83(CSRS)v3 but within accuracy of transformation may be assumed to apply to any version.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4608','EPSG','8240','EPSG','1367',1.0,'EPSG','8656','Latitude and longitude difference file','ON76CSv1.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'LIO-Can Ont',0); INSERT INTO "grid_transformation" VALUES('EPSG','9110','NAD83 to NAD83(CSRS)v3 (5)','Derived through NAD83(CSRS)v3.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4269','EPSG','8240','EPSG','1367',0.1,'EPSG','8656','Latitude and longitude difference file','ON83CSv1.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'LIO-Can Ont',0); INSERT INTO "grid_transformation" VALUES('EPSG','9111','NAD27 to NAD83 (9)','','Spatial referencing.','EPSG','9615','NTv2','EPSG','4267','EPSG','4269','EPSG','2375',1.5,'EPSG','8656','Latitude and longitude difference file','SK27-83.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ISC-Can SK',0); INSERT INTO "grid_transformation" VALUES('EPSG','9112','NAD27 to NAD83(CSRS)v2 (7)','Derived through NAD83(CSRS)v2. Replaced by NAD27 to NAD83(CSRS) (8) (CT code 9113) for CRD, NAD27 to NAD83(CSRS) (9) (CT code 9114) forn north Vancouver Island and NAD27 to NAD83(CSRS) (10) (CT code 9115) for mainland.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4267','EPSG','8237','EPSG','2832',1.5,'EPSG','8656','Latitude and longitude difference file','BC_27_98.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC CSRSv2',0); INSERT INTO "grid_transformation" VALUES('EPSG','9113','NAD27 to NAD83(CSRS)v3 (8)','Derived through NAD83(CSRS)v3.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4267','EPSG','8240','EPSG','4533',1.5,'EPSG','8656','Latitude and longitude difference file','CRD27_00.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC CRD',0); INSERT INTO "grid_transformation" VALUES('EPSG','9114','NAD27 to NAD83(CSRS)v3 (9)','Derived through NAD83(CSRS)v3.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4267','EPSG','8240','EPSG','4534',1.5,'EPSG','8656','Latitude and longitude difference file','NVI27_05.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC NVI',0); INSERT INTO "grid_transformation" VALUES('EPSG','9115','NAD27 to NAD83(CSRS)v4 (10)','Derived through NAD83(CSRS)v4.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4267','EPSG','8246','EPSG','4535',1.5,'EPSG','8656','Latitude and longitude difference file','BC_27_05.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC mainland',0); INSERT INTO "grid_transformation" VALUES('EPSG','9116','NAD83 to NAD83(CSRS)v2 (6)','Derived through NAD83(CSRS)v2. Replaced by NAD83 to NAD83(CSRS) (7) (CT code 9117) for CRD, NAD83 to NAD83(CSRS) (8) (CT code 9118) for north Vancouver Island and NAD83 to NAD83(CSRS) (9) (CT code 9119) for mainland.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4269','EPSG','8237','EPSG','2832',0.1,'EPSG','8656','Latitude and longitude difference file','BC_93_98.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC CSRSv2',0); INSERT INTO "grid_transformation" VALUES('EPSG','9117','NAD83 to NAD83(CSRS)v3 (7)','Derived through NAD83(CSRS)v3.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4269','EPSG','8240','EPSG','4533',0.1,'EPSG','8656','Latitude and longitude difference file','CRD93_00.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC CRD',0); INSERT INTO "grid_transformation" VALUES('EPSG','9118','NAD83 to NAD83(CSRS)v3 (8)','Derived through NAD83(CSRS)v3.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4269','EPSG','8240','EPSG','4534',0.1,'EPSG','8656','Latitude and longitude difference file','NVI93_05.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC NVI',0); INSERT INTO "grid_transformation" VALUES('EPSG','9119','NAD83 to NAD83(CSRS)v4 (9)','Derived through NAD83(CSRS)v4.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4269','EPSG','8246','EPSG','4535',0.1,'EPSG','8656','Latitude and longitude difference file','BC_93_05.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC mainland',0); INSERT INTO "grid_transformation" VALUES('EPSG','9120','NAD83(CSRS)v2 to NAD83(CSRS)v3 (1)','','Spatial referencing.','EPSG','9615','NTv2','EPSG','8237','EPSG','8240','EPSG','4533',0.1,'EPSG','8656','Latitude and longitude difference file','CRD98_00.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC CRD',0); INSERT INTO "grid_transformation" VALUES('EPSG','9121','NAD83(CSRS)v2 to NAD83(CSRS)v3 (2)','','Spatial referencing.','EPSG','9615','NTv2','EPSG','8237','EPSG','8240','EPSG','4534',0.1,'EPSG','8656','Latitude and longitude difference file','NVI98_05.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC NVI',0); INSERT INTO "grid_transformation" VALUES('EPSG','9122','NAD83(CSRS)v2 to NAD83(CSRS)v4 (1)','','Spatial referencing.','EPSG','9615','NTv2','EPSG','8237','EPSG','8240','EPSG','4535',0.1,'EPSG','8656','Latitude and longitude difference file','BC_98_05.GSB',NULL,NULL,NULL,NULL,NULL,NULL,'GeoBC-Can BC mainland',0); INSERT INTO "grid_transformation" VALUES('EPSG','9123','NAD83(CSRS) to CGVD28 height (1)','Derived through NAD83(CSRS)v3.','Derivation of gravity-related heights from GPS observations.','EPSG','1060','Geographic3D to GravityRelatedHeight (CGG2013)','EPSG','4955','EPSG','5713','EPSG','1061',0.05,'EPSG','8666','Geoid (height correction) model file','HT2_0.byn',NULL,NULL,NULL,NULL,NULL,NULL,'NRC Can CGG2000',0); INSERT INTO "grid_transformation" VALUES('EPSG','9124','ITRF2008 to CGVD2013(CGG2013) height (1)','Uses CGG2013 model derived through NAD83(CSRS)v6 which uses bi-quadratic interpolation; bi-linear interpolation of the grid file will give results agreeing to within 1cm 99.97% of the time. Replaced by CT code 9125.','Derivation of gravity-related heights from GPS observations.','EPSG','1060','Geographic3D to GravityRelatedHeight (CGG2013)','EPSG','7911','EPSG','6647','EPSG','1061',0.03,'EPSG','8666','Geoid (height correction) model file','CGG2013i83.byn',NULL,NULL,NULL,NULL,NULL,NULL,'NRC Can CGG2013',0); INSERT INTO "grid_transformation" VALUES('EPSG','9125','ITRF2008 to CGVD2013(CGG2013a) height (2)','Uses CGG2013a model derived through NAD83(CSRS)v6 which uses bi-quadratic interpolation; bi-linear interpolation of the grid file will give results agreeing to within 1cm 99.97% of the time. Replaces CT code 9124.','Derivation of gravity-related heights from GPS observations.','EPSG','1060','Geographic3D to GravityRelatedHeight (CGG2013)','EPSG','7911','EPSG','9245','EPSG','1061',0.03,'EPSG','8666','Geoid (height correction) model file','CGG2013i08a.byn',NULL,NULL,NULL,NULL,NULL,NULL,'NRC Can CGG2013a',0); INSERT INTO "grid_transformation" VALUES('EPSG','9131','RGAF09 to IGN 2008 LD height (1)','Replaces RGAF09 to IGN 1992 LD height (1) (CT code 5507). Accuracy 0.1-0.2m within onshore area.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','5488','EPSG','9130','EPSG','2893',0.2,'EPSG','8666','Geoid (height correction) model file','RALD2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Glp Des',0); INSERT INTO "grid_transformation" VALUES('EPSG','9132','RRAF 1991 to IGN 2008 LD height (1)','Replaces RRAF 1991 to IGN 1992 LD height (1) (CT code 4566). Accuracy 0.1-0.2m within onshore area.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','4557','EPSG','9130','EPSG','2893',0.2,'EPSG','8666','Geoid (height correction) model file','RALDW842016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp Des',0); INSERT INTO "grid_transformation" VALUES('EPSG','9133','RGAF09 to Guadeloupe 1988 height (2)','Replaces RGAF09 to Guadeloupe 1988 height (1) (CT code 5503). Accuracy 0.01-0.05m within onshore areas.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','5488','EPSG','5757','EPSG','2892',0.05,'EPSG','8666','Geoid (height correction) model file','RAGTBT2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp GT 2016',0); INSERT INTO "grid_transformation" VALUES('EPSG','9134','RGAF09 to IGN 1988 LS height (2)','Replaces RGAF09 to IGN 1988 LS height (2) (CT code 5506). Accuracy 0.05-0.1m within onshore area.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','5488','EPSG','5616','EPSG','2895',0.1,'EPSG','8666','Geoid (height correction) model file','RALS2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp LSt 2016',0); INSERT INTO "grid_transformation" VALUES('EPSG','9135','RGAF09 to IGN 1988 MG height (2)','Replaces RGAF09 to IGN 1988 MG height (1), CT code 5504. Accuracy 0.0.5-0.1m within onshore area.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','5488','EPSG','5617','EPSG','2894',0.1,'EPSG','8666','Geoid (height correction) model file','RAMG2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp MG 2016',0); INSERT INTO "grid_transformation" VALUES('EPSG','9136','RGAF09 to Martinique 1987 height (2)','Replaces RGAF09 to Martinique 1987 height (1) (CT code 5502). Accuracy 0.01m to 0.05m within onshore area.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','5488','EPSG','5756','EPSG','3276',0.05,'EPSG','8666','Geoid (height correction) model file','RAMART2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Mtq 2016',0); INSERT INTO "grid_transformation" VALUES('EPSG','9137','RGSPM06 to Danger 1950 height (1)','Accuracy 0.10m to 0.20m within onshore area.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','4466','EPSG','5792','EPSG','1220',0.2,'EPSG','8666','Geoid (height correction) model file','GGSPM06v1.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN-SPM',0); INSERT INTO "grid_transformation" VALUES('EPSG','9160','NAD83(HARN) to NAVD88 height (1)','Uses Geoid99 hybrid model. Replaced by 2003 model (CT code 9168).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4957','EPSG','5703','EPSG','2977',0.05,'EPSG','8666','Geoid (height correction) model file','g1999u01.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus NW',0); INSERT INTO "grid_transformation" VALUES('EPSG','9161','NAD83(HARN) to NAVD88 height (2)','Uses Geoid99 hybrid model. Replaced by 2003 model (CT code 9168).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4957','EPSG','5703','EPSG','2978',0.05,'EPSG','8666','Geoid (height correction) model file','g1999u02.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus CNW',0); INSERT INTO "grid_transformation" VALUES('EPSG','9162','NAD83(HARN) to NAVD88 height (3)','Uses Geoid99 hybrid model. Replaced by 2003 model (CT code 9168).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4957','EPSG','5703','EPSG','2979',0.05,'EPSG','8666','Geoid (height correction) model file','g1999u03.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus CNE',0); INSERT INTO "grid_transformation" VALUES('EPSG','9163','NAD83(HARN) to NAVD88 height (4)','Uses Geoid99 hybrid model. Replaced by 2003 model (CT code 9168).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4957','EPSG','5703','EPSG','2980',0.05,'EPSG','8666','Geoid (height correction) model file','g1999u04.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus NE',0); INSERT INTO "grid_transformation" VALUES('EPSG','9164','NAD83(HARN) to NAVD88 height (5)','Uses Geoid99 hybrid model. Replaced by 2003 model (CT code 9168).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4957','EPSG','5703','EPSG','2973',0.05,'EPSG','8666','Geoid (height correction) model file','g1999u05.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus SW',0); INSERT INTO "grid_transformation" VALUES('EPSG','9165','NAD83(HARN) to NAVD88 height (6)','Uses Geoid99 hybrid model. Replaced by 2003 model (CT code 9168).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4957','EPSG','5703','EPSG','2974',0.05,'EPSG','8666','Geoid (height correction) model file','g1999u06.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus CSW',0); INSERT INTO "grid_transformation" VALUES('EPSG','9166','NAD83(HARN) to NAVD88 height (7)','Uses Geoid99 hybrid model. Replaced by 2003 model (CT code 9168).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4957','EPSG','5703','EPSG','2975',0.05,'EPSG','8666','Geoid (height correction) model file','g1999u07.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus CSE',0); INSERT INTO "grid_transformation" VALUES('EPSG','9167','NAD83(HARN) to NAVD88 height (8)','Uses Geoid99 hybrid model. Replaced by 2003 model (CT code 9168).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4957','EPSG','5703','EPSG','2976',0.05,'EPSG','8666','Geoid (height correction) model file','g1999u08.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus SE',0); INSERT INTO "grid_transformation" VALUES('EPSG','9168','NAD83(FBN) to NAVD88 height (1)','Uses Geoid03 hybrid model. Replaced by 2009 model (CT code 9173).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','8542','EPSG','5703','EPSG','1323',0.02,'EPSG','8666','Geoid (height correction) model file','geoid03_conus.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus',0); INSERT INTO "grid_transformation" VALUES('EPSG','9169','NAD83(HARN) to NAVD88 height (9)','Uses Geoid06 hybrid model. Replaced by Geoid09 model (CT code 9174).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4957','EPSG','5703','EPSG','1330',0.02,'EPSG','8666','Geoid (height correction) model file','geoid06_ak.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US AK',0); INSERT INTO "grid_transformation" VALUES('EPSG','9170','NAD83(FBN) to ASVD02 height (1)','Uses Geoid09 hybrid model. Replaced by Geoid12 model (CT code 7650).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','8542','EPSG','6643','EPSG','2288',0.05,'EPSG','8666','Geoid (height correction) model file','g2009s01.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Asm 09',0); INSERT INTO "grid_transformation" VALUES('EPSG','9171','NAD83(FBN) to GUVD04 height (1)','Uses Geoid09 hybrid model. Replaced by Geoid12 model (CT code 7648).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','8542','EPSG','6644','EPSG','3255',0.05,'EPSG','8666','Geoid (height correction) model file','g2009g01.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Gum 09',0); INSERT INTO "grid_transformation" VALUES('EPSG','9172','NAD83(FBN) to NMVD03 height (1)','Uses Geoid09 hybrid model. Replaced by Geoid12 model (CT code 7649).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','8542','EPSG','6640','EPSG','4171',0.05,'EPSG','8666','Geoid (height correction) model file','g2009g01.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Mnp 12B',0); INSERT INTO "grid_transformation" VALUES('EPSG','9173','NAD83(NSRS2007) to NAVD88 height (1)','Uses Geoid09 hybrid model. Replaced by 2012 model (CT code 6326).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4893','EPSG','5703','EPSG','1323',0.05,'EPSG','8666','Geoid (height correction) model file','geoid09_conus.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus 09',0); INSERT INTO "grid_transformation" VALUES('EPSG','9174','NAD83(NSRS2007) to NAVD88 height (2)','Uses Geoid09 hybrid model. Replaced by Geoid12 model (CT code 6327).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4893','EPSG','5703','EPSG','1330',0.05,'EPSG','8666','Geoid (height correction) model file','geoid09_ak.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US AK 09',0); INSERT INTO "grid_transformation" VALUES('EPSG','9175','NAD83(NSRS2007) to PRVD02 height (1)','Uses Geoid09 hybrid model. Replaced by Geoid12 model (CT code 7646).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4893','EPSG','6641','EPSG','3294',0.05,'EPSG','8666','Geoid (height correction) model file','g2009p01.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Pri 09',0); INSERT INTO "grid_transformation" VALUES('EPSG','9176','NAD83(NSRS2007) to VIVD09 height (1)','Uses Geoid09 hybrid model. Replaced by Geoid12 model (CT code 7647).','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4893','EPSG','6642','EPSG','3330',0.05,'EPSG','8666','Geoid (height correction) model file','g2009p01.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Vir 09',0); INSERT INTO "grid_transformation" VALUES('EPSG','9187','RGAF09 to IGN 1988 SB height (2)','Accuracy 0.05m to 0.1m. Replaces RGAF09 to IGN 1988 SB height (1), transformation code 5508.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','5488','EPSG','5619','EPSG','2891',0.1,'EPSG','8666','Geoid (height correction) model file','gg10_sbv2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp StB',0); INSERT INTO "grid_transformation" VALUES('EPSG','9188','RGAF09 to IGN 1988 SM height (2)','Accuracy 0.05m to 0.1m. Replaces RGAF09 to IGN 1988 SM height (1), transformation code 5505.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','5488','EPSG','5620','EPSG','2890',0.1,'EPSG','8666','Geoid (height correction) model file','gg10_smv2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp StM',0); INSERT INTO "grid_transformation" VALUES('EPSG','9228','RGSPM06 to Danger 1950 height (2)','Accuracy 0.01m to 0.05m within onshore area. Replaces RGSPM06 to Danger 1950 height (1), CT code 9137.','Derivation of gravity-related heights from GPS observations.','EPSG','1073','Geographic3D to GravityRelatedHeight (IGN2009)','EPSG','4466','EPSG','5792','EPSG','1220',0.05,'EPSG','8666','Geoid (height correction) model file','RASPM2018.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN-SPM',0); INSERT INTO "grid_transformation" VALUES('EPSG','9229','NAD83(2011) to NAVD88 height (3)','Uses Geoid18 hybrid model. Replaces 12B model. See information source for further information.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','6319','EPSG','5703','EPSG','1323',0.015,'EPSG','8666','Geoid (height correction) model file','g2018u0.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus 18',0); INSERT INTO "grid_transformation" VALUES('EPSG','9230','NAD83(2011) to PRVD02 height (2)','Uses Geoid18 hybrid model. Replaces 12B model. See information source for further information.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','6319','EPSG','6641','EPSG','3294',0.015,'EPSG','8666','Geoid (height correction) model file','g2018p0.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Pri 12B',0); INSERT INTO "grid_transformation" VALUES('EPSG','9231','NAD83(2011) to VIVD09 height (2)','Uses Geoid18 hybrid model. Replaces 12B model. See information source for further information.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','6319','EPSG','6642','EPSG','3330',0.015,'EPSG','8666','Geoid (height correction) model file','g2018p0.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-Vir 18',0); INSERT INTO "grid_transformation" VALUES('EPSG','9232','ISN93 to ISN2016 (1)','Grid transformation based on Kriging between ISN93 and ISN2016. Accuracy is better than 5 cm in stable areas but can be around 25 cm in areas that have suffered deformation due to earthquake or volcanic eruption.','Spatial referencing.','EPSG','9615','NTv2','EPSG','4659','EPSG','8086','EPSG','1120',0.05,'EPSG','8656','Latitude and longitude difference file','ISN93_ISN2016.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'LMI-Isl',0); INSERT INTO "grid_transformation" VALUES('EPSG','9233','ISN2004 to ISN2016 (1)','Grid transformation based on Kriging between ISN2004 and ISN2016. Accuracy is better than 5 cm in stable areas but can be around 25 cm in areas that have suffered deformation due to earthquake or volcanic eruption.','Spatial referencing.','EPSG','9615','NTv2','EPSG','5324','EPSG','8086','EPSG','1120',0.05,'EPSG','8656','Latitude and longitude difference file','ISN2004_ISN2016.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'LMI-Isl',0); INSERT INTO "grid_transformation" VALUES('EPSG','9235','ATS77 to NAD83(CSRS)v3 (3)','Can be taken as an approximate transformation ATS77 to WGS 84 - see code 1851. Replaced by ATS77 to NAD83(CSRS)v6 (4) (transformation code 9106).','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4122','EPSG','8240','EPSG','2313',1.5,'EPSG','8656','Latitude and longitude difference file','NS778301.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'NSGC-Can NS',0); INSERT INTO "grid_transformation" VALUES('EPSG','9236','ATS77 to NAD83(CSRS)v2 (2)','Can be taken as an approximate transformation ATS77 to WGS 84 - see code 1689.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4122','EPSG','8237','EPSG','1533',1.5,'EPSG','8656','Latitude and longitude difference file','PE7783V2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'PEI DOT-Can PEI',0); INSERT INTO "grid_transformation" VALUES('EPSG','9237','ATS77 to NAD83(CSRS)v2 (1)','Introduced in 1999. Can be taken as an approximate transformation ATS77 to WGS 84 - see code 1688.','Used in the GeoNB Coordinate Transformation Service. Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4122','EPSG','8237','EPSG','1447',1.5,'EPSG','8656','Latitude and longitude difference file','NB7783v2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'GIC-Can NB',0); INSERT INTO "grid_transformation" VALUES('EPSG','9238','NAD27 to NAD83(CSRS)v2 (4)','Introduced in 2011. Precision of 20 cm in area covered by the input data set and 40 cm anywhere else, with the exception of the northwest area of the province (near the border with Quebec) where the precision deteriorates to 80 cm.','Used in the GeoNB Coordinate Transformation Service.','EPSG','9615','NTv2','EPSG','4267','EPSG','8237','EPSG','1447',0.8,'EPSG','8656','Latitude and longitude difference file','NB2783v2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SNB-Can NB',0); INSERT INTO "grid_transformation" VALUES('EPSG','9239','NAD27 to NAD83(CSRS)v2 (1)','Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD27 (code 4267) and NAD83(CSRS) (code 4617) have longitudes positive east. Can be taken as an approximate transformation NAD27 to WGS 84 - see code 1692.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4267','EPSG','8237','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','QUE27-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC',0); INSERT INTO "grid_transformation" VALUES('EPSG','9240','NAD27(CGQ77) to NAD83(CSRS)v2 (1)','Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD27(CGQ77) (code 4609) and NAD83(CSRS) (code 4617) have longitudes positive east. Can be taken as an approximate transformation NAD27(CGQ77) to WGS 84 - see code 1691.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4609','EPSG','8237','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','CGQ77-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC',0); INSERT INTO "grid_transformation" VALUES('EPSG','9241','NAD83 to NAD83(CSRS)v2 (1)','Uses NT method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(CSRS) (code 4617) have longitudes positive east. Can be taken as an approximate transformation NAD83 to WGS 84 - see code 1696.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4269','EPSG','8237','EPSG','1368',1.5,'EPSG','8656','Latitude and longitude difference file','NAD83-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SGQ-Can QC',0); INSERT INTO "grid_transformation" VALUES('EPSG','9242','NAD27 to NAD83(CSRS)v3 (2)','Can be taken as an approximate transformation NAD27 to WGS 84 - see code 1703.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4267','EPSG','8240','EPSG','2375',1.5,'EPSG','8656','Latitude and longitude difference file','SK27-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SK PMC-Can SK',0); INSERT INTO "grid_transformation" VALUES('EPSG','9243','NAD83 to NAD83(CSRS)v3 (2)','Can be taken as an approximate transformation NAD83 to WGS 84 - see code 1697.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4269','EPSG','8240','EPSG','2375',1.5,'EPSG','8656','Latitude and longitude difference file','SK83-98.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'SK PMC-Can SK',0); INSERT INTO "grid_transformation" VALUES('EPSG','9244','NAD83 to NAD83(CSRS)v4 (3)','This gridded difference file AB_CSRS.DAC will need to be renamed to AB_CSRS.gsb to run in some software suites. Formats identical, but AB file is provincial fit only. Can be taken as an approximate transformation NAD83 to WGS 84 - see code 1702.','Accuracy 1-2 metres.','EPSG','9615','NTv2','EPSG','4269','EPSG','8246','EPSG','2376',1.5,'EPSG','8656','Latitude and longitude difference file','AB_CSRS.DAC',NULL,NULL,NULL,NULL,NULL,NULL,'AB Env-Can AB',0); INSERT INTO "grid_transformation" VALUES('EPSG','9246','NAD83(CSRS)v6 to CGVD2013(CGG2013) height (1)','Uses CGG2013 model which uses bi-quadratic interpolation; bi-linear interpolation of the grid file will give results agreeing to within 1cm 99.97% of the time. Replaced by CGG2013a model (CT code 9247).','Derivation of gravity-related heights from GPS observations.','EPSG','1060','Geographic3D to GravityRelatedHeight (CGG2013)','EPSG','8251','EPSG','6647','EPSG','1061',0.03,'EPSG','8666','Geoid (height correction) model file','CGG2013n83.byn',NULL,NULL,NULL,NULL,NULL,NULL,'NRC Can CGG2013',0); INSERT INTO "grid_transformation" VALUES('EPSG','9247','NAD83(CSRS)v6 to CGVD2013(CGG2013a) height (1)','Uses CGG2013a model which uses bi-quadratic interpolation; bi-linear interpolation of the grid file will give results agreeing to within 1cm 99.97% of the time. Replaces CGG2013 model (CT code 9246).','Derivation of gravity-related heights from GPS observations.','EPSG','1060','Geographic3D to GravityRelatedHeight (CGG2013)','EPSG','8251','EPSG','9245','EPSG','1061',0.03,'EPSG','8666','Geoid (height correction) model file','CGG2013n83a.byn',NULL,NULL,NULL,NULL,NULL,NULL,'NRC Can CGG2013a',0); INSERT INTO "grid_transformation" VALUES('EPSG','9256','POSGAR 2007 to SRVN16 height (1)','Uses Geoid-AR16. See information source for more information.','Derivation of gravity-related heights from GNSS observations.','EPSG','1047','Geographic3D to GravityRelatedHeight (Gravsoft)','EPSG','5342','EPSG','9255','EPSG','4573',0.05,'EPSG','8666','Geoid (height correction) model file','GEOIDE-Ar16.gri',NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Arg',0); INSERT INTO "grid_transformation" VALUES('EPSG','9275','GHA height to EVRF2000 Austria height (1)','Care! Austrian literature describes this transformation in direction EVRF2000 Austria height to GHA height with offset subtracted. EPSG method has offset as an addition. See method formula and example. The grid is implemented in BEV-Transformator.','Change of height to a different vertical reference surface.','EPSG','1080','Vertical Offset by Grid Interpolation (BEV AT)','EPSG','5778','EPSG','9274','EPSG','1037',0.05,'EPSG','8732','Vertical offset file','GV_HoehenGrid_V1.csv',NULL,NULL,NULL,NULL,'EPSG','4312','BEV-Aut',0); INSERT INTO "grid_transformation" VALUES('EPSG','9276','ETRS89 to EVRF2000 Austria height (1)','Austrian Geoid 2008. Accuracy 5cm (1 sigma). The transformation is implemented in BEV-Transformator.','Derivation of gravity-related heights from GNSS observations.','EPSG','1081','Geographic3D to GravityRelatedHeight (BEV AT)','EPSG','4937','EPSG','9274','EPSG','1037',0.05,'EPSG','8666','Geoid (height correction) model file','GEOID_GRS80_Oesterreich.csv',NULL,NULL,NULL,NULL,'EPSG','4167','BEV-Aut',0); INSERT INTO "grid_transformation" VALUES('EPSG','9277','MGI to EVRF2000 Austria height (1)','Austrian Geoid 2008 (Bessel ellipsoid). Accuracy 5cm (1 sigma). The transformation is implemented in BEV-Transformator.','Derivation of gravity-related heights from GNSS observations.','EPSG','1081','Geographic3D to GravityRelatedHeight (BEV AT)','EPSG','9267','EPSG','9274','EPSG','1037',0.05,'EPSG','8666','Geoid (height correction) model file','GEOID_BESSEL_Oesterreich.csv',NULL,NULL,NULL,NULL,'EPSG','4312','BEV-Aut',0); INSERT INTO "grid_transformation" VALUES('EPSG','9278','ETRS89 to GHA Austria height (1)','This transformation gives same result as concatenation of ETRS89 to EVRF2000 Austria height and EVRF2000 Austria height to GHA height transformations, CTs code 9276 and 9275. Accuracy 5cm (1 sigma). The transformation is implemented in BEV-Transformator.','Derivation of gravity-related heights from GNSS observations.','EPSG','1081','Geographic3D to GravityRelatedHeight (BEV AT)','EPSG','4937','EPSG','5778','EPSG','1037',0.05,'EPSG','8666','Geoid (height correction) model file','GV_Hoehengrid_plus_Geoid_V3.csv',NULL,NULL,NULL,NULL,NULL,NULL,'BEV-Aut',0); INSERT INTO "grid_transformation" VALUES('EPSG','9280','ITRF2005 to SA LLD height (1)','Hybrid geoid referenced to ITRF2005@2010.02. Accuracy 7cm at 1 sigma.','Derivation of gravity-related heights from GNSS observations.','EPSG','1082','Geographic3D to GravityRelatedHeight (SA 2010)','EPSG','7910','EPSG','9279','EPSG','3309',0.07,'EPSG','8666','Geoid (height correction) model file','SAGEOID2010.dat',NULL,NULL,NULL,NULL,NULL,NULL,'NGI-Zaf',0); INSERT INTO "grid_transformation" VALUES('EPSG','9282','Amersfoort to ETRS89 (9)','Consistent to within 1mm with official RNAPTRANS(TM)2018 at ground level onshore and at MSL offshore. The horizontal deviation using this NTv2 grid is approximately 1mm per 50m height difference from ground level or MSL.','Approximation of horizontal component of official 3D RDNAPTRANS(TM) transformation, which since 1st October 2000 has defined Amersfoort geodetic datum.','EPSG','9615','NTv2','EPSG','4289','EPSG','4258','EPSG','1275',0.001,'EPSG','8656','Latitude and longitude difference file','rdtrans2018.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'NSGI-Nld 2018',0); INSERT INTO "grid_transformation" VALUES('EPSG','9283','ETRS89 to NAP height (2)','Vertical component of official RDNAPTRANS(TM)2018 procedure. Replaces previous versions of RDNAPTRANS.','Derivation of gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4937','EPSG','5709','EPSG','1275',0.001,'EPSG','8666','Geoid (height correction) model file','nlgeo2018.gtx',NULL,NULL,NULL,NULL,NULL,NULL,'NSGI-Nld 2018',0); INSERT INTO "grid_transformation" VALUES('EPSG','9312','NZVD2016 height to Auckland 1946 height (2)','Derived at 260 control points. Mean offset 0.292m, standard deviation 0.029m, maximum difference from mean 0.075m. Supersedes NZVD2016 height to Auckland 1946 height (1) (code 7860) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5759','EPSG','3764',0.02,'EPSG','8732','Vertical offset file','auckht1946-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ AUCK gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9313','NZVD2016 height to Bluff 1955 height (2)','Derived at 71 control points. Mean offset 0.273m, standard deviation 0.034m, maximum difference from mean 0.079m. Supersedes NZVD2016 height to Bluff 1955 height (1) (code 7861) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5760','EPSG','3801',0.02,'EPSG','8732','Vertical offset file','blufht1955-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ BLUF gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9314','NZVD2016 height to Dunedin 1958 height (2)','Derived at 197 control points. Mean offset 0.326m, standard deviation 0.043m, maximum difference from mean 0.152m. Supersedes NZVD2016 height to Dunedin 1958 height (1) (code 7862) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5761','EPSG','3803',0.02,'EPSG','8732','Vertical offset file','duneht1958-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ DUNE gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9315','NZVD2016 height to Dunedin-Bluff 1960 height (2)','Derived at 205 control points. Mean offset 0.254m, standard deviation 0.039m, maximum difference from mean 0.11m. Supersedes NZVD2016 height to Dunedin-Bluff 1960 height (1) (code 7863) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','4458','EPSG','3806',0.02,'EPSG','8732','Vertical offset file','dublht1960-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ DUBL gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9316','NZVD2016 height to Gisborne 1926 height (2)','Derived at 274 control points. Mean offset 0.343m, standard deviation 0.025m, maximum difference from mean 0.09m. Supersedes NZVD2016 height to Gisborne 1926 height (1) (code 7864) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5762','EPSG','3771',0.02,'EPSG','8732','Vertical offset file','gisbht1926-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ GISB gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9317','NZVD2016 height to Lyttelton 1937 height (2)','Derived at 923 control points. Mean offset 0.34m, standard deviation 0.041m, maximum difference from mean 0.149m. Supersedes NZVD2016 height to Lyttelton 1937 height (1) (code 7865) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5763','EPSG','3804',0.01,'EPSG','8732','Vertical offset file','lyttht1937-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ LYTT gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9318','NZVD2016 height to Moturiki 1953 height (2)','Derived at 519 control points. Mean offset 0.309m, standard deviation 0.071m, maximum difference from mean 0.231m. Supersedes NZVD2016 height to Moturiki 1953 height (1) (code 7866) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5764','EPSG','3768',0.02,'EPSG','8732','Vertical offset file','motuht1953-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ MOTU gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9319','NZVD2016 height to Napier 1962 height (2)','Derived at 207 control points. Mean offset 0.203m, standard deviation 0.034m, maximum difference from mean 0.096m. Supersedes NZVD2016 height to Napier 1962 height (1) (code 7867) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5765','EPSG','3772',0.02,'EPSG','8732','Vertical offset file','napiht1962-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ NAPI gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9320','NZVD2016 height to Nelson 1955 height (2)','Derived at 256 control points. Mean offset 0.329m, standard deviation 0.039m, maximum difference from mean 0.114m. Supersedes NZVD2016 height to Nelson 1955 height (1) (code 7868) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5766','EPSG','3802',0.02,'EPSG','8732','Vertical offset file','nelsht1955-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ NELS gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9321','NZVD2016 height to One Tree Point 1964 height (2)','Derived at 137 control points. Mean offset 0.077m, standard deviation 0.042m, maximum difference from mean 0.107m. Supersedes NZVD2016 height to One Tree Point 1964 height (1) (code 7869) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5767','EPSG','3762',0.01,'EPSG','8732','Vertical offset file','ontpht1964-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ ONTP gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9322','NZVD2016 height to Stewart Island 1977 height (2)','Derived at 4 control points. Mean offset 0.299m, standard deviation 0.025m, maximum difference from mean 0.039m. Supersedes NZVD2016 height to Stewart Island 1977 height (1) (code 7870) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5772','EPSG','3338',0.18,'EPSG','8732','Vertical offset file','stisht1977-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ STWT gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9323','NZVD2016 height to Taranaki 1970 height (2)','Derived at 125 control points. Mean offset 0.286m, standard deviation 0.026m, maximum difference from mean 0.07m. Supersedes NZVD2016 height to Taranaki 1970 height (1) (code 7871) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5769','EPSG','3769',0.02,'EPSG','8732','Vertical offset file','taraht1970-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ TARA gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9324','NZVD2016 height to Wellington 1953 height (2)','Derived at 137 control points. Mean offset 0.408m, standard deviation 0.054m, maximum difference from mean 0.112m. Supersedes NZVD2016 height to Wellington 1953 height (1) (code 7872) after change of grid file format.','Transformation between national and local height systems.','EPSG','1084','Vertical Offset by Grid Interpolation (gtx)','EPSG','7839','EPSG','5770','EPSG','3773',0.02,'EPSG','8732','Vertical offset file','wellht1953-nzvd2016.gtx',NULL,NULL,NULL,NULL,'EPSG','4167','LINZ-NZ WGTN gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9325','NZGD2000 to NZVD2009 height (2)','Defines NZVD2009 vertical datum (datum code 1039, CRS code 4440). Supersedes NZGD2000 to NZVD2009 height (1) (code 4459) after change of grid file format.','Derivation of gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4959','EPSG','4440','EPSG','1175',0.1,'EPSG','8666','Geoid (height correction) model file','nzgeoid2009.gtx',NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ 2009 gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','9326','NZGD2000 to NZVD2016 height (2)','Defines NZVD2016 vertical datum (datum code 1169, CRS code 7839). Supersedes NZGD2000 to NZVD2016 height (1) (code 7840) after change of grid file format.','Derivation of gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4959','EPSG','7839','EPSG','1175',0.1,'EPSG','8666','Geoid (height correction) model file','nzgeoid2016.gtx',NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ 2016 gtx',0); INSERT INTO "grid_transformation" VALUES('EPSG','10000','RGF93 to NGF IGN69 height (1)','May be used for transformations from WGS 84 to NGF IGN69. Accuracy at each 0.1 deg x 0.1 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4965','EPSG','5720','EPSG','1326',0.5,'EPSG','8666','Geoid (height correction) model file','ggf97a.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Fra',0); INSERT INTO "grid_transformation" VALUES('EPSG','10001','ETRS89 to NGF IGN69 height (1)','Parameter values taken from RGF93 to NGF IGN69 (1) (code 10000) assuming that RGF93 is equivalent to ETRS89 within the accuracy of the transformation. Accuracy at each 0.1 deg x 0.1 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4937','EPSG','5720','EPSG','1326',0.5,'EPSG','8666','Geoid (height correction) model file','ggf97a.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Fra',0); INSERT INTO "grid_transformation" VALUES('EPSG','10002','RGF93 to IGN78 Corsica height (1)','May be used for transformations from WGS 84 to IGN78 Corsica. Accuracy at each 0.1 deg x 0.1 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4965','EPSG','5721','EPSG','1327',0.5,'EPSG','8666','Geoid (height correction) model file','ggf97a_corse.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Fra Cor',0); INSERT INTO "grid_transformation" VALUES('EPSG','10003','ETRS89 to IGN78 Corsica height (1)','Parameter values taken from RGF93 to IGN78 Corsica (1) (code 10002) assuming that RGF93 is equivalent to ETRS89 within the accuracy of the transformation. Accuracy at each 0.1 deg x 0.1 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4937','EPSG','5721','EPSG','1327',0.5,'EPSG','8666','Geoid (height correction) model file','ggf97a_corse.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Fra Cor',0); INSERT INTO "grid_transformation" VALUES('EPSG','10004','RRAF 1991 to Martinique 1987 height (1)','May be used for transformations from WGS 84 to IGN 1987. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5756','EPSG','1156',998.0,'EPSG','8666','Geoid (height correction) model file','ggm00.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Mtq',1); INSERT INTO "grid_transformation" VALUES('EPSG','10005','RRAF 1991 to Guadeloupe 1988 height (1)','May be used for transformations from WGS 84 to IGN 1988. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore areas.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5757','EPSG','2892',0.2,'EPSG','8666','Geoid (height correction) model file','ggg00.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp GT',1); INSERT INTO "grid_transformation" VALUES('EPSG','10006','RRAF 1991 to Guadeloupe 1988 height (2)','May be used for transformations from WGS 84 to IGN 1988. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5757','EPSG','2894',998.0,'EPSG','8666','Geoid (height correction) model file','ggg00_mg.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp MG',1); INSERT INTO "grid_transformation" VALUES('EPSG','10007','RRAF 1991 to Guadeloupe 1988 height (3)','May be used for transformations from WGS 84 to IGN 1988. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5757','EPSG','2895',998.0,'EPSG','8666','Geoid (height correction) model file','ggg00_ls.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp LSt',1); INSERT INTO "grid_transformation" VALUES('EPSG','10008','RRAF 1991 to Guadeloupe 1988 height (4)','May be used for transformations from WGS 84 to IGN 1988. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5757','EPSG','2893',998.0,'EPSG','8666','Geoid (height correction) model file','ggg00_ld.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp Des',1); INSERT INTO "grid_transformation" VALUES('EPSG','10009','RRAF 1991 to Guadeloupe 1988 height (5)','May be used for transformations from WGS 84 to IGN 1988. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5757','EPSG','2891',998.0,'EPSG','8666','Geoid (height correction) model file','ggg00_sb.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp StB',1); INSERT INTO "grid_transformation" VALUES('EPSG','10010','RRAF 1991 to Guadeloupe 1988 height (6)','May be used for transformations from WGS 84 to IGN 1988. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5757','EPSG','2890',998.0,'EPSG','8666','Geoid (height correction) model file','ggg00_sm.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp StM',1); INSERT INTO "grid_transformation" VALUES('EPSG','10011','RGFG95 to NGG1977 height (1)','May be used for transformations from WGS 84 to NGG1977. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4967','EPSG','5755','EPSG','3146',998.0,'EPSG','8666','Geoid (height correction) model file','ggguy00.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Guf',0); INSERT INTO "grid_transformation" VALUES('EPSG','10012','RGR92 to Reunion 1989 height (1)','May be used for transformations from WGS 84 to IGN 1989. Accuracy at each 0.02 deg x 0.02 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4971','EPSG','5758','EPSG','3337',0.1,'EPSG','8666','Geoid (height correction) model file','ggr99.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Reu',0); INSERT INTO "grid_transformation" VALUES('EPSG','10013','NAD83 to NAVD88 height (1)','Uses Geoid03 hybrid model. See information source for further information. Note: Source CRS is 2D, used in this application of the method as a pseudo-3D CRS.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4269','EPSG','5703','EPSG','2977',0.05,'EPSG','8666','Geoid (height correction) model file','g2003u01.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus NW',1); INSERT INTO "grid_transformation" VALUES('EPSG','10014','NAD83 to NAVD88 height (2)','Uses Geoid03 hybrid model. See information source for further information. Note: Source CRS is 2D, used in this application of the method as a pseudo-3D CRS.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4269','EPSG','5703','EPSG','2978',0.05,'EPSG','8666','Geoid (height correction) model file','g2003u02.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus CNW',1); INSERT INTO "grid_transformation" VALUES('EPSG','10015','NAD83 to NAVD88 height (3)','Uses Geoid03 hybrid model. See information source for further information. Note: Source CRS is 2D, used in this application of the method as a pseudo-3D CRS.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4269','EPSG','5703','EPSG','2979',0.05,'EPSG','8666','Geoid (height correction) model file','g2003u03.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus CNE',1); INSERT INTO "grid_transformation" VALUES('EPSG','10016','NAD83 to NAVD88 height (4)','Uses Geoid03 hybrid model. See information source for further information. Note: Source CRS is 2D, used in this application of the method as a pseudo-3D CRS.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4269','EPSG','5703','EPSG','2980',0.05,'EPSG','8666','Geoid (height correction) model file','g2003u04.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus NE',1); INSERT INTO "grid_transformation" VALUES('EPSG','10017','NAD83 to NAVD88 height (5)','Uses Geoid03 hybrid model. See information source for further information. Note: Source CRS is 2D, used in this application of the method as a pseudo-3D CRS.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4269','EPSG','5703','EPSG','2973',0.05,'EPSG','8666','Geoid (height correction) model file','g2003u05.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus SW',1); INSERT INTO "grid_transformation" VALUES('EPSG','10018','NAD83 to NAVD88 height (6)','Uses Geoid03 hybrid model. See information source for further information. Note: Source CRS is 2D, used in this application of the method as a pseudo-3D CRS.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4269','EPSG','5703','EPSG','2974',0.05,'EPSG','8666','Geoid (height correction) model file','g2003u06.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus CSW',1); INSERT INTO "grid_transformation" VALUES('EPSG','10019','NAD83 to NAVD88 height (7)','Uses Geoid03 hybrid model. See information source for further information. Note: Source CRS is 2D, used in this application of the method as a pseudo-3D CRS.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4269','EPSG','5703','EPSG','2975',0.05,'EPSG','8666','Geoid (height correction) model file','g2003u07.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus CSE',1); INSERT INTO "grid_transformation" VALUES('EPSG','10020','NAD83 to NAVD88 height (8)','Uses Geoid03 hybrid model. See information source for further information. Note: Source CRS is 2D, used in this application of the method as a pseudo-3D CRS.','Derivation of approximate gravity-related heights from GPS observations.','EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)','EPSG','4269','EPSG','5703','EPSG','2976',0.05,'EPSG','8666','Geoid (height correction) model file','g2003u08.bin',NULL,NULL,NULL,NULL,NULL,NULL,'NGS-US Conus SE',1); INSERT INTO "grid_transformation" VALUES('EPSG','10021','ETRS89 to Newlyn height (1)','May be used for transformations from WGS 84 to Newlyn.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5701','EPSG','2792',0.02,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Gbr',0); INSERT INTO "grid_transformation" VALUES('EPSG','10022','ETRS89 to Belfast height (1)','May be used for transformations from WGS 84 to Belfast.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5732','EPSG','2530',0.03,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK NI',1); INSERT INTO "grid_transformation" VALUES('EPSG','10023','ETRS89 to Douglas height (1)','May be used for transformations from WGS 84 to Douglas.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5750','EPSG','2803',0.02,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Man',0); INSERT INTO "grid_transformation" VALUES('EPSG','10024','ETRS89 to Fair Isle height (1)','May be used for transformations from WGS 84 to Fair Isle.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5741','EPSG','2794',0.05,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Fair',0); INSERT INTO "grid_transformation" VALUES('EPSG','10025','ETRS89 to Flannan Isles height (1)','May be used for transformations from WGS 84 to Flannan Isles.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5748','EPSG','2801',0.05,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Flan',0); INSERT INTO "grid_transformation" VALUES('EPSG','10026','ETRS89 to Foula height (1)','May be used for transformations from WGS 84 to Foula.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5743','EPSG','2796',0.05,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Foula',0); INSERT INTO "grid_transformation" VALUES('EPSG','10027','ETRS89 to Lerwick height (1)','May be used for transformations from WGS 84 to Lerwick.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5742','EPSG','2795',0.05,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Shet',0); INSERT INTO "grid_transformation" VALUES('EPSG','10028','ETRS89 to Malin Head height (1)','May be used for transformations from WGS 84 to Malin Head.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5731','EPSG','1305',0.04,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-Ire',1); INSERT INTO "grid_transformation" VALUES('EPSG','10029','ETRS89 to Newlyn (Orkney Isles) height (1)','May be used for transformations from WGS 84 to Newlyn (Orkney Isles).','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5740','EPSG','2793',0.05,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Ork',0); INSERT INTO "grid_transformation" VALUES('EPSG','10030','ETRS89 to North Rona height (1)','May be used for transformations from WGS 84 to North Rona.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5745','EPSG','2798',0.05,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Rona',0); INSERT INTO "grid_transformation" VALUES('EPSG','10031','ETRS89 to St. Kilda height (1)','May be used for transformations from WGS 84 to St. Kilda.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5747','EPSG','2800',0.05,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Kilda',0); INSERT INTO "grid_transformation" VALUES('EPSG','10032','ETRS89 to St. Marys height (1)','May be used for transformations from WGS 84 to St. Marys.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5749','EPSG','2802',0.0,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Scilly',0); INSERT INTO "grid_transformation" VALUES('EPSG','10033','ETRS89 to Stornoway height (1)','May be used for transformations from WGS 84 to Stornoway.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5746','EPSG','2799',0.05,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Heb',0); INSERT INTO "grid_transformation" VALUES('EPSG','10034','ETRS89 to Sule Skerry height (1)','May be used for transformations from WGS 84 to Sule Skerry.','Derivation of gravity-related heights from GPS observations.','EPSG','9663','Geographic3D to GravityRelatedHeight (OSGM-GB)','EPSG','4937','EPSG','5744','EPSG','2797',0.05,'EPSG','8666','Geoid (height correction) model file','OSTN02_OSGM02_GB.txt',NULL,NULL,NULL,NULL,NULL,NULL,'OS-UK Sule',0); INSERT INTO "grid_transformation" VALUES('EPSG','10035','GDA94 to AHD height (1)','May be used for transformations from WGS 84 to AHD.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2899',0.4,'EPSG','8666','Geoid (height correction) model file','SC52_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SC52',0); INSERT INTO "grid_transformation" VALUES('EPSG','10036','GDA94 to AHD height (2)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2900',0.4,'EPSG','8666','Geoid (height correction) model file','SC53_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SC53',0); INSERT INTO "grid_transformation" VALUES('EPSG','10037','GDA94 to AHD height (3)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2901',0.4,'EPSG','8666','Geoid (height correction) model file','SC54_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SC54',0); INSERT INTO "grid_transformation" VALUES('EPSG','10038','GDA94 to AHD height (4)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2902',0.4,'EPSG','8666','Geoid (height correction) model file','SD51_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SD51',0); INSERT INTO "grid_transformation" VALUES('EPSG','10039','GDA94 to AHD height (5)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2903',0.4,'EPSG','8666','Geoid (height correction) model file','SD52_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SD52',0); INSERT INTO "grid_transformation" VALUES('EPSG','10040','GDA94 to AHD height (6)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2904',0.4,'EPSG','8666','Geoid (height correction) model file','SD53_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SD53',0); INSERT INTO "grid_transformation" VALUES('EPSG','10041','GDA94 to AHD height (7)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2905',0.4,'EPSG','8666','Geoid (height correction) model file','SD54_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SD54',0); INSERT INTO "grid_transformation" VALUES('EPSG','10042','GDA94 to AHD height (8)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2906',0.4,'EPSG','8666','Geoid (height correction) model file','SD55_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SD55',0); INSERT INTO "grid_transformation" VALUES('EPSG','10043','GDA94 to AHD height (9)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2907',0.4,'EPSG','8666','Geoid (height correction) model file','SE50_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SE50',0); INSERT INTO "grid_transformation" VALUES('EPSG','10044','GDA94 to AHD height (10)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2908',0.4,'EPSG','8666','Geoid (height correction) model file','SE51_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SE51',0); INSERT INTO "grid_transformation" VALUES('EPSG','10045','GDA94 to AHD height (11)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2909',0.4,'EPSG','8666','Geoid (height correction) model file','SE52_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SE52',0); INSERT INTO "grid_transformation" VALUES('EPSG','10046','GDA94 to AHD height (12)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2910',0.4,'EPSG','8666','Geoid (height correction) model file','SE53_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SE53',0); INSERT INTO "grid_transformation" VALUES('EPSG','10047','GDA94 to AHD height (13)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2911',0.4,'EPSG','8666','Geoid (height correction) model file','SE54_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SE54',0); INSERT INTO "grid_transformation" VALUES('EPSG','10048','GDA94 to AHD height (14)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2912',0.4,'EPSG','8666','Geoid (height correction) model file','SE55_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SE55',0); INSERT INTO "grid_transformation" VALUES('EPSG','10049','GDA94 to AHD height (15)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2913',0.4,'EPSG','8666','Geoid (height correction) model file','SF49_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SF49',0); INSERT INTO "grid_transformation" VALUES('EPSG','10050','GDA94 to AHD height (16)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2914',0.4,'EPSG','8666','Geoid (height correction) model file','SF50_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SF50',0); INSERT INTO "grid_transformation" VALUES('EPSG','10051','GDA94 to AHD height (17)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2915',0.4,'EPSG','8666','Geoid (height correction) model file','SF51_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SF51',0); INSERT INTO "grid_transformation" VALUES('EPSG','10052','GDA94 to AHD height (18)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2916',0.4,'EPSG','8666','Geoid (height correction) model file','SF52_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SF52',0); INSERT INTO "grid_transformation" VALUES('EPSG','10053','GDA94 to AHD height (19)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2917',0.4,'EPSG','8666','Geoid (height correction) model file','SF53_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SF53',0); INSERT INTO "grid_transformation" VALUES('EPSG','10054','GDA94 to AHD height (20)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2918',0.4,'EPSG','8666','Geoid (height correction) model file','SF54_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SF54',0); INSERT INTO "grid_transformation" VALUES('EPSG','10055','GDA94 to AHD height (21)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2919',0.4,'EPSG','8666','Geoid (height correction) model file','SF55_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SF55',0); INSERT INTO "grid_transformation" VALUES('EPSG','10056','GDA94 to AHD height (22)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2920',0.4,'EPSG','8666','Geoid (height correction) model file','SF56_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SF56',0); INSERT INTO "grid_transformation" VALUES('EPSG','10057','GDA94 to AHD height (23)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2921',0.4,'EPSG','8666','Geoid (height correction) model file','SG49_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SG49',0); INSERT INTO "grid_transformation" VALUES('EPSG','10058','GDA94 to AHD height (24)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2922',0.4,'EPSG','8666','Geoid (height correction) model file','SG50_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SG50',0); INSERT INTO "grid_transformation" VALUES('EPSG','10059','GDA94 to AHD height (25)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2923',0.4,'EPSG','8666','Geoid (height correction) model file','SG51_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SG51',0); INSERT INTO "grid_transformation" VALUES('EPSG','10060','GDA94 to AHD height (26)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2924',0.4,'EPSG','8666','Geoid (height correction) model file','SG52_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SG52',0); INSERT INTO "grid_transformation" VALUES('EPSG','10061','GDA94 to AHD height (27)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2925',0.4,'EPSG','8666','Geoid (height correction) model file','SG53_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SG53',0); INSERT INTO "grid_transformation" VALUES('EPSG','10062','GDA94 to AHD height (28)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2926',0.4,'EPSG','8666','Geoid (height correction) model file','SG54_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SG54',0); INSERT INTO "grid_transformation" VALUES('EPSG','10063','GDA94 to AHD height (29)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2927',0.4,'EPSG','8666','Geoid (height correction) model file','SG55_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SG55',0); INSERT INTO "grid_transformation" VALUES('EPSG','10064','GDA94 to AHD height (30)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2928',0.4,'EPSG','8666','Geoid (height correction) model file','SG56_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SG56',0); INSERT INTO "grid_transformation" VALUES('EPSG','10065','GDA94 to AHD height (31)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2929',0.4,'EPSG','8666','Geoid (height correction) model file','SH49_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SH49',1); INSERT INTO "grid_transformation" VALUES('EPSG','10066','GDA94 to AHD height (32)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2930',0.4,'EPSG','8666','Geoid (height correction) model file','SH50_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SH50',0); INSERT INTO "grid_transformation" VALUES('EPSG','10067','GDA94 to AHD height (33)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2931',0.4,'EPSG','8666','Geoid (height correction) model file','SH51_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SH51',0); INSERT INTO "grid_transformation" VALUES('EPSG','10068','GDA94 to AHD height (34)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2932',0.4,'EPSG','8666','Geoid (height correction) model file','SH52_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SH52',0); INSERT INTO "grid_transformation" VALUES('EPSG','10069','GDA94 to AHD height (35)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2933',0.4,'EPSG','8666','Geoid (height correction) model file','SH53_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SH53',0); INSERT INTO "grid_transformation" VALUES('EPSG','10070','GDA94 to AHD height (36)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2934',0.4,'EPSG','8666','Geoid (height correction) model file','SH54_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SH54',0); INSERT INTO "grid_transformation" VALUES('EPSG','10071','GDA94 to AHD height (37)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2935',0.4,'EPSG','8666','Geoid (height correction) model file','SH55_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SH55',0); INSERT INTO "grid_transformation" VALUES('EPSG','10072','GDA94 to AHD height (38)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2936',0.4,'EPSG','8666','Geoid (height correction) model file','SH56_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SH56',0); INSERT INTO "grid_transformation" VALUES('EPSG','10073','GDA94 to AHD height (39)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2937',0.4,'EPSG','8666','Geoid (height correction) model file','SI50_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SI50',0); INSERT INTO "grid_transformation" VALUES('EPSG','10074','GDA94 to AHD height (40)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2938',0.4,'EPSG','8666','Geoid (height correction) model file','SI51_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SI51',0); INSERT INTO "grid_transformation" VALUES('EPSG','10075','GDA94 to AHD height (41)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2939',0.4,'EPSG','8666','Geoid (height correction) model file','SI53_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SI53',0); INSERT INTO "grid_transformation" VALUES('EPSG','10076','GDA94 to AHD height (42)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2940',0.4,'EPSG','8666','Geoid (height correction) model file','SI54_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SI54',0); INSERT INTO "grid_transformation" VALUES('EPSG','10077','GDA94 to AHD height (43)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2941',0.4,'EPSG','8666','Geoid (height correction) model file','SI55_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SI55',0); INSERT INTO "grid_transformation" VALUES('EPSG','10078','GDA94 to AHD height (44)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2942',0.4,'EPSG','8666','Geoid (height correction) model file','SI56_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SI56',0); INSERT INTO "grid_transformation" VALUES('EPSG','10079','GDA94 to AHD height (45)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2943',0.4,'EPSG','8666','Geoid (height correction) model file','SJ53_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SJ53',0); INSERT INTO "grid_transformation" VALUES('EPSG','10080','GDA94 to AHD height (46)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2944',0.4,'EPSG','8666','Geoid (height correction) model file','SJ54_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SJ54',0); INSERT INTO "grid_transformation" VALUES('EPSG','10081','GDA94 to AHD height (47)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2945',0.4,'EPSG','8666','Geoid (height correction) model file','SJ55_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SJ55',0); INSERT INTO "grid_transformation" VALUES('EPSG','10082','GDA94 to AHD height (48)','May be used for transformations from WGS 84 to AHD. Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5711','EPSG','2946',0.4,'EPSG','8666','Geoid (height correction) model file','SJ56_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SJ56',0); INSERT INTO "grid_transformation" VALUES('EPSG','10083','GDA94 to AHD (Tasmania) height (1)','May be used for transformations from WGS 84 to AHD (Tasmania). Uses AusGeoid98 model.','Derivation of gravity-related heights from GPS observations.','EPSG','9662','Geographic3D to GravityRelatedHeight (Ausgeoid98)','EPSG','4939','EPSG','5712','EPSG','2947',0.4,'EPSG','8666','Geoid (height correction) model file','SK55_DAT.htm',NULL,NULL,NULL,NULL,NULL,NULL,'GA-Aus SK55',0); INSERT INTO "grid_transformation" VALUES('EPSG','10084','WGS 84 to EGM96 height (1)','Replaces WGS 84 to EGM84 height (1) (tfm code 15781). Replaced by WGS 84 to EGM2008 height (1) and (2) (tfm codes 3858-59). An executable using spherical harmonics is also available.','Derivation of gravity-related heights from GPS observations.','EPSG','9661','Geographic3D to GravityRelatedHeight (EGM)','EPSG','4979','EPSG','5773','EPSG','1262',1.0,'EPSG','8666','Geoid (height correction) model file','WW15MGH.GRD',NULL,NULL,NULL,NULL,NULL,NULL,'NGA-World',0); INSERT INTO "grid_transformation" VALUES('EPSG','15486','CH1903 to CH1903+ (1)','For improved accuracy (0.01m) use CHENyx06 interpolation programme FINELTRA. File CHENyx06 replaced by CHENyx06a; there is a small area at the border of the data where some more real data has been introduced. swisstopo consider the change insignificant.','Approximation using NTv2 method of results of FINELTRA programme to an accuracy of 0.01m except at boundary of the Geneva and Vaud cantons, in city of Geneva and in the main valleys of Valais canton where differences are up to 20 cm.','EPSG','9615','NTv2','EPSG','4149','EPSG','4150','EPSG','1286',0.2,'EPSG','8656','Latitude and longitude difference file','CHENyx06a.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'BfL-Che',0); INSERT INTO "grid_transformation" VALUES('EPSG','15488','RRAF 1991 to IGN 1988 MG height (1)','May be used for transformations from WGS 84 to IGN 1988 MG. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5617','EPSG','2894',0.2,'EPSG','8666','Geoid (height correction) model file','ggg00_mg.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp MG',1); INSERT INTO "grid_transformation" VALUES('EPSG','15489','RRAF 1991 to IGN 1988 LS height (1)','May be used for transformations from WGS 84 to IGN 1988 LS. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5616','EPSG','2895',0.2,'EPSG','8666','Geoid (height correction) model file','ggg00_ls.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp LSt',1); INSERT INTO "grid_transformation" VALUES('EPSG','15490','RRAF 1991 to IGN 1992 LD height (1)','May be used for transformations from WGS 84 to IGN 1992 LD. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.5m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5618','EPSG','2893',0.5,'EPSG','8666','Geoid (height correction) model file','ggg00_ld.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp Des',1); INSERT INTO "grid_transformation" VALUES('EPSG','15491','RRAF 1991 to IGN 1988 SB height (1)','May be used for transformations from WGS 84 to IGN 1988 SB. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5619','EPSG','2891',0.2,'EPSG','8666','Geoid (height correction) model file','ggg00_sb.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp StB',1); INSERT INTO "grid_transformation" VALUES('EPSG','15492','RRAF 1991 to IGN 1988 SM height (1)','May be used for transformations from WGS 84 to IGN 1988 SM. Accuracy at each 0.025 deg x 0.025 degree grid node is given within the geoid model file.','Derivation of gravity-related heights from GPS observations. Accuracy 0.2m within onshore area.','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','EPSG','4973','EPSG','5620','EPSG','2890',0.2,'EPSG','8666','Geoid (height correction) model file','ggg00_sm.txt',NULL,NULL,NULL,NULL,NULL,NULL,'IGN Glp StM',1); INSERT INTO "grid_transformation" VALUES('EPSG','15781','WGS 84 to EGM84 height (1)','File may also be found named as "EGM84.GRD". An executable using spherical harmonics is also available. Replaced by WGS 84 to EGM96 height (1) (CT code 10084).','Derivation of gravity-related heights from GPS observations.','EPSG','9661','Geographic3D to GravityRelatedHeight (EGM)','EPSG','4979','EPSG','5798','EPSG','1262',1.0,'EPSG','8666','Geoid (height correction) model file','DIRACC.DAT',NULL,NULL,NULL,NULL,NULL,NULL,'NGA-World',0); INSERT INTO "grid_transformation" VALUES('EPSG','15785','AGD84 to WGS 84 (9)','Transformation taken from AGD84 to GDA94 (5) (code 1804) assuming that GDA94 is equivalent to WGS 84 within the accuracy of this tfm. Uses NTv2 method which expects longitudes positive west; EPSG CRS codes 4203 and 4326 have longitudes positive east.','1m accuracy.','EPSG','9615','NTv2','EPSG','4203','EPSG','4326','EPSG','2576',1.0,'EPSG','8656','Latitude and longitude difference file','National 84 (02.07.01).gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Aus 1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','15786','AGD66 to WGS 84 (17)','Transformation taken from AGD66 to GDA94 (11) (code 1803) assuming that GDA94 is equivalent to WGS 84 within the accuracy of this tfm. Uses NTv2 method which expects longitudes positive west; EPSG CRS codes 4202 and 4326 have longitudes positive east.','1m accuracy.','EPSG','9615','NTv2','EPSG','4202','EPSG','4326','EPSG','2575',1.0,'EPSG','8656','Latitude and longitude difference file','A66 National (13.09.01).gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Aus 0.1m',0); INSERT INTO "grid_transformation" VALUES('EPSG','15834','NAD83 to NAD83(HARN) (44)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 15835.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1402',0.05,'EPSG','8657','Latitude difference file','nchpgn.las','EPSG','8658','Longitude difference file','nchpgn.los',NULL,NULL,'NGS-Usa NC',0); INSERT INTO "grid_transformation" VALUES('EPSG','15835','NAD83 to WGS 84 (55)','Parameter files are from NAD83 to NAD83(HARN) (44) (code 15834) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1402',1.0,'EPSG','8657','Latitude difference file','nchpgn.las','EPSG','8658','Longitude difference file','nchpgn.los',NULL,NULL,'OGP-Usa NC',0); INSERT INTO "grid_transformation" VALUES('EPSG','15836','NAD83 to NAD83(HARN) (45)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 15837.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1409',0.05,'EPSG','8657','Latitude difference file','schpgn.las','EPSG','8658','Longitude difference file','schpgn.los',NULL,NULL,'NGS-Usa SC',0); INSERT INTO "grid_transformation" VALUES('EPSG','15837','NAD83 to WGS 84 (56)','Parameter files are from NAD83 to NAD83(HARN) (45) (code 15836) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1409',1.0,'EPSG','8657','Latitude difference file','schpgn.las','EPSG','8658','Longitude difference file','schpgn.los',NULL,NULL,'OGP-Usa SC',0); INSERT INTO "grid_transformation" VALUES('EPSG','15838','NAD83 to NAD83(HARN) (46)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs NAD83 (code 4269) and NAD83(HARN) (code 4152) have longitudes positive east. May be taken as approximate transformation NAD83-WGS 84 - see code 15839.','Geodetic survey. Accuracy 0.05m at 67% confidence level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4152','EPSG','1407',0.05,'EPSG','8657','Latitude difference file','pahpgn.las','EPSG','8658','Longitude difference file','pahpgn.los',NULL,NULL,'NGS-Usa PA',0); INSERT INTO "grid_transformation" VALUES('EPSG','15839','NAD83 to WGS 84 (57)','Parameter files are from NAD83 to NAD83(HARN) (46) (code 15838) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','9613','NADCON','EPSG','4269','EPSG','4326','EPSG','1407',1.0,'EPSG','8657','Latitude difference file','pahpgn.las','EPSG','8658','Longitude difference file','pahpgn.los',NULL,NULL,'OGP-Usa PA',0); INSERT INTO "grid_transformation" VALUES('EPSG','15840','Old Hawaiian to WGS 84 (8)','Transformation steps are from Old Hawaiian to NAD83 (1) (code 1454) assuming that NAD83 is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy of transformation consistent with equivalence of WGS 84 and NAD 84 for Hawaii Islands. +/- 1 to 2 meters.','EPSG','9613','NADCON','EPSG','4135','EPSG','4326','EPSG','1334',2.0,'EPSG','8657','Latitude difference file','hawaii.las','EPSG','8658','Longitude difference file','hawaii.los',NULL,NULL,'OGP-Usa HI 2m',0); INSERT INTO "grid_transformation" VALUES('EPSG','15841','Puerto Rico to WGS 84 (4)','Transformation steps are from Puerto Rico to NAD83 (1) (code 1461) assuming that NAD83 is equivalent to WGS 84 within the accuracy of the transformation.','Accuracy of transformation consistent with equivalence of WGS 84 and NAD 83 for Puerto Rico. +/- 1 to 2 meters.','EPSG','9613','NADCON','EPSG','4139','EPSG','4326','EPSG','3294',2.0,'EPSG','8657','Latitude difference file','prvi.las','EPSG','8658','Longitude difference file','prvi.los',NULL,NULL,'OGP-Pri 2m',0); INSERT INTO "grid_transformation" VALUES('EPSG','15851','NAD27 to WGS 84 (79)','Transformation taken from NAD27 to NAD83 (1) (code 1241) assuming that NAD83 is equivalent to WGS 84 within the accuracy of this tfm. Uses NADCON method which expects longitudes positive west; EPSG CRS codes 4267 and 4326 have longitudes positive east.','Recommended for oil industry use in US Gulf of Mexico (GoM). Accuracy at 67% confidence level is 0.15m onshore, 5m nearshore and undetermined farther offshore.','EPSG','9613','NADCON','EPSG','4267','EPSG','4326','EPSG','2374',5.0,'EPSG','8657','Latitude difference file','conus.las','EPSG','8658','Longitude difference file','conus.los',NULL,NULL,'OGP-Usa Conus',0); INSERT INTO "grid_transformation" VALUES('EPSG','15864','NAD27 to WGS 84 (85)','Transformation taken from NAD27 to NAD83 (2) (code 1243) assuming that NAD83 is equivalent to WGS 84 within the accuracy of this tfm. Uses NADCON method which expects longitudes positive west; EPSG CRS codes 4267 and 4326 have longitudes positive east.','Accuracy at 67% confidence level is 0.15m onshore, 5m nearshore and undetermined farther offshore.','EPSG','9613','NADCON','EPSG','4267','EPSG','4326','EPSG','2373',5.0,'EPSG','8657','Latitude difference file','alaska.las','EPSG','8658','Longitude difference file','alaska.los',NULL,NULL,'OGP-Usa AK',0); INSERT INTO "grid_transformation" VALUES('EPSG','15895','ED50 to ETRS89 (11)','May be taken as approximate transformation ED50 to WGS 84 - see code 15907. NOTE: Parameter file is non-conformant with NTv2 specification - replaced by ED50 to ETRS89 (12) (code 15932).','For applications to an accuracy of 10-15cm (95% confidence) for Spain mainland and about 4cm (95%) for Balearic Islands.','EPSG','9615','NTv2','EPSG','4230','EPSG','4258','EPSG','3429',0.2,'EPSG','8656','Latitude and longitude difference file','sped2et.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Esp',1); INSERT INTO "grid_transformation" VALUES('EPSG','15907','ED50 to WGS 84 (40)','Parameter values from ED50 to ETRS89 (11) (code 15895). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. NOTE: Parameter file is non-conformant with NTv2 specification - replaced by ED50 to WGS 84 (41).','For applications to an accuracy of 1 metre.','EPSG','9615','NTv2','EPSG','4230','EPSG','4326','EPSG','3429',1.0,'EPSG','8656','Latitude and longitude difference file','sped2et.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Esp',1); INSERT INTO "grid_transformation" VALUES('EPSG','15932','ED50 to ETRS89 (12)','Replaces ED50 to ETRS89 (11) (code 15895) - see supersession record. May be taken as approximate transformation ED50 to WGS 84 - see code 15933.','For applications to an accuracy of 10-15cm (95% confidence) for Spain mainland and about 4cm (95%) for Balearic Islands.','EPSG','9615','NTv2','EPSG','4230','EPSG','4258','EPSG','3429',0.2,'EPSG','8656','Latitude and longitude difference file','SPED2ETV2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Esp v2',0); INSERT INTO "grid_transformation" VALUES('EPSG','15933','ED50 to WGS 84 (41)','Parameter values from ED50 to ETRS89 (12) (code 15932). Assumes ETRS89 and WGS 84 can be considered the same to within the accuracy of the transformation. Replaces ED50 to WGS 84 (40) - see supersession record.','For applications to an accuracy of 1 metre.','EPSG','9615','NTv2','EPSG','4230','EPSG','4326','EPSG','3429',1.0,'EPSG','8656','Latitude and longitude difference file','SPED2ETV2.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Esp v2',0); INSERT INTO "grid_transformation" VALUES('EPSG','15940','NTF to RGF93 (2)','Emulation using NTv2 method of France Geocentric Interpolation method tfm NTF to RGF93 (1), code 1053. May be taken as approximate transformation to ETRS89 or WGS 84 - see tfm codes 15941 and 15942.','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4275','EPSG','4171','EPSG','1326',1.0,'EPSG','8656','Latitude and longitude difference file','rgf93_ntf.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ESRI-Fra 1m emulation',1); INSERT INTO "grid_transformation" VALUES('EPSG','15941','NTF to ETRS89 (3)','These parameter values are taken from NTF to RGR93 (2) (code 15940) as RGR93 may be considered equivalent to ETRS89 within the accuracy of the transformation. Emulation of France Geocentric Interpolation method tfm code 1054.','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4275','EPSG','4258','EPSG','1326',1.0,'EPSG','8656','Latitude and longitude difference file','rgf93_ntf.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Fra 1m emulation',1); INSERT INTO "grid_transformation" VALUES('EPSG','15942','NTF to WGS 84 (3)','These parameter values are taken from NTF to RGR93 (2) (code 15940) as RGR93 may be considered equivalent to WGS 84 within the accuracy of the transformation. Emulation of France Geocentric Interpolation method tfm code 15939.','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4275','EPSG','4326','EPSG','1326',1.0,'EPSG','8656','Latitude and longitude difference file','rgf93_ntf.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Fra 1m emulation',1); INSERT INTO "grid_transformation" VALUES('EPSG','15944','NEA74 Noumea to RGNC91-93 (4)','Emulation using NTv2 method of tfm NEA74 Noumea to RGNC91-93 (3) (code 15943).','Accuracy 5-10cm.','EPSG','9615','NTv2','EPSG','4644','EPSG','4749','EPSG','2823',0.05,'EPSG','8656','Latitude and longitude difference file','RGNC1991_NEA74Noumea.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ESRI-Ncl 0.05m',1); INSERT INTO "grid_transformation" VALUES('EPSG','15947','IGN72 Grande Terre to RGNC91-93 (6)','Emulation using NTv2 method of tfm IGN72 Grande Terre to RGNC91-93 (4) (code 15945).','Accuracy better than +/- 0.1 metre.','EPSG','9615','NTv2','EPSG','4662','EPSG','4749','EPSG','2822',0.1,'EPSG','8656','Latitude and longitude difference file','RGNC1991_IGN72GrandeTerre.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ESRI-Ncl 0.1m',1); INSERT INTO "grid_transformation" VALUES('EPSG','15948','DHDN to ETRS89 (8)','Developed for ATKIS (Amtliches Topographisch-Kartographisches Informationssystem [Official Topographic and Cartographic Information System]). Provides a uniform transformation across the whole country. May be used as tfm to WGS84 - see tfm code 15949.','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4314','EPSG','4258','EPSG','3339',0.9,'EPSG','8656','Latitude and longitude difference file','BETA2007.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'BKG-Deu BeTA2007',0); INSERT INTO "grid_transformation" VALUES('EPSG','15949','DHDN to WGS 84 (4)','These parameter values are taken from DHDN to ETRS89 (8) (code 15948) as ETRS89 may be considered equivalent to WGS 84 within the accuracy of the transformation.','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4314','EPSG','4326','EPSG','3339',1.0,'EPSG','8656','Latitude and longitude difference file','BETA2007.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Deu BeTA2007',0); INSERT INTO "grid_transformation" VALUES('EPSG','15954','RD/83 to WGS 84 (1)','These parameter values are taken from DHDN to ETRS89 (8) (code 15948) as RD/83 and ETRS89 may be considered equivalent to DHDN and WGS 84 respectively within the accuracy of the transformation.','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4745','EPSG','4326','EPSG','2545',1.0,'EPSG','8656','Latitude and longitude difference file','BETA2007.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Deu BeTA2007',0); INSERT INTO "grid_transformation" VALUES('EPSG','15955','PD/83 to WGS 84 (1)','These parameter values are taken from DHDN to ETRS89 (8) (code 15948) as PD/83 and ETRS89 may be considered equivalent to DHDN and WGS 84 respectively within the accuracy of the transformation.','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4746','EPSG','4326','EPSG','2544',1.0,'EPSG','8656','Latitude and longitude difference file','BETA2007.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Deu BeTA2007',0); INSERT INTO "grid_transformation" VALUES('EPSG','15958','RGF93 to NTF (2)','Emulation using NTv2 method of transformation NTF to RGF93 (1), code 9327. Note that grid file parameters are of opposite sign. May be taken as approximate transformation to ETRS89 or WGS 84 - see tfm codes 15959 and 15960.','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4171','EPSG','4275','EPSG','3694',1.0,'EPSG','8656','Latitude and longitude difference file','rgf93_ntf.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ESRI-Fra 1m emulation',0); INSERT INTO "grid_transformation" VALUES('EPSG','15959','ETRS89 to NTF (3)','These parameter values are taken from RGF93 to NTF (2) (code 15958) as RGF93 may be considered equivalent to ETRS89 within the accuracy of the transformation.','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4258','EPSG','4275','EPSG','3694',1.0,'EPSG','8656','Latitude and longitude difference file','rgf93_ntf.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Fra 1m emulation',0); INSERT INTO "grid_transformation" VALUES('EPSG','15960','WGS 84 to NTF (3)','These parameter values are taken from RGF93 to NTF (2) (code 15958) as RGF93 may be considered equivalent to WGS 84 within the accuracy of the transformation.','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4326','EPSG','4275','EPSG','3694',1.0,'EPSG','8656','Latitude and longitude difference file','rgf93_ntf.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Fra 1m emulation',0); INSERT INTO "grid_transformation" VALUES('EPSG','15961','RGNC91-93 to NEA74 Noumea (4)','Emulation using NTv2 method of tfm NEA74 Noumea to RGNC91-93 (3) (code 15943). Note reversal of sign of parameter values in grid file.','Accuracy 5-10cm.','EPSG','9615','NTv2','EPSG','4749','EPSG','4644','EPSG','2823',0.05,'EPSG','8656','Latitude and longitude difference file','RGNC1991_IGN72GrandeTerre.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ESRI-Ncl 0.05m',1); INSERT INTO "grid_transformation" VALUES('EPSG','15962','RGNC91-93 to IGN72 Grande Terre (6)','Emulation using NTv2 method of tfm IGN72 Grande Terre to RGNC91-93 (4) (code 9329). Note reversal sign of of parameter values in grid file.','Accuracy better than +/- 0.1 metre.','EPSG','9615','NTv2','EPSG','4749','EPSG','4662','EPSG','2822',0.1,'EPSG','8656','Latitude and longitude difference file','RGNC1991_IGN72GrandeTerre.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'ESRI-Ncl 0.1m',0); -- This file is hand generated. -- Denmark INSERT INTO "grid_transformation" VALUES( 'PROJ','EPSG_5799_TO_EPSG_4937','DVR90 height to ETRS89', NULL,NULL, 'PROJ','HEIGHT_TO_GEOGRAPHIC3D','GravityRelatedHeight to Geographic3D', 'EPSG','5799', -- source CRS (DVR90 height) 'EPSG','4937', -- target CRS (ETRS89) 'EPSG','3237', -- area of use: Denmark onshore NULL, 'EPSG','8666','Geoid (height correction) model file','dvr90.gtx', NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES( 'PROJ','EPSG_5733_TO_EPSG_4937','DNN height to ETRS89', NULL,NULL, 'PROJ','HEIGHT_TO_GEOGRAPHIC3D','GravityRelatedHeight to Geographic3D', 'EPSG','5733', -- source CRS (DNN height) 'EPSG','4937', -- target CRS (ETRS89) 'EPSG','3237', -- area of use: Denmark onshore NULL, 'EPSG','8666','Geoid (height correction) model file','dnn.gtx', NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); -- Faroe Islands INSERT INTO "grid_transformation" VALUES( 'PROJ','EPSG_5317_TO_EPSG_4937','FVR09 height to ETRS89', NULL,NULL, 'PROJ','HEIGHT_TO_GEOGRAPHIC3D','GravityRelatedHeight to Geographic3D', 'EPSG','5317', -- source CRS (FVR09 height) 'EPSG','4937', -- target CRS (ETRS89) 'EPSG','3248', -- area of use: Faroe Islands - onshore NULL, 'EPSG','8666','Geoid (height correction) model file','fvr09.gtx', NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); -- Sweden INSERT INTO "grid_transformation" VALUES( 'PROJ','EPSG_5613_TO_EPSG_4977','RH2000 height to SWEREF99', NULL,NULL, 'PROJ','HEIGHT_TO_GEOGRAPHIC3D','GravityRelatedHeight to Geographic3D', 'EPSG','5613', -- source CRS (RH2000 height) 'EPSG','4977', -- target CRS (SWEREF99) 'EPSG','3313', -- area of use: Sweden onshore NULL, 'EPSG','8666','Geoid (height correction) model file','SWEN17_RH2000.gtx', NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); ----- Hopefully temporary entry for BWTA2017.gsb grid ----- INSERT INTO "area" VALUES('PROJ','BWTA2017','Germany - Baden-Wurtemberg','Germany - Baden-Wurtemberg',47.5,49.83,7.49,10.51,0); -- Advertize a 0.8 accuracy slightly better than the 0.9 of BETA2007 for sort purposes INSERT INTO "grid_transformation" VALUES('PROJ','BWTA2017','DHDN to ETRS89 (BWTA2017)','DHDN to ETRS89 for Baden-Wurtemberg for ALKIS 2017. Using official BWTA2017 grid but this transformation entry has been created temporarily by PROJ. Accuracy indication not to be considered as authoritative','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4314','EPSG','4258','PROJ','BWTA2017',0.89,'EPSG','8656','Latitude and longitude difference file','BWTA2017.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'-',0); ----- Hopefully temporary entry for SeTa2016.gsb grid ----- INSERT INTO "area" VALUES('PROJ','SETA2016','Germany - Saarland','Germany - Saarland',49.10,49.64,6.345,7.45,0); -- Advertize a 0.8 accuracy slightly better than the 0.9 of BETA2007 for sort purposes INSERT INTO "grid_transformation" VALUES('PROJ','SETA2016','DHDN to ETRS89 (SETA2016)','DHDN to ETRS89 for Saarland. Using official SETA2016 grid but this transformation entry has been created temporarily by PROJ. Accuracy indication not to be considered as authoritative','For applications requiring an accuracy of better than 1 metre.','EPSG','9615','NTv2','EPSG','4314','EPSG','4258','PROJ','SETA2016',0.89,'EPSG','8656','Latitude and longitude difference file','SeTa2016.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'-',0); -- Iceland INSERT INTO "grid_transformation" VALUES( 'PROJ','EPSG_8089_TO_EPSG_5323','ISH2004 height to ISN2004', NULL,NULL, 'PROJ','HEIGHT_TO_GEOGRAPHIC3D','GravityRelatedHeight to Geographic3D', 'EPSG','8089', -- source CRS (ISH2004 height) 'EPSG','5323', -- target CRS (ISN2004 geographic 3D) 'EPSG','1120', -- area of use: Iceland - onshore and offshore NULL, 'EPSG','8666','Geoid (height correction) model file','Icegeoid_ISN2004.gtx', NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES( 'PROJ','EPSG_8089_TO_EPSG_4945','ISH2004 height to ISN93', NULL,NULL, 'PROJ','HEIGHT_TO_GEOGRAPHIC3D','GravityRelatedHeight to Geographic3D', 'EPSG','8089', -- source CRS (ISH2004 height) 'EPSG','4945', -- target CRS (ISN93 geographic 3D) 'EPSG','1120', -- area of use: Iceland - onshore and offshore NULL, 'EPSG','8666','Geoid (height correction) model file','Icegeoid_ISN93.gtx', NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES( 'PROJ','EPSG_8089_TO_EPSG_8085','ISH2004 height to ISN2016', NULL,NULL, 'PROJ','HEIGHT_TO_GEOGRAPHIC3D','GravityRelatedHeight to Geographic3D', 'EPSG','8089', -- source CRS (ISH2004 height) 'EPSG','8085', -- target CRS (ISN2016 geographic 3D) 'EPSG','1120', -- area of use: Iceland - onshore and offshore NULL, 'EPSG','8666','Geoid (height correction) model file','Icegeoid_ISN2016.gtx', NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "other_transformation" VALUES('EPSG','1258','Bogota 1975 (Bogota) to Bogota 1975 (Greenwich)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4802','EPSG','4218','EPSG','1070',NULL,'EPSG','8602','Longitude offset',-74.04513,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGAC-Col',1); INSERT INTO "other_transformation" VALUES('EPSG','1259','Lisbon (Lisbon) to Lisbon (Greenwich)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4803','EPSG','4207','EPSG','1294',NULL,'EPSG','8602','Longitude offset',-9.0754862,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGC-Prt',1); INSERT INTO "other_transformation" VALUES('EPSG','1260','Makassar (Jakarta) to Makassar (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4804','EPSG','4257','EPSG','1316',0.0,'EPSG','8602','Longitude offset',106.482779,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Idn Sulawesi',0); INSERT INTO "other_transformation" VALUES('EPSG','1261','MGI (Ferro) to MGI (Greenwich)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4805','EPSG','4312','EPSG','1166',NULL,'EPSG','8602','Longitude offset',-17.4,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BEV-Aut balk',1); INSERT INTO "other_transformation" VALUES('EPSG','1262','Monte Mario (Rome) to Monte Mario (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4806','EPSG','4265','EPSG','3343',0.0,'EPSG','8602','Longitude offset',12.27084,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Ita',0); INSERT INTO "other_transformation" VALUES('EPSG','1263','Padang (Jakarta) to Padang (Greenwich)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4808','EPSG','4280','EPSG','1355',NULL,'EPSG','8602','Longitude offset',106.482779,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Idn Sumatra',1); INSERT INTO "other_transformation" VALUES('EPSG','1264','Belge 1950 (Brussels) to Belge 1950 (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4809','EPSG','4215','EPSG','1347',0.0,'EPSG','8602','Longitude offset',4.220471,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Bel',0); INSERT INTO "other_transformation" VALUES('EPSG','1265','Tananarive (Paris) to Tananarive (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4810','EPSG','4297','EPSG','3273',0.0,'EPSG','8602','Longitude offset',2.5969213,'EPSG','9105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Mdg',0); INSERT INTO "other_transformation" VALUES('EPSG','1266','Voirol 1875 (Paris) to Voirol 1875 (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4811','EPSG','4304','EPSG','1365',0.0,'EPSG','8602','Longitude offset',2.5969213,'EPSG','9105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Dza',0); INSERT INTO "other_transformation" VALUES('EPSG','1268','Batavia (Jakarta) to Batavia (Greenwich)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4813','EPSG','4211','EPSG','1285',NULL,'EPSG','8602','Longitude offset',106.482779,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Idn Java',1); INSERT INTO "other_transformation" VALUES('EPSG','1269','RT38 (Stockholm) to RT38 (Greenwich)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4814','EPSG','4308','EPSG','1225',NULL,'EPSG','8602','Longitude offset',18.03298,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLS-Swe',1); INSERT INTO "other_transformation" VALUES('EPSG','1270','Greek (Athens) to Greek (Greenwich)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4815','EPSG','4120','EPSG','1106',NULL,'EPSG','8602','Longitude offset',23.4258815,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NTU-Grc',1); INSERT INTO "other_transformation" VALUES('EPSG','1335','Tokyo to WGS 84 (6)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','4301','EPSG','4326','EPSG','2425',2.0,'EPSG','8601','Latitude offset',7.92,'EPSG','9108','EPSG','8602','Longitude offset',-13.88,'EPSG','9104','EPSG','8604','Geoid undulation',26.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 452141',1); INSERT INTO "other_transformation" VALUES('EPSG','1336','Tokyo + JSLD to WGS 84 (7)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2426',1.0,'EPSG','8601','Latitude offset',7.94,'EPSG','9104','EPSG','8602','Longitude offset',-13.97,'EPSG','9104','EPSG','8604','Geoid undulation',26.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 452142',1); INSERT INTO "other_transformation" VALUES('EPSG','1337','Tokyo + JSLD to WGS 84 (8)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2427',1.0,'EPSG','8601','Latitude offset',8.1,'EPSG','9104','EPSG','8602','Longitude offset',-13.81,'EPSG','9104','EPSG','8604','Geoid undulation',27.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 444141',1); INSERT INTO "other_transformation" VALUES('EPSG','1338','Tokyo + JSLD to WGS 84 (9)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2428',1.0,'EPSG','8601','Latitude offset',8.15,'EPSG','9104','EPSG','8602','Longitude offset',-13.95,'EPSG','9104','EPSG','8604','Geoid undulation',28.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 444142',1); INSERT INTO "other_transformation" VALUES('EPSG','1339','Tokyo + JSLD to WGS 84 (10)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2429',1.0,'EPSG','8601','Latitude offset',8.37,'EPSG','9104','EPSG','8602','Longitude offset',-13.65,'EPSG','9104','EPSG','8604','Geoid undulation',29.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 440141',1); INSERT INTO "other_transformation" VALUES('EPSG','1340','Tokyo + JSLD to WGS 84 (11)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2430',1.0,'EPSG','8601','Latitude offset',8.44,'EPSG','9104','EPSG','8602','Longitude offset',-13.87,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 440142',1); INSERT INTO "other_transformation" VALUES('EPSG','1341','Tokyo + JSLD to WGS 84 (12)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2431',1.0,'EPSG','8601','Latitude offset',8.61,'EPSG','9104','EPSG','8602','Longitude offset',-14.08,'EPSG','9104','EPSG','8604','Geoid undulation',30.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 440143',1); INSERT INTO "other_transformation" VALUES('EPSG','1342','Tokyo + JSLD to WGS 84 (13)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2432',1.0,'EPSG','8601','Latitude offset',8.73,'EPSG','9104','EPSG','8602','Longitude offset',-14.3,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 440144',1); INSERT INTO "other_transformation" VALUES('EPSG','1343','Tokyo + JSLD to WGS 84 (14)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2433',1.0,'EPSG','8601','Latitude offset',8.63,'EPSG','9104','EPSG','8602','Longitude offset',-13.49,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 432141',1); INSERT INTO "other_transformation" VALUES('EPSG','1344','Tokyo + JSLD to WGS 84 (15)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2434',1.0,'EPSG','8601','Latitude offset',8.71,'EPSG','9104','EPSG','8602','Longitude offset',-13.73,'EPSG','9104','EPSG','8604','Geoid undulation',31.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 432142',1); INSERT INTO "other_transformation" VALUES('EPSG','1345','Tokyo + JSLD to WGS 84 (16)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2435',1.0,'EPSG','8601','Latitude offset',8.84,'EPSG','9104','EPSG','8602','Longitude offset',-14.03,'EPSG','9104','EPSG','8604','Geoid undulation',31.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 432143',1); INSERT INTO "other_transformation" VALUES('EPSG','1346','Tokyo + JSLD to WGS 84 (17)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2436',1.0,'EPSG','8601','Latitude offset',8.98,'EPSG','9104','EPSG','8602','Longitude offset',-14.33,'EPSG','9104','EPSG','8604','Geoid undulation',32.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 432144',1); INSERT INTO "other_transformation" VALUES('EPSG','1347','Tokyo + JSLD to WGS 84 (18)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2437',1.0,'EPSG','8601','Latitude offset',9.1,'EPSG','9104','EPSG','8602','Longitude offset',-14.56,'EPSG','9104','EPSG','8604','Geoid undulation',32.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 432145',1); INSERT INTO "other_transformation" VALUES('EPSG','1348','Tokyo + JSLD to WGS 84 (19)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2438',1.0,'EPSG','8601','Latitude offset',8.79,'EPSG','9104','EPSG','8602','Longitude offset',-13.0,'EPSG','9104','EPSG','8604','Geoid undulation',33.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424140',1); INSERT INTO "other_transformation" VALUES('EPSG','1349','Tokyo + JSLD to WGS 84 (20)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2439',1.0,'EPSG','8601','Latitude offset',8.84,'EPSG','9104','EPSG','8602','Longitude offset',-13.31,'EPSG','9104','EPSG','8604','Geoid undulation',31.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424141',1); INSERT INTO "other_transformation" VALUES('EPSG','1350','Tokyo + JSLD to WGS 84 (21)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2440',1.0,'EPSG','8601','Latitude offset',8.98,'EPSG','9104','EPSG','8602','Longitude offset',-13.59,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424142',1); INSERT INTO "other_transformation" VALUES('EPSG','1351','Tokyo + JSLD to WGS 84 (22)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2441',1.0,'EPSG','8601','Latitude offset',9.1,'EPSG','9104','EPSG','8602','Longitude offset',-13.91,'EPSG','9104','EPSG','8604','Geoid undulation',29.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424143',1); INSERT INTO "other_transformation" VALUES('EPSG','1352','Tokyo + JSLD to WGS 84 (23)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2442',1.0,'EPSG','8601','Latitude offset',9.17,'EPSG','9104','EPSG','8602','Longitude offset',-14.27,'EPSG','9104','EPSG','8604','Geoid undulation',31.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424144',1); INSERT INTO "other_transformation" VALUES('EPSG','1353','Tokyo + JSLD to WGS 84 (24)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2443',1.0,'EPSG','8601','Latitude offset',9.23,'EPSG','9104','EPSG','8602','Longitude offset',-14.52,'EPSG','9104','EPSG','8604','Geoid undulation',31.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424145',1); INSERT INTO "other_transformation" VALUES('EPSG','1354','Tokyo + JSLD to WGS 84 (25)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2444',1.0,'EPSG','8601','Latitude offset',8.9,'EPSG','9104','EPSG','8602','Longitude offset',-12.68,'EPSG','9104','EPSG','8604','Geoid undulation',34.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 420139',1); INSERT INTO "other_transformation" VALUES('EPSG','1355','Tokyo + JSLD to WGS 84 (26)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2445',1.0,'EPSG','8601','Latitude offset',8.99,'EPSG','9104','EPSG','8602','Longitude offset',-12.8,'EPSG','9104','EPSG','8604','Geoid undulation',34.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 420140',1); INSERT INTO "other_transformation" VALUES('EPSG','1356','Tokyo + JSLD to WGS 84 (27)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2446',1.0,'EPSG','8601','Latitude offset',9.0,'EPSG','9104','EPSG','8602','Longitude offset',-13.07,'EPSG','9104','EPSG','8604','Geoid undulation',31.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 420141',1); INSERT INTO "other_transformation" VALUES('EPSG','1357','Tokyo + JSLD to WGS 84 (28)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2447',1.0,'EPSG','8601','Latitude offset',9.21,'EPSG','9104','EPSG','8602','Longitude offset',-13.51,'EPSG','9104','EPSG','8604','Geoid undulation',27.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 420142',1); INSERT INTO "other_transformation" VALUES('EPSG','1358','Tokyo + JSLD to WGS 84 (29)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2448',1.0,'EPSG','8601','Latitude offset',9.33,'EPSG','9104','EPSG','8602','Longitude offset',-13.66,'EPSG','9104','EPSG','8604','Geoid undulation',23.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 420143',1); INSERT INTO "other_transformation" VALUES('EPSG','1359','Tokyo + JSLD to WGS 84 (30)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2449',1.0,'EPSG','8601','Latitude offset',9.25,'EPSG','9104','EPSG','8602','Longitude offset',-12.72,'EPSG','9104','EPSG','8604','Geoid undulation',34.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 412140',1); INSERT INTO "other_transformation" VALUES('EPSG','1360','Tokyo + JSLD to WGS 84 (31)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2450',1.0,'EPSG','8601','Latitude offset',9.39,'EPSG','9104','EPSG','8602','Longitude offset',-12.91,'EPSG','9104','EPSG','8604','Geoid undulation',31.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 412141',1); INSERT INTO "other_transformation" VALUES('EPSG','1361','Tokyo + JSLD to WGS 84 (32)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2451',1.0,'EPSG','8601','Latitude offset',9.55,'EPSG','9104','EPSG','8602','Longitude offset',-12.63,'EPSG','9104','EPSG','8604','Geoid undulation',35.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 404140',1); INSERT INTO "other_transformation" VALUES('EPSG','1362','Tokyo + JSLD to WGS 84 (33)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2452',1.0,'EPSG','8601','Latitude offset',9.62,'EPSG','9104','EPSG','8602','Longitude offset',-12.82,'EPSG','9104','EPSG','8604','Geoid undulation',34.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 404141',1); INSERT INTO "other_transformation" VALUES('EPSG','1363','Tokyo + JSLD to WGS 84 (34)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2453',1.0,'EPSG','8601','Latitude offset',9.81,'EPSG','9104','EPSG','8602','Longitude offset',-12.29,'EPSG','9104','EPSG','8604','Geoid undulation',36.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 400139',1); INSERT INTO "other_transformation" VALUES('EPSG','1364','Tokyo + JSLD to WGS 84 (35)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2454',1.0,'EPSG','8601','Latitude offset',9.81,'EPSG','9104','EPSG','8602','Longitude offset',-12.45,'EPSG','9104','EPSG','8604','Geoid undulation',37.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 400140',1); INSERT INTO "other_transformation" VALUES('EPSG','1365','Tokyo + JSLD to WGS 84 (36)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2455',1.0,'EPSG','8601','Latitude offset',9.92,'EPSG','9104','EPSG','8602','Longitude offset',-12.79,'EPSG','9104','EPSG','8604','Geoid undulation',38.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 400141',1); INSERT INTO "other_transformation" VALUES('EPSG','1366','Tokyo + JSLD to WGS 84 (37)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2456',1.0,'EPSG','8601','Latitude offset',9.91,'EPSG','9104','EPSG','8602','Longitude offset',-12.21,'EPSG','9104','EPSG','8604','Geoid undulation',36.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 392139',1); INSERT INTO "other_transformation" VALUES('EPSG','1367','Tokyo + JSLD to WGS 84 (38)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2457',1.0,'EPSG','8601','Latitude offset',10.08,'EPSG','9104','EPSG','8602','Longitude offset',-12.35,'EPSG','9104','EPSG','8604','Geoid undulation',39.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 392140',1); INSERT INTO "other_transformation" VALUES('EPSG','1368','Tokyo + JSLD to WGS 84 (39)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2458',1.0,'EPSG','8601','Latitude offset',10.19,'EPSG','9104','EPSG','8602','Longitude offset',-12.74,'EPSG','9104','EPSG','8604','Geoid undulation',40.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 392141',1); INSERT INTO "other_transformation" VALUES('EPSG','1369','Tokyo + JSLD to WGS 84 (40)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2459',1.0,'EPSG','8601','Latitude offset',10.29,'EPSG','9104','EPSG','8602','Longitude offset',-12.13,'EPSG','9104','EPSG','8604','Geoid undulation',38.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 384139',1); INSERT INTO "other_transformation" VALUES('EPSG','1370','Tokyo + JSLD to WGS 84 (41)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2460',1.0,'EPSG','8601','Latitude offset',10.33,'EPSG','9104','EPSG','8602','Longitude offset',-12.27,'EPSG','9104','EPSG','8604','Geoid undulation',40.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 384140',1); INSERT INTO "other_transformation" VALUES('EPSG','1371','Tokyo + JSLD to WGS 84 (42)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2461',1.0,'EPSG','8601','Latitude offset',10.45,'EPSG','9104','EPSG','8602','Longitude offset',-12.61,'EPSG','9104','EPSG','8604','Geoid undulation',41.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 384141',1); INSERT INTO "other_transformation" VALUES('EPSG','1372','Tokyo + JSLD to WGS 84 (43)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2462',1.0,'EPSG','8601','Latitude offset',10.54,'EPSG','9104','EPSG','8602','Longitude offset',-11.96,'EPSG','9104','EPSG','8604','Geoid undulation',39.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 380139',1); INSERT INTO "other_transformation" VALUES('EPSG','1373','Tokyo + JSLD to WGS 84 (44)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2463',1.0,'EPSG','8601','Latitude offset',10.65,'EPSG','9104','EPSG','8602','Longitude offset',-12.27,'EPSG','9104','EPSG','8604','Geoid undulation',41.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 380140',1); INSERT INTO "other_transformation" VALUES('EPSG','1374','Tokyo + JSLD to WGS 84 (45)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2464',1.0,'EPSG','8601','Latitude offset',10.67,'EPSG','9104','EPSG','8602','Longitude offset',-12.5,'EPSG','9104','EPSG','8604','Geoid undulation',41.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 380141',1); INSERT INTO "other_transformation" VALUES('EPSG','1375','Tokyo + JSLD to WGS 84 (46)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2465',1.0,'EPSG','8601','Latitude offset',10.67,'EPSG','9104','EPSG','8602','Longitude offset',-10.86,'EPSG','9104','EPSG','8604','Geoid undulation',38.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372136',1); INSERT INTO "other_transformation" VALUES('EPSG','1376','Tokyo + JSLD to WGS 84 (47)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2466',1.0,'EPSG','8601','Latitude offset',10.68,'EPSG','9104','EPSG','8602','Longitude offset',-10.97,'EPSG','9104','EPSG','8604','Geoid undulation',36.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372137',1); INSERT INTO "other_transformation" VALUES('EPSG','1377','Tokyo + JSLD to WGS 84 (48)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2467',1.0,'EPSG','8601','Latitude offset',10.8,'EPSG','9104','EPSG','8602','Longitude offset',-11.53,'EPSG','9104','EPSG','8604','Geoid undulation',39.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372138',1); INSERT INTO "other_transformation" VALUES('EPSG','1378','Tokyo + JSLD to WGS 84 (49)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2468',1.0,'EPSG','8601','Latitude offset',10.8,'EPSG','9104','EPSG','8602','Longitude offset',-11.73,'EPSG','9104','EPSG','8604','Geoid undulation',40.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372139',1); INSERT INTO "other_transformation" VALUES('EPSG','1379','Tokyo + JSLD to WGS 84 (50)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2469',1.0,'EPSG','8601','Latitude offset',10.92,'EPSG','9104','EPSG','8602','Longitude offset',-12.16,'EPSG','9104','EPSG','8604','Geoid undulation',42.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372140',1); INSERT INTO "other_transformation" VALUES('EPSG','1380','Tokyo + JSLD to WGS 84 (51)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2470',1.0,'EPSG','8601','Latitude offset',11.0,'EPSG','9104','EPSG','8602','Longitude offset',-12.25,'EPSG','9104','EPSG','8604','Geoid undulation',41.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372141',1); INSERT INTO "other_transformation" VALUES('EPSG','1381','Tokyo + JSLD to WGS 84 (52)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2471',1.0,'EPSG','8601','Latitude offset',10.83,'EPSG','9104','EPSG','8602','Longitude offset',-10.77,'EPSG','9104','EPSG','8604','Geoid undulation',36.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 364136',1); INSERT INTO "other_transformation" VALUES('EPSG','1382','Tokyo + JSLD to WGS 84 (53)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2472',1.0,'EPSG','8601','Latitude offset',10.95,'EPSG','9104','EPSG','8602','Longitude offset',-11.0,'EPSG','9104','EPSG','8604','Geoid undulation',38.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 364137',1); INSERT INTO "other_transformation" VALUES('EPSG','1383','Tokyo + JSLD to WGS 84 (54)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2473',1.0,'EPSG','8601','Latitude offset',10.97,'EPSG','9104','EPSG','8602','Longitude offset',-11.34,'EPSG','9104','EPSG','8604','Geoid undulation',40.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 364138',1); INSERT INTO "other_transformation" VALUES('EPSG','1384','Tokyo + JSLD to WGS 84 (55)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2474',1.0,'EPSG','8601','Latitude offset',11.04,'EPSG','9104','EPSG','8602','Longitude offset',-11.69,'EPSG','9104','EPSG','8604','Geoid undulation',43.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 364139',1); INSERT INTO "other_transformation" VALUES('EPSG','1385','Tokyo + JSLD to WGS 84 (56)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2475',1.0,'EPSG','8601','Latitude offset',11.17,'EPSG','9104','EPSG','8602','Longitude offset',-12.05,'EPSG','9104','EPSG','8604','Geoid undulation',42.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 364140',1); INSERT INTO "other_transformation" VALUES('EPSG','1386','Tokyo + JSLD to WGS 84 (57)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2476',1.0,'EPSG','8601','Latitude offset',11.11,'EPSG','9104','EPSG','8602','Longitude offset',-10.59,'EPSG','9104','EPSG','8604','Geoid undulation',37.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 360136',1); INSERT INTO "other_transformation" VALUES('EPSG','1387','Tokyo + JSLD to WGS 84 (58)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2477',1.0,'EPSG','8601','Latitude offset',11.16,'EPSG','9104','EPSG','8602','Longitude offset',-10.97,'EPSG','9104','EPSG','8604','Geoid undulation',40.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 360137',1); INSERT INTO "other_transformation" VALUES('EPSG','1388','Tokyo + JSLD to WGS 84 (59)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2478',1.0,'EPSG','8601','Latitude offset',11.29,'EPSG','9104','EPSG','8602','Longitude offset',-11.23,'EPSG','9104','EPSG','8604','Geoid undulation',42.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 360138',1); INSERT INTO "other_transformation" VALUES('EPSG','1389','Tokyo + JSLD to WGS 84 (60)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2479',1.0,'EPSG','8601','Latitude offset',11.36,'EPSG','9104','EPSG','8602','Longitude offset',-11.59,'EPSG','9104','EPSG','8604','Geoid undulation',42.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 360139',1); INSERT INTO "other_transformation" VALUES('EPSG','1390','Tokyo + JSLD to WGS 84 (61)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2480',1.0,'EPSG','8601','Latitude offset',11.44,'EPSG','9104','EPSG','8602','Longitude offset',-11.88,'EPSG','9104','EPSG','8604','Geoid undulation',40.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 360140',1); INSERT INTO "other_transformation" VALUES('EPSG','1391','Tokyo + JSLD to WGS 84 (62)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2481',1.0,'EPSG','8601','Latitude offset',11.27,'EPSG','9104','EPSG','8602','Longitude offset',-9.31,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352132',1); INSERT INTO "other_transformation" VALUES('EPSG','1392','Tokyo + JSLD to WGS 84 (63)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2482',1.0,'EPSG','8601','Latitude offset',11.33,'EPSG','9104','EPSG','8602','Longitude offset',-9.52,'EPSG','9104','EPSG','8604','Geoid undulation',33.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352133',1); INSERT INTO "other_transformation" VALUES('EPSG','1393','Tokyo + JSLD to WGS 84 (64)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2483',1.0,'EPSG','8601','Latitude offset',11.38,'EPSG','9104','EPSG','8602','Longitude offset',-9.86,'EPSG','9104','EPSG','8604','Geoid undulation',34.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352134',1); INSERT INTO "other_transformation" VALUES('EPSG','1394','Tokyo + JSLD to WGS 84 (65)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2484',1.0,'EPSG','8601','Latitude offset',11.41,'EPSG','9104','EPSG','8602','Longitude offset',-10.14,'EPSG','9104','EPSG','8604','Geoid undulation',35.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352135',1); INSERT INTO "other_transformation" VALUES('EPSG','1395','Tokyo + JSLD to WGS 84 (66)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2485',1.0,'EPSG','8601','Latitude offset',11.39,'EPSG','9104','EPSG','8602','Longitude offset',-10.52,'EPSG','9104','EPSG','8604','Geoid undulation',37.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352136',1); INSERT INTO "other_transformation" VALUES('EPSG','1396','Tokyo + JSLD to WGS 84 (67)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2486',1.0,'EPSG','8601','Latitude offset',11.49,'EPSG','9104','EPSG','8602','Longitude offset',-10.83,'EPSG','9104','EPSG','8604','Geoid undulation',39.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352137',1); INSERT INTO "other_transformation" VALUES('EPSG','1397','Tokyo + JSLD to WGS 84 (68)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2487',1.0,'EPSG','8601','Latitude offset',11.58,'EPSG','9104','EPSG','8602','Longitude offset',-11.21,'EPSG','9104','EPSG','8604','Geoid undulation',41.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352138',1); INSERT INTO "other_transformation" VALUES('EPSG','1398','Tokyo + JSLD to WGS 84 (69)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2488',1.0,'EPSG','8601','Latitude offset',11.65,'EPSG','9104','EPSG','8602','Longitude offset',-11.53,'EPSG','9104','EPSG','8604','Geoid undulation',38.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352139',1); INSERT INTO "other_transformation" VALUES('EPSG','1399','Tokyo + JSLD to WGS 84 (70)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2489',1.0,'EPSG','8601','Latitude offset',11.72,'EPSG','9104','EPSG','8602','Longitude offset',-11.8,'EPSG','9104','EPSG','8604','Geoid undulation',34.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352140',1); INSERT INTO "other_transformation" VALUES('EPSG','1400','Tokyo + JSLD to WGS 84 (71)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2490',1.0,'EPSG','8601','Latitude offset',11.44,'EPSG','9104','EPSG','8602','Longitude offset',-9.21,'EPSG','9104','EPSG','8604','Geoid undulation',32.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344132',1); INSERT INTO "other_transformation" VALUES('EPSG','1401','Tokyo + JSLD to WGS 84 (72)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2491',1.0,'EPSG','8601','Latitude offset',11.47,'EPSG','9104','EPSG','8602','Longitude offset',-9.52,'EPSG','9104','EPSG','8604','Geoid undulation',35.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344133',1); INSERT INTO "other_transformation" VALUES('EPSG','1402','Tokyo + JSLD to WGS 84 (73)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2492',1.0,'EPSG','8601','Latitude offset',11.55,'EPSG','9104','EPSG','8602','Longitude offset',-9.8,'EPSG','9104','EPSG','8604','Geoid undulation',35.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344134',1); INSERT INTO "other_transformation" VALUES('EPSG','1403','Tokyo + JSLD to WGS 84 (74)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2493',1.0,'EPSG','8601','Latitude offset',11.61,'EPSG','9104','EPSG','8602','Longitude offset',-10.12,'EPSG','9104','EPSG','8604','Geoid undulation',35.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344135',1); INSERT INTO "other_transformation" VALUES('EPSG','1404','Tokyo + JSLD to WGS 84 (75)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2494',1.0,'EPSG','8601','Latitude offset',11.66,'EPSG','9104','EPSG','8602','Longitude offset',-10.47,'EPSG','9104','EPSG','8604','Geoid undulation',37.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344136',1); INSERT INTO "other_transformation" VALUES('EPSG','1405','Tokyo + JSLD to WGS 84 (76)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2495',1.0,'EPSG','8601','Latitude offset',11.78,'EPSG','9104','EPSG','8602','Longitude offset',-10.79,'EPSG','9104','EPSG','8604','Geoid undulation',39.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344137',1); INSERT INTO "other_transformation" VALUES('EPSG','1406','Tokyo + JSLD to WGS 84 (77)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2496',1.0,'EPSG','8601','Latitude offset',11.85,'EPSG','9104','EPSG','8602','Longitude offset',-11.13,'EPSG','9104','EPSG','8604','Geoid undulation',39.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344138',1); INSERT INTO "other_transformation" VALUES('EPSG','1407','Tokyo + JSLD to WGS 84 (78)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2497',1.0,'EPSG','8601','Latitude offset',11.9,'EPSG','9104','EPSG','8602','Longitude offset',-11.47,'EPSG','9104','EPSG','8604','Geoid undulation',36.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344139',1); INSERT INTO "other_transformation" VALUES('EPSG','1408','Tokyo + JSLD to WGS 84 (79)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2498',1.0,'EPSG','8601','Latitude offset',11.91,'EPSG','9104','EPSG','8602','Longitude offset',-11.69,'EPSG','9104','EPSG','8604','Geoid undulation',33.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344140',1); INSERT INTO "other_transformation" VALUES('EPSG','1409','Tokyo + JSLD to WGS 84 (80)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2499',1.0,'EPSG','8601','Latitude offset',11.65,'EPSG','9104','EPSG','8602','Longitude offset',-8.59,'EPSG','9104','EPSG','8604','Geoid undulation',29.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340130',1); INSERT INTO "other_transformation" VALUES('EPSG','1410','Tokyo + JSLD to WGS 84 (81)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2500',1.0,'EPSG','8601','Latitude offset',11.68,'EPSG','9104','EPSG','8602','Longitude offset',-8.8,'EPSG','9104','EPSG','8604','Geoid undulation',30.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340131',1); INSERT INTO "other_transformation" VALUES('EPSG','1411','Tokyo + JSLD to WGS 84 (82)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2501',1.0,'EPSG','8601','Latitude offset',11.73,'EPSG','9104','EPSG','8602','Longitude offset',-9.04,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340132',1); INSERT INTO "other_transformation" VALUES('EPSG','1412','Tokyo + JSLD to WGS 84 (83)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2502',1.0,'EPSG','8601','Latitude offset',11.72,'EPSG','9104','EPSG','8602','Longitude offset',-9.48,'EPSG','9104','EPSG','8604','Geoid undulation',35.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340133',1); INSERT INTO "other_transformation" VALUES('EPSG','1413','Tokyo + JSLD to WGS 84 (84)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2503',1.0,'EPSG','8601','Latitude offset',11.81,'EPSG','9104','EPSG','8602','Longitude offset',9.74,'EPSG','9104','EPSG','8604','Geoid undulation',35.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340134',1); INSERT INTO "other_transformation" VALUES('EPSG','1414','Tokyo + JSLD to WGS 84 (85)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2504',1.0,'EPSG','8601','Latitude offset',11.88,'EPSG','9104','EPSG','8602','Longitude offset',-10.1,'EPSG','9104','EPSG','8604','Geoid undulation',37.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340135',1); INSERT INTO "other_transformation" VALUES('EPSG','1415','Tokyo + JSLD to WGS 84 (86)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2505',1.0,'EPSG','8601','Latitude offset',11.91,'EPSG','9104','EPSG','8602','Longitude offset',-10.35,'EPSG','9104','EPSG','8604','Geoid undulation',37.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340136',1); INSERT INTO "other_transformation" VALUES('EPSG','1416','Tokyo + JSLD to WGS 84 (87)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2506',1.0,'EPSG','8601','Latitude offset',11.9,'EPSG','9104','EPSG','8602','Longitude offset',-10.7,'EPSG','9104','EPSG','8604','Geoid undulation',39.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340137',1); INSERT INTO "other_transformation" VALUES('EPSG','1417','Tokyo + JSLD to WGS 84 (88)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2507',1.0,'EPSG','8601','Latitude offset',12.02,'EPSG','9104','EPSG','8602','Longitude offset',-11.09,'EPSG','9104','EPSG','8604','Geoid undulation',38.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340138',1); INSERT INTO "other_transformation" VALUES('EPSG','1418','Tokyo + JSLD to WGS 84 (89)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2508',1.0,'EPSG','8601','Latitude offset',11.87,'EPSG','9104','EPSG','8602','Longitude offset',-8.23,'EPSG','9104','EPSG','8604','Geoid undulation',29.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332129',1); INSERT INTO "other_transformation" VALUES('EPSG','1419','Tokyo + JSLD to WGS 84 (90)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2509',1.0,'EPSG','8601','Latitude offset',11.84,'EPSG','9104','EPSG','8602','Longitude offset',-8.44,'EPSG','9104','EPSG','8604','Geoid undulation',30.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332130',1); INSERT INTO "other_transformation" VALUES('EPSG','1420','Tokyo + JSLD to WGS 84 (91)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2510',1.0,'EPSG','8601','Latitude offset',11.94,'EPSG','9104','EPSG','8602','Longitude offset',-8.71,'EPSG','9104','EPSG','8604','Geoid undulation',30.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332131',1); INSERT INTO "other_transformation" VALUES('EPSG','1421','Tokyo + JSLD to WGS 84 (92)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2511',1.0,'EPSG','8601','Latitude offset',11.99,'EPSG','9104','EPSG','8602','Longitude offset',-9.02,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332132',1); INSERT INTO "other_transformation" VALUES('EPSG','1422','Tokyo + JSLD to WGS 84 (93)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2512',1.0,'EPSG','8601','Latitude offset',12.05,'EPSG','9104','EPSG','8602','Longitude offset',-9.36,'EPSG','9104','EPSG','8604','Geoid undulation',35.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332133',1); INSERT INTO "other_transformation" VALUES('EPSG','1423','Tokyo + JSLD to WGS 84 (94)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2513',1.0,'EPSG','8601','Latitude offset',12.1,'EPSG','9104','EPSG','8602','Longitude offset',-9.64,'EPSG','9104','EPSG','8604','Geoid undulation',35.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332134',1); INSERT INTO "other_transformation" VALUES('EPSG','1424','Tokyo + JSLD to WGS 84 (95)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2514',1.0,'EPSG','8601','Latitude offset',12.1,'EPSG','9104','EPSG','8602','Longitude offset',-10.08,'EPSG','9104','EPSG','8604','Geoid undulation',37.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332135',1); INSERT INTO "other_transformation" VALUES('EPSG','1425','Tokyo + JSLD to WGS 84 (96)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2515',1.0,'EPSG','8601','Latitude offset',12.07,'EPSG','9104','EPSG','8602','Longitude offset',-10.25,'EPSG','9104','EPSG','8604','Geoid undulation',37.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332136',1); INSERT INTO "other_transformation" VALUES('EPSG','1426','Tokyo + JSLD to WGS 84 (97)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2516',1.0,'EPSG','8601','Latitude offset',12.0,'EPSG','9104','EPSG','8602','Longitude offset',-8.15,'EPSG','9104','EPSG','8604','Geoid undulation',32.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324129',1); INSERT INTO "other_transformation" VALUES('EPSG','1427','Tokyo + JSLD to WGS 84 (98)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2517',1.0,'EPSG','8601','Latitude offset',12.06,'EPSG','9104','EPSG','8602','Longitude offset',-8.38,'EPSG','9104','EPSG','8604','Geoid undulation',31.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324130',1); INSERT INTO "other_transformation" VALUES('EPSG','1428','Tokyo + JSLD to WGS 84 (99)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2518',1.0,'EPSG','8601','Latitude offset',12.17,'EPSG','9104','EPSG','8602','Longitude offset',-8.69,'EPSG','9104','EPSG','8604','Geoid undulation',30.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324131',1); INSERT INTO "other_transformation" VALUES('EPSG','1429','Tokyo + JSLD to WGS 84 (100)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2519',1.0,'EPSG','8601','Latitude offset',12.23,'EPSG','9104','EPSG','8602','Longitude offset',-8.99,'EPSG','9104','EPSG','8604','Geoid undulation',31.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324132',1); INSERT INTO "other_transformation" VALUES('EPSG','1430','Tokyo + JSLD to WGS 84 (101)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2520',1.0,'EPSG','8601','Latitude offset',12.21,'EPSG','9104','EPSG','8602','Longitude offset',-9.21,'EPSG','9104','EPSG','8604','Geoid undulation',34.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324133',1); INSERT INTO "other_transformation" VALUES('EPSG','1431','Tokyo + JSLD to WGS 84 (102)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2521',1.0,'EPSG','8601','Latitude offset',12.28,'EPSG','9104','EPSG','8602','Longitude offset',-9.6,'EPSG','9104','EPSG','8604','Geoid undulation',33.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324134',1); INSERT INTO "other_transformation" VALUES('EPSG','1432','Tokyo + JSLD to WGS 84 (103)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2522',1.0,'EPSG','8601','Latitude offset',12.28,'EPSG','9104','EPSG','8602','Longitude offset',-8.25,'EPSG','9104','EPSG','8604','Geoid undulation',31.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 320130',1); INSERT INTO "other_transformation" VALUES('EPSG','1433','Tokyo + JSLD to WGS 84 (104)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2523',1.0,'EPSG','8601','Latitude offset',12.37,'EPSG','9104','EPSG','8602','Longitude offset',-8.55,'EPSG','9104','EPSG','8604','Geoid undulation',29.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 320131',1); INSERT INTO "other_transformation" VALUES('EPSG','1434','Tokyo + JSLD to WGS 84 (105)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2524',1.0,'EPSG','8601','Latitude offset',12.53,'EPSG','9104','EPSG','8602','Longitude offset',-8.21,'EPSG','9104','EPSG','8604','Geoid undulation',31.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 320132',1); INSERT INTO "other_transformation" VALUES('EPSG','1435','Tokyo + JSLD to WGS 84 (106)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2525',1.0,'EPSG','8601','Latitude offset',12.57,'EPSG','9104','EPSG','8602','Longitude offset',-8.4,'EPSG','9104','EPSG','8604','Geoid undulation',28.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 312130',1); INSERT INTO "other_transformation" VALUES('EPSG','1436','Tokyo + JSLD to WGS 84 (107)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2526',1.0,'EPSG','8601','Latitude offset',12.71,'EPSG','9104','EPSG','8602','Longitude offset',-8.17,'EPSG','9104','EPSG','8604','Geoid undulation',29.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 312131',1); INSERT INTO "other_transformation" VALUES('EPSG','1447','Anguilla 1957 to WGS 84 (1)','','Not known.','EPSG','9619','Geographic2D offsets','EPSG','4600','EPSG','4326','EPSG','3214',10.0,'EPSG','8601','Latitude offset',-18.0,'EPSG','9104','EPSG','8602','Longitude offset',4.4,'EPSG','9104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DOS-Aia',0); INSERT INTO "other_transformation" VALUES('EPSG','1466','NGO 1948 (Oslo) to NGO1948 (Greenwich)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4817','EPSG','4273','EPSG','1352',NULL,'EPSG','8602','Longitude offset',10.43225,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGO-Nor',1); INSERT INTO "other_transformation" VALUES('EPSG','1467','NTF (Paris) to NTF (Greenwich) (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4807','EPSG','4275','EPSG','1096',NULL,'EPSG','8602','Longitude offset',2.5969213,'EPSG','9105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',1); INSERT INTO "other_transformation" VALUES('EPSG','1468','NTF (Paris) to NTF (Greenwich) (2)','OGP prefers value from IGN Paris (code 1467).','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4807','EPSG','4275','EPSG','1096',NULL,'EPSG','8602','Longitude offset',2.201395,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'RGS',1); INSERT INTO "other_transformation" VALUES('EPSG','1519','Bern 1898 (Bern) to CH1903 (Greenwich)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4801','EPSG','4149','EPSG','1286',NULL,'EPSG','8602','Longitude offset',7.26225,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BfL-CH',1); INSERT INTO "other_transformation" VALUES('EPSG','1755','Bogota 1975 (Bogota) to Bogota 1975 (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4802','EPSG','4218','EPSG','3229',0.0,'EPSG','8602','Longitude offset',-74.04513,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGAC-Col',0); INSERT INTO "other_transformation" VALUES('EPSG','1756','Lisbon (Lisbon) to Lisbon (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4803','EPSG','4207','EPSG','1294',0.0,'EPSG','8602','Longitude offset',-9.0754862,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGC-Prt',0); INSERT INTO "other_transformation" VALUES('EPSG','1757','MGI (Ferro) to MGI (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4805','EPSG','4312','EPSG','1321',0.0,'EPSG','8602','Longitude offset',-17.4,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BEV-Aut balk',1); INSERT INTO "other_transformation" VALUES('EPSG','1758','Padang (Jakarta) to Padang (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4808','EPSG','4280','EPSG','1355',0.0,'EPSG','8602','Longitude offset',106.482779,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Idn Sumatra',1); INSERT INTO "other_transformation" VALUES('EPSG','1759','Batavia (Jakarta) to Batavia (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4813','EPSG','4211','EPSG','1285',0.0,'EPSG','8602','Longitude offset',106.482779,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Idn Java',0); INSERT INTO "other_transformation" VALUES('EPSG','1760','RT38 (Stockholm) to RT38 (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4814','EPSG','4308','EPSG','3313',0.0,'EPSG','8602','Longitude offset',18.03298,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NLS-Swe',0); INSERT INTO "other_transformation" VALUES('EPSG','1761','Greek (Athens) to Greek (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4815','EPSG','4120','EPSG','3254',0.0,'EPSG','8602','Longitude offset',23.4258815,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NTU-Grc',0); INSERT INTO "other_transformation" VALUES('EPSG','1762','NGO 1948 (Oslo) to NGO1948 (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4817','EPSG','4273','EPSG','1352',0.0,'EPSG','8602','Longitude offset',10.43225,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NGO-Nor',0); INSERT INTO "other_transformation" VALUES('EPSG','1763','NTF (Paris) to NTF (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4807','EPSG','4275','EPSG','3694',0.0,'EPSG','8602','Longitude offset',2.5969213,'EPSG','9105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',0); INSERT INTO "other_transformation" VALUES('EPSG','1764','NTF (Paris) to NTF (2)','OGP prefers value from IGN Paris (code 1763).','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4807','EPSG','4275','EPSG','3694',0.0,'EPSG','8602','Longitude offset',2.201395,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'RGS',0); INSERT INTO "other_transformation" VALUES('EPSG','1765','Bern 1898 (Bern) to CH1903 (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4801','EPSG','4149','EPSG','1286',0.0,'EPSG','8602','Longitude offset',7.26225,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BfL-CH',0); INSERT INTO "other_transformation" VALUES('EPSG','1827','Tokyo + JSLD to WGS 84 (6)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4326','EPSG','2425',1.0,'EPSG','8601','Latitude offset',7.92,'EPSG','9104','EPSG','8602','Longitude offset',-13.88,'EPSG','9104','EPSG','8604','Geoid undulation',26.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 452141',1); INSERT INTO "other_transformation" VALUES('EPSG','1881','Carthage (Paris) to Carthage (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4816','EPSG','4223','EPSG','1618',0.0,'EPSG','8602','Longitude offset',2.5969213,'EPSG','9105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',0); INSERT INTO "other_transformation" VALUES('EPSG','1882','Nord Sahara 1959 (Paris) to Nord Sahara 1959 (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4819','EPSG','4307','EPSG','1026',0.0,'EPSG','8602','Longitude offset',2.5969213,'EPSG','9105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IGN-Fra',1); INSERT INTO "other_transformation" VALUES('EPSG','1883','Segara (Jakarta) to Segara (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4820','EPSG','4613','EPSG','1360',0.0,'EPSG','8602','Longitude offset',106.482779,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Idn Kal E',0); INSERT INTO "other_transformation" VALUES('EPSG','1884','S-JTSK (Ferro) to S-JTSK (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4818','EPSG','4156','EPSG','1306',0.0,'EPSG','8602','Longitude offset',-17.4,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EPSG-Cze',0); INSERT INTO "other_transformation" VALUES('EPSG','1891','Greek to GGRS87 (1)','More accurate polynomial transformations between Greek / Hatt projection zones and GGRS87 / Greek Grid are available from the Military Geographic Service.','Better than 5m throughout Greece.','EPSG','9619','Geographic2D offsets','EPSG','4120','EPSG','4121','EPSG','3254',5.0,'EPSG','8601','Latitude offset',-5.86,'EPSG','9104','EPSG','8602','Longitude offset',0.28,'EPSG','9104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'HGS-Grc',0); INSERT INTO "other_transformation" VALUES('EPSG','1991','Lisbon 1890 (Lisbon) to Lisbon 1890 (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4904','EPSG','4666','EPSG','1294',0.0,'EPSG','8602','Longitude offset',-9.0754862,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CGC-Prt',0); INSERT INTO "other_transformation" VALUES('EPSG','3895','MGI (Ferro) to MGI (1)','See tfm code 3913 for longitude rotation applied in former Yugoslavia.','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4805','EPSG','4312','EPSG','1037',0.0,'EPSG','8602','Longitude offset',-17.4,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BEV-Aut',0); INSERT INTO "other_transformation" VALUES('EPSG','3913','MGI (Ferro) to MGI 1901 (1)','Uses Albrecht 1902 value. See tfm code 3895 for longitude rotation applied in Austria.','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','4805','EPSG','3906','EPSG','2370',1.0,'EPSG','8602','Longitude offset',-17.394602,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Yug',0); INSERT INTO "other_transformation" VALUES('EPSG','4441','NZVD2009 height to One Tree Point 1964 height (1)','','Accuracy 0.03m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5767','EPSG','3762',0.03,'EPSG','8603','Vertical Offset',0.06,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ ONTP',0); INSERT INTO "other_transformation" VALUES('EPSG','4442','NZVD2009 height to Auckland 1946 height (1)','','Accuracy 0.05m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5759','EPSG','3764',0.05,'EPSG','8603','Vertical Offset',0.34,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ AUCK',0); INSERT INTO "other_transformation" VALUES('EPSG','4443','NZVD2009 height to Moturiki 1953 height (1)','','Accuracy 0.06m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5764','EPSG','3768',0.06,'EPSG','8603','Vertical Offset',0.24,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ MOTU',0); INSERT INTO "other_transformation" VALUES('EPSG','4444','NZVD2009 height to Nelson 1955 height (1)','','Accuracy 0.07m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5766','EPSG','3802',0.07,'EPSG','8603','Vertical Offset',0.29,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ NELS',0); INSERT INTO "other_transformation" VALUES('EPSG','4445','NZVD2009 height to Gisborne 1926 height (1)','','Accuracy 0.02m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5762','EPSG','3771',0.02,'EPSG','8603','Vertical Offset',0.34,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ GISB',0); INSERT INTO "other_transformation" VALUES('EPSG','4446','NZVD2009 height to Napier 1962 height (1)','','Accuracy 0.05m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5765','EPSG','3772',0.05,'EPSG','8603','Vertical Offset',0.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ NAPI',0); INSERT INTO "other_transformation" VALUES('EPSG','4447','NZVD2009 height to Taranaki 1970 height (1)','','Accuracy 0.05m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5769','EPSG','3769',0.05,'EPSG','8603','Vertical Offset',0.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ TARA',0); INSERT INTO "other_transformation" VALUES('EPSG','4448','NZVD2009 height to Wellington 1953 height (1)','','Accuracy 0.04m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5770','EPSG','3773',0.04,'EPSG','8603','Vertical Offset',0.44,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ WELL',0); INSERT INTO "other_transformation" VALUES('EPSG','4449','NZVD2009 height to Lyttelton 1937 height (1)','','Accuracy 0.09m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5763','EPSG','3804',0.09,'EPSG','8603','Vertical Offset',0.47,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ LYTT',0); INSERT INTO "other_transformation" VALUES('EPSG','4450','NZVD2009 height to Dunedin 1958 height (1)','','Accuracy 0.07m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5761','EPSG','3803',0.07,'EPSG','8603','Vertical Offset',0.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ DUNE',0); INSERT INTO "other_transformation" VALUES('EPSG','4451','NZVD2009 height to Bluff 1955 height (1)','','Accuracy 0.05m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5760','EPSG','3801',0.05,'EPSG','8603','Vertical Offset',0.36,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ BLUF',0); INSERT INTO "other_transformation" VALUES('EPSG','4452','NZVD2009 height to Stewart Island 1977 height (1)','','Accuracy 0.15m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','5772','EPSG','3338',0.15,'EPSG','8603','Vertical Offset',0.39,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ STIS',0); INSERT INTO "other_transformation" VALUES('EPSG','4453','NZVD2009 height to Dunedin-Bluff 1960 height (1)','','Accuracy 0.04m (1 sigma).','EPSG','9616','Vertical Offset','EPSG','4440','EPSG','4458','EPSG','3806',0.04,'EPSG','8603','Vertical Offset',0.38,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'LINZ-NZ DUBL',0); INSERT INTO "other_transformation" VALUES('EPSG','5133','Tokyo 1892 to Tokyo (1)','Caused by redetermination of longitude of Tokyo datum fundamental point in 1918.','Change of geodetic CRS.','EPSG','9601','Longitude rotation','EPSG','5132','EPSG','4301','EPSG','1364',0.0,'EPSG','8602','Longitude offset',10.405,'EPSG','9104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Jpn',0); INSERT INTO "other_transformation" VALUES('EPSG','5134','Tokyo 1892 to Korean 1985 (1)','Caused by redetermination of longitude of Tokyo datum origin in 1918. Korean 1985 is based on the 1918 determination.','Change of geodetic CRS based on two determinations of Tokyo datum fundamental point.','EPSG','9601','Longitude rotation','EPSG','5132','EPSG','4162','EPSG','3266',0.0,'EPSG','8602','Longitude offset',10.405,'EPSG','9104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Kor',0); INSERT INTO "other_transformation" VALUES('EPSG','5238','S-JTSK/05 (Ferro) to S-JTSK/05 (1)','','Change of prime meridian.','EPSG','9601','Longitude rotation','EPSG','5229','EPSG','5228','EPSG','1079',0.0,'EPSG','8602','Longitude offset',-17.4,'EPSG','9110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Cze',0); INSERT INTO "other_transformation" VALUES('EPSG','5241','S-JTSK to S-JTSK/05 (1)','S-JTSK/05 is derived from the R05 realisation of ETRS89 and constrained to be coincident with S-JTSK.','Defined as exact.','EPSG','9619','Geographic2D offsets','EPSG','4156','EPSG','5228','EPSG','1079',0.0,'EPSG','8601','Latitude offset',0.0,'EPSG','9104','EPSG','8602','Longitude offset',0.0,'EPSG','9104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CUZK-Cze',0); INSERT INTO "other_transformation" VALUES('EPSG','5400','Baltic height to Caspian depth (1)','Baltic datum plane is 28m above Caspian datum plane.','Vertical datum change for hydrographic charting.','EPSG','9616','Vertical Offset','EPSG','5705','EPSG','5706','EPSG','1291',0.0,'EPSG','8603','Vertical Offset',-28.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caspian Sea',1); INSERT INTO "other_transformation" VALUES('EPSG','5401','Belfast to Malin Head','Belfast datum is 37mm above Malin Head datum.','Vertical datum change for large scale topographic mapping and engineering survey.','EPSG','9616','Vertical Offset','EPSG','5732','EPSG','5731','EPSG','1305',0.01,'EPSG','8603','Vertical Offset',-0.037,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSNI-Gbr NI',1); INSERT INTO "other_transformation" VALUES('EPSG','5402','Baltic height to AIOC95 depth (1)','Baltic datum plane is 26.3m above AIOC95 datum plane.','Vertical datum change for engineering surveying.','EPSG','9616','Vertical Offset','EPSG','5705','EPSG','5734','EPSG','2592',0.0,'EPSG','8603','Vertical Offset',-26.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'AIOC95-Aze',1); INSERT INTO "other_transformation" VALUES('EPSG','5403','AIOC95 depth to Caspian depth (1)','The AIOC95 vertical reference surface is 1.7m above the Caspian vertical reference surface.','Change of depth to a different vertical reference surface for hydrographic charting.','EPSG','9616','Vertical Offset','EPSG','5734','EPSG','5706','EPSG','2592',0.0,'EPSG','8603','Vertical Offset',-1.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'AIOC95-Aze',0); INSERT INTO "other_transformation" VALUES('EPSG','5404','Baltic to Black Sea (1)','Baltic datum is 0.4m above Black Sea datum.','Vertical datum change.','EPSG','9616','Vertical Offset','EPSG','5705','EPSG','5735','EPSG','1102',0.0,'EPSG','8603','Vertical Offset',-0.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Black Sea',1); INSERT INTO "other_transformation" VALUES('EPSG','5405','Hong Kong Principal height to Hong Kong Chart depth (1)','HKPD is 0.146m above chart datum.','Vertical datum change for hydrographic charting.','EPSG','9616','Vertical Offset','EPSG','5738','EPSG','5739','EPSG','1118',0.0,'EPSG','8603','Vertical Offset',0.146,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SMO-HK',1); INSERT INTO "other_transformation" VALUES('EPSG','5406','Belfast to Malin Head (1)','Belfast datum is 37mm below Malin Head datum.','Vertical datum change for large scale topographic mapping and engineering survey.','EPSG','9616','Vertical Offset','EPSG','5732','EPSG','5731','EPSG','1305',0.01,'EPSG','8603','Vertical Offset',0.037,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSNI-Gbr NI',1); INSERT INTO "other_transformation" VALUES('EPSG','5407','Poolbeg to Malin Head (1)','Poolbeg datum is 2.7m below Malin Head datum. Transformations are subject to localised anomalies.','Vertical datum change for topographic mapping and engineering survey. Accuracy 0.1m.','EPSG','9616','Vertical Offset','EPSG','5754','EPSG','5731','EPSG','1305',0.1,'EPSG','8603','Vertical Offset',2.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSI-Ire',1); INSERT INTO "other_transformation" VALUES('EPSG','5408','Poolbeg to Belfast (1)','Poolbeg datum is 2.7m below Belfast datum. Transformations are subject to localised anomalies.','Vertical datum change for large scale topographic mapping and engineering survey. Accuracy 0.1m.','EPSG','9616','Vertical Offset','EPSG','5754','EPSG','5732','EPSG','1305',0.1,'EPSG','8603','Vertical Offset',2.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSNI-Gbr NI',1); INSERT INTO "other_transformation" VALUES('EPSG','5412','KOC CD to Kuwait PWD (1)','Construction datum is 0.49m below PWD datum.','Vertical datum change.','EPSG','9616','Vertical Offset','EPSG','5790','EPSG','5788','EPSG','1136',0.1,'EPSG','8603','Vertical Offset',0.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KOC-Kwt',1); INSERT INTO "other_transformation" VALUES('EPSG','5413','KOC CD height to KOC WD depth (1)','Construction Datum datum plane is 4.74m (15.55ft) below Well Datum datum plane.','Vertical datum change.','EPSG','9616','Vertical Offset','EPSG','5790','EPSG','5789','EPSG','3267',0.1,'EPSG','8603','Vertical Offset',4.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KOC-Kwt',1); INSERT INTO "other_transformation" VALUES('EPSG','5414','KOC WD to Kuwait PWD (1)','Well datum is 4.25m above PWD datum.','Vertical datum change.','EPSG','9616','Vertical Offset','EPSG','5789','EPSG','5788','EPSG','1136',0.1,'EPSG','8603','Vertical Offset',-4.25,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KOC-Kwt',1); INSERT INTO "other_transformation" VALUES('EPSG','5419','NGF IGN69 height to EVRF2000 height (1)','Determined at 8 points. RMS residual 0.005m, maximum residual 0.010m. The IGN69 vertical reference surface is below the EVRF2000 vertical reference surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5720','EPSG','5730','EPSG','1326',0.1,'EPSG','8603','Vertical Offset',-0.486,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EuG-Fra',0); INSERT INTO "other_transformation" VALUES('EPSG','5425','NAP height to EVRF2000 height (1)','Determined at 757 points. RMS residual 0.002m, maximum residual 0.021m. The NAP vertical reference surface is below the EVRF2000 vertical reference surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5709','EPSG','5730','EPSG','1275',0.1,'EPSG','8603','Vertical Offset',-0.005,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EuG-Nld',0); INSERT INTO "other_transformation" VALUES('EPSG','5427','Cascais height to EVRF2000 height (1)','Determined at 5 points. RMS residual 0.013m, maximum residual 0.021m. The Cascais vertical reference surface is below the EVRF2000 vertical reference surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5780','EPSG','5730','EPSG','1294',0.1,'EPSG','8603','Vertical Offset',-0.315,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EuG-Prt',0); INSERT INTO "other_transformation" VALUES('EPSG','5432','N60 height to EVRF2000 height (1)','Determined at 66 points. RMS residual 0.003m, maximum residual 0.009m. The N60 vertical reference surface is above the EVRF2000 vertical reference surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5717','EPSG','5730','EPSG','3333',0.1,'EPSG','8603','Vertical Offset',0.213,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EuG-Fin',0); INSERT INTO "other_transformation" VALUES('EPSG','5438','Baltic 1977 height to Caspian height (1)','Baltic 1977 vertical reference surface is 28m above Caspian vertical reference surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5705','EPSG','5611','EPSG','1291',0.0,'EPSG','8603','Vertical Offset',28.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caspian Sea',0); INSERT INTO "other_transformation" VALUES('EPSG','5440','Baltic 1977 depth to Caspian depth (1)','The Baltic 1977 vertical reference surface is 28m above the Caspian vertical reference surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5612','EPSG','5706','EPSG','1291',0.0,'EPSG','8603','Vertical Offset',-28.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caspian Sea',0); INSERT INTO "other_transformation" VALUES('EPSG','5441','Baltic depth to Caspian height (1)','The Baltic vertical reference surface is 28m above the Caspian vetyical reference surface.','Change of depth to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5612','EPSG','5611','EPSG','1291',0.0,'EPSG','8603','Vertical Offset',28.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caspian Sea',1); INSERT INTO "other_transformation" VALUES('EPSG','5442','Baltic height to Baltic depth (1)','','Axis change.','EPSG','9616','Vertical Offset','EPSG','5705','EPSG','5612','EPSG','1284',0.0,'EPSG','8603','Vertical Offset',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-FSU',1); INSERT INTO "other_transformation" VALUES('EPSG','5443','Baltic 1977 height to AIOC95 height (1)','Baltic 1977 vertical reference surface is 26.3m above AIOC95 surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5705','EPSG','5797','EPSG','2592',0.0,'EPSG','8603','Vertical Offset',26.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'AIOC95-Aze',0); INSERT INTO "other_transformation" VALUES('EPSG','5445','Baltic 1977 depth to AIOC95 depth (1)','The Baltic 1977 vertical reference surface is 26.3m above the AIOC95 surface.','Change of depth to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5612','EPSG','5734','EPSG','2592',0.0,'EPSG','8603','Vertical Offset',-26.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'AIOC95-Aze',0); INSERT INTO "other_transformation" VALUES('EPSG','5446','Baltic depth to AIOC95 height (1)','Baltic datum plane is 26.3m above AIOC95 datum plane.','Vertical datum change.','EPSG','9616','Vertical Offset','EPSG','5612','EPSG','5797','EPSG','2592',0.0,'EPSG','8603','Vertical Offset',26.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'AIOC95-Aze',1); INSERT INTO "other_transformation" VALUES('EPSG','5447','Baltic 1977 height to Black Sea height (1)','Baltic 1977 vertical reference surface is 0.4m above Black Sea surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5705','EPSG','5735','EPSG','3251',0.0,'EPSG','8603','Vertical Offset',0.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Black Sea',0); INSERT INTO "other_transformation" VALUES('EPSG','5448','Poolbeg height to Malin Head height (1)','Poolbeg datum plane is 2.7m below Malin Head datum plane. Transformations are subject to localised anomalies.','Vertical datum change for topographic mapping and engineering survey. Accuracy 0.1m.','EPSG','9616','Vertical Offset','EPSG','5754','EPSG','5731','EPSG','1305',0.1,'EPSG','8603','Vertical Offset',-2.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSI-Ire',1); INSERT INTO "other_transformation" VALUES('EPSG','5449','Poolbeg height to Belfast height (1)','Poolbeg datum plane is 2.7m below Belfast datum plane. Transformations are subject to localised anomalies.','Vertical datum change for large scale topographic mapping and engineering survey. Accuracy 0.1m.','EPSG','9616','Vertical Offset','EPSG','5754','EPSG','5732','EPSG','2530',0.1,'EPSG','8603','Vertical Offset',-2.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSNI-Gbr NI',1); INSERT INTO "other_transformation" VALUES('EPSG','5450','KOC CD height to Kuwait PWD height (1)','The KOC CD vertical reference surface is 0.49m below the PWD surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5790','EPSG','5788','EPSG','3267',0.1,'EPSG','8603','Vertical Offset',-0.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KOC-Kwt',0); INSERT INTO "other_transformation" VALUES('EPSG','5452','Belfast height to Malin Head height (1)','Belfast vertical reference surface is 37mm below Malin Head surface.','Change of height to a different vertical reference surface for large scale topographic mapping and engineering survey.','EPSG','9616','Vertical Offset','EPSG','5732','EPSG','5731','EPSG','2530',0.01,'EPSG','8603','Vertical Offset',-0.037,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSNI-Gbr NI',0); INSERT INTO "other_transformation" VALUES('EPSG','5453','KOC CD height to KOC WD depth (ft) (1)','Construction Datum datum plane is 4.74m (15.55ft) below Well Datum datum plane.','Vertical datum change including change of axis unit.','EPSG','9616','Vertical Offset','EPSG','5790','EPSG','5614','EPSG','3267',0.1,'EPSG','8603','Vertical Offset',15.55,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KOC-Kwt',1); INSERT INTO "other_transformation" VALUES('EPSG','5454','HKPD height to HKCD depth (1)','HKPD datum plane is 0.146m above HKCD datum plane.','Vertical datum change for hydrographic charting.','EPSG','9616','Vertical Offset','EPSG','5738','EPSG','5739','EPSG','1118',0.0,'EPSG','8603','Vertical Offset',-0.146,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SMO-HK',1); INSERT INTO "other_transformation" VALUES('EPSG','5455','KOC WD depth to Kuwait PWD height (1)','Well Datum datum plane is 4.25m above PWD datum plane.','Vertical datum change.','EPSG','9616','Vertical Offset','EPSG','5789','EPSG','5788','EPSG','3267',0.1,'EPSG','8603','Vertical Offset',4.25,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KOC-Kwt',1); INSERT INTO "other_transformation" VALUES('EPSG','6699','JGD2000 (vertical) height to JGD2011 (vertical) height (1)','Excludes areas of eastern Honshu affected by 2008 Iwate-Miyagi and 2011 Tohoku earthquakes (Aomori, Iwate, Miyagi, Akita, Yamagata, Fukushima and Ibaraki prefectures).','Approximation at the +/- 0.01m level.','EPSG','9616','Vertical Offset','EPSG','6694','EPSG','6695','EPSG','4165',0.01,'EPSG','8603','Vertical Offset',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Jpn ex E Honshu',0); INSERT INTO "other_transformation" VALUES('EPSG','7653','EGM96 height to Kumul 34 height (1)','','Derivation of Kumul 34 heights..','EPSG','9616','Vertical Offset','EPSG','5773','EPSG','7651','EPSG','4013',0.0,'EPSG','8603','Vertical Offset',-0.87,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'QC-Png Kumul34',0); INSERT INTO "other_transformation" VALUES('EPSG','7654','EGM2008 height to Kiunga height (1)','','Derivation of heights referenced to Kiunga vertical CRS (CRS code 7652).','EPSG','9616','Vertical Offset','EPSG','3855','EPSG','7652','EPSG','4383',0.0,'EPSG','8603','Vertical Offset',-3.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'QC-Png Kiunga',0); INSERT INTO "other_transformation" VALUES('EPSG','7873','EGM96 height to POM96 height (1)','','Derivation of POM96 heights.','EPSG','9616','Vertical Offset','EPSG','5773','EPSG','7832','EPSG','4425',0.0,'EPSG','8603','Vertical Offset',-1.58,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'QC-Png Gulf-Cen',0); INSERT INTO "other_transformation" VALUES('EPSG','7874','EGM2008 height to POM08 height (1)','','Derivation of POM08 heights.','EPSG','9616','Vertical Offset','EPSG','3855','EPSG','7841','EPSG','4425',0.0,'EPSG','8603','Vertical Offset',-0.93,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'QC-Png Gulf-Cen',0); INSERT INTO "other_transformation" VALUES('EPSG','7963','Poolbeg height (ft(Br36)) to Poolbeg height (m)','Change of unit from British foot (1936) [ft(BR36)] to metre.','Change of unit to facilitate transformation of heights or depths through concatenated operations.','EPSG','1069','Change of Vertical Unit','EPSG','5754','EPSG','7962','EPSG','1305',NULL,'EPSG','1051','Unit conversion scalar',0.3048007491,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','7964','Poolbeg height (m) to Malin Head height (1)','Poolbeg vertical reference surface is 2.7m below Malin Head surface. Transformations are subject to localised anomalies.','Change of height to a different vertical reference surface for topographic mapping and engineering survey. Accuracy 0.1m.','EPSG','9616','Vertical Offset','EPSG','7962','EPSG','5731','EPSG','1305',0.1,'EPSG','8603','Vertical Offset',-2.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSI-Ire',0); INSERT INTO "other_transformation" VALUES('EPSG','7966','Poolbeg height (m) to Belfast height (1)','Poolbeg vertical reference surface is 2.7m below Belfast surface. Transformations are subject to localised anomalies.','Change of height to a different vertical reference surface for topographic mapping and engineering survey. Accuracy 0.1m.','EPSG','9616','Vertical Offset','EPSG','7962','EPSG','5732','EPSG','1305',0.1,'EPSG','8603','Vertical Offset',-2.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OSI-Ire',0); INSERT INTO "other_transformation" VALUES('EPSG','7972','NGVD29 height (ftUS) to NGVD29 height (m)','Change of unit from US survey foot (ftUS) to metre. 1 ftUS = (12/39.37)m ≈ 0.304800609601219m.','Change of unit to facilitate transformation of heights or depths through concatenated operations.','EPSG','1069','Change of Vertical Unit','EPSG','5702','EPSG','7968','EPSG','1323',NULL,'EPSG','1051','Unit conversion scalar',0.304800609601219,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','7977','HKPD depth to HKCD depth (1)','The HKPD vertical reference surface is 0.146m above the HKCD surface.','Change of depth to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','7976','EPSG','5739','EPSG','3335',0.0,'EPSG','8603','Vertical Offset',-0.146,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'SMO-HK',0); INSERT INTO "other_transformation" VALUES('EPSG','7978','NGVD29 height (ftUS) to NGVD29 depth (ftUS)','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','5702','EPSG','6359','EPSG','1323',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','7980','KOC CD height to KOC WD height (1)','The KOC CD vertical reference surface is 4.74m (15.55ft) below KOC WD surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5790','EPSG','7979','EPSG','3267',0.1,'EPSG','8603','Vertical Offset',-4.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KOC-Kwt',0); INSERT INTO "other_transformation" VALUES('EPSG','7981','Kuwait PWD height to KOC WD height (1)','The KOC WD vertical reference surface is 4.25m above the Kuwait PWD surface.','Change of height to a different vertical reference surface.','EPSG','9616','Vertical Offset','EPSG','5788','EPSG','7979','EPSG','3267',0.1,'EPSG','8603','Vertical Offset',-4.25,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'KOC-Kwt',0); INSERT INTO "other_transformation" VALUES('EPSG','7982','HKPD height to HKPD depth','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','5738','EPSG','7976','EPSG','3334',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','7984','KOC WD height to KOC WD depth','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','7979','EPSG','5789','EPSG','3267',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','7985','KOC WD depth to KOC WD depth (ft)','Change of unit from metre to International foot (ft). 1ft = 0.3048m.','Change of unit to facilitate transformation of heights or depths through concatenated operations.','EPSG','1069','Change of Vertical Unit','EPSG','5789','EPSG','5614','EPSG','3267',NULL,'EPSG','1051','Unit conversion scalar',3.28083989501312,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','7988','NAVD88 height to NAVD88 height (ftUS)','Change of unit from metre to US survey foot. 1 ftUS = (12/39.37)m ≈ 0.304800609601219m.','Change of unit to facilitate transformation of heights or depths through concatenated operations.','EPSG','1069','Change of Vertical Unit','EPSG','5703','EPSG','6360','EPSG','3664',NULL,'EPSG','1051','Unit conversion scalar',3.28083333333333,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','7989','NAVD88 height to NAVD88 depth','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','5703','EPSG','6357','EPSG','4161',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','7990','NAVD88 height (ftUS) to NAVD88 depth (ftUS)','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','6360','EPSG','6358','EPSG','3664',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8038','Instantaneous Water Level height to Instantaneous Water Level depth','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','5829','EPSG','5831','EPSG','1262',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8039','MSL height to MSL depth','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','5714','EPSG','5715','EPSG','1262',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8054','MSL height to MSL height (ft)','Change of unit from metre to International foot (ft). 1ft = 0.3048m.','Change of unit to facilitate transformation of heights or depths through concatenated operations.','EPSG','1069','Change of Vertical Unit','EPSG','5714','EPSG','8050','EPSG','1262',NULL,'EPSG','1051','Unit conversion scalar',3.28083989501312,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8055','MSL height to MSL height (ftUS)','Change of unit from metre to US survey foot (ftUS). 1 ftUS = (12/39.37)m ≈ 0.304800609601219m.','Change of unit to facilitate transformation of heights or depths through concatenated operations.','EPSG','1069','Change of Vertical Unit','EPSG','5714','EPSG','8052','EPSG','1245',NULL,'EPSG','1051','Unit conversion scalar',3.28083333333333,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8056','MSL depth to MSL depth (ft)','Change of unit from metre to International foot (ft). 1ft = 0.3048m.','Change of unit to facilitate transformation of heights or depths through concatenated operations.','EPSG','1069','Change of Vertical Unit','EPSG','5715','EPSG','8051','EPSG','1262',NULL,'EPSG','1051','Unit conversion scalar',3.28083989501312,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8057','MSL depth to MSL depth (ftUS)','Change of unit from metre to US survey foot (ftUS). 1 ftUS = (12/39.37)m ≈ 0.304800609601219m.','Change of unit to facilitate transformation of heights or depths through concatenated operations.','EPSG','1069','Change of Vertical Unit','EPSG','5715','EPSG','8053','EPSG','1245',NULL,'EPSG','1051','Unit conversion scalar',3.28083333333333,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8060','Baltic 1977 height to Baltic 1977 depth','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','5705','EPSG','5612','EPSG','2423',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8229','NAVD88 height to NAVD88 height (ft)','Change of unit from metre to International foot (ft). 1ft = 0.3048m.','Change of unit to facilitate transformation of heights or depths through concatenated operations for States of the US which have adopted International feet for their State Plane coordinate systems.','EPSG','1069','Change of Vertical Unit','EPSG','5703','EPSG','8228','EPSG','4464',NULL,'EPSG','1051','Unit conversion scalar',3.28083989501312,'EPSG','9201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8354','Black Sea height to Black Sea depth','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','5735','EPSG','5336','EPSG','3251',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8355','AIOC95 height to AIOC95 depth','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','5797','EPSG','5734','EPSG','2592',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8356','Caspian height to Caspian depth','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','5611','EPSG','5706','EPSG','1291',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','8359','Baltic 1957 height to Baltic 1957 depth','Change of axis positive direction from up to down.','Change of axis positive direction to facilitate transformation of heights or depths through concatenated operations.','EPSG','1068','Height Depth Reversal','EPSG','8357','EPSG','8358','EPSG','1306',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "other_transformation" VALUES('EPSG','10087','Jamaica 1875 / Jamaica (Old Grid) to JAD69 / Jamaica National Grid (1)','Derived by least squares fit at primary triangulation stations. Accuracy will be less outside of this network due to extrapolation.','Topographic mapping.','EPSG','9624','Affine parametric transformation','EPSG','24100','EPSG','24200','EPSG','3342',1.5,'EPSG','8623','A0',82357.457,'EPSG','9001','EPSG','8624','A1',0.304794369,'EPSG','9203','EPSG','8625','A2',1.5417425e-05,'EPSG','9203','EPSG','8639','B0',28091.324,'EPSG','9001','EPSG','8640','B1',-1.5417425e-05,'EPSG','9203','EPSG','8641','B2',0.304794369,'EPSG','9203',NULL,NULL,NULL,NULL,NULL,NULL,'SD-Jam',0); INSERT INTO "other_transformation" VALUES('EPSG','10088','JAD69 / Jamaica National Grid to Jamaica 1875 / Jamaica (Old Grid) (1)','Derived by least squares fit at primary triangulation stations. Accuracy will be less outside of this network due to extrapolation.','Topographic mapping.','EPSG','9624','Affine parametric transformation','EPSG','24200','EPSG','24100','EPSG','3342',1.5,'EPSG','8623','A0',-270201.96,'EPSG','9005','EPSG','8624','A1',0.00016595792,'EPSG','9203','EPSG','8625','A2',3.2809005,'EPSG','9203','EPSG','8639','B0',-92178.51,'EPSG','9005','EPSG','8640','B1',3.2809005,'EPSG','9203','EPSG','8641','B2',-0.00016595792,'EPSG','9203',NULL,NULL,NULL,NULL,NULL,NULL,'SD-Jam',1); INSERT INTO "other_transformation" VALUES('EPSG','10095','Mauritania 1999 / UTM zone 28N to WGS 84 / UTM zone 28N (1)','Parameter values consistent with the OGP Affine parametric transformation method derived by OGP from the published Helmert 2D parameter values.','Minerals management.','EPSG','9624','Affine parametric transformation','EPSG','3103','EPSG','32628','EPSG','2971',40.0,'EPSG','8623','A0',NULL,'EPSG',NULL,'EPSG','8624','A1',NULL,'EPSG',NULL,'EPSG','8625','A2',NULL,'EPSG',NULL,'EPSG','8639','B0',NULL,'EPSG',NULL,'EPSG','8640','B1',NULL,'EPSG',NULL,'EPSG','8641','B2',NULL,'EPSG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MMI-Mau W',1); INSERT INTO "other_transformation" VALUES('EPSG','10096','Mauritania 1999 / UTM zone 29N to WGS 84 / UTM zone 29N (1)','Parameter values consistent with the OGP Affine parametric transformation method derived by OGP from the published Helmert 2D parameter values.','Minerals management.','EPSG','9624','Affine parametric transformation','EPSG','3104','EPSG','32629','EPSG','2970',40.0,'EPSG','8623','A0',NULL,'EPSG',NULL,'EPSG','8624','A1',NULL,'EPSG',NULL,'EPSG','8625','A2',NULL,'EPSG',NULL,'EPSG','8639','B0',NULL,'EPSG',NULL,'EPSG','8640','B1',NULL,'EPSG',NULL,'EPSG','8641','B2',NULL,'EPSG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MMI-Mau C',1); INSERT INTO "other_transformation" VALUES('EPSG','10097','Mauritania 1999 / UTM zone 30N to WGS 84 / UTM zone 30N (1)','Parameter values consistent with the OGP Affine parametric transformation method derived by OGP from the published Helmert 2D parameter values.','Minerals management.','EPSG','9624','Affine parametric transformation','EPSG','3105','EPSG','32630','EPSG','2969',40.0,'EPSG','8623','A0',NULL,'EPSG',NULL,'EPSG','8624','A1',NULL,'EPSG',NULL,'EPSG','8625','A2',NULL,'EPSG',NULL,'EPSG','8639','B0',NULL,'EPSG',NULL,'EPSG','8640','B1',NULL,'EPSG',NULL,'EPSG','8641','B2',NULL,'EPSG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MMI-Mau E',1); INSERT INTO "other_transformation" VALUES('EPSG','15596','Tokyo + JSLD height to WGS 84 (7)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2426',1.0,'EPSG','8601','Latitude offset',7.94,'EPSG','9104','EPSG','8602','Longitude offset',-13.97,'EPSG','9104','EPSG','8604','Geoid undulation',26.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 452142',0); INSERT INTO "other_transformation" VALUES('EPSG','15597','Tokyo + JSLD height to WGS 84 (8)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2427',1.0,'EPSG','8601','Latitude offset',8.1,'EPSG','9104','EPSG','8602','Longitude offset',-13.81,'EPSG','9104','EPSG','8604','Geoid undulation',27.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 444141',0); INSERT INTO "other_transformation" VALUES('EPSG','15598','Tokyo + JSLD height to WGS 84 (9)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2428',1.0,'EPSG','8601','Latitude offset',8.15,'EPSG','9104','EPSG','8602','Longitude offset',-13.95,'EPSG','9104','EPSG','8604','Geoid undulation',28.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 444142',0); INSERT INTO "other_transformation" VALUES('EPSG','15599','Tokyo + JSLD height to WGS 84 (10)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2429',1.0,'EPSG','8601','Latitude offset',8.37,'EPSG','9104','EPSG','8602','Longitude offset',-13.65,'EPSG','9104','EPSG','8604','Geoid undulation',29.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 440141',0); INSERT INTO "other_transformation" VALUES('EPSG','15600','Tokyo + JSLD height to WGS 84 (11)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2430',1.0,'EPSG','8601','Latitude offset',8.44,'EPSG','9104','EPSG','8602','Longitude offset',-13.87,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 440142',0); INSERT INTO "other_transformation" VALUES('EPSG','15601','Tokyo + JSLD height to WGS 84 (12)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2431',1.0,'EPSG','8601','Latitude offset',8.61,'EPSG','9104','EPSG','8602','Longitude offset',-14.08,'EPSG','9104','EPSG','8604','Geoid undulation',30.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 440143',0); INSERT INTO "other_transformation" VALUES('EPSG','15602','Tokyo + JSLD height to WGS 84 (13)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2432',1.0,'EPSG','8601','Latitude offset',8.73,'EPSG','9104','EPSG','8602','Longitude offset',-14.3,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 440144',0); INSERT INTO "other_transformation" VALUES('EPSG','15603','Tokyo + JSLD height to WGS 84 (14)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2433',1.0,'EPSG','8601','Latitude offset',8.63,'EPSG','9104','EPSG','8602','Longitude offset',-13.49,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 432141',0); INSERT INTO "other_transformation" VALUES('EPSG','15604','Tokyo + JSLD height to WGS 84 (15)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2434',1.0,'EPSG','8601','Latitude offset',8.71,'EPSG','9104','EPSG','8602','Longitude offset',-13.73,'EPSG','9104','EPSG','8604','Geoid undulation',31.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 432142',0); INSERT INTO "other_transformation" VALUES('EPSG','15605','Tokyo + JSLD height to WGS 84 (16)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2435',1.0,'EPSG','8601','Latitude offset',8.84,'EPSG','9104','EPSG','8602','Longitude offset',-14.03,'EPSG','9104','EPSG','8604','Geoid undulation',31.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 432143',0); INSERT INTO "other_transformation" VALUES('EPSG','15606','Tokyo + JSLD height to WGS 84 (17)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2436',1.0,'EPSG','8601','Latitude offset',8.98,'EPSG','9104','EPSG','8602','Longitude offset',-14.33,'EPSG','9104','EPSG','8604','Geoid undulation',32.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 432144',0); INSERT INTO "other_transformation" VALUES('EPSG','15607','Tokyo + JSLD height to WGS 84 (18)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2437',1.0,'EPSG','8601','Latitude offset',9.1,'EPSG','9104','EPSG','8602','Longitude offset',-14.56,'EPSG','9104','EPSG','8604','Geoid undulation',32.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 432145',0); INSERT INTO "other_transformation" VALUES('EPSG','15608','Tokyo + JSLD height to WGS 84 (19)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2438',1.0,'EPSG','8601','Latitude offset',8.79,'EPSG','9104','EPSG','8602','Longitude offset',-13.0,'EPSG','9104','EPSG','8604','Geoid undulation',33.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424140',0); INSERT INTO "other_transformation" VALUES('EPSG','15609','Tokyo + JSLD height to WGS 84 (20)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2439',1.0,'EPSG','8601','Latitude offset',8.84,'EPSG','9104','EPSG','8602','Longitude offset',-13.31,'EPSG','9104','EPSG','8604','Geoid undulation',31.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424141',0); INSERT INTO "other_transformation" VALUES('EPSG','15610','Tokyo + JSLD height to WGS 84 (21)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2440',1.0,'EPSG','8601','Latitude offset',8.98,'EPSG','9104','EPSG','8602','Longitude offset',-13.59,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424142',0); INSERT INTO "other_transformation" VALUES('EPSG','15611','Tokyo + JSLD height to WGS 84 (22)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2441',1.0,'EPSG','8601','Latitude offset',9.1,'EPSG','9104','EPSG','8602','Longitude offset',-13.91,'EPSG','9104','EPSG','8604','Geoid undulation',29.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424143',0); INSERT INTO "other_transformation" VALUES('EPSG','15612','Tokyo + JSLD height to WGS 84 (23)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2442',1.0,'EPSG','8601','Latitude offset',9.17,'EPSG','9104','EPSG','8602','Longitude offset',-14.27,'EPSG','9104','EPSG','8604','Geoid undulation',31.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424144',0); INSERT INTO "other_transformation" VALUES('EPSG','15613','Tokyo + JSLD height to WGS 84 (24)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2443',1.0,'EPSG','8601','Latitude offset',9.23,'EPSG','9104','EPSG','8602','Longitude offset',-14.52,'EPSG','9104','EPSG','8604','Geoid undulation',31.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 424145',0); INSERT INTO "other_transformation" VALUES('EPSG','15614','Tokyo + JSLD height to WGS 84 (25)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2444',1.0,'EPSG','8601','Latitude offset',8.9,'EPSG','9104','EPSG','8602','Longitude offset',-12.68,'EPSG','9104','EPSG','8604','Geoid undulation',34.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 420139',0); INSERT INTO "other_transformation" VALUES('EPSG','15615','Tokyo + JSLD height to WGS 84 (26)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2445',1.0,'EPSG','8601','Latitude offset',8.99,'EPSG','9104','EPSG','8602','Longitude offset',-12.8,'EPSG','9104','EPSG','8604','Geoid undulation',34.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 420140',0); INSERT INTO "other_transformation" VALUES('EPSG','15616','Tokyo + JSLD height to WGS 84 (27)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2446',1.0,'EPSG','8601','Latitude offset',9.0,'EPSG','9104','EPSG','8602','Longitude offset',-13.07,'EPSG','9104','EPSG','8604','Geoid undulation',31.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 420141',0); INSERT INTO "other_transformation" VALUES('EPSG','15617','Tokyo + JSLD height to WGS 84 (28)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2447',1.0,'EPSG','8601','Latitude offset',9.21,'EPSG','9104','EPSG','8602','Longitude offset',-13.51,'EPSG','9104','EPSG','8604','Geoid undulation',27.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 420142',0); INSERT INTO "other_transformation" VALUES('EPSG','15618','Tokyo + JSLD height to WGS 84 (29)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2448',1.0,'EPSG','8601','Latitude offset',9.33,'EPSG','9104','EPSG','8602','Longitude offset',-13.66,'EPSG','9104','EPSG','8604','Geoid undulation',23.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 420143',0); INSERT INTO "other_transformation" VALUES('EPSG','15619','Tokyo + JSLD height to WGS 84 (30)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2449',1.0,'EPSG','8601','Latitude offset',9.25,'EPSG','9104','EPSG','8602','Longitude offset',-12.72,'EPSG','9104','EPSG','8604','Geoid undulation',34.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 412140',0); INSERT INTO "other_transformation" VALUES('EPSG','15620','Tokyo + JSLD height to WGS 84 (31)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2450',1.0,'EPSG','8601','Latitude offset',9.39,'EPSG','9104','EPSG','8602','Longitude offset',-12.91,'EPSG','9104','EPSG','8604','Geoid undulation',31.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 412141',0); INSERT INTO "other_transformation" VALUES('EPSG','15621','Tokyo + JSLD height to WGS 84 (32)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2451',1.0,'EPSG','8601','Latitude offset',9.55,'EPSG','9104','EPSG','8602','Longitude offset',-12.63,'EPSG','9104','EPSG','8604','Geoid undulation',35.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 404140',0); INSERT INTO "other_transformation" VALUES('EPSG','15622','Tokyo + JSLD height to WGS 84 (33)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2452',1.0,'EPSG','8601','Latitude offset',9.62,'EPSG','9104','EPSG','8602','Longitude offset',-12.82,'EPSG','9104','EPSG','8604','Geoid undulation',34.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 404141',0); INSERT INTO "other_transformation" VALUES('EPSG','15623','Tokyo + JSLD height to WGS 84 (34)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2453',1.0,'EPSG','8601','Latitude offset',9.81,'EPSG','9104','EPSG','8602','Longitude offset',-12.29,'EPSG','9104','EPSG','8604','Geoid undulation',36.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 400139',0); INSERT INTO "other_transformation" VALUES('EPSG','15624','Tokyo + JSLD height to WGS 84 (35)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2454',1.0,'EPSG','8601','Latitude offset',9.81,'EPSG','9104','EPSG','8602','Longitude offset',-12.45,'EPSG','9104','EPSG','8604','Geoid undulation',37.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 400140',0); INSERT INTO "other_transformation" VALUES('EPSG','15625','Tokyo + JSLD height to WGS 84 (36)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2455',1.0,'EPSG','8601','Latitude offset',9.92,'EPSG','9104','EPSG','8602','Longitude offset',-12.79,'EPSG','9104','EPSG','8604','Geoid undulation',38.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 400141',0); INSERT INTO "other_transformation" VALUES('EPSG','15626','Tokyo + JSLD height to WGS 84 (37)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2456',1.0,'EPSG','8601','Latitude offset',9.91,'EPSG','9104','EPSG','8602','Longitude offset',-12.21,'EPSG','9104','EPSG','8604','Geoid undulation',36.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 392139',0); INSERT INTO "other_transformation" VALUES('EPSG','15627','Tokyo + JSLD height to WGS 84 (38)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2457',1.0,'EPSG','8601','Latitude offset',10.08,'EPSG','9104','EPSG','8602','Longitude offset',-12.35,'EPSG','9104','EPSG','8604','Geoid undulation',39.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 392140',0); INSERT INTO "other_transformation" VALUES('EPSG','15628','Tokyo + JSLD height to WGS 84 (39)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2458',1.0,'EPSG','8601','Latitude offset',10.19,'EPSG','9104','EPSG','8602','Longitude offset',-12.74,'EPSG','9104','EPSG','8604','Geoid undulation',40.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 392141',0); INSERT INTO "other_transformation" VALUES('EPSG','15629','Tokyo + JSLD height to WGS 84 (40)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2459',1.0,'EPSG','8601','Latitude offset',10.29,'EPSG','9104','EPSG','8602','Longitude offset',-12.13,'EPSG','9104','EPSG','8604','Geoid undulation',38.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 384139',0); INSERT INTO "other_transformation" VALUES('EPSG','15630','Tokyo + JSLD height to WGS 84 (41)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2460',1.0,'EPSG','8601','Latitude offset',10.33,'EPSG','9104','EPSG','8602','Longitude offset',-12.27,'EPSG','9104','EPSG','8604','Geoid undulation',40.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 384140',0); INSERT INTO "other_transformation" VALUES('EPSG','15631','Tokyo + JSLD height to WGS 84 (42)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2461',1.0,'EPSG','8601','Latitude offset',10.45,'EPSG','9104','EPSG','8602','Longitude offset',-12.61,'EPSG','9104','EPSG','8604','Geoid undulation',41.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 384141',0); INSERT INTO "other_transformation" VALUES('EPSG','15632','Tokyo + JSLD height to WGS 84 (43)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2462',1.0,'EPSG','8601','Latitude offset',10.54,'EPSG','9104','EPSG','8602','Longitude offset',-11.96,'EPSG','9104','EPSG','8604','Geoid undulation',39.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 380139',0); INSERT INTO "other_transformation" VALUES('EPSG','15633','Tokyo + JSLD height to WGS 84 (44)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2463',1.0,'EPSG','8601','Latitude offset',10.65,'EPSG','9104','EPSG','8602','Longitude offset',-12.27,'EPSG','9104','EPSG','8604','Geoid undulation',41.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 380140',0); INSERT INTO "other_transformation" VALUES('EPSG','15634','Tokyo + JSLD height to WGS 84 (45)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2464',1.0,'EPSG','8601','Latitude offset',10.67,'EPSG','9104','EPSG','8602','Longitude offset',-12.5,'EPSG','9104','EPSG','8604','Geoid undulation',41.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 380141',0); INSERT INTO "other_transformation" VALUES('EPSG','15635','Tokyo + JSLD height to WGS 84 (46)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2465',1.0,'EPSG','8601','Latitude offset',10.67,'EPSG','9104','EPSG','8602','Longitude offset',-10.86,'EPSG','9104','EPSG','8604','Geoid undulation',38.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372136',0); INSERT INTO "other_transformation" VALUES('EPSG','15636','Tokyo + JSLD height to WGS 84 (47)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2466',1.0,'EPSG','8601','Latitude offset',10.68,'EPSG','9104','EPSG','8602','Longitude offset',-10.97,'EPSG','9104','EPSG','8604','Geoid undulation',36.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372137',0); INSERT INTO "other_transformation" VALUES('EPSG','15637','Tokyo + JSLD height to WGS 84 (48)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2467',1.0,'EPSG','8601','Latitude offset',10.8,'EPSG','9104','EPSG','8602','Longitude offset',-11.53,'EPSG','9104','EPSG','8604','Geoid undulation',39.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372138',0); INSERT INTO "other_transformation" VALUES('EPSG','15638','Tokyo + JSLD height to WGS 84 (49)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2468',1.0,'EPSG','8601','Latitude offset',10.8,'EPSG','9104','EPSG','8602','Longitude offset',-11.73,'EPSG','9104','EPSG','8604','Geoid undulation',40.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372139',0); INSERT INTO "other_transformation" VALUES('EPSG','15639','Tokyo + JSLD height to WGS 84 (50)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2469',1.0,'EPSG','8601','Latitude offset',10.92,'EPSG','9104','EPSG','8602','Longitude offset',-12.16,'EPSG','9104','EPSG','8604','Geoid undulation',42.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372140',0); INSERT INTO "other_transformation" VALUES('EPSG','15640','Tokyo + JSLD height to WGS 84 (51)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2470',1.0,'EPSG','8601','Latitude offset',11.0,'EPSG','9104','EPSG','8602','Longitude offset',-12.25,'EPSG','9104','EPSG','8604','Geoid undulation',41.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 372141',0); INSERT INTO "other_transformation" VALUES('EPSG','15641','Tokyo + JSLD height to WGS 84 (52)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2471',1.0,'EPSG','8601','Latitude offset',10.83,'EPSG','9104','EPSG','8602','Longitude offset',-10.77,'EPSG','9104','EPSG','8604','Geoid undulation',36.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 364136',0); INSERT INTO "other_transformation" VALUES('EPSG','15642','Tokyo + JSLD height to WGS 84 (53)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2472',1.0,'EPSG','8601','Latitude offset',10.95,'EPSG','9104','EPSG','8602','Longitude offset',-11.0,'EPSG','9104','EPSG','8604','Geoid undulation',38.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 364137',0); INSERT INTO "other_transformation" VALUES('EPSG','15643','Tokyo + JSLD height to WGS 84 (54)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2473',1.0,'EPSG','8601','Latitude offset',10.97,'EPSG','9104','EPSG','8602','Longitude offset',-11.34,'EPSG','9104','EPSG','8604','Geoid undulation',40.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 364138',0); INSERT INTO "other_transformation" VALUES('EPSG','15644','Tokyo + JSLD height to WGS 84 (55)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2474',1.0,'EPSG','8601','Latitude offset',11.04,'EPSG','9104','EPSG','8602','Longitude offset',-11.69,'EPSG','9104','EPSG','8604','Geoid undulation',43.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 364139',0); INSERT INTO "other_transformation" VALUES('EPSG','15645','Tokyo + JSLD height to WGS 84 (56)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2475',1.0,'EPSG','8601','Latitude offset',11.17,'EPSG','9104','EPSG','8602','Longitude offset',-12.05,'EPSG','9104','EPSG','8604','Geoid undulation',42.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 364140',0); INSERT INTO "other_transformation" VALUES('EPSG','15646','Tokyo + JSLD height to WGS 84 (57)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2476',1.0,'EPSG','8601','Latitude offset',11.11,'EPSG','9104','EPSG','8602','Longitude offset',-10.59,'EPSG','9104','EPSG','8604','Geoid undulation',37.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 360136',0); INSERT INTO "other_transformation" VALUES('EPSG','15647','Tokyo + JSLD height to WGS 84 (58)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2477',1.0,'EPSG','8601','Latitude offset',11.16,'EPSG','9104','EPSG','8602','Longitude offset',-10.97,'EPSG','9104','EPSG','8604','Geoid undulation',40.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 360137',0); INSERT INTO "other_transformation" VALUES('EPSG','15648','Tokyo + JSLD height to WGS 84 (59)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2478',1.0,'EPSG','8601','Latitude offset',11.29,'EPSG','9104','EPSG','8602','Longitude offset',-11.23,'EPSG','9104','EPSG','8604','Geoid undulation',42.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 360138',0); INSERT INTO "other_transformation" VALUES('EPSG','15649','Tokyo + JSLD height to WGS 84 (60)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2479',1.0,'EPSG','8601','Latitude offset',11.36,'EPSG','9104','EPSG','8602','Longitude offset',-11.59,'EPSG','9104','EPSG','8604','Geoid undulation',42.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 360139',0); INSERT INTO "other_transformation" VALUES('EPSG','15650','Tokyo + JSLD height to WGS 84 (61)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2480',1.0,'EPSG','8601','Latitude offset',11.44,'EPSG','9104','EPSG','8602','Longitude offset',-11.88,'EPSG','9104','EPSG','8604','Geoid undulation',40.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 360140',0); INSERT INTO "other_transformation" VALUES('EPSG','15651','Tokyo + JSLD height to WGS 84 (62)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2481',1.0,'EPSG','8601','Latitude offset',11.27,'EPSG','9104','EPSG','8602','Longitude offset',-9.31,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352132',0); INSERT INTO "other_transformation" VALUES('EPSG','15652','Tokyo + JSLD height to WGS 84 (63)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2482',1.0,'EPSG','8601','Latitude offset',11.33,'EPSG','9104','EPSG','8602','Longitude offset',-9.52,'EPSG','9104','EPSG','8604','Geoid undulation',33.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352133',0); INSERT INTO "other_transformation" VALUES('EPSG','15653','Tokyo + JSLD height to WGS 84 (64)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2483',1.0,'EPSG','8601','Latitude offset',11.38,'EPSG','9104','EPSG','8602','Longitude offset',-9.86,'EPSG','9104','EPSG','8604','Geoid undulation',34.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352134',0); INSERT INTO "other_transformation" VALUES('EPSG','15654','Tokyo + JSLD height to WGS 84 (65)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2484',1.0,'EPSG','8601','Latitude offset',11.41,'EPSG','9104','EPSG','8602','Longitude offset',-10.14,'EPSG','9104','EPSG','8604','Geoid undulation',35.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352135',0); INSERT INTO "other_transformation" VALUES('EPSG','15655','Tokyo + JSLD height to WGS 84 (66)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2485',1.0,'EPSG','8601','Latitude offset',11.39,'EPSG','9104','EPSG','8602','Longitude offset',-10.52,'EPSG','9104','EPSG','8604','Geoid undulation',37.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352136',0); INSERT INTO "other_transformation" VALUES('EPSG','15656','Tokyo + JSLD height to WGS 84 (67)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2486',1.0,'EPSG','8601','Latitude offset',11.49,'EPSG','9104','EPSG','8602','Longitude offset',-10.83,'EPSG','9104','EPSG','8604','Geoid undulation',39.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352137',0); INSERT INTO "other_transformation" VALUES('EPSG','15657','Tokyo + JSLD height to WGS 84 (68)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2487',1.0,'EPSG','8601','Latitude offset',11.58,'EPSG','9104','EPSG','8602','Longitude offset',-11.21,'EPSG','9104','EPSG','8604','Geoid undulation',41.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352138',0); INSERT INTO "other_transformation" VALUES('EPSG','15658','Tokyo + JSLD height to WGS 84 (69)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2488',1.0,'EPSG','8601','Latitude offset',11.65,'EPSG','9104','EPSG','8602','Longitude offset',-11.53,'EPSG','9104','EPSG','8604','Geoid undulation',38.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352139',0); INSERT INTO "other_transformation" VALUES('EPSG','15659','Tokyo + JSLD height to WGS 84 (70)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2489',1.0,'EPSG','8601','Latitude offset',11.72,'EPSG','9104','EPSG','8602','Longitude offset',-11.8,'EPSG','9104','EPSG','8604','Geoid undulation',34.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 352140',0); INSERT INTO "other_transformation" VALUES('EPSG','15660','Tokyo + JSLD height to WGS 84 (71)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2490',1.0,'EPSG','8601','Latitude offset',11.44,'EPSG','9104','EPSG','8602','Longitude offset',-9.21,'EPSG','9104','EPSG','8604','Geoid undulation',32.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344132',0); INSERT INTO "other_transformation" VALUES('EPSG','15661','Tokyo + JSLD height to WGS 84 (72)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2491',1.0,'EPSG','8601','Latitude offset',11.47,'EPSG','9104','EPSG','8602','Longitude offset',-9.52,'EPSG','9104','EPSG','8604','Geoid undulation',35.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344133',0); INSERT INTO "other_transformation" VALUES('EPSG','15662','Tokyo + JSLD height to WGS 84 (73)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2492',1.0,'EPSG','8601','Latitude offset',11.55,'EPSG','9104','EPSG','8602','Longitude offset',-9.8,'EPSG','9104','EPSG','8604','Geoid undulation',35.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344134',0); INSERT INTO "other_transformation" VALUES('EPSG','15663','Tokyo + JSLD height to WGS 84 (74)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2493',1.0,'EPSG','8601','Latitude offset',11.61,'EPSG','9104','EPSG','8602','Longitude offset',-10.12,'EPSG','9104','EPSG','8604','Geoid undulation',35.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344135',0); INSERT INTO "other_transformation" VALUES('EPSG','15664','Tokyo + JSLD height to WGS 84 (75)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2494',1.0,'EPSG','8601','Latitude offset',11.66,'EPSG','9104','EPSG','8602','Longitude offset',-10.47,'EPSG','9104','EPSG','8604','Geoid undulation',37.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344136',0); INSERT INTO "other_transformation" VALUES('EPSG','15665','Tokyo + JSLD height to WGS 84 (76)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2495',1.0,'EPSG','8601','Latitude offset',11.78,'EPSG','9104','EPSG','8602','Longitude offset',-10.79,'EPSG','9104','EPSG','8604','Geoid undulation',39.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344137',0); INSERT INTO "other_transformation" VALUES('EPSG','15666','Tokyo + JSLD height to WGS 84 (77)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2496',1.0,'EPSG','8601','Latitude offset',11.85,'EPSG','9104','EPSG','8602','Longitude offset',-11.13,'EPSG','9104','EPSG','8604','Geoid undulation',39.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344138',0); INSERT INTO "other_transformation" VALUES('EPSG','15667','Tokyo + JSLD height to WGS 84 (78)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2497',1.0,'EPSG','8601','Latitude offset',11.9,'EPSG','9104','EPSG','8602','Longitude offset',-11.47,'EPSG','9104','EPSG','8604','Geoid undulation',36.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344139',0); INSERT INTO "other_transformation" VALUES('EPSG','15668','Tokyo + JSLD height to WGS 84 (79)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2498',1.0,'EPSG','8601','Latitude offset',11.91,'EPSG','9104','EPSG','8602','Longitude offset',-11.69,'EPSG','9104','EPSG','8604','Geoid undulation',33.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 344140',0); INSERT INTO "other_transformation" VALUES('EPSG','15669','Tokyo + JSLD height to WGS 84 (80)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2499',1.0,'EPSG','8601','Latitude offset',11.65,'EPSG','9104','EPSG','8602','Longitude offset',-8.59,'EPSG','9104','EPSG','8604','Geoid undulation',29.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340130',0); INSERT INTO "other_transformation" VALUES('EPSG','15670','Tokyo + JSLD height to WGS 84 (81)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2500',1.0,'EPSG','8601','Latitude offset',11.68,'EPSG','9104','EPSG','8602','Longitude offset',-8.8,'EPSG','9104','EPSG','8604','Geoid undulation',30.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340131',0); INSERT INTO "other_transformation" VALUES('EPSG','15671','Tokyo + JSLD height to WGS 84 (82)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2501',1.0,'EPSG','8601','Latitude offset',11.73,'EPSG','9104','EPSG','8602','Longitude offset',-9.04,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340132',0); INSERT INTO "other_transformation" VALUES('EPSG','15672','Tokyo + JSLD height to WGS 84 (83)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2502',1.0,'EPSG','8601','Latitude offset',11.72,'EPSG','9104','EPSG','8602','Longitude offset',-9.48,'EPSG','9104','EPSG','8604','Geoid undulation',35.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340133',0); INSERT INTO "other_transformation" VALUES('EPSG','15673','Tokyo + JSLD height to WGS 84 (84)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2503',1.0,'EPSG','8601','Latitude offset',11.81,'EPSG','9104','EPSG','8602','Longitude offset',9.74,'EPSG','9104','EPSG','8604','Geoid undulation',35.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340134',0); INSERT INTO "other_transformation" VALUES('EPSG','15674','Tokyo + JSLD height to WGS 84 (85)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2504',1.0,'EPSG','8601','Latitude offset',11.88,'EPSG','9104','EPSG','8602','Longitude offset',-10.1,'EPSG','9104','EPSG','8604','Geoid undulation',37.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340135',0); INSERT INTO "other_transformation" VALUES('EPSG','15675','Tokyo + JSLD height to WGS 84 (86)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2505',1.0,'EPSG','8601','Latitude offset',11.91,'EPSG','9104','EPSG','8602','Longitude offset',-10.35,'EPSG','9104','EPSG','8604','Geoid undulation',37.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340136',0); INSERT INTO "other_transformation" VALUES('EPSG','15676','Tokyo + JSLD height to WGS 84 (87)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2506',1.0,'EPSG','8601','Latitude offset',11.9,'EPSG','9104','EPSG','8602','Longitude offset',-10.7,'EPSG','9104','EPSG','8604','Geoid undulation',39.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340137',0); INSERT INTO "other_transformation" VALUES('EPSG','15677','Tokyo + JSLD height to WGS 84 (88)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2507',1.0,'EPSG','8601','Latitude offset',12.02,'EPSG','9104','EPSG','8602','Longitude offset',-11.09,'EPSG','9104','EPSG','8604','Geoid undulation',38.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 340138',0); INSERT INTO "other_transformation" VALUES('EPSG','15678','Tokyo + JSLD height to WGS 84 (89)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2508',1.0,'EPSG','8601','Latitude offset',11.87,'EPSG','9104','EPSG','8602','Longitude offset',-8.23,'EPSG','9104','EPSG','8604','Geoid undulation',29.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332129',0); INSERT INTO "other_transformation" VALUES('EPSG','15679','Tokyo + JSLD height to WGS 84 (90)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2509',1.0,'EPSG','8601','Latitude offset',11.84,'EPSG','9104','EPSG','8602','Longitude offset',-8.44,'EPSG','9104','EPSG','8604','Geoid undulation',30.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332130',0); INSERT INTO "other_transformation" VALUES('EPSG','15680','Tokyo + JSLD height to WGS 84 (91)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2510',1.0,'EPSG','8601','Latitude offset',11.94,'EPSG','9104','EPSG','8602','Longitude offset',-8.71,'EPSG','9104','EPSG','8604','Geoid undulation',30.2,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332131',0); INSERT INTO "other_transformation" VALUES('EPSG','15681','Tokyo + JSLD height to WGS 84 (92)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2511',1.0,'EPSG','8601','Latitude offset',11.99,'EPSG','9104','EPSG','8602','Longitude offset',-9.02,'EPSG','9104','EPSG','8604','Geoid undulation',30.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332132',0); INSERT INTO "other_transformation" VALUES('EPSG','15682','Tokyo + JSLD height to WGS 84 (93)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2512',1.0,'EPSG','8601','Latitude offset',12.05,'EPSG','9104','EPSG','8602','Longitude offset',-9.36,'EPSG','9104','EPSG','8604','Geoid undulation',35.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332133',0); INSERT INTO "other_transformation" VALUES('EPSG','15683','Tokyo + JSLD height to WGS 84 (94)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2513',1.0,'EPSG','8601','Latitude offset',12.1,'EPSG','9104','EPSG','8602','Longitude offset',-9.64,'EPSG','9104','EPSG','8604','Geoid undulation',35.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332134',0); INSERT INTO "other_transformation" VALUES('EPSG','15684','Tokyo + JSLD height to WGS 84 (95)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2514',1.0,'EPSG','8601','Latitude offset',12.1,'EPSG','9104','EPSG','8602','Longitude offset',-10.08,'EPSG','9104','EPSG','8604','Geoid undulation',37.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332135',0); INSERT INTO "other_transformation" VALUES('EPSG','15685','Tokyo + JSLD height to WGS 84 (96)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2515',1.0,'EPSG','8601','Latitude offset',12.07,'EPSG','9104','EPSG','8602','Longitude offset',-10.25,'EPSG','9104','EPSG','8604','Geoid undulation',37.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 332136',0); INSERT INTO "other_transformation" VALUES('EPSG','15686','Tokyo + JSLD height to WGS 84 (97)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2516',1.0,'EPSG','8601','Latitude offset',12.0,'EPSG','9104','EPSG','8602','Longitude offset',-8.15,'EPSG','9104','EPSG','8604','Geoid undulation',32.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324129',0); INSERT INTO "other_transformation" VALUES('EPSG','15687','Tokyo + JSLD height to WGS 84 (98)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2517',1.0,'EPSG','8601','Latitude offset',12.06,'EPSG','9104','EPSG','8602','Longitude offset',-8.38,'EPSG','9104','EPSG','8604','Geoid undulation',31.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324130',0); INSERT INTO "other_transformation" VALUES('EPSG','15688','Tokyo + JSLD height to WGS 84 (99)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2518',1.0,'EPSG','8601','Latitude offset',12.17,'EPSG','9104','EPSG','8602','Longitude offset',-8.69,'EPSG','9104','EPSG','8604','Geoid undulation',30.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324131',0); INSERT INTO "other_transformation" VALUES('EPSG','15689','Tokyo + JSLD height to WGS 84 (100)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2519',1.0,'EPSG','8601','Latitude offset',12.23,'EPSG','9104','EPSG','8602','Longitude offset',-8.99,'EPSG','9104','EPSG','8604','Geoid undulation',31.7,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324132',0); INSERT INTO "other_transformation" VALUES('EPSG','15690','Tokyo + JSLD height to WGS 84 (101)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2520',1.0,'EPSG','8601','Latitude offset',12.21,'EPSG','9104','EPSG','8602','Longitude offset',-9.21,'EPSG','9104','EPSG','8604','Geoid undulation',34.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324133',0); INSERT INTO "other_transformation" VALUES('EPSG','15691','Tokyo + JSLD height to WGS 84 (102)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2521',1.0,'EPSG','8601','Latitude offset',12.28,'EPSG','9104','EPSG','8602','Longitude offset',-9.6,'EPSG','9104','EPSG','8604','Geoid undulation',33.3,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 324134',0); INSERT INTO "other_transformation" VALUES('EPSG','15692','Tokyo + JSLD height to WGS 84 (103)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2522',1.0,'EPSG','8601','Latitude offset',12.28,'EPSG','9104','EPSG','8602','Longitude offset',-8.25,'EPSG','9104','EPSG','8604','Geoid undulation',31.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 320130',0); INSERT INTO "other_transformation" VALUES('EPSG','15693','Tokyo + JSLD height to WGS 84 (104)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2523',1.0,'EPSG','8601','Latitude offset',12.37,'EPSG','9104','EPSG','8602','Longitude offset',-8.55,'EPSG','9104','EPSG','8604','Geoid undulation',29.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 320131',0); INSERT INTO "other_transformation" VALUES('EPSG','15694','Tokyo + JSLD height to WGS 84 (105)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2524',1.0,'EPSG','8601','Latitude offset',12.53,'EPSG','9104','EPSG','8602','Longitude offset',-8.21,'EPSG','9104','EPSG','8604','Geoid undulation',31.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 320132',0); INSERT INTO "other_transformation" VALUES('EPSG','15695','Tokyo + JSLD height to WGS 84 (106)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2525',1.0,'EPSG','8601','Latitude offset',12.57,'EPSG','9104','EPSG','8602','Longitude offset',-8.4,'EPSG','9104','EPSG','8604','Geoid undulation',28.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 312130',0); INSERT INTO "other_transformation" VALUES('EPSG','15696','Tokyo + JSLD height to WGS 84 (107)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2526',1.0,'EPSG','8601','Latitude offset',12.71,'EPSG','9104','EPSG','8602','Longitude offset',-8.17,'EPSG','9104','EPSG','8604','Geoid undulation',29.9,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 312131',0); INSERT INTO "other_transformation" VALUES('EPSG','15697','Tokyo + JSLD height to WGS 84 (6)','','For medium accuracy.','EPSG','9618','Geographic2D with Height Offsets','EPSG','7414','EPSG','4979','EPSG','2425',1.0,'EPSG','8601','Latitude offset',7.92,'EPSG','9104','EPSG','8602','Longitude offset',-13.88,'EPSG','9104','EPSG','8604','Geoid undulation',26.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GSI-Jpn 452141',0); INSERT INTO "other_transformation" VALUES('EPSG','15857','IGN Astro 1960 / UTM zone 28N to Mauritania 1999 / UTM zone 28N (1)','Parameter values consistent with the OGP Affine parametric transformation method derived by OGP from the published Helmert 2D parameter values. May be used for transformations to WGS 84 - see tfm code 15861.','Minerals management. Accuracy 40m. Oil industry considers Mining Cadastre 1999 to be exactly defined by reverse application of this transformation to Mauritania 1999 coordinates.','EPSG','9624','Affine parametric transformation','EPSG','3367','EPSG','3343','EPSG','2971',40.0,'EPSG','8623','A0',-532.876,'EPSG','9001','EPSG','8624','A1',1.00017216658401,'EPSG','9203','EPSG','8625','A2',9.029305555e-05,'EPSG','9203','EPSG','8639','B0',-34.015,'EPSG','9001','EPSG','8640','B1',-9.029305555e-05,'EPSG','9203','EPSG','8641','B2',1.00017216658401,'EPSG','9203',NULL,NULL,NULL,NULL,NULL,NULL,'MMI-Mau W',0); INSERT INTO "other_transformation" VALUES('EPSG','15858','IGN Astro 1960 / UTM zone 29N to Mauritania 1999 / UTM zone 29N (1)','Parameter values consistent with the OGP Affine parametric transformation method derived by OGP from the published Helmert 2D parameter values. May be used for transformations to WGS 84 - see tfm code 15862.','Minerals management. Accuracy 40m. Oil industry considers Mining Cadastre 1999 to be exactly defined by reverse application of this transformation to Mauritania 1999 coordinates.','EPSG','9624','Affine parametric transformation','EPSG','3368','EPSG','3344','EPSG','2970',40.0,'EPSG','8623','A0',-409.264,'EPSG','9001','EPSG','8624','A1',1.00017432259949,'EPSG','9203','EPSG','8625','A2',9.14562824e-05,'EPSG','9203','EPSG','8639','B0',-88.803,'EPSG','9001','EPSG','8640','B1',-9.14562824e-05,'EPSG','9203','EPSG','8641','B2',1.00017432259949,'EPSG','9203',NULL,NULL,NULL,NULL,NULL,NULL,'MMI-Mau C',0); INSERT INTO "other_transformation" VALUES('EPSG','15859','IGN Astro 1960 / UTM zone 30N to Mauritania 1999 / UTM zone 30N (1)','Parameter values consistent with the OGP Affine parametric transformation method derived by OGP from the published Helmert 2D parameter values. May be used for transformations to WGS 84 - see tfm code 15863.','Minerals management. Accuracy 40m. Oil industry considers Mining Cadastre 1999 to be exactly defined by reverse application of this transformation to Mauritania 1999 coordinates.','EPSG','9624','Affine parametric transformation','EPSG','3369','EPSG','3345','EPSG','2969',40.0,'EPSG','8623','A0',-286.351,'EPSG','9001','EPSG','8624','A1',1.0001754456884,'EPSG','9203','EPSG','8625','A2',9.270672363e-05,'EPSG','9203','EPSG','8639','B0',-146.722,'EPSG','9001','EPSG','8640','B1',-9.270672363e-05,'EPSG','9203','EPSG','8641','B2',1.0001754456884,'EPSG','9203',NULL,NULL,NULL,NULL,NULL,NULL,'MMI-Mau E',0); INSERT INTO "other_transformation" VALUES('EPSG','15861','IGN Astro 1960 / UTM zone 28N to WGS 84 / UTM zone 28N (1)','Transformation taken from IGN Astro 1960 / UTM zone 28N to Mauritania 1999 / UTM zone 28N (1) (tfm code 15857) assuming that Mauritania 1999 is equivalent to WGS 84 within the accuracy of this tfm.','Minerals management. Accuracy 40m. However, oil industry considers Mining Cadastre 1999 to be exactly defined by reverse application of this transformation to WGS 84 coordinates.','EPSG','9624','Affine parametric transformation','EPSG','3367','EPSG','32628','EPSG','2971',40.0,'EPSG','8623','A0',-532.876,'EPSG','9001','EPSG','8624','A1',1.00017216658401,'EPSG','9203','EPSG','8625','A2',9.029305555e-05,'EPSG','9203','EPSG','8639','B0',-34.015,'EPSG','9001','EPSG','8640','B1',-9.029305555e-05,'EPSG','9203','EPSG','8641','B2',1.00017216658401,'EPSG','9203',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Mau W',0); INSERT INTO "other_transformation" VALUES('EPSG','15862','IGN Astro 1960 / UTM zone 29N to WGS 84 / UTM zone 29N (1)','Transformation taken from IGN Astro 1960 / UTM zone 29N to Mauritania 1999 / UTM zone 29N (1) (tfm code 15858) assuming that Mauritania 1999 is equivalent to WGS 84 within the accuracy of this tfm.','Minerals management. Accuracy 40m. However, oil industry considers Mining Cadastre 1999 to be exactly defined by reverse application of this transformation to WGS 84 coordinates.','EPSG','9624','Affine parametric transformation','EPSG','3368','EPSG','32629','EPSG','2970',1.0,'EPSG','8623','A0',-409.264,'EPSG','9001','EPSG','8624','A1',1.00017432259949,'EPSG','9203','EPSG','8625','A2',9.14562824e-05,'EPSG','9203','EPSG','8639','B0',-88.803,'EPSG','9001','EPSG','8640','B1',-9.14562824e-05,'EPSG','9203','EPSG','8641','B2',1.00017432259949,'EPSG','9203',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Mau C',0); INSERT INTO "other_transformation" VALUES('EPSG','15863','IGN Astro 1960 / UTM zone 30N to WGS 84 / UTM zone 30N (1)','Transformation taken from IGN Astro 1960 / UTM zone 30N to Mauritania 1999 / UTM zone 30N (1) (tfm code 15859) assuming that Mauritania 1999 is equivalent to WGS 84 within the accuracy of this tfm.','Minerals management. Accuracy 40m. However, oil industry considers Mining Cadastre 1999 to be exactly defined by reverse application of this transformation to WGS 84 coordinates.','EPSG','9624','Affine parametric transformation','EPSG','3369','EPSG','32630','EPSG','2969',1.0,'EPSG','8623','A0',-286.351,'EPSG','9001','EPSG','8624','A1',1.0001754456884,'EPSG','9203','EPSG','8625','A2',9.270672363e-05,'EPSG','9203','EPSG','8639','B0',-146.722,'EPSG','9001','EPSG','8640','B1',-9.270672363e-05,'EPSG','9203','EPSG','8641','B2',1.0001754456884,'EPSG','9203',NULL,NULL,NULL,NULL,NULL,NULL,'OGP-Mau E',0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "concatenated_operation" VALUES('EPSG','3896','MGI (Ferro) to WGS 84 (2)','','2m accuracy','EPSG','4805','EPSG','4326','EPSG','1037',NULL,'BEV-Aut',0); INSERT INTO "concatenated_operation" VALUES('EPSG','3966','MGI (Ferro) to WGS 84 (1)','Accuracy estimate is not available.','For military purposes only.','EPSG','4805','EPSG','4326','EPSG','2370',NULL,'DMA-balk',0); INSERT INTO "concatenated_operation" VALUES('EPSG','4435','Puerto Rico to NAD83(HARN) (1)','May be taken as approximate transformation Puerto Rico to WGS 84 - see code 8583.','Accuracy 0.1m at 67% confidence level.','EPSG','4139','EPSG','4152','EPSG','3634',NULL,'NGS-PRVI',0); INSERT INTO "concatenated_operation" VALUES('EPSG','4837','Amersfoort to ED50 (1)','Adopted by NAM in 2006, replacing polynomial tfms 1046, 6304, 1050 and 6306.','Oil and gas exploration and production.','EPSG','4289','EPSG','4230','EPSG','1275',NULL,'NAM-Nld 2006',0); INSERT INTO "concatenated_operation" VALUES('EPSG','5190','Tokyo 1892 to Korea 2000 (1)','','Accuracy 10m.','EPSG','5132','EPSG','4737','EPSG','3266',NULL,'OGP-Kor',0); INSERT INTO "concatenated_operation" VALUES('EPSG','5192','Tokyo 1892 to WGS 84 (1)','','Accuracy 10m.','EPSG','5132','EPSG','4326','EPSG','3266',NULL,'OGP-Kor',0); INSERT INTO "concatenated_operation" VALUES('EPSG','5230','S-JTSK (Ferro) to WGS 84 (2)','','For applications to an accuracy of 1 metre.','EPSG','4818','EPSG','4326','EPSG','1211',NULL,'OGP-Svk',0); INSERT INTO "concatenated_operation" VALUES('EPSG','5240','S-JTSK/05 (Ferro) to WGS 84 (1)','Replaces S-JTSK (Ferro) to WGS 84 (1) (CRS code 8642) in Czech Republic.','For applications to an accuracy of 1 metre.','EPSG','5229','EPSG','4326','EPSG','1079',NULL,'OGP-Cze',0); INSERT INTO "concatenated_operation" VALUES('EPSG','5242','S-JTSK (Ferro) to WGS 84 (3)','Replaces S-JTSK (Ferro) to WGS 84 (1) (tfm code 8642).','Parameter values from S-JTSK/05 to ETRS89 (1) (code 5226). For applications to an accuracy of 1m.','EPSG','4818','EPSG','4326','EPSG','1079',NULL,'OGP-Cze R05',0); INSERT INTO "concatenated_operation" VALUES('EPSG','5838','Lisbon (Lisbon) to WGS 84 (2)','','For applications to an accuracy of 2 metres.','EPSG','4803','EPSG','4326','EPSG','1294',NULL,'OGP-Prt 2009',0); INSERT INTO "concatenated_operation" VALUES('EPSG','6714','Tokyo to JGD2011 (1)','See Tokyo to JGD2011 (2) (code 6740) for areas other than northern Honshu.','Surveying, mapping and civil engineering.','EPSG','4301','EPSG','6668','EPSG','4170',NULL,'OGP-Jpn N Honshu',0); INSERT INTO "concatenated_operation" VALUES('EPSG','6739','NAD27 to NAD83(HARN) (22)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8622.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1410',NULL,'NGS-Usa SD',0); INSERT INTO "concatenated_operation" VALUES('EPSG','6874','Tananarive (Paris) to WGS 84 (2)','Used by OMV.','For applications with an accuracy of 3m.','EPSG','4810','EPSG','4326','EPSG','3273',NULL,'OGP-Mdg',0); INSERT INTO "concatenated_operation" VALUES('EPSG','7811','NTF (Paris) to RGF93 (2)','Second step is an emulation using NTv2 method of geocentric Interpolation method described in tfm code 7810. Note that the grid file parameters are of opposite sign.','Approximation to better than 1m of transformation of coordinates referenced to NTF (Paris) to RGF93.','EPSG','4807','EPSG','4171','EPSG','3694',NULL,'IOGP-Fra NTv2',0); INSERT INTO "concatenated_operation" VALUES('EPSG','7965','Poolbeg height (ft(Br36)) to Malin Head height (1)','','Change of height to a different vertical reference surface for topographic mapping. Accuracy 0.1m.','EPSG','5754','EPSG','5731','EPSG','1305',NULL,'1',0); INSERT INTO "concatenated_operation" VALUES('EPSG','7967','Poolbeg height (ft(Br36)) to Belfast height (1)','','Change of height to a different vertical reference surface for topographic mapping and engineering survey. Accuracy 0.1m.','EPSG','5754','EPSG','5732','EPSG','1305',NULL,'1',0); INSERT INTO "concatenated_operation" VALUES('EPSG','7973','NGVD29 height (ftUS) to NAVD88 height (1)','','Change of height to a different vertical reference surface and unit. Accuracy 2cm.','EPSG','5702','EPSG','5703','EPSG','2950',NULL,'IOGP - US Conus W',0); INSERT INTO "concatenated_operation" VALUES('EPSG','7974','NGVD29 height (ftUS) to NAVD88 height (2)','','Change of height to a different vertical reference surface and unit, accuracy 2cm.','EPSG','5702','EPSG','5703','EPSG','2949',NULL,'IOGP - US Conus C',0); INSERT INTO "concatenated_operation" VALUES('EPSG','7975','NGVD29 height (ftUS) to NAVD88 height (3)','','Change of height to a different vertical reference surface and unit, accuracy 2cm.','EPSG','5702','EPSG','5703','EPSG','2948',NULL,'IOGP - US Conus E',0); INSERT INTO "concatenated_operation" VALUES('EPSG','7983','HKPD height to HKCD depth (1)','','Hydrographic charting.','EPSG','5738','EPSG','5739','EPSG','3335',NULL,'IOGP-HK',0); INSERT INTO "concatenated_operation" VALUES('EPSG','7986','KOC CD height to KOC WD depth (1)','','Vertical offset including change of axis positive direction.','EPSG','5790','EPSG','5789','EPSG','3267',NULL,'IOGP-Kwt',0); INSERT INTO "concatenated_operation" VALUES('EPSG','7987','KOC CD height to KOC WD depth (ft) (1)','','Vertical offset including change of axis positive direction and change of axis unit.','EPSG','5790','EPSG','5614','EPSG','3267',NULL,'IOGP-Kwt',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8047','ED50 to WGS 84 (15)','Replaced by codes 8569 and 1612 in 1997 and 2001.¶The concatenation of transformations 1147 and 1146 gives the following position vector tfm: dX=-84.491 dY=-100.559 dZ=-114.209 metres rX= -2.4006 rY=-0.5367 rZ=-2.3742 microradians dS=+0.2947 ppm.','Oil exploration before 2001.','EPSG','4230','EPSG','4326','EPSG','2332',NULL,'NMA-Nor N65 1991',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8094','NTF (Paris) to WGS 84 (1)','','Not known.','EPSG','4807','EPSG','4326','EPSG','3694',NULL,'EPSG-Fra',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8174','Bogota 1975 (Bogota) to WGS 84 (1)','','For military purposes. Accuracy 6m, 5m and 6m in X, Y and Z axes.','EPSG','4802','EPSG','4326','EPSG','3229',NULL,'DMA-Col',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8175','Monte Mario (Rome) to WGS 84 (1)','','For military purposes. Accuracy 25m in each axis.','EPSG','4806','EPSG','4326','EPSG','2339',NULL,'EPSG-Ita',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8176','Tananarive (Paris) to WGS 84 (1)','','For military purposes. Accuracy not available.','EPSG','4810','EPSG','4326','EPSG','3273',NULL,'EPSG-Mdg',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8178','Batavia (Jakarta) to WGS 84 (1)','','For military purposes. Accuracy 3m in each axis.','EPSG','4813','EPSG','4326','EPSG','1285',NULL,'EPSG-Idn Sumatra',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8183','HD72 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRF89 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','EPSG','4237','EPSG','4326','EPSG','1119',NULL,'EPSG-Hun',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8186','NTF (Paris) to ED50 (1)','','Not known.','EPSG','4807','EPSG','4230','EPSG','3694',NULL,'EPSG-Fra',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8188','NTF (Paris) to WGS 72 (1)','','Not known.','EPSG','4807','EPSG','4322','EPSG','3694',NULL,'EPSG-Fra',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8190','AGD66 to WGS 84 (2)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84. 0.1m accuracy.','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4202','EPSG','4326','EPSG','2575',NULL,'EPSG-Aus 5m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8192','AGD84 to WGS 84 (3)','Approximation assuming that GDA94 is equivalent to WGS 84.','5m accuracy. Approximation assuming that GDA94 is equivalent to WGS 84.','EPSG','4203','EPSG','4326','EPSG','2575',NULL,'EPSG-Aus 5m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8194','AGD84 to WGS 84 (4)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4203','EPSG','4326','EPSG','2575',NULL,'EPSG-Aus 1m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8195','RT90 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRF89 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','EPSG','4124','EPSG','4326','EPSG','1225',NULL,'EPSG-Swe',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8199','Pulkovo 1942 to WGS 84 (2)','Approximation at the +/- 1m level assuming that LKS94(ETRS89) is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that LKS94(ETRS89) is equivalent to WGS 84.','EPSG','4284','EPSG','4326','EPSG','1145',NULL,'EPSG-Ltu',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8211','Voirol 1875 (Paris) to WGS 84 (1)','','Oil exploration.','EPSG','4811','EPSG','4326','EPSG','1365',NULL,'EPSG-Dza N',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8215','Tete to WGS 84 (1)','Approximation at the +/- 1m level assuming that Moznet is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that Moznet is equivalent to WGS 84.','EPSG','4127','EPSG','4326','EPSG','1167',NULL,'EPSG-Moz',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8217','Tete to WGS 84 (2)','Approximation at the +/- 1m level assuming that Moznet is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that Moznet is equivalent to WGS 84.','EPSG','4127','EPSG','4326','EPSG','2350',NULL,'EPSG-Moz A',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8219','Tete to WGS 84 (3)','Approximation at the +/- 1m level assuming that Moznet is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that Moznet is equivalent to WGS 84.','EPSG','4127','EPSG','4326','EPSG','2351',NULL,'EPSG-Moz B',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8221','Tete to WGS 84 (4)','Approximation at the +/- 1m level assuming that Moznet is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that Moznet is equivalent to WGS 84.','EPSG','4127','EPSG','4326','EPSG','2352',NULL,'EPSG-Moz C',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8223','Tete to WGS 84 (5)','Approximation at the +/- 1m level assuming that Moznet is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that Moznet is equivalent to WGS 84.','EPSG','4127','EPSG','4326','EPSG','2353',NULL,'EPSG-Moz D',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8234','DHDN to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRF89 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','EPSG','4314','EPSG','4326','EPSG','2326',NULL,'EPSG-Deu W',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8236','Pulkovo 1942 to WGS 84 (11)','Approximation at the +/- 1m level assuming that ETRF89 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that ETRF89 is equivalent to WGS 84.','EPSG','4284','EPSG','4326','EPSG','1343',NULL,'EPSG-Deu E',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8243','NAD27 to WGS 84 (25)','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84. Superseded by NAD27 to WGS 84 (27) (code 8404) in Quebec and NAD27 to WGS 84 (26) (code 8245) elsewhere in Canada.','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','EPSG','4267','EPSG','4326','EPSG','1061',NULL,'EPSG-Can old',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8245','NAD27 to WGS 84 (26)','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','EPSG','4267','EPSG','4326','EPSG','1061',NULL,'EPSG-Can',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8263','MGI (Ferro) to WGS 84 (1)','Accuracy estimate is not available.','For military purposes only.','EPSG','4805','EPSG','4326','EPSG','2370',NULL,'DMA-balk',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8363','ETRS89 + Baltic 1957 height to ETRS89 + EVRF2007 height (1)','Compound transformation using two separate quasigeoid models (DVRM05 and DMQSK2014E).','Recommended method for transforming coordinates between Baltic 1957 height and EVRF2007 height and vice-versa in Slovakia.','EPSG','8360','EPSG','7423','EPSG','1211',NULL,'UGKK-Svk',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8386','Old Hawaiian to WGS 84 (1)','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','EPSG','4135','EPSG','4326','EPSG','1334',NULL,'EPSG-Usa Hi',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8388','St. Lawrence Island to WGS 84 (1)','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','EPSG','4136','EPSG','4326','EPSG','1332',NULL,'EPSG-Usa AK StL',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8390','St. Paul Island to WGS 84 (1)','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','EPSG','4137','EPSG','4326','EPSG','1333',NULL,'EPSG-Usa AK StP',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8392','St. George Island to WGS 84 (1)','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','EPSG','4138','EPSG','4326','EPSG','1331',NULL,'EPSG-Usa AK StG',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8394','NAD27(CGQ77) to WGS 84 (1)','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84. Superseded by NAD27(CGQ77) to WGS 84 (2) (code 8564).','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','EPSG','4609','EPSG','4326','EPSG','1368',NULL,'EPSG-Can Qc NT1',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8396','AGD66 to WGS 84 (3)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84. Superseded by AGD66 to WGS 84 (11) (code 8581).','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4202','EPSG','4326','EPSG','2283',NULL,'EPSG-Aus ACT 1m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8398','AGD66 to WGS 84 (4)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84. Superseded by AGD66 to WGS 84 (9) (code 8576).','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4202','EPSG','4326','EPSG','1282',NULL,'EPSG-Aus Tas 1m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8400','AGD66 to WGS 84 (5)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4202','EPSG','4326','EPSG','2286',NULL,'EPSG-Aus NSW Vic 1m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8402','Puerto Rico to WGS 84 (1)','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','EPSG','4139','EPSG','4326','EPSG','1335',NULL,'EPSG-PRVI',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8404','NAD27 to WGS 84 (27)','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84. Superseded by NAD27 to WGS 84 (31) (code 8565).','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','EPSG','4267','EPSG','4326','EPSG','1368',NULL,'EPSG-Can QC',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8406','NAD27(76) to WGS 84 (1)','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that NAD83 is equivalent to WGS 84.','EPSG','4608','EPSG','4326','EPSG','1367',NULL,'EPSG-Can On',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8408','AGD66 to WGS 84 (6)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84. Superseded by AGD66 to WGS 84 (11) (code 8578).','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4202','EPSG','4326','EPSG','2285',NULL,'EPSG-Aus Vic 0.1m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8418','ATS77 to WGS 84 (1)','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','EPSG','4122','EPSG','4326','EPSG','1447',NULL,'EPSG-Can NB',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8419','ATS77 to WGS 84 (2)','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','EPSG','4122','EPSG','4326','EPSG','1533',NULL,'EPSG-Can PEI',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8420','NAD27 to WGS 84 (32)','','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','EPSG','4267','EPSG','4326','EPSG','2375',NULL,'SK PMC-Can SK',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8421','NAD83 to WGS 84 (7)','','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','EPSG','4269','EPSG','4326','EPSG','2375',NULL,'SK PMC-Can SK',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8422','NAD83 to WGS 84 (8)','The gridded difference file AB_CSRS.DAC in STEP 1 will need to be renamed to AB_CSRS.gsb to run in some software suites. Formats identical, but AB file is provincial fit only.','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','EPSG','4269','EPSG','4326','EPSG','2376',NULL,'Alb Env-Can AB',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8442','ETRS89 to S-JTSK (5)','Recommended method of a transformation from ETRS89 to S-JTSK in Slovakia. For reverse transformation see S-JTSK to ETRS89 (6) (code 8443). Both together replace S-JTSK to ETRS89 (4) (code 4827).','GIS, geodetic survey.','EPSG','4258','EPSG','4156','EPSG','1211',NULL,'UGKK-Sk JTSK03',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8443','S-JTSK to ETRS89 (6)','Recommended method of a transformation from S-JTSK to ETRS89 in Slovakia. For reverse transformation see ETRS89 to S-JTSK (5) (code 8442). Both together replace S-JTSK to ETRS89 (4) (code 4827).','GIS, geodetic survey.','EPSG','4156','EPSG','4258','EPSG','1211',NULL,'UGKK-Sk JTSK03',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8453','AGD66 to WGS 84 (7)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4202','EPSG','4326','EPSG','1282',NULL,'EPSG-Aus Tas 0.1m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8454','AGD66 to WGS 84 (8)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4202','EPSG','4326','EPSG','2284',NULL,'EPSG-Aus NT 0.1m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8457','CH1903+ to WGS 84 (1)','Approximation at the +/- 1m level assuming that CHTRF95 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that CHTRF95 is equivalent to WGS 84.','EPSG','4150','EPSG','4326','EPSG','1286',NULL,'EPSG-CH',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8460','NAD27 to NAD83(HARN) (1)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8590.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','1372',NULL,'NGS-Usa AL',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8461','NAD27 to NAD83(HARN) (2)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8591.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1373',NULL,'NGS-Usa AZ',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8462','NAD27 to NAD83(HARN) (3)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8593.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','2297',NULL,'NGS-Usa CA n',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8463','NAD27 to NAD83(HARN) (4)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8594.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','2298',NULL,'NGS-Usa CA s',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8464','NAD27 to NAD83(HARN) (5)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8595.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1376',NULL,'NGS-Usa CO',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8465','NAD27 to NAD83(HARN) (6)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8597.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1380',NULL,'NGS-Usa GA',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8466','NAD27 to NAD83(HARN) (7)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8596.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','1379',NULL,'NGS-Usa FL',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8467','NAD27 to NAD83(HARN) (8)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8611.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','2382',NULL,'NGS-Usa ID MT e',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8468','NAD27 to NAD83(HARN) (9)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8612.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','2383',NULL,'NGS-Usa ID MT w',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8469','NAD27 to NAD83(HARN) (10)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8602.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1386',NULL,'NGS-Usa KY',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8470','NAD27 to NAD83(HARN) (11)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8603.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','1387',NULL,'NGS-Usa LA',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8471','NAD27 to NAD83(HARN) (12)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8605.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','2377',NULL,'NGS-Usa DE MD',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8472','NAD27 to NAD83(HARN) (13)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8604.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','1388',NULL,'NGS-Usa ME',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8473','NAD27 to NAD83(HARN) (14)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8607.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1391',NULL,'NGS-Usa MI',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8474','NAD27 to NAD83(HARN) (15)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8609.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','1393',NULL,'NGS-Usa MS',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8475','NAD27 to NAD83(HARN) (16)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8613.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1396',NULL,'NGS-Usa NE',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8476','NAD27 to NAD83(HARN) (17)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8606.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','2378',NULL,'NGS-Usa NewEng',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8477','NAD27 to NAD83(HARN) (18)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8616.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1400',NULL,'NGS-Usa NM',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8478','NAD27 to NAD83(HARN) (19)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8617.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','1401',NULL,'NGS-Usa NY',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8479','NAD27 to NAD83(HARN) (20)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8618.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1403',NULL,'NGS-Usa ND',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8480','NAD27 to NAD83(HARN) (21)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8620.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1405',NULL,'NGS-Usa OK',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8481','Puerto Rico to NAD83(HARN) (1)','May be taken as approximate transformation Puerto Rico to WGS 84 - see code 8583.','Accuracy 0.1m at 67% confidence level.','EPSG','4139','EPSG','4152','EPSG','1335',NULL,'NGS-PRVI',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8482','NAD27 to NAD83(HARN) (22)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8622.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1410',NULL,'NGS-Usa SD',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8483','NAD27 to NAD83(HARN) (23)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8623.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1411',NULL,'NGS-Usa TN',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8484','NAD27 to NAD83(HARN) (24)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8624.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','2379',NULL,'NGS-Usa TX e',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8485','NAD27 to NAD83(HARN) (25)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8625.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','2380',NULL,'NGS-Usa TX w',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8486','NAD27 to NAD83(HARN) (26)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8627.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1415',NULL,'NGS-Usa VA',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8487','NAD27 to NAD83(HARN) (27)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8621.','Accuracy at 67% confidence level is 0.2m onshore, 5m nearshore and undetermined farther offshore.','EPSG','4267','EPSG','4152','EPSG','2381',NULL,'NGS-Usa OR WA',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8488','NAD27 to NAD83(HARN) (28)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8629.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1418',NULL,'NGS-Usa WI',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8489','NAD27 to NAD83(HARN) (29)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8630.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1419',NULL,'NGS-Usa WY',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8496','NAD27 to WGS 84 (28)','','Geodetic survey.','EPSG','4267','EPSG','4326','EPSG','2374',NULL,'NGS-Usa conus',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8497','NAD27 to WGS 84 (29)','','Geodetic survey.','EPSG','4267','EPSG','4326','EPSG','2373',NULL,'NGS-Usa AK',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8508','Old Hawaiian to NAD83(HARN) (1)','Uses NADCON method which expects longitudes positive west; EPSG GeogCRSs Old Hawaiian (code 4135), NAD83 (code 4269) and NAD83(HARN) have longitudes positive east. May be taken as approximate transformation Old Hawaiin to WGS 84 - see code 8582.','Assumes NAD83 is coincident with NAD83(HARN). Accuracy about 1m.','EPSG','4135','EPSG','4152','EPSG','1334',NULL,'NGS-Usa HI',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8509','NAD27 to NAD83(HARN) (30)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8599.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1383',NULL,'NGS-Usa IN',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8510','NAD27 to NAD83(HARN) (31)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8601.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1385',NULL,'NGS-Usa KS',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8511','NAD27 to NAD83(HARN) (32)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8614.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1397',NULL,'NGS-Usa NV',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8512','NAD27 to NAD83(HARN) (33)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8619.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1404',NULL,'NGS-Usa OH',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8513','NAD27 to NAD83(HARN) (34)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8626.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1413',NULL,'NGS-Usa UT',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8514','NAD27 to NAD83(HARN) (35)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8628.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1417',NULL,'NGS-Usa WV',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8517','Chos Malal 1914 to WGS 84 (1)','May be implemented using a single step geocentric translations of dx=+5.5m dY=+176.7m dZ=+141.4m.','Oil exploration','EPSG','4160','EPSG','4326','EPSG','2325',NULL,'TOT-Arg Neu',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8530','South Yemen to WGS 84 (1)','May be implemented as a single transformation using geocentric translations transformation method with parameter values dX=-76m dY=-138m dZ=+67m.','Approximation at the +/- 1m level assuming that NGN96 is equivalent to WGS 84.','EPSG','4164','EPSG','4326','EPSG','1340',NULL,'IGN-Yem South',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8532','Indian 1960 to WGS 84 (1)','May be implemented as a single transformation using position vector 7-parameter geocentric transformation method with parameter values dX=+199m dY=+931m dZ=+318.9m rX=rY=0 sec rZ=+0.814 sec dS=-0.38 ppm.','Oil exploration.','EPSG','4131','EPSG','4326','EPSG','1495',NULL,'PV-Vnm',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8537','Egypt 1907 to WGS 84 (2)','Used by Shell. May be implemented as a single transformation using position vector 7-parameter geocentric transformation method with parameter values dX=-121.8m dY=+98.1m dZ=-10.7m rX=rY=0 sec rZ=+0.554 sec dS=+0.2263 ppm.','Oil exploration.','EPSG','4229','EPSG','4326','EPSG','1086',NULL,'MCE-Egy',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8553','NAD27 to NAD83(HARN) (36)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8598.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1382',NULL,'NGS-Usa IL',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8554','NAD27 to NAD83(HARN) (37)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8615.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1399',NULL,'NGS-Usa NJ',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8560','AGD84 to WGS 84 (5)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84. Superseded by AGD84 to WGS 84 (6) (code 8579).','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4203','EPSG','4326','EPSG','1280',NULL,'EPSG-Aus WA',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8562','Nord Sahara 1959 to WGS 84 (3)','Derived at IGN monument CFP19 using Transit. Can be implemented as a single 7-param Position Vector transformation with parameter values of dX=-156.5m dY=-87.2m dZ=+287.8m; rX=rY=0 rZ=+0.814sec; dS=-0.38ppm.','Oil exploration.','EPSG','4307','EPSG','4326','EPSG','2393',NULL,'CGG-Alg HM',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8563','NZGD49 to WGS 84 (3)','Assumes WGS 84 is coincident with NZGD2000. Accuracy about 1m.','Assumes WGS 84 is coincident with NZGD2000. Accuracy about 1m.','EPSG','4272','EPSG','4326','EPSG','1175',NULL,'OSG-Nzl 1m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8564','NAD27(CGQ77) to WGS 84 (2)','','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','EPSG','4609','EPSG','4326','EPSG','1368',NULL,'EPSG-Can Qc NT2',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8565','NAD27 to WGS 84 (31)','','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','EPSG','4267','EPSG','4326','EPSG','1368',NULL,'EPSG-Can Que',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8566','NAD83 to WGS 84 (6)','','Approximation at the +/- 1m level assuming that NAD83(CSRS98) is equivalent to WGS 84.','EPSG','4269','EPSG','4326','EPSG','1368',NULL,'EPSG-Can Qc',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8568','Deir ez Zor to WGS 84 (1)','Can be implemented as a position vector tfm with param. values dX=-174.6 dY=-3.1 dZ=238.1m; rX=rY=0 rZ=0.814"; dS=-0.38 ppm.','Oil exploration','EPSG','4227','EPSG','4326','EPSG','2329',NULL,'EPSG-Syr',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8569','ED50 to WGS 84 (21)','Included in Statens Kartverk programme wsktrans between 1997 (v3.1) and 2001 (v4.0). Replaced by ED50 to WGS 84 (23) (code 1612) in April 2001.','Oil exploration before 1997/2001.','EPSG','4230','EPSG','4326','EPSG','2332',NULL,'EPSG-Nor N65 1997',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8571','Accra to WGS 84 (2)','Can be implemented as a position vector tfm dX=-171.16 dY=17.29 dZ=325.21m, rX=rY=0 rZ=0.814", dS=-0.38 ppm. See tfm code 15495. Found in use within oil industry erroneously concatenated as dX=-171.16 dY=17.29 dZ=327.81m, rX=rY0 rZ=0.554", dS=0.2263 ppm.','Oil industry.','EPSG','4168','EPSG','4326','EPSG','1505',NULL,'EPSG-Gha',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8572','Amersfoort to WGS 84 (2)','Parameter values for step 1 from Amersfoort to ETRS89 (2) (code 1751). Step 2 assumes that ETRS89 is equivalent to WGS 84 within the accuracy of the transformation. Supersedes Amersfoort to WGS 84 (1) (code 1112).','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','EPSG','4289','EPSG','4326','EPSG','1275',NULL,'EPSG-Nld',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8573','RGF93 to WGS 84 (1)','','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','EPSG','4171','EPSG','4326','EPSG','1096',NULL,'EPSG-Fra',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8574','American Samoa 1962 to WGS 84 (2)','Transformation actually to NAD83(HARN), but for many purposes NAD83(HARNS) can be considered to be coincident with WGS 84.','Transformation actually to NAD83(HARN), but for many purposes NAD83(HARN) can be considered to be coincident with WGS 84.','EPSG','4169','EPSG','4326','EPSG','2288',NULL,'EPSG-Asm',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8575','American Samoa 1962 to WGS 84 (3)','Transformation actually to NAD83(HARN), but for many purposes NAD83(HARNS) can be considered to be coincident with WGS 84.','Transformation actually to NAD83(HARN), but for many purposes NAD83(HARN) can be considered to be coincident with WGS 84.','EPSG','4169','EPSG','4326','EPSG','2289',NULL,'EPSG-Asm',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8576','AGD66 to WGS 84 (9)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84. Supersedes AGD66 to WGS 84 (4) (code 8398).','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4202','EPSG','4326','EPSG','1282',NULL,'EPSG-Aus Tas 1m',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8577','AGD66 to WGS 84 (10)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4202','EPSG','4326','EPSG','2284',NULL,'EPSG-Aus NT',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8578','AGD66 to WGS 84 (11)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84. Supersedes AGD66 to WGS 84 (3) (code 8396) and AGD66 to WGS 84 (6) (code 8408).','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4202','EPSG','4326','EPSG','2287',NULL,'EPSG-Aus',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8579','AGD84 to WGS 84 (6)','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84. Supersedes AGD84 to WGS 84 (5) (code 8560).','Approximation at the +/- 1m level assuming that GDA94 is equivalent to WGS 84.','EPSG','4203','EPSG','4326','EPSG','1280',NULL,'EPSG-Aus WA',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8580','IRENET95 to WGS 84 (1)','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','Approximation at the +/- 1m level assuming that ETRS89 is equivalent to WGS 84.','EPSG','4173','EPSG','4326','EPSG','1305',NULL,'OSI-Ire',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8581','PSD93 to WGS 84 (2)','Replaced by PSD93 to WGS 84 (1) (code 1439) in 1997. Can be implemented as a position vector tfm with parameter values dX= -182.046 dY= -225.604 dZ=+173.384m rX= -0.616 rY= -1.655 rZ=+8.378" dS=16.8673ppm.','Oil exploration.','EPSG','4134','EPSG','4326','EPSG','3288',NULL,'PDO-Omn 93',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8582','Old Hawaiian to WGS 84 (2)','Transformation steps are from Old Hawaiian to NAD83(HARN) (1) (code 8508) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4135','EPSG','4326','EPSG','1334',NULL,'EPSG-Usa Hi',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8583','Puerto Rico to WGS 84 (2)','Transformation steps are from Puerto Rico to NAD83(HARN) (1) (code 4435) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4139','EPSG','4326','EPSG','3634',NULL,'EPSG-PRVI',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8584','NAD27 to NAD83(CSRS98) (3)','Can be taken as an approximate transformation NAD27 to WGS 84 - see code 8585.','Accuracy 1-2 metres.','EPSG','4267','EPSG','4140','EPSG','2376',NULL,'EPSG-Can AB',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8585','NAD27 to WGS 84 (36)','Steps based on concatenated transformation NAD27 to NAD83(CSRS) (3) (code 8635) assuming that NAD83(CSRS) is equivalent to WGS 84.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','2376',NULL,'EPSG-Can AB',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8586','NAD27 to NAD83(HARN) (38)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8592.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1374',NULL,'NGS-Usa AR',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8587','NAD27 to NAD83(HARN) (39)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8600.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1384',NULL,'NGS-Usa IA',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8588','NAD27 to NAD83(HARN) (40)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8608.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1392',NULL,'NGS-Usa MN',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8589','NAD27 to NAD83(HARN) (41)','May be taken as approximate transformation NAD27 to WGS 84 - see code 8610.','Accuracy at 67% confidence level is 0.2m.','EPSG','4267','EPSG','4152','EPSG','1394',NULL,'NGS-Usa MO',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8590','NAD27 to WGS 84 (37)','Transformation steps are from NAD27 to NAD83(HARN) (1) (code 8460) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1372',NULL,'EPSG-Usa AL',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8591','NAD27 to WGS 84 (38)','Transformation steps are from NAD27 to NAD83(HARN) (2) (code 8461) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1373',NULL,'EPSG-Usa AZ',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8592','NAD27 to WGS 84 (39)','Transformation steps are from NAD27 to NAD83(HARN) (38) (code 8586) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1374',NULL,'EPSG-Usa AR',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8593','NAD27 to WGS 84 (40)','Transformation steps are from NAD27 to NAD83(HARN) (3) (code 8462) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','2297',NULL,'EPSG-Usa CA n',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8594','NAD27 to WGS 84 (41)','Transformation steps are from NAD27 to NAD83(HARN) (4) (code 8463) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','2298',NULL,'EPSG-Usa CA s',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8595','NAD27 to WGS 84 (42)','Transformation steps are from NAD27 to NAD83(HARN) (5) (code 8464) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1376',NULL,'EPSG-Usa CO',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8596','NAD27 to WGS 84 (43)','Transformation steps are from NAD27 to NAD83(HARN) (7) (code 8466) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1379',NULL,'EPSG-Usa FL',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8597','NAD27 to WGS 84 (44)','Transformation steps are from NAD27 to NAD83(HARN) (6) (code 8465) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1380',NULL,'EPSG-Usa GA',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8598','NAD27 to WGS 84 (45)','Transformation steps are from NAD27 to NAD83(HARN) (36) (code 8553) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1382',NULL,'EPSG-Usa IL',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8599','NAD27 to WGS 84 (46)','Transformation steps are from NAD27 to NAD83(HARN) (30) (code 8509) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1383',NULL,'EPSG-Usa IN',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8600','NAD27 to WGS 84 (47)','Transformation steps are from NAD27 to NAD83(HARN) (39) (code 8587) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1384',NULL,'EPSG-Usa IA',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8601','NAD27 to WGS 84 (48)','Transformation steps are from NAD27 to NAD83(HARN) (31) (code 8510) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1385',NULL,'EPSG-Usa KS',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8602','NAD27 to WGS 84 (49)','Transformation steps are from NAD27 to NAD83(HARN) (10) (code 8469) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1386',NULL,'EPSG-Usa KY',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8603','NAD27 to WGS 84 (50)','Transformation steps are from NAD27 to NAD83(HARN) (11) (code 8470) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1387',NULL,'EPSG-Usa LA',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8604','NAD27 to WGS 84 (51)','Transformation steps are from NAD27 to NAD83(HARN) (13) (code 8472) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1388',NULL,'EPSG-Usa ME',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8605','NAD27 to WGS 84 (52)','Transformation steps are from NAD27 to NAD83(HARN) (12) (code 8471) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','2377',NULL,'EPSG-Usa DE MD',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8606','NAD27 to WGS 84 (53)','Transformation steps are from NAD27 to NAD83(HARN) (17) (code 8476) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','2378',NULL,'EPSG-Usa NewEng',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8607','NAD27 to WGS 84 (54)','Transformation steps are from NAD27 to NAD83(HARN) (14) (code 8473) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1391',NULL,'EPSG-Usa MI',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8608','NAD27 to WGS 84 (55)','Transformation steps are from NAD27 to NAD83(HARN) (40) (code 8588) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1392',NULL,'EPSG-Usa MN',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8609','NAD27 to WGS 84 (56)','Transformation steps are from NAD27 to NAD83(HARN) (15) (code 8474) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1393',NULL,'EPSG-Usa MS',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8610','NAD27 to WGS 84 (57)','Transformation steps are from NAD27 to NAD83(HARN) (41) (code 8589) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1394',NULL,'EPSG-Usa MO',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8611','NAD27 to WGS 84 (58)','Transformation steps are from NAD27 to NAD83(HARN) (8) (code 8467) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','2382',NULL,'EPSG-Usa ID MT e',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8612','NAD27 to WGS 84 (59)','Transformation steps are from NAD27 to NAD83(HARN) (9) (code 8468) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','2383',NULL,'EPSG-Usa ID MT w',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8613','NAD27 to WGS 84 (60)','Transformation steps are from NAD27 to NAD83(HARN) (16) (code 8475) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1396',NULL,'EPSG-Usa NE',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8614','NAD27 to WGS 84 (61)','Transformation steps are from NAD27 to NAD83(HARN) (32) (code 8511) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1397',NULL,'EPSG-Usa NV',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8615','NAD27 to WGS 84 (62)','Transformation steps are from NAD27 to NAD83(HARN) (37) (code 8554) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1399',NULL,'EPSG-Usa NJ',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8616','NAD27 to WGS 84 (63)','Transformation steps are from NAD27 to NAD83(HARN) (18) (code 8477) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1400',NULL,'EPSG-Usa NM',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8617','NAD27 to WGS 84 (64)','Transformation steps are from NAD27 to NAD83(HARN) (19) (code 8478) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1401',NULL,'EPSG-Usa NY',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8618','NAD27 to WGS 84 (65)','Transformation steps are from NAD27 to NAD83(HARN) (20) (code 8479) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1403',NULL,'EPSG-Usa ND',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8619','NAD27 to WGS 84 (66)','Transformation steps are from NAD27 to NAD83(HARN) (33) (code 8512) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1404',NULL,'EPSG-Usa OH',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8620','NAD27 to WGS 84 (67)','Transformation steps are from NAD27 to NAD83(HARN) (21) (code 8480) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1405',NULL,'EPSG-Usa OK',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8621','NAD27 to WGS 84 (68)','Transformation steps are from NAD27 to NAD83(HARN) (27) (code 8487) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','2381',NULL,'EPSG-Usa OR WA',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8622','NAD27 to WGS 84 (69)','Transformation steps are from NAD27 to NAD83(HARN) (22) (code 6739) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1410',NULL,'EPSG-Usa SD',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8623','NAD27 to WGS 84 (70)','Transformation steps are from NAD27 to NAD83(HARN) (23) (code 8483) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1411',NULL,'EPSG-Usa TN',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8624','NAD27 to WGS 84 (71)','Transformation steps are from NAD27 to NAD83(HARN) (24) (code 8484) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','2379',NULL,'EPSG-Usa TX e',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8625','NAD27 to WGS 84 (72)','Transformation steps are from NAD27 to NAD83(HARN) (25) (code 8485) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','2380',NULL,'EPSG-Usa TX w',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8626','NAD27 to WGS 84 (73)','Transformation steps are from NAD27 to NAD83(HARN) (34) (code 8513) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1413',NULL,'EPSG-Usa UT',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8627','NAD27 to WGS 84 (74)','Transformation steps are from NAD27 to NAD83(HARN) (26) (code 8486) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1415',NULL,'EPSG-Usa VA',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8628','NAD27 to WGS 84 (75)','Transformation steps are from NAD27 to NAD83(HARN) (35) (code 8514) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1417',NULL,'EPSG-Usa WV',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8629','NAD27 to WGS 84 (76)','Transformation steps are from NAD27 to NAD83(HARN) (28) (code 8488) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1418',NULL,'EPSG-Usa WI',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8630','NAD27 to WGS 84 (77)','Transformation steps are from NAD27 to NAD83(HARN) (29) (code 8489) assuming that NAD83(HARN) is equivalent to WGS 84 within the accuracy of the transformation.','Approximation at the +/- 1m level.','EPSG','4267','EPSG','4326','EPSG','1419',NULL,'EPSG-Usa WY',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8631','Garoua to WGS 84 (1)','','Oil industry.','EPSG','4197','EPSG','4326','EPSG','2590',NULL,'EPSG-Cmr',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8632','Kousseri to WGS 84 (1)','','Oil industry.','EPSG','4198','EPSG','4326','EPSG','2591',NULL,'EPSG-Cmr',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8633','Yoff to WGS 84 (1)','Derived via WGS72. Can be used as a single positon vector transformation with parameter vaues of dX = -37 m, dY = +157 m, dZ = +89.5 m, rX = rY = 0 sec, rZ = 0.554 sec, dS = 0.219 ppm','Military purposes.','EPSG','4310','EPSG','4326','EPSG','1207',NULL,'EPSG-SEN',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8634','Beduaram to WGS 84 (1)','Derived via WGS72BE. Can be used as a single positon vector transformation with parameter vaues of dX = -101 m, dY = -111 m, dZ = +188.9 m, rX = rY = 0 sec, rZ = 0.814 sec, dS = -0.38 ppm','Oil exploration.','EPSG','4213','EPSG','4326','EPSG','2771',NULL,'ELF-Ner SE',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8635','NAD27 to NAD83(CSRS) (3)','Can be taken as an approximate transformation NAD27 to WGS 84 - see code 8585.','Accuracy 1-2 metres.','EPSG','4267','EPSG','4617','EPSG','2376',NULL,'EPSG-Can AB',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8636','Carthage (Paris) to WGS 84 (1)','','For military purposes.','EPSG','4816','EPSG','4326','EPSG','1618',NULL,'EPSG-Tun',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8637','Lisbon (Lisbon) to WGS 84 (1)','','For applications to an accuracy of 2 metres.','EPSG','4803','EPSG','4326','EPSG','1294',NULL,'EPSG-Prt',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8638','Makassar (Jakarta) to WGS 84 (1)','','Oil exploration.','EPSG','4804','EPSG','4326','EPSG','1316',NULL,'EPSG - Idn Sul SW',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8639','NGO 1948 (Oslo) to WGS 84 (1)','','For military purposes.','EPSG','4817','EPSG','4326','EPSG','1352',NULL,'EPSG-Nor',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8640','Nord Sahara 1959 (Paris) to WGS 84 (1)','','For military purposes.','EPSG','4819','EPSG','4326','EPSG','1026',NULL,'EPSG-Dza',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8641','Segara (Jakarta) to WGS 84 (1)','','Accuracy estimate not available.','EPSG','4820','EPSG','4326','EPSG','1360',NULL,'EPSG-Idn Kal SW',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8642','S-JTSK (Ferro) to WGS 84 (1)','Replaced by S-JTSK (Ferro) to WGS 84 (3) (code 5242) in 2009.','For applications to an accuracy of 1 metre.','EPSG','4818','EPSG','4326','EPSG','1079',NULL,'EPSG-Cze',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8643','Greek to WGS 84 (1)','','5m accuracy','EPSG','4120','EPSG','4326','EPSG','3254',NULL,'EPSG-Grc',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8644','Greek (Athens) to WGS 84 (1)','','5m accuracy.','EPSG','4815','EPSG','4326','EPSG','3254',NULL,'EPSG-Grc',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8645','MGI (Ferro) to WGS 84 (2)','','2m accuracy','EPSG','4805','EPSG','4326','EPSG','1037',NULL,'BEV-Aut',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8646','Manoca 1962 to WGS 84 (1)','Derived via WGS72BE. Can be used as a single positon vector transformation with parameter vaues of dX = -56.7 m, dY = -171.8 m, dZ = -40.6 m, rX = rY = 0 sec, rZ = 0.814 sec, dS = -0.38 ppm','Oil exploration','EPSG','4193','EPSG','4326','EPSG','2555',NULL,'OGP-Cmr',1); INSERT INTO "concatenated_operation" VALUES('EPSG','8647','NAD27 to WGS 84 (78)','','Oil industry operations.','EPSG','4267','EPSG','4326','EPSG','2831',NULL,'EPSG-Can E Off',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8648','Lisbon 1890 (Lisbon) to WGS 84 (1)','','Low accuracy applications.','EPSG','4904','EPSG','4326','EPSG','1294',NULL,'EPSG-Prt 5m',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8649','Lisbon 1890 (Lisbon) to WGS 84 (2)','','Medium accuracy applications.','EPSG','4904','EPSG','4326','EPSG','1294',NULL,'EPSG-Prt 1m',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8650','Palestine 1923 to WGS 84 (2)','Can be implemented as a geocentric translation tfm with param. values dX = -229m, dY = -67m, dZ= +277m.','Accuracy: 1m to north and 10m to south of east-west line through Beersheba (31°15''N).','EPSG','4281','EPSG','4326','EPSG','2603',NULL,'SoI-Isr',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8651','Vientiane 1982 to WGS 84 (1)','Can be implemented as a geocentric translation tfm with param. values dX = 42.358m, dY = -124.688m, dZ= -37.366m.','Accuracy: 5m.','EPSG','4676','EPSG','4326','EPSG','1138',NULL,'EPSG-Lao',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8652','Lao 1993 to WGS 84 (1)','Can be implemented as a geocentric translation tfm with param. values dX = 43.933m, dY = -129.593m, dZ= -39.331m.','Accuracy: 5m.','EPSG','4677','EPSG','4326','EPSG','1138',NULL,'EPSG-Lao',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8655','Manoca 1962 to WGS 84 (2)','Derived via WGS 72BE. Can be implemented as a single positon vector transformation with parameter vaues of dX = -56.7 m, dY = -171.8 m, dZ = -38.7 m, rX = rY = 0 sec, rZ = 0.814 sec, dS = -0.38 ppm.','Oil exploration','EPSG','4193','EPSG','4326','EPSG','2555',NULL,'OGP-Cmr',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8656','Mhast (offshore) to WGS 84 (1)','Derived via WGS 72BE. Can be implemented as a single positon vector transformation with parameter vaues of dX = -255.0 m, dY = -29.0 m, dZ = -103.1 m, rX = rY = 0 sec, rZ = 0.814 sec, dS = -0.38 ppm.','Oil industry exploration and production between 1979 and 1987.','EPSG','4705','EPSG','4326','EPSG','3180',NULL,'OGP-Ago Cab',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8657','Egypt Gulf of Suez S-650 TL to WGS 84 (1)','Can be implemented as a single positon vector transformation with parameter vaues of dX = -123.0 m, dY = 98.0 m, dZ = 3.9 m, rX = rY = 0 sec, rZ = 0.814 sec, dS = -0.38 ppm. Replaced by Egypt Gulf of Suez S-650 TL to WGS 84 (2) (tfm code 15846).','Oil industry exploration and production between 1980 and 1984.','EPSG','4706','EPSG','4326','EPSG','2341',NULL,'OGP-Egy GoS',0); INSERT INTO "concatenated_operation" VALUES('EPSG','8659','Kertau (RSO) to WGS 84 (1)','Step 1 is necessary to rescale the grid units before using step 2.','For transformation of MRT68 RSO coordinates.','EPSG','4751','EPSG','4326','EPSG','1309',NULL,'OGP-Mys',0); INSERT INTO "concatenated_operation" VALUES('EPSG','9103','NAD27 to ITRF2014 (1)','For use with legacy data - see CT code 9104 for alternative for new areas. Note that steps 1 and 2 are documented in the geog2D domain, steps 3 and 4 in the geocentric domain. Steps 3 and 4 may be implemented in one operation using CT code 8970.','Oil and gas exploration and production.','EPSG','4267','EPSG','7789','EPSG','3357',NULL,'IOGP-Usa GoM legacy',0); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "concatenated_operation_step" VALUES('EPSG','3896',1,'EPSG','3895'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','3896',2,'EPSG','1618'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','3966',1,'EPSG','3913'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','3966',2,'EPSG','3962'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','4435',1,'EPSG','1461'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','4435',2,'EPSG','1495'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','4837',1,'EPSG','1672'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','4837',2,'EPSG','1311'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5190',1,'EPSG','5134'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5190',2,'EPSG','5189'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5192',1,'EPSG','5134'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5192',2,'EPSG','5191'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5230',1,'EPSG','1884'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5230',2,'EPSG','4836'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5240',1,'EPSG','5238'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5240',2,'EPSG','5227'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5242',1,'EPSG','1884'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5242',2,'EPSG','5239'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5838',1,'EPSG','1756'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','5838',2,'EPSG','1988'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','6714',1,'EPSG','6712'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','6714',2,'EPSG','6713'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','6739',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','6739',2,'EPSG','1496'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','6874',1,'EPSG','1265'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','6874',2,'EPSG','6873'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7811',1,'EPSG','1763'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7811',2,'EPSG','15958'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7965',1,'EPSG','7963'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7965',2,'EPSG','7964'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7967',1,'EPSG','7963'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7967',2,'EPSG','7966'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7973',1,'EPSG','7972'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7973',2,'EPSG','7969'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7974',1,'EPSG','7972'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7974',2,'EPSG','7970'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7975',1,'EPSG','7972'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7975',2,'EPSG','7971'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7983',1,'EPSG','7982'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7983',2,'EPSG','7977'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7986',1,'EPSG','7980'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7986',2,'EPSG','7984'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7987',1,'EPSG','7980'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7987',2,'EPSG','7984'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','7987',3,'EPSG','7985'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8047',1,'EPSG','1147'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8047',2,'EPSG','1146'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8094',1,'EPSG','1763'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8094',2,'EPSG','1193'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8174',1,'EPSG','1755'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8174',2,'EPSG','1125'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8175',1,'EPSG','1262'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8175',2,'EPSG','1169'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8176',1,'EPSG','1265'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8176',2,'EPSG','1227'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8178',1,'EPSG','1759'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8178',2,'EPSG','1123'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8183',1,'EPSG','1273'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8183',2,'EPSG','1149'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8186',1,'EPSG','1763'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8186',2,'EPSG','1276'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8188',1,'EPSG','1763'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8188',2,'EPSG','1277'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8190',1,'EPSG','1278'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8190',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8192',1,'EPSG','1279'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8192',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8194',1,'EPSG','1280'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8194',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8195',1,'EPSG','1437'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8195',2,'EPSG','1149'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8199',1,'EPSG','1274'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8199',2,'EPSG','1283'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8211',1,'EPSG','1266'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8211',2,'EPSG','1294'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8215',1,'EPSG','1297'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8215',2,'EPSG','1302'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8217',1,'EPSG','1298'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8217',2,'EPSG','1302'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8219',1,'EPSG','1299'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8219',2,'EPSG','1302'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8221',1,'EPSG','1300'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8221',2,'EPSG','1302'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8223',1,'EPSG','1301'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8223',2,'EPSG','1302'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8234',1,'EPSG','1309'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8234',2,'EPSG','1149'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8236',1,'EPSG','1310'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8236',2,'EPSG','1149'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8243',1,'EPSG','1312'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8243',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8245',1,'EPSG','1313'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8245',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8263',1,'EPSG','1757'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8263',2,'EPSG','1306'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8363',1,'EPSG','8361'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8363',2,'EPSG','8362'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8386',1,'EPSG','1454'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8386',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8388',1,'EPSG','1455'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8388',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8390',1,'EPSG','1456'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8390',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8392',1,'EPSG','1457'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8392',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8394',1,'EPSG','1451'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8394',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8396',1,'EPSG','1458'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8396',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8398',1,'EPSG','1459'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8398',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8400',1,'EPSG','1460'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8400',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8402',1,'EPSG','1461'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8402',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8404',1,'EPSG','1462'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8404',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8406',1,'EPSG','1463'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8406',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8408',1,'EPSG','1464'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8408',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8418',1,'EPSG','1472'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8418',2,'EPSG','1473'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8419',1,'EPSG','1599'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8419',2,'EPSG','1473'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8420',1,'EPSG','1600'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8420',2,'EPSG','1473'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8421',1,'EPSG','1601'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8421',2,'EPSG','1473'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8422',1,'EPSG','1602'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8422',2,'EPSG','1473'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8442',1,'EPSG','8365'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8442',2,'EPSG','8364'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8443',1,'EPSG','8364'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8443',2,'EPSG','8367'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8453',1,'EPSG','1506'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8453',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8454',1,'EPSG','1507'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8454',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8457',1,'EPSG','1509'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8457',2,'EPSG','1511'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8460',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8460',2,'EPSG','1474'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8461',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8461',2,'EPSG','1475'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8462',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8462',2,'EPSG','1476'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8463',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8463',2,'EPSG','1477'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8464',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8464',2,'EPSG','1478'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8465',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8465',2,'EPSG','1479'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8466',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8466',2,'EPSG','1480'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8467',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8467',2,'EPSG','1481'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8468',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8468',2,'EPSG','1482'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8469',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8469',2,'EPSG','1483'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8470',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8470',2,'EPSG','1484'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8471',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8471',2,'EPSG','1485'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8472',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8472',2,'EPSG','1486'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8473',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8473',2,'EPSG','1487'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8474',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8474',2,'EPSG','1488'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8475',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8475',2,'EPSG','1489'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8476',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8476',2,'EPSG','1490'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8477',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8477',2,'EPSG','1491'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8478',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8478',2,'EPSG','1492'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8479',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8479',2,'EPSG','1493'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8480',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8480',2,'EPSG','1494'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8481',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8481',2,'EPSG','1495'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8482',1,'EPSG','1747'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8482',2,'EPSG','1496'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8483',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8483',2,'EPSG','1497'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8484',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8484',2,'EPSG','1498'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8485',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8485',2,'EPSG','1499'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8486',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8486',2,'EPSG','1500'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8487',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8487',2,'EPSG','1501'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8488',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8488',2,'EPSG','1502'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8489',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8489',2,'EPSG','1503'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8496',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8496',2,'EPSG','1515'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8497',1,'EPSG','1243'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8497',2,'EPSG','1515'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8508',1,'EPSG','1454'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8508',2,'EPSG','1520'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8509',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8509',2,'EPSG','1521'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8510',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8510',2,'EPSG','1522'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8511',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8511',2,'EPSG','1523'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8512',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8512',2,'EPSG','1524'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8513',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8513',2,'EPSG','1525'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8514',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8514',2,'EPSG','1526'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8517',1,'EPSG','1528'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8517',2,'EPSG','1527'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8530',1,'EPSG','1539'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8530',2,'EPSG','1540'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8532',1,'EPSG','1541'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8532',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8537',1,'EPSG','1545'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8537',2,'EPSG','1237'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8553',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8553',2,'EPSG','1553'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8554',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8554',2,'EPSG','1554'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8560',1,'EPSG','1559'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8560',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8562',1,'EPSG','1560'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8562',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8563',1,'EPSG','1568'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8563',2,'EPSG','1565'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8564',1,'EPSG','1576'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8564',2,'EPSG','1473'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8565',1,'EPSG','1574'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8565',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8566',1,'EPSG','1572'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8566',2,'EPSG','1188'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8568',1,'EPSG','1584'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8568',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8569',1,'EPSG','1588'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8569',2,'EPSG','1149'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8571',1,'EPSG','1570'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8571',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8572',1,'EPSG','1571'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8572',2,'EPSG','1149'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8573',1,'EPSG','1591'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8573',2,'EPSG','1149'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8574',1,'EPSG','1578'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8574',2,'EPSG','1580'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8575',1,'EPSG','1579'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8575',2,'EPSG','1580'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8576',1,'EPSG','1594'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8576',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8577',1,'EPSG','1595'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8577',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8578',1,'EPSG','1596'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8578',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8579',1,'EPSG','1593'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8579',2,'EPSG','1150'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8580',1,'EPSG','1611'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8580',2,'EPSG','1149'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8581',1,'EPSG','1616'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8581',2,'EPSG','1237'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8582',1,'EPSG','1454'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8582',2,'EPSG','1741'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8583',1,'EPSG','1461'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8583',2,'EPSG','1731'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8584',1,'EPSG','1313'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8584',2,'EPSG','1752'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8585',1,'EPSG','1313'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8585',2,'EPSG','1702'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8586',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8586',2,'EPSG','1704'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8587',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8587',2,'EPSG','1705'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8588',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8588',2,'EPSG','1706'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8589',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8589',2,'EPSG','1707'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8590',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8590',2,'EPSG','1717'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8591',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8591',2,'EPSG','1728'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8592',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8592',2,'EPSG','1708'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8593',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8593',2,'EPSG','1739'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8594',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8594',2,'EPSG','1750'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8595',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8595',2,'EPSG','1712'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8596',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8596',2,'EPSG','1714'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8597',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8597',2,'EPSG','1713'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8598',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8598',2,'EPSG','1748'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8599',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8599',2,'EPSG','1742'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8600',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8600',2,'EPSG','1709'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8601',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8601',2,'EPSG','1743'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8602',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8602',2,'EPSG','1718'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8603',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8603',2,'EPSG','1719'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8604',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8604',2,'EPSG','1721'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8605',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8605',2,'EPSG','1720'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8606',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8606',2,'EPSG','1725'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8607',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8607',2,'EPSG','1722'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8608',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8608',2,'EPSG','1710'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8609',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8609',2,'EPSG','1723'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8610',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8610',2,'EPSG','1711'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8611',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8611',2,'EPSG','1715'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8612',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8612',2,'EPSG','1716'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8613',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8613',2,'EPSG','1724'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8614',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8614',2,'EPSG','1744'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8615',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8615',2,'EPSG','1749'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8616',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8616',2,'EPSG','1726'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8617',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8617',2,'EPSG','1727'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8618',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8618',2,'EPSG','1729'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8619',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8619',2,'EPSG','1745'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8620',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8620',2,'EPSG','1730'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8621',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8621',2,'EPSG','1737'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8622',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8622',2,'EPSG','1732'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8623',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8623',2,'EPSG','1733'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8624',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8624',2,'EPSG','1734'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8625',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8625',2,'EPSG','1735'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8626',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8626',2,'EPSG','1746'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8627',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8627',2,'EPSG','1736'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8628',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8628',2,'EPSG','1747'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8629',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8629',2,'EPSG','1738'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8630',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8630',2,'EPSG','1740'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8631',1,'EPSG','1805'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8631',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8632',1,'EPSG','1806'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8632',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8633',1,'EPSG','1828'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8633',2,'EPSG','1238'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8634',1,'EPSG','1839'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8634',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8635',1,'EPSG','1313'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8635',2,'EPSG','1849'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8636',1,'EPSG','1881'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8636',2,'EPSG','1130'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8637',1,'EPSG','1756'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8637',2,'EPSG','1944'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8638',1,'EPSG','1260'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8638',2,'EPSG','1837'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8639',1,'EPSG','1762'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8639',2,'EPSG','1654'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8640',1,'EPSG','1882'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8640',2,'EPSG','1253'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8641',1,'EPSG','1883'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8641',2,'EPSG','1897'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8642',1,'EPSG','1884'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8642',2,'EPSG','1623'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8643',1,'EPSG','1891'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8643',2,'EPSG','1272'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8644',1,'EPSG','1761'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8644',2,'EPSG','1891'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8644',3,'EPSG','1272'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8645',1,'EPSG','1757'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8645',2,'EPSG','1618'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8646',1,'EPSG','1902'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8646',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8647',1,'EPSG','1313'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8647',2,'EPSG','1950'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8647',3,'EPSG','1946'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8648',1,'EPSG','1991'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8648',2,'EPSG','1986'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8649',1,'EPSG','1991'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8649',2,'EPSG','1990'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8650',1,'EPSG','1071'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8650',2,'EPSG','1073'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8651',1,'EPSG','1063'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8651',2,'EPSG','1065'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8652',1,'EPSG','1064'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8652',2,'EPSG','1065'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8655',1,'EPSG','1902'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8655',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8656',1,'EPSG','15790'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8656',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8657',1,'EPSG','15792'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8657',2,'EPSG','1240'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8659',1,'EPSG','15896'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','8659',2,'EPSG','1158'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','9103',1,'EPSG','1241'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','9103',2,'EPSG','8971'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','9103',3,'EPSG','7807'); INSERT INTO "concatenated_operation_step" VALUES('EPSG','9103',4,'EPSG','7790'); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5104','Huang Hai 1956','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6125','Samboja P2 exc T9','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6160','Quini-Huao','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6174','Sierra Leone Peninsular 1924','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6211','Genuk','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6218','Bogota','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6222','South Africa','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6227','Levant','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6269','NAD83(1986)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6272','GD49','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6308','Rikets koordinatsystem 1938','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5100','MSL','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5101','ODN','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5102','NGVD29','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5103','NAVD88','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5104','Yellow Sea','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5105','Baltic','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5106','Caspian','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5107','NGF','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5109','NAP','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5111','AHD','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5112','AHD (Tasmania)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5114','CVD28','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5115','Piraeus86','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5116','N60','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5117','RH70','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5118','NGF - Lallemand','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5119','NGF-IGN69','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5120','NGF-IGN78','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5122','JSLD69','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5123','PHD93','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5127','LN02','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5128','LHN95','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5129','EVRF2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6121','GGRS87','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6122','ATS77','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6123','KKJ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6124','RT90','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6126','LKS94 (ETRS89)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6130','Moznet','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6132','FD58','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6133','EST92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6134','PSD93','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6140','NAD83(CSRS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6151','CHTRF95','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6152','NAD83(HARN)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6154','ED50(ED77)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6156','S-JTSK','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6159','ELD79','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6163','YNGN96','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6170','SIRGAS 1995','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6171','RGF93','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6172','POSGAR','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6202','AGD66','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6203','AGD84','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6204','Ain el Abd','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6215','Belge 1950','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6230','ED50','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6231','ED87','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6237','HD72','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6238','ID74','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6242','JAD69','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6246','KOC','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6248','PSAD56','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6258','ETRS89','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6267','NAD27','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6269','NAD83','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6272','NZGD49','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6275','NTF','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6278','OSGB70','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6279','OS(SN)80','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6280','Padang','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6283','GDA94','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6291','SAD69','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6297','Tananarive','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6303','TC(1948)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6308','RT38','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6312','MGI','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6313','Belge 1972','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6314','DHDN','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6318','NGN','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6319','KUDAMS','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6322','WGS 72','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6324','WGS 72BE','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6326','WGS 84','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6608','NAD27(76)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6609','CGQ77','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6901','ATF (Paris)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6902','NDG (Paris)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1161','DHHN12','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1161','Deutsches Haupthöhennetz 1912','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1162','LAS-2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1159','GSK-2011','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1159','GRS-2011','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6181','LUREF','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6180','EST97','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6179','42/58','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6178','42/83','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1031','HR1901','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6818','Systém Jednotné trigonometrické sítě katastrální (Ferro)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6176','AAD98','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6167','NZGD2000','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5119','Nivellement general de la France','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5119','NGF','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5120','IGN78','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5118','NGF','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5120','Nivellement general de la France','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5118','Nivellement general de la France','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6143','Côte d''Ivoire (Ivory Coast)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6142','Côte d''Ivoire (Ivory Coast)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6189','SIRGAS-REGVEN','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6189','REGVEN','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6171','Réseau Géodésique Français 1993','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6172','Posiciones Geodésicas Argentinas','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6190','POSGAR 98','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6190','Posiciones Geodésicas Argentinas 1998','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6182','Observatario Flores','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6182','Azores Occidental 1939','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6183','Graciosa','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6183','Azores Central 1948','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6184','Sao Bras','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6184','Azores Oriental 1940','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6156','Systém Jednotné trigonometrické sítě katastrální','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6123','Kartastokoordinaattijärjestelmä (1966)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5133','AIOC95','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6199','New Egyptian','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6229','Old Egyptian','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6612','JGD2000','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5137','Huang Hai 1985','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5135','HKPD','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6611','HK80','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5135','Ordnance Datum','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5136','Admiralty Chart Datum','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1164','ODN (Offshore)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6820','Segara (Jakarta)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6613','Segara','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6613','Samboja','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6613','P2 Exc','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6613','P2 Exc-T9','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6614','QND95','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6620','12th Parallel traverse','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5131','Belfast','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5101','Newlyn','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6637','Perroud 1950','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6634','MHNC72','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6627','RGR92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6624','RGFG95','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6623','CSG67','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6648','ITRF89','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6649','ITRF90','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6650','ITRF91','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6651','ITRF92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6652','ITRF93','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6653','ITRF94','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6654','ITRF96','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6655','ITRF97','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6656','ITRF2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6623','Guyane Francaise','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5151','NGNC69','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6638','St. Pierre et Miquelon 1950','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6647','ITRF88','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6645','RGNC91','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6640','RRAF91','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6659','ISN93','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6300','TM75','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6300','1975 Mapping Adjustment','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5153','NGG1977','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5154','Martinique 1987','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5156','Reunion 1989','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5156','IGN89','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5155','IGN 1988','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5154','IGN87','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6661','LKS92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6615','Madeira SE Base','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6665','Graciosa','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6665','Azores Central 1995','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6665','Base SW','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6183','Base SW','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6664','Sao Bras','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6664','Azores Oriental 1995','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6615','Base SE','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6663','Base SE','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6663','Madeira SE Base 1995','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6615','Porto Santo','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6667','IKBD-92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6668','ED79','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6131','Indian (DMA Reduced)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1192','NAD83(CSRS)v1','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1192','NAD83(CSRS96)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1195','NAD83(CSRS)v4','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6265','Rome 1940','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6806','Rome 1940 (Rome)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6670','IGM95','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6673','CI1979','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5172','NG-L','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5174','NN1954','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5173','TNVCN99','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6173','ETRS89','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6281','Old Israeli Datum','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6281','OID','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1146','Abu Dhabi Vertical Datum','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6674','SIRGAS 2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6678','Lao 1997','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5182','DHHN85','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5183','SNN76','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5172','NG95','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5176','GHA','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5177','NVN99','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5178','RNGAP','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5180','REDNAP','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5181','DHHN92','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5185','EOMA 1980','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5186','PWD','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5187','WD','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5188','CD','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6152','NAD83 (High Precision Geodetic Network)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6152','NAD83(HPGN)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6625','Fort Desaix','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6622','Sainte Anne','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6626','Piton des Neiges','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5189','NGC','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5192','IGN 1955','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5191','IGN 1950','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5114','Canadian Vertical Datum of 1928','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5114','CGVD28','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6683','PRS92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6683','Modified Luzon Datum','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6686','MAGNA-SIRGAS','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1133','NAD83(CORS96)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5105','Baltic Sea','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6687','RGPF','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6688','MHEFO 55','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6628','IGN 1952','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6692','MOP 1983','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6628','Tahiti','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6629','Tahaa','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5195','NGPF','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6694','POSGAR 94','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6694','POSGAR','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6190','POSGAR','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6694','Posiciones Geodésicas Argentinas 1994','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6701','IGCB 1955','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6701','Bas Congo 1955','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6182','Observatorio Meteorologico 1939','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6182','Observatorio 1966','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6616','Selvagem Grande 1938','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6616','Marco Astro','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6703','Mhast 1951','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6705','Mhast','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6704','Mhast','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6259','Mhast','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6699','Le Pouce (Mauritius 94)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6699','Le Pouce (Mauritius PN 94)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6725','Johnston Atoll 1961','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6737','Korea 2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6740','PZ-90','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6739','HK63(67)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6738','HK63','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6690','IGN79 Tahiti','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6639','Uvea SHOM 1978','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6706','S-650 TL','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6741','FD54','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6742','GDM2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6745','RD/83','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6746','PD/83','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6747','GR96','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6720','FGD 1986','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6720','Fiji 1986','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6752','Viti Levu 1916','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6748','Vanua Levu 1917','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6749','RGNC91-93','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6749','RGNC','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6298','Timbalai 1968','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6298','Borneo Triangulation of 1968','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6298','BT68','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6245','Malaysia Revised Triangulation 1968','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6245','MRT68','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6714','Bellevue (IGN)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6730','Santo (DOS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6753','FD54a','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6754','LGD2006','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6755','DGN95','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6755','Indonesian Geodetic Datum 1995','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6755','IGD95','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6697','IGC 1962 6th Parallel South','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6756','VN-2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6896','ITRF2005','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6647','IERS Terrestrial Reference Frame 1988','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6648','IERS Terrestrial Reference Frame 1989','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6649','IERS Terrestrial Reference Frame 1990','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6650','IERS Terrestrial Reference Frame 1991','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6651','IERS Terrestrial Reference Frame 1992','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6652','IERS Terrestrial Reference Frame 1993','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6653','IERS Terrestrial Reference Frame 1994','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5204','IGLD 1955','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5205','IGLD 1985','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5206','DVR90','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1140','SHD','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6758','JAD2001','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6760','WGS 66','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1034','SREF98','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5207','HVRS71','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6762','BDA2000','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5208','RH2000','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5209','RH00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6764','RSRGD2000','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5157','Auckland','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5158','Bluff','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5169','Chatham Island 1959','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5159','Dunedin','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5160','Gisborne','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5161','Lyttelton','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5162','Moturiki','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5163','Napier','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5164','Nelson','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5165','One Tree Point','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5170','Stewart Island','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5167','Taranaki','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5166','Tararu','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5168','Wellington','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6765','D96','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6765','Slovenia 1996','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1024','HD1909','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1025','TWD67','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1026','TWD97','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6236','Hu Tzu Shan','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6316','Dealul Piscului 1933','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1107','Cais da Figueirinha - Angra do Heroísmo','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5202','Bora Bora 2001','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5124','Fahud HD','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5132','DNN','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5138','ODN Orkney','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5215','EVRF2007','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6743','Karbala 1979 (Polservice)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5149','British Vertical Datum','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1029','IGRS','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6191','ALB86','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6127','Tete 1960','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6201','Blue Nile 1958','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1112','CGRS93','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1113','RGTAAF07','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1113','Reseau Geodesique des TAAF 2007','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1147','ONGD14','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1031','D48','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6805','MGI (Ferro)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1033','RGRDC 2005','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6728','Pico de las Nieves','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6728','PN84','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1027','EGM2008','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1152','WGS 84 (G730)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1153','WGS 84 (G873)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5203','EGM84','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1154','WGS 84 (G1150)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5171','EGM96','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1155','WGS 84 (G1674)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1156','WGS 84 (G1762)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1157','PZ-90.02','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1158','PZ-90.11','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1160','Kyrg-06','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1165','ITRF2014','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6818','Systém Jednotnej trigonometrickej siete katastrálnej (Ferro)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1167','BGS2005','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1166','WGS 84 (Transit)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6710','ASTRO DOS 71/4','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1168','GDA2020','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1169','NZVD2016','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6710','St. Helena 1971','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1170','DHHN2016','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1170','Deutsches Haupthöhennetz 2016','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1171','POM96','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1172','POM08','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1174','SHGD2015','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1173','WGS 84 Tritan St. Helena','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1177','SHVD2015','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1180','ETRF91','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1178','ETRF89','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1178','EUREF89','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1179','ETRF90','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1181','ETRF92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1182','ETRF93','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1183','ETRF94','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1184','ETRF96','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1185','ETRF97','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1186','ETRF2000','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1176','MSL Tritan','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1175','MSL 1971','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1176','St. Helena Tritan 2011','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1193','NAD83(CSRS)v2','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1187','ISN2016','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1190','ISH2004','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1190','Landshæðarkerfi Islands 2004','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6156','Systém Jednotnej trigonometrickej siete katastrálnej','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1196','NAD83(CSRS)v5','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1194','NAD83(CSRS)v3','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1197','NAD83(CSRS)v6','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1198','NAD83(CSRS)v7','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1193','NAD83(CSRS98)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1199','GVR2000','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1200','GVR2016','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6152','Guam Geodetic Network 1993','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1201','S-JTSK [JTSK03]','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1201','Systém Jednotnej trigonometrickej siete katastrálnej [JTSK03]','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5111','AHD71','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1208','Macao 2008','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1204','ETRF2005','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1206','ETRF2014','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5111','AHD-TAS83','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6152','NAD83','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1211','NAD83(FBN)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1212','NAD83(HARN Corrected)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1213','N43','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1214','STRS00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1214','SRB_ETRS89','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5177','National Vertical Network 1999','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1215','SVS2010','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1036','RGM04','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1038','RGSPM06','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1216','SRB_VRS12','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6220','Camacupa','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1219','MVGC','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1218','MGD-2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1218','MTRF-2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1220','Rede Permanentes de Estaciones GNSS de Angola','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1220','RSAO13','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1220','REPANGOL','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1205','Zero Depth Point (ZDP)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1223','RGWF96','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1224','TWVD 2001','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1225','CR14','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1226','DACR52','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1230','SIRGAS-CON DGF02P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1227','SIRGAS-CON DGF00P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1227','SIRGAS Multi-Year Solution 2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1230','SIRGAS Multi-Year Solution 2002','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1239','SIRGAS-CON SIR13P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1239','SIRGAS Multi-Year Solution 2013','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1228','SIRGAS-CON DGF01P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1228','SIRGAS Multi-Year Solution 2001','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1231','SIRGAS-CON DGF04P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1231','SIRGAS Multi-Year Solution 2004','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1229','SIRGAS-CON DGF01P02','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1229','SIRGAS Multi-Year Solution 2001 extended','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1232','SIRGAS-CON DGF05P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1232','SIRGAS Multi-Year Solution 2005','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1240','SIRGAS-CON SIR14P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1240','SIRGAS Multi-Year Solution 2014','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1233','SIRGAS-CON DGF06P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1233','SIRGAS Multi-Year Solution 2006','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1234','SIRGAS-CON DGF07P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1234','SIRGAS Multi-Year Solution 2007','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1241','SIRGAS-CON SIR15P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1241','SIRGAS Multi-Year Solution 2015','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1235','SIRGAS-CON DGF08P01','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1039','NZVD2009','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1235','SIRGAS Multi-Year Solution 2008','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1236','SIRGAS-CON SIR09P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1236','SIRGAS Multi-Year Solution 2009','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1242','SIRGAS-CON SIR17P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1242','SIRGAS Multi-Year Solution 2017','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1237','SIRGAS-CON SIR10P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1237','SIRGAS Multi-Year Solution 2010','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1238','SIRGAS-CON SIR11P01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1238','SIRGAS Multi-Year Solution 2011','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1035','REGCAN95','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6761','HTRS96','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1047','RRAF91','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1251','KOSOVAREF12','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6269','NAD83(Original)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1221','NAD83(MARP00)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1249','NAD83(PACP00)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1064','SIRGAS-Chile 2002','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1251','KOSOVAREF01','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1251','KOSOVAREF01 (2012)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1252','SIRGAS-Chile 2013','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1253','SIRGAS-Chile 2016','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1256','CGVD2013 (CGG2013a)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1258','MMN','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1259','MMS','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1260','SRVN16','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6160','Quiñi-Huao','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1261','EVRF2000 Austria','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1262','SA LLD','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1269','KSA-VRF14','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1268','KSA-GRF17','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1042','Red Geodesica Nacional 1992','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1046','Morro do Papagaio','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1046','Island of Principe datum','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1044','Fortaleza','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1044','Island of Sao Tome datum','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1041','PTRA08','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6301','Tokyo 1918','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1048','Tokyo 1898','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1054','SLVD','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1053','SLD99','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1057','TUREF','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1058','DRUKREF 03','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1056','GDBD2009','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6674','Sistema de Referencia Geocentrico para America del Sur 2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6818','S-JTSK (Ferro)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1059','FVR09','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1052','S-JTSK/05','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1052','Systém Jednotné trigonometrické sítě katastrální/05','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1055','S-JTSK/05 (Ferro)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1055','Systém Jednotné trigonometrické sítě katastrální/05 (Ferro)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1060','ISN2004','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1061','ITRF2008','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6152','NAD83 (High Accuracy Regional Network)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1069','Red Geodésica Básica Nacional de El Salvador','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1067','Sistema Geodésico Nacional','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6309','ROU-USAMS','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1065','CR05','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1063','MARGEN','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1066','MACARIO SOLIS','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1073','RGAF09','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1062','POSGAR 2007','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1062','POSGAR','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1062','Posiciones Geodésicas Argentinas 2007','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1072','Balboa','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1072','Panamá-Colón 1911','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6225','Corrego Alegre','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1076','PNG94','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6674','SIRGAS2000','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5182','Deutsches Haupthöhennetz 1985','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5181','Deutsches Haupthöhennetz 1992','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1078','FEH10','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1079','FCSVR10','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1081','DB_REF','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5113','Sea Level','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1084','HHWLT','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1082','HAT','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1085','ISLW','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1085','Indian Tidal Plane','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1083','LLWLT','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1080','LAT','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1090','MHHW','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1092','MHW','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1088','MHWS','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1088','Spring High Water','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1089','MLLW','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1086','MLLWS','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1091','MLW','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1087','MLWS','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1087','Spring Low Water','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1093','Low tide','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1094','High Tide','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1095','TGD2005','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1098','LCVD61','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1099','CBVD61','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1097','GCVD54','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6723','GCGD59','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6726','SIGD61','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6726','Little Cayman Geodetic Datum 1961','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1100','CIGD11','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1096','NN2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','6723','Grand Cayman 1959','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','5110','Oostende','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1116','NAD83(2011)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1117','NAD83(PA11)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1118','NAD83(MA11)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1042','Mexican Datum of 1993','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1120','Red Geodesica Nacional 2008','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1119','NMVD03','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1122','GUVD63','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1126','GUVD04','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1125','ASVD02','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1121','Tutuila62','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1124','VIVD09','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1123','PRVD02','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1127','CGVD2013 (CGG2013)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1128','JGD2011','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1131','JGD2011 (vertical)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1130','JGD2000 (vertical)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_datum','EPSG','1129','JSLD72','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_datum','EPSG','1132','RDN2008','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21100','Genuk / NEIEZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2140','NAD83(CSRS98) / SCoPQ zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2141','NAD83(CSRS98) / SCoPQ zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2142','NAD83(CSRS98) / SCoPQ zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2143','NAD83(CSRS98) / SCoPQ zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2144','NAD83(CSRS98) / SCoPQ zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2145','NAD83(CSRS98) / SCoPQ zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2146','NAD83(CSRS98) / SCoPQ zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2147','NAD83(CSRS98) / SCoPQ zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2159','Sierra Leone 1924 / Peninsular Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2291','NAD83 / PEI Stereo','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3200','Final Datum 1958 / Iraq zone','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4132','Final Datum 1958 (Iran)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4140','NAD83(CSRS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4172','National Geodetic System [Argentina]','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4211','Genuk','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4218','Bogota','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4227','Levant','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4272','GD49','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4813','Genuk (Jakarta)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21100','Genuk (Jakarta) / NEIEZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21148','Genuk / UTM zone 48S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21150','Genuk / UTM zone 50S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22700','Levant / Levant Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22770','Levant / Syria Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22780','Levant / Levant Stereo','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25828','ETRF89 / UTM zone 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25829','ETRF89 / UTM zone 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25830','ETRF89 / UTM zone 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25831','ETRF89 / UTM zone 31N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25832','ETRF89 / UTM zone 32N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25833','ETRF89 / UTM zone 33N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25834','ETRF89 / UTM zone 34N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25835','ETRF89 / UTM zone 35N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25836','ETRF89 / UTM zone 36N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25837','ETRF89 / UTM zone 37N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25838','ETRF89 / UTM zone 38N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25884','ETRF89 / TM Baltic93','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27258','GD49 / UTM zone 58','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27259','GD49 / UTM zone 59','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27260','GD49 / UTM zone 60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27291','GD49 / North Island Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27292','GD49 / South Island Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30791','Nord Sahara 1959 / Lambert Nord Voirol Unifie 1960','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30792','Nord Sahara 1959 / Lambert Sud Voirol Unifie 1960','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31170','Zanderij / Surinam Old','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31171','Zanderij / Surinam TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31300','Belge Lambert 72','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2000','Anguilla 1957 / BWI Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2001','Antigua 1943 / BWI Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2002','Dominica 1945 / BWI Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2003','Grenada 1953 / BWI Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2004','Montserrat 58 / BWI Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2005','St Kitts 1955 / BWI Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2006','St Lucia 1955 / BWI Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2007','St Vincent 45 / BWI Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2008','CGQ77 / SCoPQ zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2009','CGQ77 / SCoPQ zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2010','CGQ77 / SCoPQ zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2011','CGQ77 / SCoPQ zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2012','CGQ77 / SCoPQ zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2013','CGQ77 / SCoPQ zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2014','CGQ77 / SCoPQ zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2015','CGQ77 / SCoPQ zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2016','CGQ77 / SCoPQ zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2036','NAD83(CSRS) / NB Stereo','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2037','NAD83(CSRS) / UTM 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2038','NAD83(CSRS) / UTM 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2040','Locodjo 65 / UTM 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2041','Abidjan 87 / UTM 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2042','Locodjo 65 / UTM 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2043','Abidjan 87 / UTM 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2044','Hanoi 72 / Gauss zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2045','Hanoi 72 / Gauss zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2046','New S African CS zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2047','New S African CS zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2048','New S African CS zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2049','New S African CS zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2050','New S African CS zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2051','New S African CS zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2052','New S African CS zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2053','New S African CS zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2054','New S African CS zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2055','New S African CS zone 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2056','LV95','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2066','Mount Dillon / Tobago','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2067','Naparima 1955 / UTM 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2081','Chos Malal 1914 / Argentina zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2083','Hito XVIII 1963 / Argentina zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2084','Hito XVIII / UTM 19S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2089','Yemen NGN96 / UTM 38N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2090','Yemen NGN96 / UTM 39N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2091','S Yemen / Gauss zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2092','S Yemen / Gauss zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2097','Korean 1985 / Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2099','Qatar Plane CS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2136','Accra / Gold Coast Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2137','Accra / Ghana TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2157','IRENET95 / ITM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2200','ATS77 / NB Stereographic','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2290','ATS77 / PEI Stereo','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2291','NAD83(CSRS) / PEI Stereo','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2294','ATS77 / MTM NS zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2295','ATS77 / MTM NS zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2393','KKJ / Finland zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2600','LKS94','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3561','Old Hawaiian / SP zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3562','Old Hawaiian / SP zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3563','Old Hawaiian / SP zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3564','Old Hawaiian / SP zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3565','Old Hawaiian / SP zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3991','Puerto Rico SPCS 27','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4134','PDO Survey Datum 1993','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4215','BD 50','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4268','NAD Michigan','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4313','BD 72','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4609','CGQ77','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4809','BD 50 (Brussels)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5701','Newlyn height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5702','National Geodetic Vertical Datum of 1929 height (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5703','North American Vertical Datum of 1988 height (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5709','Normaal Amsterdams Peil height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5711','Australian Height Datum height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5712','Australian Height Datum (Tasmania) height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5713','Canadian Geodetic Vertical Datum of 1928 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5714','mean sea level height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5715','mean sea level depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5723','Japan Levelling Datum height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5724','PDO Height Datum 1993 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5728','Landesnivellement 1902 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5729','Landeshohennetz 1995 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7401','NTF / France II + Lalle','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7402','NTF / France II + IGN69','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7403','NTF / France III + IGN69','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7405','GB Nat Grid + ODN ht','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7407','NAD27 / TX_N + NGVD29 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20004','S-95 zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20005','S-95 zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20006','S-95 zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20007','S-95 zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20008','S-95 zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20009','S-95 zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20010','S-95 zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20011','S-95 zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20012','S-95 zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20013','S-95 zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20014','S-95 zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20015','S-95 zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20016','S-95 zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20017','S-95 zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20018','S-95 zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20019','S-95 zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20020','S-95 zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20021','S-95 zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20022','S-95 zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20023','S-95 zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20024','S-95 zone 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20025','S-95 zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20026','S-95 zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20027','S-95 zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20028','S-95 zone 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20029','S-95 zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20030','S-95 zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20031','S-95 zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20032','S-95 zone 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20064','Pulkovo 1995 / Gauss 4N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20065','Pulkovo 1995 / Gauss 5N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20066','Pulkovo 1995 / Gauss 6N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20067','Pulkovo 1995 / Gauss 7N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20068','Pulkovo 1995 / Gauss 8N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20069','Pulkovo 1995 / Gauss 9N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20070','Pulkovo 1995 / Gauss 10N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20071','Pulkovo 1995 / Gauss 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20072','Pulkovo 1995 / Gauss 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20073','Pulkovo 1995 / Gauss 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20074','Pulkovo 1995 / Gauss 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20075','Pulkovo 1995 / Gauss 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20076','Pulkovo 1995 / Gauss 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20077','Pulkovo 1995 / Gauss 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20078','Pulkovo 1995 / Gauss 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20079','Pulkovo 1995 / Gauss 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20080','Pulkovo 1995 / Gauss 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20081','Pulkovo 1995 / Gauss 21N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20082','Pulkovo 1995 / Gauss 22N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20083','Pulkovo 1995 / Gauss 23N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20084','Pulkovo 1995 / Gauss 24N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20085','Pulkovo 1995 / Gauss 25N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20086','Pulkovo 1995 / Gauss 26N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20087','Pulkovo 1995 / Gauss 27N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20088','Pulkovo 1995 / Gauss 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20089','Pulkovo 1995 / Gauss 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20090','Pulkovo 1995 / Gauss 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20091','Pulkovo 1995 / Gauss 31N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20092','Pulkovo 1995 / Gauss 32N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20437','Ain el Abd / UTM 37N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20438','Ain el Abd / UTM 38N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20439','Ain el Abd / UTM 39N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20790','Lisbon / Portuguese Nat','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21100','Batavia / NEIEZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21291','Barbados 1938 / BWI Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21292','Barbados National Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21413','Beijing / GK zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21414','Beijing / GK zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21415','Beijing / GK zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21416','Beijing / GK zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21417','Beijing / GK zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21418','Beijing / GK zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21419','Beijing / GK zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21420','Beijing / GK zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21421','Beijing / GK zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21422','Beijing / GK zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21423','Beijing / GK zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21473','Beijing / Gauss 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21474','Beijing / Gauss 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21475','Beijing / Gauss 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21476','Beijing / Gauss 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21477','Beijing / Gauss 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21478','Beijing / Gauss 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21479','Beijing / Gauss 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21480','Beijing / Gauss 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21481','Beijing / Gauss 21N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21482','Beijing / Gauss 22N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21483','Beijing / Gauss 23N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21500','Belge Lambert 50','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21780','LV03C','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21781','LV03','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21891','Bogota / Colombia 3W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21892','Bogota / Colombia Bogota','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21893','Bogota / Colombia 3E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21894','Bogota / Colombia 6E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22191','C Inchauspe / Argentina 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22192','C Inchauspe / Argentina 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22193','C Inchauspe / Argentina 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22194','C Inchauspe / Argentina 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22195','C Inchauspe / Argentina 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22196','C Inchauspe / Argentina 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22197','C Inchauspe / Argentina 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22275','South African CS zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22277','South African CS zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22279','South African CS zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22281','South African CS zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22283','South African CS zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22285','South African CS zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22287','South African CS zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22289','South African CS zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22291','South African CS zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22293','South African CS zone 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22300','Tunisia Mining Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22523','Corrego Alegre / UTM 23S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22524','Corrego Alegre / UTM 24S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22994','Egypt 1907 / Ext. Purple','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23946','Indian 1954 / UTM 46N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23947','Indian 1954 / UTM 47N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23948','Indian 1954 / UTM 48N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24047','Indian 1975 / UTM 47N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24048','Indian 1975 / UTM 48N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24100','Jamaica 1875 / Old Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24200','JAD69 / Jamaica Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24305','Kalianpur 37 / UTM 45N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24306','Kalianpur 37 / UTM 46N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24311','Kalianpur 62 / UTM 41N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24312','Kalianpur 62 / UTM 42N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24313','Kalianpur 62 / UTM 43N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24342','Kalianpur 75 / UTM 42N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24343','Kalianpur 75 / UTM 43N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24344','Kalianpur 75 / UTM 44N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24345','Kalianpur 75 / UTM 45N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24346','Kalianpur 75 / UTM 46N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24347','Kalianpur 75 / UTM 47N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24370','Kalianpur / India 0','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24371','Kalianpur / India I','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24372','Kalianpur / India IIa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24373','Kalianpur / India IIIa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24374','Kalianpur / India IVa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24375','Kalianpur 37 / India IIb','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24376','Kalianpur 62 / India I','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24377','Kalianpur 62 / India IIa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24378','Kalianpur 75 / India I','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24379','Kalianpur 75 / India IIa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24380','Kalianpur 75 / India IIb','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24381','Kalianpur 75 / India IIIa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24382','Kalianpur / India IIb','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24383','Kalianpur 75 / India IVa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24892','PSAD56 / Peru central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25000','Leigon / Ghana Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25391','Luzon / Philippines I','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25392','Luzon / Philippines II','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25393','Luzon / Philippines III','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25394','Luzon / Philippines IV','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25395','Luzon / Philippines V','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25700','Makassar / NEIEZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25932','Malongo 1987 / UTM 32S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26391','Minna / Nigeria West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26393','Minna / Nigeria East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26591','Monte Mario / Italy 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26592','Monte Mario / Italy 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26632','M''poraloko / UTM 32N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26692','M''poraloko / UTM 32S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26741','NAD27 / California I','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26742','NAD27 / California II','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26743','NAD27 / California III','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26744','NAD27 / California IV','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26745','NAD27 / California V','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26746','NAD27 / California VI','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26747','NAD27 / California VII','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26786','NAD27 / Massachusetts','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26787','NAD27 / Massachusetts Is','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26792','NAD27 / Minnesota Cent.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26801','NAD27 / Michigan East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26802','NAD27 / Michigan Old Cen','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26803','NAD27 / Michigan West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26811','NAD27 / Michigan North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26812','NAD27 / Michigan Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26813','NAD27 / Michigan South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26941','NAD83 / California 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26942','NAD83 / California 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26943','NAD83 / California 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26944','NAD83 / California 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26945','NAD83 / California 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26946','NAD83 / California 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26986','NAD83 / Massachusetts','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26987','NAD83 / Massachusetts Is','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26992','NAD83 / Minnesota Cent.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27038','Nahrwan 1967 / UTM 38N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27039','Nahrwan 1967 / UTM 39N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27040','Nahrwan 1967 / UTM 40N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27120','Naparima 1972 / UTM 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27200','NZGD49 / NZ Map Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27391','NGO 1948 / I','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27392','NGO 1948 / II','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27393','NGO 1948 / III','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27394','NGO 1948 / IV','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27395','NGO 1948 / V','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27396','NGO 1948 / VI','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27397','NGO 1948 / VII','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27398','NGO 1948 / VIII','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27500','ATF / Nord de Guerre','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27581','NTF / France I','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27582','NTF / France II','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27583','NTF / France III','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27584','NTF / France IV','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27591','NTF / Nord France','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27592','NTF / Centre France','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27593','NTF / Sud France','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27594','NTF / Corse','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27700','British National Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28191','Palestine Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28192','Palestine Belt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28193','Israeli CS Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28232','Point Noire / UTM 32S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28404','S-42 zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28405','S-42 zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28406','S-42 zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28407','S-42 zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28408','S-42 zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28409','S-42 zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28410','S-42 zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28411','S-42 zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28412','S-42 zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28413','S-42 zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28414','S-42 zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28415','S-42 zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28416','S-42 zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28417','S-42 zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28418','S-42 zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28419','S-42 zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28420','S-42 zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28421','S-42 zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28422','S-42 zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28423','S-42 zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28424','S-42 zone 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28425','S-42 zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28426','S-42 zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28427','S-42 zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28428','S-42 zone 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28429','S-42 zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28430','S-42 zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28431','S-42 zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28432','S-42 zone 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28462','Pulkovo / Gauss 2N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28463','Pulkovo / Gauss 3N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28464','Pulkovo / Gauss 4N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28465','Pulkovo / Gauss 5N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28466','Pulkovo / Gauss 6N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28467','Pulkovo / Gauss 7N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28468','Pulkovo / Gauss 8N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28469','Pulkovo / Gauss 9N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28470','Pulkovo / Gauss 10N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28471','Pulkovo / Gauss 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28472','Pulkovo / Gauss 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28473','Pulkovo / Gauss 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28474','Pulkovo / Gauss 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28475','Pulkovo / Gauss 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28476','Pulkovo / Gauss 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28477','Pulkovo / Gauss 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28478','Pulkovo / Gauss 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28479','Pulkovo / Gauss 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28480','Pulkovo / Gauss 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28481','Pulkovo / Gauss 21N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28482','Pulkovo / Gauss 22N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28483','Pulkovo / Gauss 23N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28484','Pulkovo / Gauss 24N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28485','Pulkovo / Gauss 25N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28486','Pulkovo / Gauss 26N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28487','Pulkovo / Gauss 27N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28488','Pulkovo / Gauss 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28489','Pulkovo / Gauss 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28490','Pulkovo / Gauss 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28491','Pulkovo / Gauss 31N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28492','Pulkovo / Gauss 32N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28600','Qatar National Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29220','Sapper Hill / UTM 20S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29221','Sapper Hill / UTM 21S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29333','Schwarzeck / UTM 33S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29371','SW African CS zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29373','SW African CS zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29375','SW African CS zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29377','SW African CS zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29379','SW African CS zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29381','SW African CS zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29383','SW African CS zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29385','SW African CS zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29700','Tananarive / Laborde','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29738','Tananarive / UTM 38S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29739','Tananarive / UTM 39S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29849','Timbalai 1948 / UTM 49N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29850','Timbalai 1948 / UTM 50N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29871','Timbalai / Borneo (ch)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29872','Timbalai / Borneo (ftSe)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29873','Timbalai / Borneo (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29900','TM65 / Irish Nat Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30161','Tokyo / Japan zone I','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30162','Tokyo / Japan zone II','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30163','Tokyo / Japan zone III','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30164','Tokyo / Japan zone IV','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30165','Tokyo / Japan zone V','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30166','Tokyo / Japan zone VI','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30167','Tokyo / Japan zone VII','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30168','Tokyo / Japan zone VIII','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30169','Tokyo / Japan zone IX','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30170','Tokyo / Japan zone X','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30171','Tokyo / Japan zone XI','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30172','Tokyo / Japan zone XII','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30173','Tokyo / Japan zone XIII','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30174','Tokyo / Japan zone XIV','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30175','Tokyo / Japan zone XV','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30176','Tokyo / Japan zone XVI','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30177','Tokyo / Japan zone XVII','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30178','Tokyo / Japan zone XVIII','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30200','Trinidad 1903 / Cassini','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30491','Voirol75 / N Algeria old','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30492','Voirol75 / S Algeria old','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30729','Nord Sahara / UTM 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30730','Nord Sahara / UTM 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30731','Nord Sahara / UTM 31N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30732','Nord Sahara / UTM 32N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30791','Nord Sahara / N Algerie','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30792','Nord Sahara / S Algerie','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31265','MGI / Gauss zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31266','MGI / Gauss zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31267','MGI / Gauss zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31268','MGI / Gauss zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31291','MGI / Austria West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31292','MGI / Austria Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31293','MGI / Austria East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31370','BD 72 / Lambert 72','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31461','DHDN / Gauss zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31462','DHDN / Gauss zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31463','DHDN / Gauss zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31464','DHDN / Gauss zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31465','DHDN / Gauss zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31600','Stereo 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31700','Stereo 70','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32013','NAD27 / New Mexico Cent.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32018','NAD27 / New York Long Is','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32020','NAD27 / North Dakota N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32021','NAD27 / North Dakota S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32028','NAD27 / Pennsylvania N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32029','NAD27 / Pennsylvania S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32031','NAD27 / South Carolina N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32033','NAD27 / South Carolina S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32034','NAD27 / South Dakota N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32035','NAD27 / South Dakota S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32038','NAD27 / Texas North Cen.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32040','NAD27 / Texas South Cen.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32050','NAD27 / West Virginia N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32051','NAD27 / West Virginia S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32053','NAD27 / Wisconsin Cen.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32056','NAD27 / Wyoming E. Cen.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32057','NAD27 / Wyoming W. Cen.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32113','NAD83 / New Mexico Cent.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32118','NAD83 / New York Long Is','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32120','NAD83 / North Dakota N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32121','NAD83 / North Dakota S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32128','NAD83 / Pennsylvania N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32129','NAD83 / Pennsylvania S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32134','NAD83 / South Dakota N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32135','NAD83 / South Dakota S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32138','NAD83 / Texas North Cen.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32140','NAD83 / Texas South Cen.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32150','NAD83 / West Virginia N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32151','NAD83 / West Virginia S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32153','NAD83 / Wisconsin Cen.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32156','NAD83 / Wyoming E. Cen.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32157','NAD83 / Wyoming W. Cen.','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5702','NGVD29 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6359','NGVD29 depth','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4143','Côte d''Ivoire','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4143','Port Bouet','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4142','Port Bouet','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4142','Côte d''Ivoire','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2164','Cote d''Ivoire / TM 5 NW','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2164','Port Bouet / TM 5 NW','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2165','Cote d''Ivoire / TM 5 NW','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2165','Port Bouet / TM 5 NW','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6696','JGD2000','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6697','JGD2011','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2393','KKJ / Basic Coordinate System zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2391','KKJ / Basic Coordinate System zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2392','KKJ / Basic Coordinate System zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2394','KKJ / Basic Coordinate System zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31467','DHDN / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31468','DHDN / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31469','DHDN / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6787','NAD83(2011) / OCRS_BKE (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6786','NAD83(2011) / OCRS_BKE (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4178','42/83','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31466','DHDN / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2166','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2167','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4181','LUREF','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6791','NAD83(2011) / OCRS_BKF (ft)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8233','NAD83(CSRS98)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2180','EUREF89 / CS92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','3906','HR1901','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6795','NAD83(2011) / OCRS_BRP (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6794','NAD83(2011) / OCRS_BRP (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6803','NAD83(2011) / OCRS_CGP (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31275','HDKS zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31276','HDKS zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31275','D48 zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2169','LUREF / Gauss','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3396','DHDN / 3GK zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3397','DHDN / 3GK zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3398','DHDN / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3399','DHDN / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31282','MGI (Ferro) / Austria C','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31283','MGI (Ferro) / Austria E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31281','MGI (Ferro) / Austria W','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4176','AAD98','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2193','NZGD2000 / NZTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6802','NAD83(2011) / OCRS_CGP (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4300','1975 Mapping Adjustment','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2196','EUREF89 / Kp2000 Jutland','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2196','System 2000 Jylland zoner','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2197','EUREF89 / Kp2000 Zealand','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2197','System 2000 Sjaelland zoner','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2198','EUREF89 / Kp2000 Bornholm','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2198','System 2000 Bornholm zoner','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6807','NAD83(2011) / OCRS_CRE (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6810','NAD83(2011) / OCRS_CRW (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6811','NAD83(2011) / OCRS_CRW (ft)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4190','National Geodetic System [Argentina]','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6806','NAD83(2011) / OCRS_CRE (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4183','Graciosa','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4184','Sao Braz','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27561','NTF (Paris) / Nord France','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27562','NTF (Paris) / Cen France','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27563','NTF (Paris) / Sud France','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27564','NTF (Paris) / Corse','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27571','NTF (Paris) / France I','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27572','NTF (Paris) / France II','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27573','NTF (Paris) / France III','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27574','NTF (Paris) / France IV','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27572','NTF (Paris) / Lambert zone II etendu','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6815','NAD83(2011) / OCRS_CGC (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2168','Pulkovo 1942(83) / 3-degree Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2206','ED50 / Turkey zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2207','ED50 / Turkey zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2208','ED50 / Turkey zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2209','ED50 / Turkey zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2210','ED50 / Turkey zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2211','ED50 / Turkey zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2212','ED50 / Turkey zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6814','NAD83(2011) / OCRS_CGC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2189','Graciosa / UTM zone 26N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2190','Sao Braz / UTM zone 26N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4207','Lisbon 1937','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4803','Lisbon 1937 (Lisbon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20791','Lisbon 1937 (Lisbon) / Portuguese Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20790','Lisbon 1937 (Lisbon)/Portuguese National Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6819','NAD83(2011) / OCRS_DFM (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6818','NAD83(2011) / OCRS_DFM (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2040','Port Bouet / UTM zone 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2040','Côte d''Ivoire / UTM zone 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2041','Port Bouet / UTM zone 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2041','Côte d''Ivoire / UTM zone 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2042','Port Bouet / UTM zone 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2042','Côte d''Ivoire / UTM zone 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2043','Port Bouet / UTM zone 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2043','Côte d''Ivoire / UTM zone 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6823','NAD83(2011) / OCRS_EUG (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6822','NAD83(2011) / OCRS_EUG (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6827','NAD83(2011) / OCRS_GPA (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2297','Qornoq 1927 / Greenland zone 1 west','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2307','Qornoq 1927 / Greenland zone 8 west','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32113','NAD83 / New Mexico Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26949','NAD83 / Arizona Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26929','NAD83 / Alabama East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26930','NAD83 / Alabama West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26931','NAD83 / Alaska zone 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26940','NAD83 / Alaska zone 10 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26932','NAD83 / Alaska zone 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26933','NAD83 / Alaska zone 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26934','NAD83 / Alaska zone 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26935','NAD83 / Alaska zone 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26936','NAD83 / Alaska zone 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26937','NAD83 / Alaska zone 7 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26938','NAD83 / Alaska zone 8 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26939','NAD83 / Alaska zone 9 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26948','NAD83 / Arizona East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26950','NAD83 / Arizona West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26951','NAD83 / Arkansas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26952','NAD83 / Arkansas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26941','NAD83 / California zone 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26942','NAD83 / California zone 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26943','NAD83 / California zone 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26944','NAD83 / California zone 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26945','NAD83 / California zone 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26946','NAD83 / California zone 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26954','NAD83 / Colorado Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26953','NAD83 / Colorado North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26955','NAD83 / Colorado South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26956','NAD83 / Connecticut (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26957','NAD83 / Delaware (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26958','NAD83 / Florida East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26960','NAD83 / Florida North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26959','NAD83 / Florida West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26966','NAD83 / Georgia East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26967','NAD83 / Georgia West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26961','NAD83 / Hawaii zone 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26962','NAD83 / Hawaii zone 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26963','NAD83 / Hawaii zone 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26964','NAD83 / Hawaii zone 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26965','NAD83 / Hawaii zone 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26969','NAD83 / Idaho Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26968','NAD83 / Idaho East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26970','NAD83 / Idaho West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26971','NAD83 / Illinois East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26972','NAD83 / Illinois West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26973','NAD83 / Indiana East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26974','NAD83 / Indiana West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26975','NAD83 / Iowa North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26976','NAD83 / Iowa South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26977','NAD83 / Kansas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26978','NAD83 / Kansas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2205','NAD83 / Kentucky North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26980','NAD83 / Kentucky South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26981','NAD83 / Louisiana North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26982','NAD83 / Louisiana South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26983','NAD83 / Maine East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26984','NAD83 / Maine West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26985','NAD83 / Maryland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26987','NAD83 / Massachusetts Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26986','NAD83 / Massachusetts Mainland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26989','NAD83 / Michigan Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26988','NAD83 / Michigan North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26990','NAD83 / Michigan South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26992','NAD83 / Minnesota Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26991','NAD83 / Minnesota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26993','NAD83 / Minnesota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26994','NAD83 / Mississippi East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26995','NAD83 / Mississippi West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26997','NAD83 / Missouri Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26996','NAD83 / Missouri East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26998','NAD83 / Missouri West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32100','NAD83 / Montana (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32104','NAD83 / Nebraska (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32108','NAD83 / Nevada Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32107','NAD83 / Nevada East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32109','NAD83 / Nevada West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32110','NAD83 / New Hampshire (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32111','NAD83 / New Jersey (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32112','NAD83 / New Mexico East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32114','NAD83 / New Mexico West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32116','NAD83 / New York Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32115','NAD83 / New York East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32118','NAD83 / New York Long Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32117','NAD83 / New York West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32119','NAD83 / North Carolina (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32120','NAD83 / North Dakota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32121','NAD83 / North Dakota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32122','NAD83 / Ohio North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32123','NAD83 / Ohio South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32124','NAD83 / Oklahoma North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32125','NAD83 / Oklahoma South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32126','NAD83 / Oregon North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32127','NAD83 / Oregon South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32128','NAD83 / Pennsylvania North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32129','NAD83 / Pennsylvania South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32130','NAD83 / Rhode Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32133','NAD83 / South Carolina (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32134','NAD83 / South Dakota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32135','NAD83 / South Dakota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32136','NAD83 / Tennessee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32139','NAD83 / Texas Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32137','NAD83 / Texas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32138','NAD83 / Texas North Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32141','NAD83 / Texas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32140','NAD83 / Texas South Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32143','NAD83 / Utah Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32142','NAD83 / Utah North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32144','NAD83 / Utah South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32145','NAD83 / Vermont (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32146','NAD83 / Virginia North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32147','NAD83 / Virginia South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32148','NAD83 / Washington North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32149','NAD83 / Washington South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32150','NAD83 / West Virginia North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32151','NAD83 / West Virginia South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32153','NAD83 / Wisconsin Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32152','NAD83 / Wisconsin North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32154','NAD83 / Wisconsin South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32155','NAD83 / Wyoming East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32156','NAD83 / Wyoming East Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32158','NAD83 / Wyoming West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32157','NAD83 / Wyoming West Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32161','NAD83 / Puerto Rico & Virgin Is. (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6826','NAD83(2011) / OCRS_GPA (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4282','Congo 1960 Pointe Noire','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28232','Congo 1960 Pointe Noire / UTM zone 32S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21149','Genuk / UTM zone 49S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2308','Genuk / TM 109 SE','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5705','Kronstadt 1977 height','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4199','New Egyptian','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4229','Old Egyptian','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32064','NAD27 / UTM zone 14N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32065','NAD27 / UTM zone 15N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32066','NAD27 / UTM zone 16N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32067','NAD27 / UTM zone 17N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6831','NAD83(2011) / OCRS_GWS (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2319','ED50 / 3-degree Gauss-Kruger CM 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2320','ED50 / 3-degree Gauss-Kruger CM 30E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2321','ED50 / 3-degree Gauss-Kruger CM 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2322','ED50 / 3-degree Gauss-Kruger CM 36E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2323','ED50 / 3-degree Gauss-Kruger CM 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2324','ED50 / 3-degree Gauss-Kruger CM 42E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2325','ED50 / 3-degree Gauss-Kruger CM 45E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6830','NAD83(2011) / OCRS_GWS (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5736','Huang Hai 1956 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5738','Hong Kong Principal Datum height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2343','Xian 1980 / 6-degree Gauss-Kruger CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2344','Xian 1980 / 6-degree Gauss-Kruger CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2338','Xian 1980 / 6-degree Gauss-Kruger CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2342','Xian 1980 / 6-degree Gauss-Kruger CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2348','Xian 1980 / 6-degree Gauss-Kruger CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2339','Xian 1980 / 6-degree Gauss-Kruger CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2340','Xian 1980 / 6-degree Gauss-Kruger CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2341','Xian 1980 / 6-degree Gauss-Kruger CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2345','Xian 1980 / 6-degree Gauss-Kruger CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2346','Xian 1980 / 6-degree Gauss-Kruger CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2347','Xian 1980 / 6-degree Gauss-Kruger CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5737','Huang Hai 1985 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2326','HK 1980 Grid System','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4611','HK1980','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2327','Xian 1980 / 6-degree Gauss-Kruger zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2328','Xian 1980 / 6-degree Gauss-Kruger zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2329','Xian 1980 / 6-degree Gauss-Kruger zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2330','Xian 1980 / 6-degree Gauss-Kruger zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2331','Xian 1980 / 6-degree Gauss-Kruger zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2332','Xian 1980 / 6-degree Gauss-Kruger zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2333','Xian 1980 / 6-degree Gauss-Kruger zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2334','Xian 1980 / 6-degree Gauss-Kruger zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2335','Xian 1980 / 6-degree Gauss-Kruger zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2336','Xian 1980 / 6-degree Gauss-Kruger zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2337','Xian 1980 / 6-degree Gauss-Kruger zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21413','Beijing 1954 / 6-degree Gauss-Kruger zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21414','Beijing 1954 / 6-degree Gauss-Kruger zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21415','Beijing 1954 / 6-degree Gauss-Kruger zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21416','Beijing 1954 / 6-degree Gauss-Kruger zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21417','Beijing 1954 / 6-degree Gauss-Kruger zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21418','Beijing 1954 / 6-degree Gauss-Kruger zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21419','Beijing 1954 / 6-degree Gauss-Kruger zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21420','Beijing 1954 / 6-degree Gauss-Kruger zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21421','Beijing 1954 / 6-degree Gauss-Kruger zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21422','Beijing 1954 / 6-degree Gauss-Kruger zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21423','Beijing 1954 / 6-degree Gauss-Kruger zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21453','Beijing 1954 / 6-degree Gauss-Kruger CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21454','Beijing 1954 / 6-degree Gauss-Kruger CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21455','Beijing 1954 / 6-degree Gauss-Kruger CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21456','Beijing 1954 / 6-degree Gauss-Kruger CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21457','Beijing 1954 / 6-degree Gauss-Kruger CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21458','Beijing 1954 / 6-degree Gauss-Kruger CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21459','Beijing 1954 / 6-degree Gauss-Kruger CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21460','Beijing 1954 / 6-degree Gauss-Kruger CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21461','Beijing 1954 / 6-degree Gauss-Kruger CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21462','Beijing 1954 / 6-degree Gauss-Kruger CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21463','Beijing 1954 / 6-degree Gauss-Kruger CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2044','Hanoi 1972 / 6-degree Gauss-Kruger zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2045','Hanoi 1972 / 6-degree Gauss-Kruger zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2462','Albanian 1987 / 6-degree Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2397','Pulkovo 1942(83) / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2398','Pulkovo 1942(83) / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2399','Pulkovo 1942(83) / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2395','S Yemen / G-K zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2396','S Yemen / G-K zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2396','South Yemen / 6-degree Gauss-Kruger zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2395','South Yemen / 6-degree Gauss-Kruger zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22191','Campo Inchauspe / Gauss-Kruger zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22192','Campo Inchauspe / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22193','Campo Inchauspe / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22194','Campo Inchauspe / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22195','Campo Inchauspe / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22196','Campo Inchauspe / Gauss-Kruger zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22197','Campo Inchauspe / Gauss-Kruger zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2081','Chos Malal 1914 / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2082','Pampa del Castillo / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2083','Hito XVIII 1963 / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20004','Pulkovo 1995 / 6-degree Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20005','Pulkovo 1995 / 6-degree Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20006','Pulkovo 1995 / 6-degree Gauss-Kruger zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20007','Pulkovo 1995 / 6-degree Gauss-Kruger zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20008','Pulkovo 1995 / 6-degree Gauss-Kruger zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20009','Pulkovo 1995 / 6-degree Gauss-Kruger zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20010','Pulkovo 1995 / 6-degree Gauss-Kruger zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20011','Pulkovo 1995 / 6-degree Gauss-Kruger zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20012','Pulkovo 1995 / 6-degree Gauss-Kruger zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20013','Pulkovo 1995 / 6-degree Gauss-Kruger zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20014','Pulkovo 1995 / 6-degree Gauss-Kruger zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20015','Pulkovo 1995 / 6-degree Gauss-Kruger zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20016','Pulkovo 1995 / 6-degree Gauss-Kruger zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20017','Pulkovo 1995 / 6-degree Gauss-Kruger zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20018','Pulkovo 1995 / 6-degree Gauss-Kruger zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20019','Pulkovo 1995 / 6-degree Gauss-Kruger zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20020','Pulkovo 1995 / 6-degree Gauss-Kruger zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20021','Pulkovo 1995 / 6-degree Gauss-Kruger zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20022','Pulkovo 1995 / 6-degree Gauss-Kruger zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20023','Pulkovo 1995 / 6-degree Gauss-Kruger zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20024','Pulkovo 1995 / 6-degree Gauss-Kruger zone 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20025','Pulkovo 1995 / 6-degree Gauss-Kruger zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20026','Pulkovo 1995 / 6-degree Gauss-Kruger zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20027','Pulkovo 1995 / 6-degree Gauss-Kruger zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20028','Pulkovo 1995 / 6-degree Gauss-Kruger zone 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20029','Pulkovo 1995 / 6-degree Gauss-Kruger zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20030','Pulkovo 1995 / 6-degree Gauss-Kruger zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20031','Pulkovo 1995 / 6-degree Gauss-Kruger zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20032','Pulkovo 1995 / 6-degree Gauss-Kruger zone 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28402','Pulkovo 1942 / 6-degree Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28403','Pulkovo 1942 / 6-degree Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28404','Pulkovo 1942 / 6-degree Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28405','Pulkovo 1942 / 6-degree Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28406','Pulkovo 1942 / 6-degree Gauss-Kruger zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28407','Pulkovo 1942 / 6-degree Gauss-Kruger zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28408','Pulkovo 1942 / 6-degree Gauss-Kruger zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28409','Pulkovo 1942 / 6-degree Gauss-Kruger zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28410','Pulkovo 1942 / 6-degree Gauss-Kruger zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28411','Pulkovo 1942 / 6-degree Gauss-Kruger zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28412','Pulkovo 1942 / 6-degree Gauss-Kruger zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28413','Pulkovo 1942 / 6-degree Gauss-Kruger zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28414','Pulkovo 1942 / 6-degree Gauss-Kruger zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28415','Pulkovo 1942 / 6-degree Gauss-Kruger zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28416','Pulkovo 1942 / 6-degree Gauss-Kruger zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28417','Pulkovo 1942 / 6-degree Gauss-Kruger zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28418','Pulkovo 1942 / 6-degree Gauss-Kruger zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28419','Pulkovo 1942 / 6-degree Gauss-Kruger zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28420','Pulkovo 1942 / 6-degree Gauss-Kruger zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28421','Pulkovo 1942 / 6-degree Gauss-Kruger zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28422','Pulkovo 1942 / 6-degree Gauss-Kruger zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28423','Pulkovo 1942 / 6-degree Gauss-Kruger zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28424','Pulkovo 1942 / 6-degree Gauss-Kruger zone 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28425','Pulkovo 1942 / 6-degree Gauss-Kruger zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28426','Pulkovo 1942 / 6-degree Gauss-Kruger zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28427','Pulkovo 1942 / 6-degree Gauss-Kruger zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28428','Pulkovo 1942 / 6-degree Gauss-Kruger zone 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28429','Pulkovo 1942 / 6-degree Gauss-Kruger zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28430','Pulkovo 1942 / 6-degree Gauss-Kruger zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28431','Pulkovo 1942 / 6-degree Gauss-Kruger zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28432','Pulkovo 1942 / 6-degree Gauss-Kruger zone 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2463','Pulkovo 1995 / 6-degree Gauss-Kruger CM 21E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2464','Pulkovo 1995 / 6-degree Gauss-Kruger CM 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2465','Pulkovo 1995 / 6-degree Gauss-Kruger CM 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2466','Pulkovo 1995 / 6-degree Gauss-Kruger CM 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2467','Pulkovo 1995 / 6-degree Gauss-Kruger CM 45E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2468','Pulkovo 1995 / 6-degree Gauss-Kruger CM 51E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2469','Pulkovo 1995 / 6-degree Gauss-Kruger CM 57E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2470','Pulkovo 1995 / 6-degree Gauss-Kruger CM 63E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2471','Pulkovo 1995 / 6-degree Gauss-Kruger CM 69E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2472','Pulkovo 1995 / 6-degree Gauss-Kruger CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2473','Pulkovo 1995 / 6-degree Gauss-Kruger CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2474','Pulkovo 1995 / 6-degree Gauss-Kruger CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2475','Pulkovo 1995 / 6-degree Gauss-Kruger CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2476','Pulkovo 1995 / 6-degree Gauss-Kruger CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2477','Pulkovo 1995 / 6-degree Gauss-Kruger CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2478','Pulkovo 1995 / 6-degree Gauss-Kruger CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2479','Pulkovo 1995 / 6-degree Gauss-Kruger CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2480','Pulkovo 1995 / 6-degree Gauss-Kruger CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2481','Pulkovo 1995 / 6-degree Gauss-Kruger CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2482','Pulkovo 1995 / 6-degree Gauss-Kruger CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2483','Pulkovo 1995 / 6-degree Gauss-Kruger CM 141E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2484','Pulkovo 1995 / 6-degree Gauss-Kruger CM 147E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2485','Pulkovo 1995 / 6-degree Gauss-Kruger CM 153E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2486','Pulkovo 1995 / 6-degree Gauss-Kruger CM 159E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2487','Pulkovo 1995 / 6-degree Gauss-Kruger CM 165E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2488','Pulkovo 1995 / 6-degree Gauss-Kruger CM 171E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2489','Pulkovo 1995 / 6-degree Gauss-Kruger CM 177E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2490','Pulkovo 1995 / 6-degree Gauss-Kruger CM 177W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2491','Pulkovo 1995 / 6-degree Gauss-Kruger CM 171W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2492','Pulkovo 1942 / 6-degree Gauss-Kruger CM 9E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2493','Pulkovo 1942 / 6-degree Gauss-Kruger CM 15E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2494','Pulkovo 1942 / 6-degree Gauss-Kruger CM 21E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2495','Pulkovo 1942 / 6-degree Gauss-Kruger CM 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2496','Pulkovo 1942 / 6-degree Gauss-Kruger CM 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2497','Pulkovo 1942 / 6-degree Gauss-Kruger CM 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2498','Pulkovo 1942 / 6-degree Gauss-Kruger CM 45E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2499','Pulkovo 1942 / 6-degree Gauss-Kruger CM 51E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2500','Pulkovo 1942 / 6-degree Gauss-Kruger CM 57E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2501','Pulkovo 1942 / 6-degree Gauss-Kruger CM 63E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2502','Pulkovo 1942 / 6-degree Gauss-Kruger CM 69E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2503','Pulkovo 1942 / 6-degree Gauss-Kruger CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2504','Pulkovo 1942 / 6-degree Gauss-Kruger CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2505','Pulkovo 1942 / 6-degree Gauss-Kruger CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2506','Pulkovo 1942 / 6-degree Gauss-Kruger CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2507','Pulkovo 1942 / 6-degree Gauss-Kruger CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2508','Pulkovo 1942 / 6-degree Gauss-Kruger CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2509','Pulkovo 1942 / 6-degree Gauss-Kruger CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2510','Pulkovo 1942 / 6-degree Gauss-Kruger CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2511','Pulkovo 1942 / 6-degree Gauss-Kruger CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2512','Pulkovo 1942 / 6-degree Gauss-Kruger CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2513','Pulkovo 1942 / 6-degree Gauss-Kruger CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2514','Pulkovo 1942 / 6-degree Gauss-Kruger CM 141E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2515','Pulkovo 1942 / 6-degree Gauss-Kruger CM 147E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2516','Pulkovo 1942 / 6-degree Gauss-Kruger CM 153E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2517','Pulkovo 1942 / 6-degree Gauss-Kruger CM 159E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2518','Pulkovo 1942 / 6-degree Gauss-Kruger CM 165E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2519','Pulkovo 1942 / 6-degree Gauss-Kruger CM 171E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2520','Pulkovo 1942 / 6-degree Gauss-Kruger CM 177E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2521','Pulkovo 1942 / 6-degree Gauss-Kruger CM 177W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2522','Pulkovo 1942 / 6-degree Gauss-Kruger CM 171W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6792','CORS96 / OCRS_BRP (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6801','CORS96 / OCRS_CGP (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6800','CORS96 / OCRS_CGP (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6805','CORS96 / OCRS_CRE (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6809','CORS96 / OCRS_CRW (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6804','CORS96 / OCRS_CRE (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6808','CORS96 / OCRS_CRW (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6813','CORS96 / OCRS_CGC (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6812','CORS96 / OCRS_CGC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6817','CORS96 / OCRS_DFM (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6816','CORS96 / OCRS_DFM (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6821','CORS96 / OCRS_EUG (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6820','CORS96 / OCRS_EUG (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6825','CORS96 / OCRS_GPA (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6824','CORS96 / OCRS_GPA (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6829','CORS96 / OCRS_GWS (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6828','CORS96 / OCRS_GWS (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6832','CORS96 / OCRS_LDG (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6833','CORS96 / OCRS_LDG (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6835','NAD83(2011) / OCRS_LDG (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6837','CORS96 / OCRS_ONT (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6838','NAD83(2011) / OCRS_ONT (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4327','DGN-95 (geographic 3D)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4328','DGN-95 (geocentric)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6834','NAD83(2011) / OCRS_LDG (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6839','NAD83(2011) / OCRS_ONT (ft)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4613','Samboja','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4613','P2 Exc-T9','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4613','P2 Exc','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6840','CORS96 / OCRS_ORC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2933','Samboja / UTM zone 50S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2933','P2 Exc-T9 / UTM zone 50S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2952','NAD83(CSRS) / SCoPQ zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2945','NAD83(CSRS) / SCoPQ zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2946','NAD83(CSRS) / SCoPQ zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2947','NAD83(CSRS) / SCoPQ zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2948','NAD83(CSRS) / SCoPQ zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2949','NAD83(CSRS) / SCoPQ zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2950','NAD83(CSRS) / SCoPQ zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2951','NAD83(CSRS) / SCoPQ zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22991','Egypt 1907 / Green Belt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26191','Merchich / Zone 1 Nord Maroc','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26192','Merchich / Zone 2 Sud Maroc','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26194','Merchich / Zone 3 Sahara Nord','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26195','Merchich / Zone 4 Sahara Sud','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4620','12th Parallel traverse','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5732','Belfast Lough height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6836','CORS96 / OCRS_ONT (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6841','CORS96 / OCRS_ORC (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31281','Gebrauchsnetz M28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31282','Gebrauchsnetz M31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31283','Gebrauchsnetz M34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31288','Bundesmeldenetz M28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31289','Bundesmeldenetz M31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31290','Bundesmeldenetz M34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6842','NAD83(2011) / OCRS_ORC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6843','NAD83(2011) / OCRS_ORC (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6844','CORS96 / OCRS_PDT (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6845','CORS96 / OCRS_PDT (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6846','NAD83(2011) / OCRS_PDT (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6848','CORS96 / OCRS_PLG (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6849','CORS96 / OCRS_PLG (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6850','NAD83(2011) / OCRS_PLG (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6851','NAD83(2011) / OCRS_PLG (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6847','NAD83(2011) / OCRS_PDT (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6852','CORS96 / OCRS_PDX (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6853','CORS96 / OCRS_PDX (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6854','NAD83(2011) / OCRS_PDX (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','7707','Newlyn (Offshore) height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6855','NAD83(2011) / OCRS_PDX (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6856','CORS96 / OCRS_SLE (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6857','CORS96 / OCRS_SLE (ft)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4346','ETRF89 (geocentric)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4346','EUREF89 (geocentric)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4638','St Pierre Miquelon 1950','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2984','RGNC 1991 / Lambert NC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6858','NAD83(2011) / OCRS_SLE (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2985','Petrels 1972 / Terre Adelie Stereo','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2986','Perroud 1950 / Terre Adelie Stereo','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4634','MHNC72','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2982','MHNC72 / UTM zone 58S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4339','AAD98 (3D)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4340','AAD98 (geocentric)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4345','ETRF89 (3D)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4345','EUREF89 (3D)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4356','LKS94 (geocentric)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4126','LKS94','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4355','LKS94 (3D)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4365','National Geodetic System [Argentina] (3D)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4366','National Geodetic System [Argentina] (geocentric)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4820','Samboja (Jakarta)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6859','NAD83(2011) / OCRS_SLE (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6870','KRGJSH-2010','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6862','NAD83(2011) / OCRS_SAN (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6862','NAD83(2011) / Oregon Sweet Home-Sisters zone (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4289','Stelsel van de Rijksdriehoeksmeting','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6863','NAD83(2011) / OCRS_SAN (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3019','RT90 7.5 gon V 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6798','NAD83(2011) / OCRS_BBU (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3020','RT90 5 gon V 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3021','RT90 2.5 gon V 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3022','RT90 0 gon 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3023','RT90 2.5 gon O 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3024','RT90 5 gon O 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6790','NAD83(2011) / OCRS_BKF (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6799','NAD83(2011) / OCRS_BBU (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6797','NAD83(CORS96) / Oregon Bend-Vale zone (ft)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5758','IGN89 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6797','CORS96 / OCRS_BBU (ft)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4183','Base SW','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4665','Base SW','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4665','Graciosa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2189','Base SW / UTM zone 26N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4664','Sao Braz','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3062','Sao Braz / UTM zone 26N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3063','Base SW / UTM zone 26N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3063','Graciosa / UTM zone 26N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4615','Porto Santo 1936','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4663','Base SE','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2942','Base SE / UTM zone 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3061','Base SE / UTM zone 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3028','RT38 0 gon 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3029','RT38 2.5 gon O 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3027','RT38 2.5 gon V 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3030','RT38 5 gon O 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3026','RT38 5 gon V 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3025','RT38 2.5 gon V 0:-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7793','RDN2008 / TM34 (E-N)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4615','Base SE','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25884','LKS92 / TM Baltic93','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25884','LKS94 / TM Baltic93','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25884','EST97 / TM Baltic93','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3300','EST92','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3301','EST97','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3059','LKS92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4131','Indian (DMA Reduced)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3176','Indian (DMA Reduced) / TM 106 NE','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3148','Indian (DMA Reduced) / UTM zone 48N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3149','Indian (DMA Reduced) / UTM zone 49N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4930','AAD98','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6863','NAD83(2011) / Oregon Sweet Home-Sisters zone (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6796','CORS96 / OCRS_BBU (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4950','LKS94 (ETRS89)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4931','AAD98','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8235','NAD83(CSRS98)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4951','LKS94 (ETRS89)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6861','NAD83(CORS96) / Oregon Sweet Home-Sisters zone (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6860','CORS96 / OCRS_SAN (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4265','Rome 1940','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4806','Rome 1940 (Rome)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3004','Rome 1940 / Italy zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3003','Rome 1940 / Italy zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3066','ED50 / Jordan Transverse Mercator','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2157','ETRS89 / ITM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6860','NAD83(CORS96) / Oregon Sweet Home-Sisters zone (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4173','ETRS89','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4269','NAD83(1986)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4170','SIRGAS','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4974','SIRGAS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32000','SIRGAS / UTM zone 25S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31999','SIRGAS / UTM zone 24S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31998','SIRGAS / UTM zone 23S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31997','SIRGAS / UTM zone 22S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31996','SIRGAS / UTM zone 21S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31995','SIRGAS / UTM zone 20S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31994','SIRGAS / UTM zone 19S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31993','SIRGAS / UTM zone 18S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31992','SIRGAS / UTM zone 17S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31991','SIRGAS / UTM zone 22N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31990','SIRGAS / UTM zone 21N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31989','SIRGAS / UTM zone 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31988','SIRGAS / UTM zone 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31987','SIRGAS / UTM zone 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31986','SIRGAS / UTM zone 17N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4975','SIRGAS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6861','CORS96 / OCRS_SAN (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3069','NAD27 / WTM 27','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5723','Japanese Standard Levelling Datum height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7005','Nahrwan 1934 / UTM 37N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6875','RDN2008 / Fuso Italia (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6876','RDN2008 / Fuso 12 (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5787','Baltic 1980 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5782','REDNAP height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3072','Maine Coordinate System of 2000 East Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3073','Maine Coordinate System of 2000 Central Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3074','Maine Coordinate System of 2000 West Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2802','Maine Coordinate System of 1983 East Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2803','Maine Coordinate System of 1983 West Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26783','Maine Coordinate System of 1927 East Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26784','Maine Coordinate System of 1927 West Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26984','Maine Coordinate System of 1983 West Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26983','Maine Coordinate System of 1983 East Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3078','Michigan GeoRef','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3081','NAD83 / TSMS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3083','NAD83 / TX Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3083','Texas Centric Mapping System / Albers Equal Area','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3082','Texas Centric Mapping System / Lambert Conformal','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3082','TCMS/LC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3091','NAD83(HPGN) / Kentucky Single Zone (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3089','NAD83 / KY1Z (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3087','NAD83(HPGN) / Florida GDL Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3085','NAD83(HPGN) / Texas Centric Albers Equal Area','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3084','NAD83(HPGN) / Texas Centric Lambert Conformal','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3079','NAD83(HPGN) / Michigan Oblique Mercator','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3077','NAD83(HPGN) / Maine CS2000 West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3076','NAD83(HPGN) / Maine CS2000 Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3075','NAD83(HPGN) / Maine CS2000 East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3071','NAD83(HPGN) / Wisconsin Transverse Mercator','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3070','NAD83 / WTM 83','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3088','KY1Z','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3090','KY1Z','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3090','NAD83(HPGN) / Kentucky Single Zone','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','NAD83(HPGN)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4956','NAD83(HPGN)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4957','NAD83(HPGN)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2195','NAD83(HPGN) / UTM zone 2S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2759','NAD83(HPGN) / Alabama East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2760','NAD83(HPGN) / Alabama West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2761','NAD83(HPGN) / Arizona East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2762','NAD83(HPGN) / Arizona Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2763','NAD83(HPGN) / Arizona West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2764','NAD83(HPGN) / Arkansas North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2765','NAD83(HPGN) / Arkansas South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2766','NAD83(HPGN) / California zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2767','NAD83(HPGN) / California zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2768','NAD83(HPGN) / California zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2769','NAD83(HPGN) / California zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2770','NAD83(HPGN) / California zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2771','NAD83(HPGN) / California zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2772','NAD83(HPGN) / Colorado North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2773','NAD83(HPGN) / Colorado Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2774','NAD83(HPGN) / Colorado South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2775','NAD83(HPGN) / Connecticut','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2776','NAD83(HPGN) / Delaware','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2777','NAD83(HPGN) / Florida East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2778','NAD83(HPGN) / Florida West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2779','NAD83(HPGN) / Florida North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2780','NAD83(HPGN) / Georgia East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2781','NAD83(HPGN) / Georgia West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2782','NAD83(HPGN) / Hawaii zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2783','NAD83(HPGN) / Hawaii zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2784','NAD83(HPGN) / Hawaii zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2785','NAD83(HPGN) / Hawaii zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2786','NAD83(HPGN) / Hawaii zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2787','NAD83(HPGN) / Idaho East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2788','NAD83(HPGN) / Idaho Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2789','NAD83(HPGN) / Idaho West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2790','NAD83(HPGN) / Illinois East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2791','NAD83(HPGN) / Illinois West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2792','NAD83(HPGN) / Indiana East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2793','NAD83(HPGN) / Indiana West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2794','NAD83(HPGN) / Iowa North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2795','NAD83(HPGN) / Iowa South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2796','NAD83(HPGN) / Kansas North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2797','NAD83(HPGN) / Kansas South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2798','NAD83(HPGN) / Kentucky North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2799','NAD83(HPGN) / Kentucky South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2800','NAD83(HPGN) / Louisiana North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2801','NAD83(HPGN) / Louisiana South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2802','NAD83(HPGN) / Maine East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2803','NAD83(HPGN) / Maine West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2804','NAD83(HPGN) / Maryland','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2805','NAD83(HPGN) / Massachusetts Mainland','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2806','NAD83(HPGN) / Massachusetts Island','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2807','NAD83(HPGN) / Michigan North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2808','NAD83(HPGN) / Michigan Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2809','NAD83(HPGN) / Michigan South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2810','NAD83(HPGN) / Minnesota North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2811','NAD83(HPGN) / Minnesota Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2812','NAD83(HPGN) / Minnesota South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2813','NAD83(HPGN) / Mississippi East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2814','NAD83(HPGN) / Mississippi West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2815','NAD83(HPGN) / Missouri East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2816','NAD83(HPGN) / Missouri Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2817','NAD83(HPGN) / Missouri West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2818','NAD83(HPGN) / Montana','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2819','NAD83(HPGN) / Nebraska','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2820','NAD83(HPGN) / Nevada East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2821','NAD83(HPGN) / Nevada Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2822','NAD83(HPGN) / Nevada West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2823','NAD83(HPGN) / New Hampshire','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2824','NAD83(HPGN) / New Jersey','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2825','NAD83(HPGN) / New Mexico East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2826','NAD83(HPGN) / New Mexico Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2827','NAD83(HPGN) / New Mexico West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2828','NAD83(HPGN) / New York East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2829','NAD83(HPGN) / New York Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2830','NAD83(HPGN) / New York West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2831','NAD83(HPGN) / New York Long Island','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2832','NAD83(HPGN) / North Dakota North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2833','NAD83(HPGN) / North Dakota South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2834','NAD83(HPGN) / Ohio North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2835','NAD83(HPGN) / Ohio South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2836','NAD83(HPGN) / Oklahoma North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2837','NAD83(HPGN) / Oklahoma South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2838','NAD83(HPGN) / Oregon North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2839','NAD83(HPGN) / Oregon South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2840','NAD83(HPGN) / Rhode Island','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2841','NAD83(HPGN) / South Dakota North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2842','NAD83(HPGN) / South Dakota South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2843','NAD83(HPGN) / Tennessee','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2844','NAD83(HPGN) / Texas North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2845','NAD83(HPGN) / Texas North Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2846','NAD83(HPGN) / Texas Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2847','NAD83(HPGN) / Texas South Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2848','NAD83(HPGN) / Texas South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2849','NAD83(HPGN) / Utah North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2850','NAD83(HPGN) / Utah Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2851','NAD83(HPGN) / Utah South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2852','NAD83(HPGN) / Vermont','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2853','NAD83(HPGN) / Virginia North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2854','NAD83(HPGN) / Virginia South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2855','NAD83(HPGN) / Washington North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2856','NAD83(HPGN) / Washington South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2857','NAD83(HPGN) / West Virginia North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2858','NAD83(HPGN) / West Virginia South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2859','NAD83(HPGN) / Wisconsin North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2860','NAD83(HPGN) / Wisconsin Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2861','NAD83(HPGN) / Wisconsin South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2862','NAD83(HPGN) / Wyoming East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2863','NAD83(HPGN) / Wyoming East Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2864','NAD83(HPGN) / Wyoming West Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2865','NAD83(HPGN) / Wyoming West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2866','NAD83(HPGN) / Puerto Rico and Virgin Is.','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2867','NAD83(HPGN) / Arizona East (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2868','NAD83(HPGN) / Arizona Central (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2869','NAD83(HPGN) / Arizona West (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2870','NAD83(HPGN) / California zone 1 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2871','NAD83(HPGN) / California zone 2 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2872','NAD83(HPGN) / California zone 3 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2873','NAD83(HPGN) / California zone 4 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2874','NAD83(HPGN) / California zone 5 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2875','NAD83(HPGN) / California zone 6 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2876','NAD83(HPGN) / Colorado North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2877','NAD83(HPGN) / Colorado Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2878','NAD83(HPGN) / Colorado South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2879','NAD83(HPGN) / Connecticut (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2880','NAD83(HPGN) / Delaware (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2881','NAD83(HPGN) / Florida East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2882','NAD83(HPGN) / Florida West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2883','NAD83(HPGN) / Florida North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2884','NAD83(HPGN) / Georgia East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2885','NAD83(HPGN) / Georgia West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2886','NAD83(HPGN) / Idaho East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2887','NAD83(HPGN) / Idaho Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2888','NAD83(HPGN) / Idaho West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2891','NAD83(HPGN) / Kentucky North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2892','NAD83(HPGN) / Kentucky South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2893','NAD83(HPGN) / Maryland (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2894','NAD83(HPGN) / Massachusetts Mainland (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2895','NAD83(HPGN) / Massachusetts Island (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2896','NAD83(HPGN) / Michigan North (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2897','NAD83(HPGN) / Michigan Central (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2898','NAD83(HPGN) / Michigan South (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2899','NAD83(HPGN) / Mississippi East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2900','NAD83(HPGN) / Mississippi West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2901','NAD83(HPGN) / Montana (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2902','NAD83(HPGN) / New Mexico East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2903','NAD83(HPGN) / New Mexico Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2904','NAD83(HPGN) / New Mexico West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2905','NAD83(HPGN) / New York East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2906','NAD83(HPGN) / New York Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2907','NAD83(HPGN) / New York West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2908','NAD83(HPGN) / New York Long Island (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2909','NAD83(HPGN) / North Dakota North (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2910','NAD83(HPGN) / North Dakota South (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2911','NAD83(HPGN) / Oklahoma North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2912','NAD83(HPGN) / Oklahoma South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2913','NAD83(HPGN) / Oregon North (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2914','NAD83(HPGN) / Oregon South (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2915','NAD83(HPGN) / Tennessee (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2916','NAD83(HPGN) / Texas North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2917','NAD83(HPGN) / Texas North Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2918','NAD83(HPGN) / Texas Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2919','NAD83(HPGN) / Texas South Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2920','NAD83(HPGN) / Texas South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2921','NAD83(HPGN) / Utah North (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2922','NAD83(HPGN) / Utah Central (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2923','NAD83(HPGN) / Utah South (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2924','NAD83(HPGN) / Virginia North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2925','NAD83(HPGN) / Virginia South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2926','NAD83(HPGN) / Washington North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2927','NAD83(HPGN) / Washington South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2928','NAD83(HPGN) / Wisconsin North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2929','NAD83(HPGN) / Wisconsin Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2930','NAD83(HPGN) / Wisconsin South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2967','NAD83(HPGN) / Indiana East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2968','NAD83(HPGN) / Indiana West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2993','NAD83(HPGN) / LCC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2994','NAD83(HPGN) / Oregon GIC Lambert (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3088','NAD83 / Kentucky Single Zone (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6879','NAD83(2011) / Wisconsin Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3089','KY1Z','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3091','NAD83(HARN) / KY1Z (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4622','Sainte Anne','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4625','Fort Desaix','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4626','Piton des Neiges','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2970','Sainte Anne / UTM zn 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2973','Fort Desaix / UTM zn 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2990','Piton des Neiges / TM Reunion','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5757','IGN 1988 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5756','IGN 1987','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5758','IGN 1989 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5793','IGN 1950 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5794','IGN 1955 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5795','IGN 1951 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3106','Gulshan / Bangladesh TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3108','ETRS89 / New Guernsey Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3109','ETRF89 / Jersey Transverse Mercator','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3109','ETRS89 / JTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3109','ETRF89 / JTM','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5713','CVD28 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5713','Canadian Vertical Datum of 1928 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3108','ETRF89 / Guernsey Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6879','NAD83(2011) / WI C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3110','Vicgrid','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4994','New Luzon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4683','New Luzon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4995','New Luzon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3125','New Luzon / Philippines zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3124','New Luzon / Philippines zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3123','New Luzon / Philippines zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3122','New Luzon / Philippines zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3121','New Luzon / Philippines zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21897','Bogota / Colombia Bogota','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21899','Bogota / Colombia 6E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21898','Bogota / Colombia 3E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21896','Bogota / Colombia 3W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6880','NAD83(2011) / NE (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3034','ETRS - LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3035','ETRS - LAEA','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3038','ETRS - TM26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3039','ETRS - TM27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3040','ETRS - TM28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3041','ETRS - TM29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3042','ETRS - TM30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3043','ETRS - TM31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3044','ETRS - TM32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3045','ETRS - TM33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3046','ETRS - TM34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3047','ETRS - TM35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3048','ETRS - TM36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3049','ETRS - TM37','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3050','ETRS - TM38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3051','ETRS - TM39','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4936','ETRS89 / (X, Y, Z)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4937','ETRS89','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5730','EVRF_AMST / NH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6884','NAD83(CORS96) / Oregon North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2462','AL_ALB87 / TM_6','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5777','AL_DUR / NOH','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5778','AT_TRIE / NOH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31281','AT_MGI / AT_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31282','AT_MGI / AT_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31283','AT_MGI / AT_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31370','(BE_BD72 / LAMB72 - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5786','BG_KRON / NH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31275','HR_HDKS / HR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31276','HR_HDKS / HR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2065','CZ_S-JTSK / KROVAK','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2065','SK_S-JTSK / KROVAK','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23032','(DK_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23033','(DK_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5733','DK_DK10 / OH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3301','EE_L-EST97 / EST_LAMB','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5705','EE_KRON / NH','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5705','Baltic height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2393','FI_KKJ / FI_TM','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5717','FI_HELS / OH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2192','(FR_ED50 / EUROLAMB - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27562','(FR_NTF / FR_LAMB - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27564','(FR_NTF / FR_LAMB - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27561','(FR_NTF / FR_LAMB - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27563','(FR_NTF / FR_LAMB - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27572','(FR_NTF / FR_LAMB - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2154','(FR_RGF93 / LAMB93 - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5720','FR_MARS / NH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31466','DE_DHDN / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31467','DE_DHDN / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31468','DE_DHDN / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31469','DE_DHDN / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3398','DE_RD/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3399','DE_RD/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3396','DE_PD/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3397','DE_PD/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5785','DE_KRON / NH','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5783','DE_AMST / NH','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5784','DE_AMST / NOH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2399','DE_42/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2398','DE_42/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2397','DE_42/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3045','DE_ETRS89 / UTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23030','(GI_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5701','GB_NEWL / OH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2100','(GR_GGRS87 / GR_TM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27700','(GB_OSGB36 / NATIONALGRID - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5787','HU_KRON / NH','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5731','IE_MALH / OH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29902','(IE_IRELAND65 / IRELAND75_IRISHGRID - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29902','(NI_IRELAND65 / IRELAND75_IRISHGRID - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23033','(IT_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23032','(IT_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3003','(IT_ROMA40 / EAST_WEST - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3004','(IT_ROMA40 / EAST_WEST - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3059','LV_LKS-92 / LV_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2600','LT_LKS94 / LT_TM','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5774','LU_AMST / OH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2169','LU_LUREF / LU_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28992','(NL_RD / DUTCH_ST - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5709','NL_AMST / OH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3044','NO_ETRS89 / UTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3045','NO_ETRS89 / UTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3047','NO_ETRS89 / UTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27391','NO_NGO1948 / NO_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27392','NO_NGO1948 / NO_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27393','NO_NGO1948 / NO_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27394','NO_NGO1948 / NO_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27395','NO_NGO1948 / NO_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27396','NO_NGO1948 / NO_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27397','NO_NGO1948 / NO_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27398','NO_NGO1948 / NO_TM','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5776','NO_TREG / NOH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2180','PL_EUREF89 / 1992','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2179','PL_EUREF89 / 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2178','PL_EUREF89 / 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2177','PL_EUREF89 / 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2176','PL_EUREF89 / 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2171','PL_42/58 / 1965','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2172','PL_42/58 / 1965','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2173','PL_42/58 / 1965','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2174','PL_42/58 / 1965','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2175','PL_42/58 / 1965','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5780','PT_CASC / OH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2942','(PT_MAD / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27492','PT_D73 / TM_D73','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2190','(PT_AZO_ORIE / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6884','CORS96 / OR N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2189','(PT_AZO_CENT / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5779','SI_TRIE / NOH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2170','SI_D48 / SI_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2170','D48 / Slovenia Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23028','(ES_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23029','(ES_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23030','(ES_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23031','(ES_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5718','SE_AMST / NH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3021','SE_RT90 / SE_TM','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5728','CH_MARS / UNCOR','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5729','CH_MARS / OH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2056','(CH_CH1903+ / CH_PROJECTION+ - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21781','(CH_CH1903 / CH_PROJECTION - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5775','TR_ANT / OH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2319','TR_ED50 / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2320','TR_ED50 / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2321','TR_ED50 / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2322','TR_ED50 / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2323','TR_ED50 / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2324','TR_ED50 / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2325','TR_ED50 / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23035','(TR_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23036','(TR_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23037','(TR_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23038','(TR_ED50 / UTM - see alias remarks)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5782','ES_ALIC / OH','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4692','MOP 1983','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4629','Tahaa','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4628','Tahiti','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3306','MOP 1983 / UTM zone 5S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2977','Tahaa / UTM zone 5S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2976','Tahiti / UTM zone 6S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4688','MHEFO 55','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3303','MHEFO 55 / UTM zone 7S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3309','NAD27 / California (Teale) Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3310','NAD83 / California (Teale) Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3311','NAD83(HARN) / California (Teale) Albers','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4943','ETRS89','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4942','ETRS89','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4697','IGC 1962','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6886','NAD83(CORS96) / Oregon South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6886','CORS96 / OR S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3120','PL_42/58 / 1965','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3328','System GUGiK-80','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3329','System 1942/15 (3)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3330','System 1942/18 (3)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3331','System 1942/21 (3)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3332','System 1942/24 (3)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3333','System 1942/15 (6)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3334','System 1942/21 (6)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3335','System 1942/27 (6)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2172','System 1965 zone II','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2173','System 1965 zone III','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2174','System 1965 zone IV','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2175','System 1965 zone V','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2176','System 2000/15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2177','System 2000/18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2178','System 2000/21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2179','System 2000/24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2180','System 1992','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3120','System 1965 zone I','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3346','LKS94','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3346','LT_LKS94 / LT_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3346','Lietuvos Koordinaciu Sistema 1994','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4701','Bas Congo 1955','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3339','Bas Congo 1955 / Congo TM zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3340','Bas Congo 1955 / Congo TM zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3341','Bas Congo 1955 / Congo TM zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3342','Bas Congo 1955 / UTM zone 33S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3347','NAD83 / STC Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3348','NAD83(CSRS) / STC LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3348','NAD83 / STC Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6885','NAD83(CORS96) / OR N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6887','CORS96 / OR S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4616','Marco Astro','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4616','Selvagem Grande 1938','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2943','Selvagem Grande 1938 / UTM zone 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6799','NAD83(2011) / Oregon Bend-Vale zone (ft)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4259','Mhast','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','25932','Mhast / UTM zone 32S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4705','Mhast','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4704','Mhast','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3354','Mhast / UTM zone 32S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3353','Mhast / UTM zone 32S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4699','Le Pouce (Mauritius 94)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4699','Le Pouce (Mauritius PN 94)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3337','Le Pouce (Mauritius 94) / Mauritius Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3337','Le Pouce (Mauritius PN 94) / Mauritius Grid','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4700','Mauritanian Mining Cadastre 1999','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3367','Mauritanian Mining Cadastre 1999 / UTM zone 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3368','Mauritanian Mining Cadastre 1999 / UTM zone 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3369','Mauritanian Mining Cadastre 1999 / UTM zone 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6798','NAD83(2011) / Oregon Bend-Vale zone (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4725','Johnston Atoll 1961','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2987','St. Pierre et Miquelon 1950 / UTM zone 21N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4738','HK63','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4739','HK63(67)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7415','RDNAP','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4690','IGN79 Tahiti','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4639','Uvea SHOM 1978','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3355','S-650 TL / Red Belt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4706','S-650 TL','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2004','Montserrat 58 / British West Indies Grid','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4604','Montserrat 58','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3386','KKJ / Basic Coordinate System zone 0','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3387','KKJ / Basic Coordinate System zone 5','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4669','LKS94 (ETRS89)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32164','NAD83 / UTM zone 14N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32165','NAD83 / UTM zone 15N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32166','NAD83 / UTM zone 16N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32167','NAD83 / UTM zone 17N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32664','WGS 84 / UTM zone 14N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32665','WGS 84 / UTM zone 15N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32666','WGS 84 / UTM zone 16N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32667','WGS 84 / UTM zone 17N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4720','FGD 1986','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3143','FGD 1986 / Fiji Map Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3144','fk54','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3144','Faroe Cadastre 1954','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3145','fke','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3173','Faroe Cadastre 1989','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4752','Viti Levu 1916','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3140','Viti Levu 1916 / Viti Levu Grid','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4748','Vanua Levu 1917','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3139','Vanua Levu 1917 / Vanua Levu Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3400','NAD83 / 10TM AEP Forest','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3401','NAD83 / 10TM AEP Resource','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3403','NAD83 / 10TM AEP Resource','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3402','NAD83 / 10TM AEP Forest','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3854','ST74 0 gon 65:-1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3163','RGNC / Lambert New Caledonia','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4298','Timbalai 1968','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4298','BT68','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29849','BT68 / UTM zone 49N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29850','BT68 / UTM zone 50N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29873','BT68 / RSO Borneo (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29849','Timbalai 1968 / UTM zone 49N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29850','Timbalai 1968 / UTM zone 50N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29873','Timbalai 1968 / RSO Borneo (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4245','MRT68','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24500','MRT68 / Singapore Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24547','MRT68 / UTM zone 47N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','24548','MRT68 / UTM zone 48N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3169','RGNC / UTM zone 57S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3170','RGNC / UTM zone 58S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3171','RGNC / UTM zone 59S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4714','Bellevue (IGN)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4730','Santo (DOS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3143','Fiji 1986 / FMG','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3153','NAD83 / BC Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3173','fk89','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4753','FD54a','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3311','NAD83(HPGN) / California (Teale) Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3358','NAD83(HPGN) / North Carolina','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3359','NAD83(HPGN) / North Carolina (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3360','NAD83(HPGN) / South Carolina','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3361','NAD83(HPGN) / South Carolina (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3362','NAD83(HPGN) / Pennsylvania North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3363','NAD83(HPGN) / Pennsylvania North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3364','NAD83(HPGN) / Pennsylvania South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3365','NAD83(HPGN) / Pennsylvania South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3075','Maine Coordinate System of 2000 East Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3076','Maine Coordinate System of 2000 Central Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3077','Maine Coordinate System of 2000 West Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3079','Michigan GeoRef','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3085','TCMS/AEA','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3085','Texas Centric Mapping System / Albers Equal Area','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3084','Texas Centric Mapping System / Lambert Conformal','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3084','TCMS/ LC','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4755','IGD95','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4898','IGD95','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4897','IGD95','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23866','IGD95 / UTM zone 46N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23867','IGD95 / UTM zone 47N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23868','IGD95 / UTM zone 48N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23869','IGD95 / UTM zone 49N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23870','IGD95 / UTM zone 50N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23871','IGD95 / UTM zone 51N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23872','IGD95 / UTM zone 52N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23877','IGD95 / UTM zone 47S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23878','IGD95 / UTM zone 48S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23879','IGD95 / UTM zone 49S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23880','IGD95 / UTM zone 50S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23881','IGD95 / UTM zone 51S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23882','IGD95 / UTM zone 52S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23883','IGD95 / UTM zone 53S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23884','IGD95 / UTM zone 54S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3404','NAD83(HPGN) / North Carolina (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3414','SVY21 plane coordinate system','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3174','NAD83 / GLGIS Albers (basin)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3175','NAD83 / GLGIS Albers (basin+SLS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7416','EUREF89 / UTM zone 32N + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7417','EUREF89 / UTM zone 33N + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7418','EUREF89 / Kp2000 Jutland + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7419','EUREF89 / Kp2000 Zealand + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7420','EUREF89 / Kp2000 Bornholm + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3415','WGS 72BE / SCS Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3425','NAD83(HPGN) / Iowa North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3426','NAD83(HPGN) / Iowa South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3427','NAD83(HPGN) / Kansas North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3428','NAD83(HPGN) / Kansas South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3429','NAD83(HPGN) / Nevada East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3430','NAD83(HPGN) / Nevada Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3431','NAD83(HPGN) / Nevada West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3432','NAD83(HPGN) / New Jersey (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3441','NAD83(HPGN) / Arkansas North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3442','NAD83(HPGN) / Arkansas South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3443','NAD83(HPGN) / Illinois East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3444','NAD83(HPGN) / Illinois West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3445','NAD83(HPGN) / New Hampshire (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3446','NAD83(HPGN) / Rhode Island (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3447','ETRS89 / Lambert 2005','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4746','DHDN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3397','PD/83 / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4745','DHDN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3398','RD/83 / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3399','RD/83 / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29702','Tananarive / Laborde app','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3448','WGS 84 / Jamaica Metric Grid 2001','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32199','NAD83 / Louisiana Offshore (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3072','NAD83 / Maine CS2000 East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3074','NAD83 / Maine CS2000 West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2759','NAD83(HARN) / Alabama East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2760','NAD83(HARN) / Alabama West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2762','NAD83(HARN) / Arizona Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2761','NAD83(HARN) / Arizona East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2763','NAD83(HARN) / Arizona West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2764','NAD83(HARN) / Arkansas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2765','NAD83(HARN) / Arkansas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2766','NAD83(HARN) / California zone 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2767','NAD83(HARN) / California zone 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2768','NAD83(HARN) / California zone 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2769','NAD83(HARN) / California zone 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2770','NAD83(HARN) / California zone 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2771','NAD83(HARN) / California zone 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2773','NAD83(HARN) / Colorado Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2772','NAD83(HARN) / Colorado North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2774','NAD83(HARN) / Colorado South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2775','NAD83(HARN) / Connecticut (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2776','NAD83(HARN) / Delaware (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2777','NAD83(HARN) / Florida East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2779','NAD83(HARN) / Florida North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2778','NAD83(HARN) / Florida West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2780','NAD83(HARN) / Georgia East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2781','NAD83(HARN) / Georgia West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2782','NAD83(HARN) / Hawaii zone 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2783','NAD83(HARN) / Hawaii zone 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2784','NAD83(HARN) / Hawaii zone 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2785','NAD83(HARN) / Hawaii zone 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2786','NAD83(HARN) / Hawaii zone 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2788','NAD83(HARN) / Idaho Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2787','NAD83(HARN) / Idaho East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2789','NAD83(HARN) / Idaho West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2790','NAD83(HARN) / IL E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2791','NAD83(HARN) / Illinois West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2792','NAD83(HARN) / Indiana East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2793','NAD83(HARN) / Indiana West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2794','NAD83(HARN) / Iowa North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2795','NAD83(HARN) / Iowa South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2796','NAD83(HARN) / Kansas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2797','NAD83(HARN) / Kansas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2798','NAD83(HARN) / Kentucky North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2799','NAD83(HARN) / Kentucky South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3090','NAD83(HARN) / Kentucky Single Zone (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2800','NAD83(HARN) / Louisiana North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3456','NAD83(HPGN) / Louisiana North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2801','NAD83(HARN) / Louisiana South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3457','NAD83(HPGN) / Louisiana South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3075','NAD83(HARN) / Maine CS2000 East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3077','NAD83(HARN) / Maine CS2000 West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6867','CORS96 / OR LCC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6868','CORS96 / OR GIC Lam (ft)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8358','Bpv depth','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6785','CORS96 / OCRS_BKE (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6789','CORS96 / OCRS_BKF (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6784','CORS96 / OCRS_BKE (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6788','CORS96 / OCRS_BKF (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6793','CORS96 / OCRS_BRP (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6915','SE Island / UTM zone 40N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2802','NAD83(HARN) / Maine East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2803','NAD83(HARN) / Maine West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2804','NAD83(HARN) / Maryland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2806','NAD83(HARN) / Massachusetts Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2805','NAD83(HARN) / Massachusetts Mainland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2808','NAD83(HARN) / Michigan Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2807','NAD83(HARN) / Michigan North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2809','NAD83(HARN) / Michigan South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2811','NAD83(HARN) / Minnesota Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2810','NAD83(HARN) / Minnesota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2812','NAD83(HARN) / Minnesota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2813','NAD83(HARN) / Mississippi East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2814','NAD83(HARN) / Mississippi West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2816','NAD83(HARN) / Missouri Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2815','NAD83(HARN) / Missouri East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2817','NAD83(HARN) / Missouri West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2818','NAD83(HARN) / Montana (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2819','NAD83(HARN) / Nebraska (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2821','NAD83(HARN) / Nevada Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2820','NAD83(HARN) / Nevada East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2822','NAD83(HARN) / Nevada West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2823','NAD83(HARN) / New Hampshire (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2824','NAD83(HARN) / New Jersey (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2826','NAD83(HARN) / New Mexico Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2825','NAD83(HARN) / New Mexico East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2827','NAD83(HARN) / New Mexico West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2829','NAD83(HARN) / New York Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2828','NAD83(HARN) / New York East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2831','NAD83(HARN) / New York Long Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2830','NAD83(HARN) / New York West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3358','NAD83(HARN) / North Carolina (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2832','NAD83(HARN) / North Dakota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2833','NAD83(HARN) / North Dakota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2834','NAD83(HARN) / Ohio North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2835','NAD83(HARN) / Ohio South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2836','NAD83(HARN) / Oklahoma North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2837','NAD83(HARN) / Oklahoma South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2838','NAD83(HARN) / Oregon North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2839','NAD83(HARN) / Oregon South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3362','NAD83(HARN) / Pennsylvania North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3364','NAD83(HARN) / Pennsylvania South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2840','NAD83(HARN) / Rhode Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3360','NAD83(HARN) / South Carolina (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2841','NAD83(HARN) / South Dakota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3458','NAD83(HPGN) / South Dakota North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2842','NAD83(HARN) / South Dakota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3459','NAD83(HPGN) / South Dakota South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2843','NAD83(HARN) / Tennessee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2846','NAD83(HARN) / Texas Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2844','NAD83(HARN) / Texas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2845','NAD83(HARN) / Texas North Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2848','NAD83(HARN) / Texas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2847','NAD83(HARN) / Texas South Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2850','NAD83(HARN) / Utah Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2849','NAD83(HARN) / Utah North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2851','NAD83(HARN) / Utah South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2852','NAD83(HARN) / Vermont (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2853','NAD83(HARN) / Virginia North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2854','NAD83(HARN) / Virginia South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2855','NAD83(HARN) / Washington North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2856','NAD83(HARN) / Washington South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2857','NAD83(HARN) / West Virginia North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2858','NAD83(HARN) / West Virginia South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2860','NAD83(HARN) / Wisconsin Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2859','NAD83(HARN) / Wisconsin North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2861','NAD83(HARN) / Wisconsin South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2862','NAD83(HARN) / Wyoming East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2863','NAD83(HARN) / Wyoming East Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2865','NAD83(HARN) / Wyoming West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2864','NAD83(HARN) / Wyoming West Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3568','NAD83(HPGN) / Utah North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3569','NAD83(HPGN) / Utah Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3570','NAD83(HPGN) / Utah South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3448','JAD2001 / Jamaica Metric Grid 2001','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3416','ETRF89 / Austria Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2176','ETRF89 / Poland CS2000 zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2177','ETRF89 / Poland CS2000 zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2178','ETRF89 / Poland CS2000 zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2179','ETRF89 / Poland CS2000 zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2180','ETRF89 / Poland CS92','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2196','ETRF89 / Kp2000 Jutland','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2197','ETRF89 / Kp2000 Zealand','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2198','ETRF89 / Kp2000 Bornholm','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2213','ETRF89 / TM 30 NE','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3034','ETRF89 / LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3035','ETRF89 / LAEA','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3038','ETRF89 / TM26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3039','ETRF89 / TM27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3040','ETRF89 / UTM zone 28N (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3041','ETRF89 / UTM zone 29N (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3042','ETRF89 / UTM zone 30N (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3043','ETRF89 / UTM zone 31N (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3044','ETRF89 / UTM zone 32N (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3045','ETRF89 / UTM zone 33N (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3046','ETRF89 / UTM zone 34N (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3047','ETRF89 / UTM zone 35N (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3048','ETRF89 / UTM zone 36N (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3049','ETRF89 / UTM zone 37N (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3050','ETRF89 / TM38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3051','ETRF89 / TM39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3067','ETRF89 / TM35FIN(E,N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3126','ETRF89 / ETRS-GK19FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3127','ETRF89 / ETRS-GK20FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3128','ETRF89 / ETRS-GK21FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3129','ETRF89 / ETRS-GK22FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3130','ETRF89 / ETRS-GK23FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3131','ETRF89 / ETRS-GK24FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3132','ETRF89 / ETRS-GK25FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3133','ETRF89 / ETRS-GK26FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3134','ETRF89 / ETRS-GK27FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3135','ETRF89 / ETRS-GK28FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3136','ETRF89 / ETRS-GK29FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3137','ETRF89 / ETRS-GK30FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3138','ETRF89 / ETRS-GK31FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3145','ETRF89 / Faroe Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3447','ETRF89 / Belgian Lambert 2005','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7409','ETRF89 + EVRF2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7416','ETRF89 / UTM zone 32N + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7417','ETRF89 / UTM zone 33N + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6922','NAD83 / Kansas LCC (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7418','ETRF89 / Kp2000 Jutland + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7419','ETRF89 / Kp2000 Zealand + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7420','ETRF89 / Kp2000 Bornholm + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6924','NAD83(2011) / Kansas LCC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3396','PD/83 / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3463','Maine Coordinate System of 2000 Central Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3463','NAD83 / Maine CS2000 Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3464','Maine Coordinate System of 2000 Central Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3464','NAD83(HARN) / Maine CS2000 Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3464','NAD83(HPGN) / Maine CS2000 Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22275','South African Coordinate System zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22277','South African Coordinate System zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22279','South African Coordinate System zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22281','South African Coordinate System zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22283','South African Coordinate System zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22285','South African Coordinate System zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22287','South African Coordinate System zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22289','South African Coordinate System zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22291','South African Coordinate System zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22293','South African Coordinate System zone 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29371','South West African Coord. System zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29373','South West African Coord. System zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29375','South West African Coord. System zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29377','South West African Coord. System zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29379','South West African Coord. System zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29381','South West African Coord. System zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29383','South West African Coord. System zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29385','South West African Coord. System zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3465','NAD83(NSRS2007) / Alabama East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3466','NAD83(NSRS2007) / Alabama West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3468','NAD83(NSRS2007) / Alaska zone 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3477','NAD83(NSRS2007) / Alaska zone 10 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3469','NAD83(NSRS2007) / Alaska zone 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3470','NAD83(NSRS2007) / Alaska zone 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3471','NAD83(NSRS2007) / Alaska zone 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3472','NAD83(NSRS2007) / Alaska zone 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3473','NAD83(NSRS2007) / Alaska zone 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3474','NAD83(NSRS2007) / Alaska zone 7 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3475','NAD83(NSRS2007) / Alaska zone 8 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3476','NAD83(NSRS2007) / Alaska zone 9 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3478','NAD83(NSRS2007) / Arizona Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3480','NAD83(NSRS2007) / Arizona East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3482','NAD83(NSRS2007) / Arizona West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3484','NAD83(NSRS2007) / Arkansas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3486','NAD83(NSRS2007) / Arkansas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3489','NAD83(NSRS2007) / California zone 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3491','NAD83(NSRS2007) / California zone 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3493','NAD83(NSRS2007) / California zone 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3495','NAD83(NSRS2007) / California zone 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3497','NAD83(NSRS2007) / California zone 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3499','NAD83(NSRS2007) / California zone 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3501','NAD83(NSRS2007) / Colorado Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3503','NAD83(NSRS2007) / Colorado North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3505','NAD83(NSRS2007) / Colorado South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3507','NAD83(NSRS2007) / Connecticut (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3509','NAD83(NSRS2007) / Delaware (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3511','NAD83(NSRS2007) / Florida East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3514','NAD83(NSRS2007) / Florida North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3516','NAD83(NSRS2007) / Florida West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3518','NAD83(NSRS2007) / Georgia East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3520','NAD83(NSRS2007) / Georgia West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3522','NAD83(NSRS2007) / Idaho Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3524','NAD83(NSRS2007) / Idaho East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3526','NAD83(NSRS2007) / Idaho West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3528','NAD83(NSRS2007) / Illinois East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3530','NAD83(NSRS2007) / Illinois West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3532','NAD83(NSRS2007) / Indiana East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3534','NAD83(NSRS2007) / Indiana West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3536','NAD83(NSRS2007) / Iowa North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3538','NAD83(NSRS2007) / Iowa South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3540','NAD83(NSRS2007) / Kansas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3542','NAD83(NSRS2007) / Kansas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3544','NAD83(NSRS2007) / Kentucky North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3546','NAD83(NSRS2007) / Kentucky Single Zone (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3548','NAD83(NSRS2007) / Kentucky South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3550','NAD83(NSRS2007) / Louisiana North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3552','NAD83(NSRS2007) / Louisiana South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3554','NAD83(NSRS2007) / Maine CS2000 Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3555','NAD83(NSRS2007) / Maine CS2000 East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3556','NAD83(NSRS2007) / Maine CS2000 West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3557','NAD83(NSRS2007) / Maine CS83 East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3558','NAD83(NSRS2007) / Maine West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3559','NAD83(NSRS2007) / Maryland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3583','NAD83(NSRS2007) / Massachusetts Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3585','NAD83(NSRS2007) / Massachusetts Mainland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3587','NAD83(NSRS2007) / Michigan Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3589','NAD83(NSRS2007) / Michigan North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3592','NAD83(NSRS2007) / Michigan South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3594','NAD83(NSRS2007) / Minnesota Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3595','NAD83(NSRS2007) / Minnesota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3596','NAD83(NSRS2007) / Minnesota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3597','NAD83(NSRS2007) / Mississippi East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3599','NAD83(NSRS2007) / Mississippi West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3601','NAD83(NSRS2007) / Missouri Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3602','NAD83(NSRS2007) / Missouri East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3603','NAD83(NSRS2007) / Missouri West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3604','NAD83(NSRS2007) / Montana (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3606','NAD83(NSRS2007) / Nebraska (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3607','NAD83(NSRS2007) / Nevada Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3609','NAD83(NSRS2007) / Nevada East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3611','NAD83(NSRS2007) / Nevada West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3613','NAD83(NSRS2007) / New Hampshire (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3615','NAD83(NSRS2007) / New Jersey (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3617','NAD83(NSRS2007) / New Mexico Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3619','NAD83(NSRS2007) / New Mexico East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3621','NAD83(NSRS2007) / New Mexico West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3623','NAD83(NSRS2007) / New York Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3625','NAD83(NSRS2007) / New York East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3627','NAD83(NSRS2007) / New York Long Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3629','NAD83(NSRS2007) / New York West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3631','NAD83(NSRS2007) / North Carolina (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3633','NAD83(NSRS2007) / North Dakota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3635','NAD83(NSRS2007) / North Dakota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3637','NAD83(NSRS2007) / Ohio North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3638','NAD83(NSRS2007) / Ohio South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3639','NAD83(NSRS2007) / Oklahoma North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3641','NAD83(NSRS2007) / Oklahoma South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3643','NAD83(2007) / Oregon LCC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3645','NAD83(NSRS2007) / Oregon North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3647','NAD83(NSRS2007) / Oregon South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3649','NAD83(NSRS2007) / Pennsylvania North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3651','NAD83(NSRS2007) / Pennsylvania South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3653','NAD83(NSRS2007) / Rhode Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3655','NAD83(NSRS2007) / South Carolina (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3657','NAD83(NSRS2007) / South Dakota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3659','NAD83(NSRS2007) / South Dakota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3661','NAD83(NSRS2007) / Tennessee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3663','NAD83(NSRS2007) / Texas Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3667','NAD83(NSRS2007) / Texas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3669','NAD83(NSRS2007) / Texas North Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3671','NAD83(NSRS2007) / Texas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3673','NAD83(NSRS2007) / Texas South Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3675','NAD83(NSRS2007) / Utah Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3678','NAD83(NSRS2007) / Utah North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3681','NAD83(NSRS2007) / Utah South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3684','NAD83(NSRS2007) / Vermont (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3685','NAD83(NSRS2007) / Virginia North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3687','NAD83(NSRS2007) / Virginia South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3689','NAD83(NSRS2007) / Washington North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3691','NAD83(NSRS2007) / Washington South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3695','NAD83(NSRS2007) / Wisconsin Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3697','NAD83(NSRS2007) / Wisconsin North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3699','NAD83(NSRS2007) / Wisconsin South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3702','NAD83(NSRS2007) / Wyoming East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3703','NAD83(NSRS2007) / Wyoming East Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3705','NAD83(NSRS2007) / Wyoming West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3704','NAD83(NSRS2007) / Wyoming West Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3693','NAD83(NSRS2007) / West Virginia North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3694','NAD83(NSRS2007) / West Virginia South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3727','Piton des Neiges / TM Reunion','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3740','NAD83(HPGN) / UTM zone 10N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3741','NAD83(HPGN) / UTM zone 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3742','NAD83(HPGN) / UTM zone 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3743','NAD83(HPGN) / UTM zone 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3744','NAD83(HPGN) / UTM zone 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3745','NAD83(HPGN) / UTM zone 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3746','NAD83(HPGN) / UTM zone 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3747','NAD83(HPGN) / UTM zone 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3748','NAD83(HPGN) / UTM zone 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3749','NAD83(HPGN) / UTM zone 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3750','NAD83(HPGN) / UTM zone 4N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3751','NAD83(HPGN) / UTM zone 5N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3760','NAD83(HPGN) / Hawaii zone 3 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3546','KY1Z','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3547','NAD83(NSRS) / KY1Z (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3547','KY1Z','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3447','BE_ETRS89 / LB05','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3763','ETRF89 / Portugal TM06','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3765','HTRS96 / TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3766','HTRS96 / LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3770','BNG2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3769','Bermuda National Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26825','NAD83(HPGN) / Maine CS83 East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26826','NAD83(HPGN) / Maine CS83 West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26830','NAD83(HPGN) / Minnesota North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26831','NAD83(HPGN) / Minnesota Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26832','NAD83(HPGN) / Minnesota South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26833','NAD83(HPGN) / Nebraska (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26834','NAD83(HPGN) / West Virginia North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26835','NAD83(HPGN) / West Virginia South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26826','NAD83(HARN) / Maine CS83 West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26825','NAD83(HARN) / Maine CS83 East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26815','NAD83 / Maine CS83 West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26814','NAD83 / Maine CS83 East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3554','Maine Coordinate System of 2000 Central Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3555','Maine Coordinate System of 2000 East Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3556','Maine Coordinate System of 2000 West Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3557','Maine Coordinate System of 1983 East Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3558','Maine Coordinate System of 1983 West Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26837','NAD83(NSRS2007) / Maine CS83 West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26836','NAD83(NSRS2007) / Maine CS83 East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5612','Baltic depth','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8518','NAD83(2011) / KS RCS zone 1 Goodland','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5612','Kronstadt 1977 depth','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4274','D73','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4803','DLx','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3771','NAD27 / Alberta 3TM ref merid 111','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3772','NAD27 / Alberta 3TM ref merid 114','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3773','NAD27 / Alberta 3TM ref merid 117','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3774','NAD27 / Alberta 3TM ref merid 120','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3775','NAD83 / Alberta 3TM ref merid 111','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3776','NAD83 / Alberta 3TM ref merid 114','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3777','NAD83 / Alberta 3TM ref merid 117','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3778','NAD83 / Alberta 3TM ref merid 120','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3779','NAD83(CSRS) / Alberta 3TM ref merid 111','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3780','NAD83(CSRS) / Alberta 3TM ref merid 114','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3781','NAD83(CSRS) / Alberta 3TM ref merid 117','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3782','NAD83(CSRS) / Alberta 3TM ref merid 120','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3787','D48 / GK','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3788','NZGD2000 / AKTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3789','NZGD2000 / CATM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3790','NZGD2000 / AITM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3791','NZGD2000 / RITM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3793','NZGD2000 / CITM2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4673','CI1979','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4672','CI1971','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2193','NZGD2000 / New Zealand Transverse Mercator','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2105','NZGD2000 / Mount Eden Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2106','NZGD2000 / Bay of Plenty Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2107','NZGD2000 / Poverty Bay Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2108','NZGD2000 / Hawkes Bay Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2109','NZGD2000 / Taranaki Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2110','NZGD2000 / Turhirangi Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2111','NZGD2000 / Wanganui Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2112','NZGD2000 / Wairarapa Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2113','NZGD2000 / Wellington Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2114','NZGD2000 / Collingwood Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2115','NZGD2000 / Nelson Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2116','NZGD2000 / Karamea Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2117','NZGD2000 / Buller Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2118','NZGD2000 / Grey Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2119','NZGD2000 / Amuri Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2120','NZGD2000 / Marlborough Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2121','NZGD2000 / Hokitika Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2122','NZGD2000 / Okarito Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2123','NZGD2000 / Jacksons Bay Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2124','NZGD2000 / Mount Pleasant Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2125','NZGD2000 / Gawler Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2126','NZGD2000 / Timaru Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2127','NZGD2000 / Lindis Peak Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2128','NZGD2000 / Mount Nicholas Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2129','NZGD2000 / Mount York Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2130','NZGD2000 / Observation Point Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2131','NZGD2000 / North Taieri Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2132','NZGD2000 / Bluff Circuit 2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2105','NZGD2000 / EDENTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2106','NZGD2000 / PLENTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2107','NZGD2000 / POVETM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2108','NZGD2000 / HAWKTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2109','NZGD2000 / TARATM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2110','NZGD2000 / TUHITM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2111','NZGD2000 / WANGTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2112','NZGD2000 / WAIRTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2113','NZGD2000 / WELLTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2114','NZGD2000 / COLLTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2115','NZGD2000 / NELSTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2116','NZGD2000 / KARATM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2117','NZGD2000 / BULLTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2118','NZGD2000 / GREYTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2119','NZGD2000 / AMURTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2120','NZGD2000 / MARLTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2121','NZGD2000 / HOKITM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2122','NZGD2000 / OKARTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2123','NZGD2000 / JACKTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2124','NZGD2000 / PLEATM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2125','NZGD2000 / GAWLTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2126','NZGD2000 / TIMATM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2127','NZGD2000 / LINDTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2128','NZGD2000 / NICHTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2129','NZGD2000 / YORKTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2130','NZGD2000 / OBSETM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2131','NZGD2000 / TAIETM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2132','NZGD2000 / BLUFTM2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2193','NZGD2000 / NZTM2000','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5759','Auckland height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5760','Bluff height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5761','Dunedin height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5762','Gisborne height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5763','Lyttelton height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5764','Moturiki height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5765','Napier height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5766','Nelson height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5767','One Tree Point height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5768','Tararu height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5769','Taranaki height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5770','Wellington height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5771','Chatham Island height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5772','Stewart Island height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5739','Hong Kong Chart Datum depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5788','PWD height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5740','Newlyn (Orkney Isles) height','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4883','D96','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4882','D96','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4765','D96','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3794','D96/TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26847','NAD83 / Maine CS83 East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26848','NAD83 / Maine CS83 West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26855','NAD83(HPGN) / Maine CS83 East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26855','NAD83(HARN) / Maine CS83 East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26856','NAD83(HARN) / Maine CS83 West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26856','NAD83(HPGN) / Maine CS83 West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26863','NAD83(NSRS2007) / Maine CS83 East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26864','NAD83(NSRS2007) / Maine CS83 West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26857','NAD83(HPGN) / Minnesota North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26858','NAD83(HPGN) / Minnesota Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26859','NAD83(HPGN) / Minnesota South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26860','NAD83(HPGN) / Nebraska (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26861','NAD83(HPGN) / West Virginia North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26862','NAD83(HPGN) / West Virginia South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3800','NAD27 / Alberta 3TM ref merid 120','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3801','NAD83 / Alberta 3TM ref merid 120','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3802','NAD83(CSRS) / Alberta 3TM ref merid 120','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3812','ETRF89 / Belgian Lambert 2008','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3812','ETRS89 / Lambert 2008','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3814','NAD83 / MSTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3815','NAD83(HARN) / MSTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3815','NAD83(HPGN) / Mississippi TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3816','NAD83(NSRS2007) / MSTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3812','ETRS89 / LB08','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3447','ETRS89 / LB05','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31370','BD 72 / LB72','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4236','Hu Tzu Shan','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4179','Pulkovo 1942(56)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4178','Uniform Astro-Geodetic Network (UAGN) 1983','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4179','Pulkovo 1942(57)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4178','S-42','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4179','Uniform Astro-Geodetic Network (UAGN) 1956','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4179','42/58','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4179','S-42','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4284','S-42','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4200','S-95','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3333','S-42 zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3334','S-42 zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3334','S-42 zone 34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3335','S-42 zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3335','S-42 zone 35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3335','Pulkovo 1942(58) / 6-degree Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3334','Pulkovo 1942(58) / 6-degree Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3333','Pulkovo 1942(58) / 6-degree Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3834','Pulkovo 1942(83) / 6-degree Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3834','S-42 zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3833','Pulkovo 1942(58) / 6-degree Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3833','S-42 zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3835','Pulkovo 1942(83) / 6-degree Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3835','S-42 zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3836','Pulkovo 1942(83) / 6-degree Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3836','S-42 zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3844','Stereo 70','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3844','S-42 / Stereo 70','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3844','Dealul Piscului 1970/ Stereo 70','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4316','Dealul Piscului 1933','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31600','Dealul Piscului 1933/ Stereo 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31600','Stereo 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3848','SWEREF99 / RT90 0 gon 0:-15 emulation','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3849','SWEREF99 / RT90 2.5 gon O 0:-15 emulation','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3847','SWEREF99 / RT90 2.5 gon V 0:-15 emulation','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3850','SWEREF99 / RT90 5 gon O 0:-15 emulation','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3846','SWEREF99 / RT90 5 gon V 0:-15 emulation','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3845','SWEREF99 / RT90 7.5 gon V 0:-15 emulation','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21782','LV03C-G','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21781','LV03M','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2031','NAD27(CGQ77) / UTM 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2032','NAD27(CGQ77) / UTM 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2033','NAD27(CGQ77) / UTM 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2034','NAD27(CGQ77) / UTM 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2035','NAD27(CGQ77) / UTM 21N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2057','Rassadiran /Nakhl e Taqi','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2058','ED50(ED77) / UTM 38N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2059','ED50(ED77) / UTM 39N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2060','ED50(ED77) / UTM 40N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2061','ED50(ED77) / UTM 41N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2062','Madrid (Madrid) / Spain','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2063','Dabola 1981 / UTM 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2064','Dabola 1981 / UTM 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2104','Lake / La Rosa Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2136','Accra / Ghana Nat. Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2138','CGQ77 / Quebec Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2159','Sierra Leone 24 / Colony','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2160','Sierra Leone 24 / WarOff','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2161','Sierra Leone 68 /UTM 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2162','Sierra Leone 68 /UTM 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2163','US National Atlas EA','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2189','Azores Cen. 48 / UTM 26N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2190','Sao Braz 1940 / UTM 26N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2192','ED50 / France EuroLamb','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2195','NAD83(HARN) / UTM 2S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2215','Manoca 1962 / UTM 32N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2216','Qornoq 1927 / UTM 22N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2217','Qornoq 1927 / UTM 23N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2218','Scoresbysund / GRL 5 E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2221','Scoresbysund / GRL 6 E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2222','NAD83 / Arizona E (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2223','NAD83 / Arizona Cen (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2224','NAD83 / Arizona W (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2225','NAD83 / CA zone 1 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2226','NAD83 / CA zone 2 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2227','NAD83 / CA zone 3 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2228','NAD83 / CA zone 4 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2229','NAD83 / CA zone 5 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2230','NAD83 / CA zone 6 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2231','NAD83 / CO North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2232','NAD83 / CO Cen (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2233','NAD83 / CO South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2234','NAD83 / CT (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2236','NAD83 / FL East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2237','NAD83 / FL West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2238','NAD83 / FL North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2239','NAD83 / Georgia E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2240','NAD83 / Georgia W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2241','NAD83 / Idaho E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2242','NAD83 / Idaho Cen (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2243','NAD83 / Idaho W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2246','NAD83 / KY North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2247','NAD83 / KY South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2249','NAD83 / MA Mainld (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2250','NAD83 / MA Island (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2251','NAD83 / Michigan N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2252','NAD83 / Michigan C (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2253','NAD83 / Michigan S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2254','NAD83 / MS East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2255','NAD83 / MS West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2257','NAD83 / New Mex E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2258','NAD83 / New Mex C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2259','NAD83 / New Mex W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2260','NAD83 / NY East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2261','NAD83 / NY C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2262','NAD83 / NY W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2263','NAD83 / NY Island (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2264','NAD83 / NCarolina (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2265','NAD83 / N Dakota N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2266','NAD83 / N Dakota S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2267','NAD83 / OK North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2268','NAD83 / OK South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2269','NAD83 / Oregon N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2270','NAD83 / Oregon S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2271','NAD83 / PA North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2272','NAD83 / PA South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2273','NAD83 / S Carolina (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2275','NAD83 / Texas N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2276','NAD83 / Texas NC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2277','NAD83 / Texas C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2278','NAD83 / Texas SC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2279','NAD83 / Texas S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2281','NAD83 / Utah Cen. (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2283','NAD83 / VA North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2284','NAD83 / VA South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2285','NAD83 / WA North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2286','NAD83 / WA South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2287','NAD83 / WI North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2288','NAD83 / WI Cen. (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2289','NAD83 / WI South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2296','Ammassalik 58 / GRL 7 E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2298','Qornoq 1927 / GRL 2 east','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2299','Qornoq 1927 / GRL 2 west','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2301','Qornoq 1927 / GRL 3 west','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2303','Qornoq 1927 / GRL 4 west','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2304','Qornoq 1927 / GRL 5 west','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2305','Qornoq 1927 / GRL 6 west','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2306','Qornoq 1927 / GRL 7 west','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2307','Qornoq 1927 / GRL 8 east','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2314','Trinidad 03 Grid (ftCla)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2315','C Inchauspe / UTM 19S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2316','C Inchauspe / UTM 20S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2318','Ain el Abd / Aramco Lamb','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2327','Xian 1980 / G-K zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2328','Xian 1980 / G-K zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2329','Xian 1980 / G-K zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2330','Xian 1980 / G-K zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2331','Xian 1980 / G-K zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2332','Xian 1980 / G-K zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2334','Xian 1980 / G-K zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2335','Xian 1980 / G-K zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2336','Xian 1980 / G-K zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2337','Xian 1980 / G-K zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2338','Xian 1980 / G-K CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2339','Xian 1980 / G-K CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2340','Xian 1980 / G-K CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2341','Xian 1980 / G-K CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2342','Xian 1980 / G-K CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2343','Xian 1980 / G-K CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2344','Xian 1980 / G-K CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2345','Xian 1980 / G-K CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2346','Xian 1980 / G-K CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2347','Xian 1980 / G-K CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2348','Xian 1980 / G-K CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2349','Xian 1980 / 3GK zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2350','Xian 1980 / 3GK zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2351','Xian 1980 / 3GK zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2352','Xian 1980 / 3GK zone 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2353','Xian 1980 / 3GK zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2354','Xian 1980 / 3GK zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2355','Xian 1980 / 3GK zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2356','Xian 1980 / 3GK zone 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2357','Xian 1980 / 3GK zone 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2358','Xian 1980 / 3GK zone 34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2359','Xian 1980 / 3GK zone 35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2360','Xian 1980 / 3GK zone 36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2361','Xian 1980 / 3GK zone 37','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2362','Xian 1980 / 3GK zone 38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2363','Xian 1980 / 3GK zone 39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2364','Xian 1980 / 3GK zone 40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2365','Xian 1980 / 3GK zone 41','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2366','Xian 1980 / 3GK zone 42','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2367','Xian 1980 / 3GK zone 43','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2368','Xian 1980 / 3GK zone 44','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2369','Xian 1980 / 3GK zone 45','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2370','Xian 1980 / 3GK CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2371','Xian 1980 / 3GK CM 78E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2372','Xian 1980 / 3GK CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2373','Xian 1980 / 3GK CM 84E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2374','Xian 1980 / 3GK CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2375','Xian 1980 / 3GK CM 90E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2376','Xian 1980 / 3GK CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2377','Xian 1980 / 3GK CM 96E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2378','Xian 1980 / 3GK CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2379','Xian 1980 / 3GK CM 102E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2380','Xian 1980 / 3GK CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2381','Xian 1980 / 3GK CM 108E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2382','Xian 1980 / 3GK CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2383','Xian 1980 / 3GK CM 114E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2384','Xian 1980 / 3GK CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2385','Xian 1980 / 3GK CM 120E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2386','Xian 1980 / 3GK CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2387','Xian 1980 / 3GK CM 126E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2388','Xian 1980 / 3GK CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2389','Xian 1980 / 3GK CM 132E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2390','Xian 1980 / 3GK CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2397','Pulkovo 42(83) / 3GK zn3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2398','Pulkovo 42(83) / 3GK zn4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2399','Pulkovo 42(83) / 3GK zn5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2401','Beijing 1954 / 3GK zn 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2402','Beijing 1954 / 3GK zn 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2403','Beijing 1954 / 3GK zn 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2404','Beijing 1954 / 3GK zn 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2405','Beijing 1954 / 3GK zn 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2406','Beijing 1954 / 3GK zn 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2407','Beijing 1954 / 3GK zn 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2408','Beijing 1954 / 3GK zn 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2409','Beijing 1954 / 3GK zn 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2410','Beijing 1954 / 3GK zn 34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2411','Beijing 1954 / 3GK zn 35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2412','Beijing 1954 / 3GK zn 36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2413','Beijing 1954 / 3GK zn 37','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2414','Beijing 1954 / 3GK zn 38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2415','Beijing 1954 / 3GK zn 39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2416','Beijing 1954 / 3GK zn 40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2417','Beijing 1954 / 3GK zn 41','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2418','Beijing 1954 / 3GK zn 42','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2419','Beijing 1954 / 3GK zn 43','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2420','Beijing 1954 / 3GK zn 44','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2421','Beijing 1954 / 3GK zn 45','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2422','Beijing 1954 / 3GK 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2423','Beijing 1954 / 3GK 78E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2424','Beijing 1954 / 3GK 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2425','Beijing 1954 / 3GK 84E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2426','Beijing 1954 / 3GK 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2427','Beijing 1954 / 3GK 90E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2428','Beijing 1954 / 3GK 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2429','Beijing 1954 / 3GK 96E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2430','Beijing 1954 / 3GK 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2431','Beijing 1954 / 3GK 102E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2432','Beijing 1954 / 3GK 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2433','Beijing 1954 / 3GK 108E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2434','Beijing 1954 / 3GK 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2435','Beijing 1954 / 3GK 114E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2436','Beijing 1954 / 3GK 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2437','Beijing 1954 / 3GK 120E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2438','Beijing 1954 / 3GK 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2439','Beijing 1954 / 3GK 126E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2440','Beijing 1954 / 3GK 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2441','Beijing 1954 / 3GK 132E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2442','Beijing 1954 / 3GK 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2443','JGD2000 / Japan zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2444','JGD2000 / Japan zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2445','JGD2000 / Japan zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2446','JGD2000 / Japan zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2447','JGD2000 / Japan zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2448','JGD2000 / Japan zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2449','JGD2000 / Japan zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2450','JGD2000 / Japan zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2451','JGD2000 / Japan zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2452','JGD2000 / Japan zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2453','JGD2000 / Japan zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2454','JGD2000 / Japan zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2455','JGD2000 / Japan zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2456','JGD2000 / Japan zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2457','JGD2000 / Japan zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2458','JGD2000 / Japan zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2459','JGD2000 / Japan zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2460','JGD2000 / Japan zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2461','JGD2000 / Japan zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2462','Albanian 1987 / GK zn 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2463','Pulkovo 1995 / 6GK 21E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2464','Pulkovo 1995 / 6GK 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2465','Pulkovo 1995 / 6GK 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2466','Pulkovo 1995 / 6GK 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2467','Pulkovo 1995 / 6GK 45E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2468','Pulkovo 1995 / 6GK 51E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2469','Pulkovo 1995 / 6GK 57E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2470','Pulkovo 1995 / 6GK 63E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2471','Pulkovo 1995 / 6GK 69E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2472','Pulkovo 1995 / 6GK 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2473','Pulkovo 1995 / 6GK 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2474','Pulkovo 1995 / 6GK 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2475','Pulkovo 1995 / 6GK 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2476','Pulkovo 1995 / 6GK 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2477','Pulkovo 1995 / 6GK 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2478','Pulkovo 1995 / 6GK 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2479','Pulkovo 1995 / 6GK 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2480','Pulkovo 1995 / 6GK 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2481','Pulkovo 1995 / 6GK 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2482','Pulkovo 1995 / 6GK 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2483','Pulkovo 1995 / 6GK 141E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2484','Pulkovo 1995 / 6GK 147E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2485','Pulkovo 1995 / 6GK 153E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2486','Pulkovo 1995 / 6GK 159E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2487','Pulkovo 1995 / 6GK 165E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2488','Pulkovo 1995 / 6GK 171E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2489','Pulkovo 1995 / 6GK 177E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2490','Pulkovo 1995 / 6GK 177W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2491','Pulkovo 1995 / 6GK 171W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2494','Pulkovo 1942 / 6GK 21E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2495','Pulkovo 1942 / 6GK 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2496','Pulkovo 1942 / 6GK 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2497','Pulkovo 1942 / 6GK 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2498','Pulkovo 1942 / 6GK 45E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2499','Pulkovo 1942 / 6GK 51E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2500','Pulkovo 1942 / 6GK 57E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2501','Pulkovo 1942 / 6GK 63E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2502','Pulkovo 1942 / 6GK 69E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2503','Pulkovo 1942 / 6GK 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2504','Pulkovo 1942 / 6GK 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2505','Pulkovo 1942 / 6GK 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2506','Pulkovo 1942 / 6GK 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2507','Pulkovo 1942 / 6GK 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2508','Pulkovo 1942 / 6GK 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2509','Pulkovo 1942 / 6GK 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2510','Pulkovo 1942 / 6GK 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2511','Pulkovo 1942 / 6GK 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2512','Pulkovo 1942 / 6GK 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2513','Pulkovo 1942 / 6GK 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2514','Pulkovo 1942 / 6GK 141E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2515','Pulkovo 1942 / 6GK 147E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2516','Pulkovo 1942 / 6GK 153E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2517','Pulkovo 1942 / 6GK 159E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2518','Pulkovo 1942 / 6GK 165E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2519','Pulkovo 1942 / 6GK 171E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2520','Pulkovo 1942 / 6GK 177E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2521','Pulkovo 1942 / 6GK 177W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2522','Pulkovo 1942 / 6GK 171W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2523','Pulkovo 1942 / 3GK zn 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2524','Pulkovo 1942 / 3GK zn 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2525','Pulkovo 1942 / 3GK zn 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2526','Pulkovo 1942 / 3GK zn 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2527','Pulkovo 1942 / 3GK zn 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2528','Pulkovo 1942 / 3GK zn 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2529','Pulkovo 1942 / 3GK zn 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2530','Pulkovo 1942 / 3GK zn 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2531','Pulkovo 1942 / 3GK zn 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2532','Pulkovo 1942 / 3GK zn 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2533','Pulkovo 1942 / 3GK zn 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2534','Pulkovo 1942 / 3GK zn 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2535','Pulkovo 1942 / 3GK zn 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2536','Pulkovo 1942 / 3GK zn 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2537','Pulkovo 1942 / 3GK zn 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2538','Pulkovo 1942 / 3GK zn 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2539','Pulkovo 1942 / 3GK zn 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2540','Pulkovo 1942 / 3GK zn 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2541','Pulkovo 1942 / 3GK zn 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2542','Pulkovo 1942 / 3GK zn 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2543','Pulkovo 1942 / 3GK zn 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2544','Pulkovo 1942 / 3GK zn 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2545','Pulkovo 1942 / 3GK zn 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2546','Pulkovo 1942 / 3GK zn 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2547','Pulkovo 1942 / 3GK zn 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2548','Pulkovo 1942 / 3GK zn 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2549','Pulkovo 1942 / 3GK zn 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2551','Pulkovo 1942 / 3GK zn 34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2552','Pulkovo 1942 / 3GK zn 35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2553','Pulkovo 1942 / 3GK zn 36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2554','Pulkovo 1942 / 3GK zn 37','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2555','Pulkovo 1942 / 3GK zn 38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2556','Pulkovo 1942 / 3GK zn 39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2557','Pulkovo 1942 / 3GK zn 40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2558','Pulkovo 1942 / 3GK zn 41','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2559','Pulkovo 1942 / 3GK zn 42','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2560','Pulkovo 1942 / 3GK zn 43','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2561','Pulkovo 1942 / 3GK zn 44','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2562','Pulkovo 1942 / 3GK zn 45','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2563','Pulkovo 1942 / 3GK zn 46','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2564','Pulkovo 1942 / 3GK zn 47','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2565','Pulkovo 1942 / 3GK zn 48','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2566','Pulkovo 1942 / 3GK zn 49','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2567','Pulkovo 1942 / 3GK zn 50','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2568','Pulkovo 1942 / 3GK zn 51','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2569','Pulkovo 1942 / 3GK zn 52','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2570','Pulkovo 1942 / 3GK zn 53','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2571','Pulkovo 1942 / 3GK zn 54','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2572','Pulkovo 1942 / 3GK zn 55','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2573','Pulkovo 1942 / 3GK zn 56','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2574','Pulkovo 1942 / 3GK zn 57','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2575','Pulkovo 1942 / 3GK zn 58','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2576','Pulkovo 1942 / 3GK zn 59','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3389','Pulkovo 1942 / 3GK zn 60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2578','Pulkovo 1942 / 3GK zn 61','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2579','Pulkovo 1942 / 3GK zn 62','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2580','Pulkovo 1942 / 3GK zn 63','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2581','Pulkovo 1942 / 3GK zn 64','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2582','Pulkovo 1942 / 3GK 21E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2583','Pulkovo 1942 / 3GK 24E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2584','Pulkovo 1942 / 3GK 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2585','Pulkovo 1942 / 3GK 30E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2586','Pulkovo 1942 / 3GK 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2587','Pulkovo 1942 / 3GK 36E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2588','Pulkovo 1942 / 3GK 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2589','Pulkovo 1942 / 3GK 42E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2590','Pulkovo 1942 / 3GK 45E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2591','Pulkovo 1942 / 3GK 48E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2592','Pulkovo 1942 / 3GK 51E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2593','Pulkovo 1942 / 3GK 54E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2594','Pulkovo 1942 / 3GK 57E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2595','Pulkovo 1942 / 3GK 60E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2596','Pulkovo 1942 / 3GK 63E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2597','Pulkovo 1942 / 3GK 66E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2598','Pulkovo 1942 / 3GK 69E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2599','Pulkovo 1942 / 3GK 72E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2601','Pulkovo 1942 / 3GK 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2602','Pulkovo 1942 / 3GK 78E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2603','Pulkovo 1942 / 3GK 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2604','Pulkovo 1942 / 3GK 84E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2605','Pulkovo 1942 / 3GK 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2606','Pulkovo 1942 / 3GK 90E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2607','Pulkovo 1942 / 3GK 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2608','Pulkovo 1942 / 3GK 96E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2609','Pulkovo 1942 / 3GK 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2610','Pulkovo 1942 / 3GK 102E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2611','Pulkovo 1942 / 3GK 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2612','Pulkovo 1942 / 3GK 108E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2613','Pulkovo 1942 / 3GK 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2614','Pulkovo 1942 / 3GK 114E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2615','Pulkovo 1942 / 3GK 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2616','Pulkovo 1942 / 3GK 120E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2617','Pulkovo 1942 / 3GK 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2618','Pulkovo 1942 / 3GK 126E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2619','Pulkovo 1942 / 3GK 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2620','Pulkovo 1942 / 3GK 132E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2621','Pulkovo 1942 / 3GK 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2622','Pulkovo 1942 / 3GK 138E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2623','Pulkovo 1942 / 3GK 141E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2624','Pulkovo 1942 / 3GK 144E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2625','Pulkovo 1942 / 3GK 147E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2626','Pulkovo 1942 / 3GK 150E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2627','Pulkovo 1942 / 3GK 153E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2628','Pulkovo 1942 / 3GK 156E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2629','Pulkovo 1942 / 3GK 159E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2630','Pulkovo 1942 / 3GK 162E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2631','Pulkovo 1942 / 3GK 165E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2632','Pulkovo 1942 / 3GK 168E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2633','Pulkovo 1942 / 3GK 171E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2634','Pulkovo 1942 / 3GK 174E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2635','Pulkovo 1942 / 3GK 177E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2636','Pulkovo 1942 / 3GK 180E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2637','Pulkovo 1942 / 3GK 177W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2638','Pulkovo 1942 / 3GK 174W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2639','Pulkovo 1942 / 3GK 171W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2640','Pulkovo 1942 / 3GK 168W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2641','Pulkovo 1995 / 3GK zn 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2642','Pulkovo 1995 / 3GK zn 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2643','Pulkovo 1995 / 3GK zn 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2644','Pulkovo 1995 / 3GK zn 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2645','Pulkovo 1995 / 3GK zn 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2646','Pulkovo 1995 / 3GK zn 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2647','Pulkovo 1995 / 3GK zn 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2648','Pulkovo 1995 / 3GK zn 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2649','Pulkovo 1995 / 3GK zn 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2650','Pulkovo 1995 / 3GK zn 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2651','Pulkovo 1995 / 3GK zn 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2652','Pulkovo 1995 / 3GK zn 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2653','Pulkovo 1995 / 3GK zn 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2654','Pulkovo 1995 / 3GK zn 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2655','Pulkovo 1995 / 3GK zn 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2656','Pulkovo 1995 / 3GK zn 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2657','Pulkovo 1995 / 3GK zn 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2658','Pulkovo 1995 / 3GK zn 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2659','Pulkovo 1995 / 3GK zn 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2660','Pulkovo 1995 / 3GK zn 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2661','Pulkovo 1995 / 3GK zn 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2662','Pulkovo 1995 / 3GK zn 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2663','Pulkovo 1995 / 3GK zn 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2664','Pulkovo 1995 / 3GK zn 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2665','Pulkovo 1995 / 3GK zn 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2666','Pulkovo 1995 / 3GK zn 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2667','Pulkovo 1995 / 3GK zn 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2668','Pulkovo 1995 / 3GK zn 34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2669','Pulkovo 1995 / 3GK zn 35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2670','Pulkovo 1995 / 3GK zn 36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2671','Pulkovo 1995 / 3GK zn 37','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2672','Pulkovo 1995 / 3GK zn 38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2673','Pulkovo 1995 / 3GK zn 39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2674','Pulkovo 1995 / 3GK zn 40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2675','Pulkovo 1995 / 3GK zn 41','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2676','Pulkovo 1995 / 3GK zn 42','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2677','Pulkovo 1995 / 3GK zn 43','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2678','Pulkovo 1995 / 3GK zn 44','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2679','Pulkovo 1995 / 3GK zn 45','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2680','Pulkovo 1995 / 3GK zn 46','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2681','Pulkovo 1995 / 3GK zn 47','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2682','Pulkovo 1995 / 3GK zn 48','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2683','Pulkovo 1995 / 3GK zn 49','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2684','Pulkovo 1995 / 3GK zn 50','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2685','Pulkovo 1995 / 3GK zn 51','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2686','Pulkovo 1995 / 3GK zn 52','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2687','Pulkovo 1995 / 3GK zn 53','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2688','Pulkovo 1995 / 3GK zn 54','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2689','Pulkovo 1995 / 3GK zn 55','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2690','Pulkovo 1995 / 3GK zn 56','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2691','Pulkovo 1995 / 3GK zn 57','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2692','Pulkovo 1995 / 3GK zn 58','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2693','Pulkovo 1995 / 3GK zn 59','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3390','Pulkovo 1995 / 3GK zn 60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2695','Pulkovo 1995 / 3GK zn 61','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2696','Pulkovo 1995 / 3GK zn 62','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2697','Pulkovo 1995 / 3GK zn 63','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2698','Pulkovo 1995 / 3GK zn 64','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2699','Pulkovo 1995 / 3GK 21E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2700','Pulkovo 1995 / 3GK 24E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2701','Pulkovo 1995 / 3GK 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2702','Pulkovo 1995 / 3GK 30E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2703','Pulkovo 1995 / 3GK 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2704','Pulkovo 1995 / 3GK 36E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2705','Pulkovo 1995 / 3GK 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2706','Pulkovo 1995 / 3GK 42E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2707','Pulkovo 1995 / 3GK 45E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2708','Pulkovo 1995 / 3GK 48E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2709','Pulkovo 1995 / 3GK 51E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2710','Pulkovo 1995 / 3GK 54E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2711','Pulkovo 1995 / 3GK 57E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2712','Pulkovo 1995 / 3GK 60E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2713','Pulkovo 1995 / 3GK 63E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2714','Pulkovo 1995 / 3GK 66E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2715','Pulkovo 1995 / 3GK 69E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2716','Pulkovo 1995 / 3GK 72E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2717','Pulkovo 1995 / 3GK 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2718','Pulkovo 1995 / 3GK 78E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2719','Pulkovo 1995 / 3GK 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2720','Pulkovo 1995 / 3GK 84E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2721','Pulkovo 1995 / 3GK 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2722','Pulkovo 1995 / 3GK 90E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2723','Pulkovo 1995 / 3GK 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2724','Pulkovo 1995 / 3GK 96E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2725','Pulkovo 1995 / 3GK 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2726','Pulkovo 1995 / 3GK 102E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2727','Pulkovo 1995 / 3GK 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2728','Pulkovo 1995 / 3GK 108E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2729','Pulkovo 1995 / 3GK 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2730','Pulkovo 1995 / 3GK 114E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2731','Pulkovo 1995 / 3GK 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2732','Pulkovo 1995 / 3GK 120E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2733','Pulkovo 1995 / 3GK 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2734','Pulkovo 1995 / 3GK 126E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2735','Pulkovo 1995 / 3GK 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2738','Pulkovo 1995 / 3GK 132E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2739','Pulkovo 1995 / 3GK 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2740','Pulkovo 1995 / 3GK 138E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2741','Pulkovo 1995 / 3GK 141E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2742','Pulkovo 1995 / 3GK 144E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2743','Pulkovo 1995 / 3GK 147E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2744','Pulkovo 1995 / 3GK 150E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2745','Pulkovo 1995 / 3GK 153E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2746','Pulkovo 1995 / 3GK 156E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2747','Pulkovo 1995 / 3GK 159E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2748','Pulkovo 1995 / 3GK 162E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2749','Pulkovo 1995 / 3GK 165E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2750','Pulkovo 1995 / 3GK 168E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2751','Pulkovo 1995 / 3GK 171E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2752','Pulkovo 1995 / 3GK 174E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2753','Pulkovo 1995 / 3GK 177E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2754','Pulkovo 1995 / 3GK 180E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2755','Pulkovo 1995 / 3GK 177W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2756','Pulkovo 1995 / 3GK 174W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2757','Pulkovo 1995 / 3GK 171W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2758','Pulkovo 1995 / 3GK 168W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2759','NAD83(HARN) / AL E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2760','NAD83(HARN) / AL W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2761','NAD83(HARN) / AZ E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2762','NAD83(HARN) / AZ C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2763','NAD83(HARN) / AZ W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2764','NAD83(HARN) / AR N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2765','NAD83(HARN) / AR S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2766','NAD83(HARN) / CA 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2767','NAD83(HARN) / CA 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2768','NAD83(HARN) / CA 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2769','NAD83(HARN) / CA 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2770','NAD83(HARN) / CA 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2771','NAD83(HARN) / CA 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2772','NAD83(HARN) / CO N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2773','NAD83(HARN) / CO C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2774','NAD83(HARN) / CO S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2775','NAD83(HARN) / CT (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2777','NAD83(HARN) / FL E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2778','NAD83(HARN) / FL W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2779','NAD83(HARN) / FL N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2780','NAD83(HARN) / GA E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2781','NAD83(HARN) / GA W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2782','NAD83(HARN) / HI 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2783','NAD83(HARN) / HI 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2784','NAD83(HARN) / HI 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2785','NAD83(HARN) / HI 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2786','NAD83(HARN) / HI 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2788','NAD83(HARN) / ID C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2791','NAD83(HARN) / IL W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2792','NAD83(HARN) / IN E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2793','NAD83(HARN) / IN W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2796','NAD83(HARN) / KS N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2797','NAD83(HARN) / KS S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2798','NAD83(HARN) / KY N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2799','NAD83(HARN) / KY S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2800','NAD83(HARN) / LA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2801','NAD83(HARN) / LA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2805','NAD83(HARN) / MA md (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2806','NAD83(HARN) / MA Is (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2807','NAD83(HARN) / MI N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2808','NAD83(HARN) / MI C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2809','NAD83(HARN) / MI S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2810','NAD83(HARN) / MN N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2811','NAD83(HARN) / MN C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2812','NAD83(HARN) / MN S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2813','NAD83(HARN) / MS E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2814','NAD83(HARN) / MS W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2815','NAD83(HARN) / MO E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2816','NAD83(HARN) / MO C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2817','NAD83(HARN) / MO W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2820','NAD83(HARN) / NV E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2821','NAD83(HARN) / NV C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2822','NAD83(HARN) / NV W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2823','NAD83(HARN) / NH (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2825','NAD83(HARN) / NM E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2826','NAD83(HARN) / NM C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2827','NAD83(HARN) / NM W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2828','NAD83(HARN) / NY E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2829','NAD83(HARN) / NY C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2830','NAD83(HARN) / NY W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2831','NAD83(HARN) / NY LI (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2832','NAD83(HARN) / ND N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2833','NAD83(HARN) / ND S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2836','NAD83(HARN) / OK N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2837','NAD83(HARN) / OK S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2838','NAD83(HARN) / OR N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2839','NAD83(HARN) / OR S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2840','NAD83(HARN) / RI (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2841','NAD83(HARN) / SD N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2842','NAD83(HARN) / SD S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2844','NAD83(HARN) / TX N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2845','NAD83(HARN) / TX NC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2846','NAD83(HARN) / TX C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2847','NAD83(HARN) / TX SC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2848','NAD83(HARN) / TX S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2850','NAD83(HARN) / UT C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2853','NAD83(HARN) / VA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2854','NAD83(HARN) / VA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2855','NAD83(HARN) / WA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2856','NAD83(HARN) / WA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2857','NAD83(HARN) / WV N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2858','NAD83(HARN) / WV S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2859','NAD83(HARN) / WI N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2860','NAD83(HARN) / WI C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2861','NAD83(HARN) / WI S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2862','NAD83(HARN) / WY E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2863','NAD83(HARN) / WY EC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2864','NAD83(HARN) / WY WC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2865','NAD83(HARN) / WY W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2866','NAD83(HARN) / PR and VI','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2867','NAD83(HARN) / AZ E (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2868','NAD83(HARN) / AZ C (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2869','NAD83(HARN) / AZ W (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2870','NAD83(HARN) / CA 1 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2871','NAD83(HARN) / CA 2 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2872','NAD83(HARN) / CA 3 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2873','NAD83(HARN) / CA 4 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2874','NAD83(HARN) / CA 5 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2875','NAD83(HARN) / CA 6 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2876','NAD83(HARN) / CO N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2877','NAD83(HARN) / CO C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2878','NAD83(HARN) / CO S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2879','NAD83(HARN) / CT (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2880','NAD83(HARN) / DE (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2881','NAD83(HARN) / FL E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2882','NAD83(HARN) / FL W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2883','NAD83(HARN) / FL N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2884','NAD83(HARN) / GA E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2885','NAD83(HARN) / GA W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2886','NAD83(HARN) / ID E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2887','NAD83(HARN) / ID C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2888','NAD83(HARN) / ID W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2967','NAD83(HARN) / IN E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2968','NAD83(HARN) / IN W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2891','NAD83(HARN) / KY N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2892','NAD83(HARN) / KY S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2893','NAD83(HARN) / MD (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2894','NAD83(HARN) / MA md (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2895','NAD83(HARN) / MA Is (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2896','NAD83(HARN) / MI N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2897','NAD83(HARN) / MI C (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2898','NAD83(HARN) / MI S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2899','NAD83(HARN) / MS E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2900','NAD83(HARN) / MS W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2901','NAD83(HARN) / MT (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2902','NAD83(HARN) / NM E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2903','NAD83(HARN) / NM C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2904','NAD83(HARN) / NM W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2905','NAD83(HARN) / NY E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2906','NAD83(HARN) / NY C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2907','NAD83(HARN) / NY W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2908','NAD83(HARN) / NY LI (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2909','NAD83(HARN) / ND N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2910','NAD83(HARN) / ND S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2911','NAD83(HARN) / OK N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2912','NAD83(HARN) / OK S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2913','NAD83(HARN) / OR N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2914','NAD83(HARN) / OR S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2915','NAD83(HARN) / TN (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2916','NAD83(HARN) / TX N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2917','NAD83(HARN) / TX NC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2918','NAD83(HARN) / TX C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2919','NAD83(HARN) / TX SC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2920','NAD83(HARN) / TX S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2921','NAD83(HARN) / UT N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2922','NAD83(HARN) / UT C (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2923','NAD83(HARN) / UT S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2924','NAD83(HARN) / VA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2925','NAD83(HARN) / VA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2926','NAD83(HARN) / WA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2927','NAD83(HARN) / WA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2928','NAD83(HARN) / WI N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2929','NAD83(HARN) / WI C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2930','NAD83(HARN) / WI S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2932','QND95 / Qatar Nat Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2935','Pulkovo 1942 / CS63 A1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2936','Pulkovo 1942 / CS63 A2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2937','Pulkovo 1942 / CS63 A3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2938','Pulkovo 1942 / CS63 A4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2939','Pulkovo 1942 / CS63 K2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2940','Pulkovo 1942 / CS63 K3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2941','Pulkovo 1942 / CS63 K4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2942','Porto Santo / UTM 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2943','Selvagem Gr. / UTM 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2944','NAD83(CSRS) / SCoPQ 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2952','NAD83(CSRS) / MTM zn 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2953','NAD83(CSRS) / NB Stereo','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2954','NAD83(CSRS) / PEI Stereo','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2955','NAD83(CSRS) / UTM 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2956','NAD83(CSRS) / UTM 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2957','NAD83(CSRS) / UTM 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2958','NAD83(CSRS) / UTM 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2959','NAD83(CSRS) / UTM 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2960','NAD83(CSRS) / UTM 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2961','NAD83(CSRS) / UTM 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2962','NAD83(CSRS) / UTM 21N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2963','Lisbon 1890 / Bonne','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2965','NAD83 / Indiana E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2966','NAD83 / Indiana W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2969','Fort Marigot / UTM 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2978','IGN72 Nuku Hiva / UTM 7S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2980','Combani 1950 / UTM 38S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2981','IGN56 Lifou / UTM zn 58S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2985','Petrels 1972 / Adelie St','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2986','Perroud 1950 / Adelie St','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2987','St. Pierre Miq / UTM 21N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2992','NAD83 / OR GIC Lam (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2994','NAD83(HARN) / OR GIC Lam (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2995','IGN53 Mare / UTM zn 58S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2996','ST84 des Pins / UTM 58S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2997','ST71 Belep / UTM zn 58S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2998','NEA74 Noumea / UTM 58S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2999','Grand Comoros / UTM 38S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3031','WGS 84 / Antarctic PS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3032','WGS 84 / Aus Antarc PS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3033','WGS 84 / Aus Antarc LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3052','Reykjavik 1900 / Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3053','Hjorsey 1955 / Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3054','Hjorsey 1955 / UTM 26N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3055','Hjorsey 1955 / UTM 27N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3056','Hjorsey 1955 / UTM 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3058','Helle 1954 / Jan Mayen','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3060','IGN72 Gr Terre / UTM 58S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3071','NAD83(HARN) / WTM 83','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3072','NAD83 / Maine CS2000 E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3463','NAD83 / Maine CS2000 C','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3074','NAD83 / Maine CS2000 W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3075','NAD83(HARN) / ME 2000 E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3464','NAD83(HARN) / ME 2000 C','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3077','NAD83(HARN) / ME 2000 W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3086','NAD83 / FL GDL Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3087','NAD83(HARN) / FL GDL AEA','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3102','American Samoa 62 / LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3114','MAGNA-SIRGAS / Col FW','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3115','MAGNA-SIRGAS / Col W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3116','MAGNA-SIRGAS / Col Bog','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3117','MAGNA-SIRGAS / Col EC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3118','MAGNA-SIRGAS / Col E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3121','PRS92 / Philippines 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3122','PRS92 / Philippines 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3123','PRS92 / Philippines 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3124','PRS92 / Philippines 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3125','PRS92 / Philippines 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3139','Vanua Levu 1915 / Cass','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3140','Viti Levu 1912 / Cassini','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3146','Pulkovo 1942 / 3GK zn 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3147','Pulkovo 1942 / 3GK 18E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3148','Indian 1960 / UTM 48N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3149','Indian 1960 / UTM 49N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3150','Pulkovo 1995 / 3GK zn 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3151','Pulkovo 1995 / 3GK 18E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3154','NAD83(CSRS) / UTM 7N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3155','NAD83(CSRS) / UTM 8N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3156','NAD83(CSRS) / UTM 9N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3157','NAD83(CSRS) / UTM 10N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3158','NAD83(CSRS) / UTM 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3159','NAD83(CSRS) / UTM 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3160','NAD83(CSRS) / UTM 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3161','NAD83 / Ontario MNR LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3162','NAD83(CSRS) / ON MNR LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3163','RGNC / LCC New Caledonia','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3164','ST87 Ouvea / UTM 58S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3165','NEA74 Noumea / LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3166','NEA74 Noumea / LCC2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3167','Kertau (RSO) / RSO (ch)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3168','Kertau (RSO) / RSO (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3172','IGN53 Mare / UTM 59S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3174','NAD83 / GL Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3175','NAD83 / GL+SLS Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3997','WGS 84 / DLTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3995','WGS 84 / Arctic PS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3996','WGS 84 / IBCAO PS','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7410','PSD93 + PHD93','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5725','Fahud Height Datum height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3190','LGD2006 / Libya TM 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3191','LGD2006 / Libya TM 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3192','LGD2006 / Libya TM 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3193','LGD2006 / Libya TM 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3194','LGD2006 / Libya TM 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3195','LGD2006 / Libya TM 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3196','LGD2006 / Libya TM 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3197','LGD2006 / Libya TM 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3198','LGD2006 / Libya TM 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3204','WGS 84 / SCAR SP19-20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3205','WGS 84 / SCAR SP21-22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6933','EASE-Grid 2.0 Global','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6931','EASE-Grid 2.0 North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6932','EASE-Grid 2.0 South','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6184','Cais da Figueirinha - Angra do Heroísmo height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3206','WGS 84 / SCAR SP23-24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3207','WGS 84 / SCAR SQ01-02','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3208','WGS 84 / SCAR SQ19-20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3209','WGS 84 / SCAR SQ21-22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3210','WGS 84 / SCAR SQ37-38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3211','WGS 84 / SCAR SQ39-40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3212','WGS 84 / SCAR SQ41-42','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3213','WGS 84 / SCAR SQ43-44','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3214','WGS 84 / SCAR SQ45-46','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3215','WGS 84 / SCAR SQ47-48','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3216','WGS 84 / SCAR SQ49-50','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3217','WGS 84 / SCAR SQ51-52','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3218','WGS 84 / SCAR SQ53-54','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3219','WGS 84 / SCAR SQ55-56','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3220','WGS 84 / SCAR SQ57-58','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3221','WGS 84 / SCAR SR13-14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3222','WGS 84 / SCAR SR15-16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3223','WGS 84 / SCAR SR17-18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3224','WGS 84 / SCAR SR19-20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3225','WGS 84 / SCAR SR27-28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3226','WGS 84 / SCAR SR29-30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3227','WGS 84 / SCAR SR31-32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3228','WGS 84 / SCAR SR33-34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3229','WGS 84 / SCAR SR35-36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3230','WGS 84 / SCAR SR37-38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3231','WGS 84 / SCAR SR39-40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3232','WGS 84 / SCAR SR41-42','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3233','WGS 84 / SCAR SR43-44','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3234','WGS 84 / SCAR SR45-46','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3235','WGS 84 / SCAR SR47-48','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3236','WGS 84 / SCAR SR49-50','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3237','WGS 84 / SCAR SR51-52','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3238','WGS 84 / SCAR SR53-54','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3239','WGS 84 / SCAR SR55-56','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3240','WGS 84 / SCAR SR57-58','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3241','WGS 84 / SCAR SR59-60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3242','WGS 84 / SCAR SS04-06','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3243','WGS 84 / SCAR SS07-09','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3244','WGS 84 / SCAR SS10-12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3245','WGS 84 / SCAR SS13-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3246','WGS 84 / SCAR SS16-18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3247','WGS 84 / SCAR SS19-21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3248','WGS 84 / SCAR SS25-27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3249','WGS 84 / SCAR SS28-30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3250','WGS 84 / SCAR SS31-33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3251','WGS 84 / SCAR SS34-36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3252','WGS 84 / SCAR SS37-39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3253','WGS 84 / SCAR SS40-42','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3254','WGS 84 / SCAR SS43-45','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3255','WGS 84 / SCAR SS46-48','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3256','WGS 84 / SCAR SS49-51','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3257','WGS 84 / SCAR SS52-54','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3258','WGS 84 / SCAR SS55-57','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3259','WGS 84 / SCAR SS58-60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3260','WGS 84 / SCAR ST01-04','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3261','WGS 84 / SCAR ST05-08','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3262','WGS 84 / SCAR ST09-12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3263','WGS 84 / SCAR ST13-16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3264','WGS 84 / SCAR ST17-20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3265','WGS 84 / SCAR ST21-24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3266','WGS 84 / SCAR ST25-28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3267','WGS 84 / SCAR ST29-32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3268','WGS 84 / SCAR ST33-36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3269','WGS 84 / SCAR ST37-40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3270','WGS 84 / SCAR ST41-44','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3271','WGS 84 / SCAR ST45-48','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3272','WGS 84 / SCAR ST49-52','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3273','WGS 84 / SCAR ST53-56','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3274','WGS 84 / SCAR ST57-60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3275','WGS 84 / SCAR SU01-05','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3276','WGS 84 / SCAR SU06-10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3277','WGS 84 / SCAR SU11-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3278','WGS 84 / SCAR SU16-20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3279','WGS 84 / SCAR SU21-25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3280','WGS 84 / SCAR SU26-30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3281','WGS 84 / SCAR SU31-35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3282','WGS 84 / SCAR SU36-40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3283','WGS 84 / SCAR SU41-45','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3284','WGS 84 / SCAR SU46-50','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3285','WGS 84 / SCAR SU51-55','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3286','WGS 84 / SCAR SU56-60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3287','WGS 84 / SCAR SV01-10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3288','WGS 84 / SCAR SV11-20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3289','WGS 84 / SCAR SV21-30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3290','WGS 84 / SCAR SV31-40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3291','WGS 84 / SCAR SV41-50','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3292','WGS 84 / SCAR SV51-60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3293','WGS 84 / SCAR SW01-60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3294','WGS 84 / Transantarctic','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3302','IGN63 Hiva Oa / UTM 7S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3303','Fatu Iva 72 / UTM 7S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3307','Nakhl-e Ghanem / UTM 39N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3309','NAD27 / CA Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3310','NAD83 / CA Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3311','NAD83(HARN) / CA Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3314','Katanga 1955 / Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3315','Katanga 1955 / TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3316','Kasai 1953 / Congo TM 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3317','Kasai 1953 / Congo TM 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3318','IGC 1962 / Congo TM 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3319','IGC 1962 / Congo TM 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3320','IGC 1962 / Congo TM 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3321','IGC 1962 / Congo TM 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3322','IGC 1962 / Congo TM 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3323','IGC 1962 / Congo TM 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3324','IGC 1962 / Congo TM 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3325','IGC 1962 / Congo TM 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3326','IGC 1962 / Congo TM 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3327','IGC 1962 / Congo TM 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3329','Pulkovo 42(58) / 3GK zn5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3840','Pulkovo 42(58) / 3GKzn10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3837','Pulkovo 42(58) / 3GK zn3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3838','Pulkovo 42(58) / 3GK zn4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3330','Pulkovo 42(58) / 3GK zn6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3331','Pulkovo 42(58) / 3GK zn7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3332','Pulkovo 42(58) / 3GK zn8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3839','Pulkovo 42(58) / 3GK zn9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3841','Pulkovo 42(83) / 3GK zn6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3833','Pulkovo 42(58) / GK zn 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3333','Pulkovo 42(58) / GK zn 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3334','Pulkovo 42(58) / GK zn 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3335','Pulkovo 42(58) / GK zn 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3842','Pulkovo 42(83) / 3GK zn7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3843','Pulkovo 42(83) / 3GK zn8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3834','Pulkovo 42(83) / GK zn 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3835','Pulkovo 42(83) / GK zn 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3836','Pulkovo 42(83) / GK zn 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3779','NAD83(CSRS) / AB 3TM 111','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3780','NAD83(CSRS) / AB 3TM 114','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3781','NAD83(CSRS) / AB 3TM 117','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3802','NAD83(CSRS) / AB 3TM 120','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26891','NAD83(CSRS) / MTM zn 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26892','NAD83(CSRS) / MTM zn 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26893','NAD83(CSRS) / MTM zn 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26894','NAD83(CSRS) / MTM zn 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26895','NAD83(CSRS) / MTM zn 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26896','NAD83(CSRS) / MTM zn 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26897','NAD83(CSRS) / MTM zn 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3799','NAD83(CSRS) / MTQ LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3581','NAD83(CSRS) / NWT LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3761','NAD83(CSRS) / UTM 22N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3579','NAD83(CSRS) / YT Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3441','NAD83(HARN) / AR N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3442','NAD83(HARN) / AR S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3760','NAD83(HARN) / HI 3 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3443','NAD83(HARN) / IL E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3444','NAD83(HARN) / IL W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3425','NAD83(HARN) / IA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3426','NAD83(HARN) / IA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3427','NAD83(HARN) / KS N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3428','NAD83(HARN) / KS S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3456','NAD83(HARN) / LA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3457','NAD83(HARN) / LA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26855','NAD83(HARN) / ME E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26856','NAD83(HARN) / ME W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3079','NAD83(HARN) / MI Georef','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26858','NAD83(HARN) / MN C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26857','NAD83(HARN) / MN N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26859','NAD83(HARN) / MN S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26860','NAD83(HARN) / NE (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3430','NAD83(HARN) / NV C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3429','NAD83(HARN) / NV E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3431','NAD83(HARN) / NV W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3445','NAD83(HARN) / NH (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3432','NAD83(HARN) / NJ (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3358','NAD83(HARN) / NC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3404','NAD83(HARN) / NC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3753','NAD83(HARN) / OH N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3754','NAD83(HARN) / OH S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3362','NAD83(HARN) / PA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3363','NAD83(HARN) / PA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3364','NAD83(HARN) / PA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3365','NAD83(HARN) / PA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3446','NAD83(HARN) / RI (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3360','NAD83(HARN) / SC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3361','NAD83(HARN) / SC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3458','NAD83(HARN) / SD N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3459','NAD83(HARN) / SD S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3569','NAD83(HARN) / UT C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3568','NAD83(HARN) / UT N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3570','NAD83(HARN) / UT S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3740','NAD83(HARN) / UTM 10N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3741','NAD83(HARN) / UTM 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3742','NAD83(HARN) / UTM 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3743','NAD83(HARN) / UTM 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3744','NAD83(HARN) / UTM 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3745','NAD83(HARN) / UTM 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3746','NAD83(HARN) / UTM 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3747','NAD83(HARN) / UTM 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3748','NAD83(HARN) / UTM 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3749','NAD83(HARN) / UTM 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3750','NAD83(HARN) / UTM 4N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3751','NAD83(HARN) / UTM 5N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26861','NAD83(HARN) / WV N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26862','NAD83(HARN) / WV S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3755','NAD83(HARN) / WY E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3756','NAD83(HARN) / WY EC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3758','NAD83(HARN) / WY W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3757','NAD83(HARN) / WY WC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3757','NAD83(HPGN) / Wyoming West Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3758','NAD83(HPGN) / Wyoming West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3756','NAD83(HPGN) / Wyoming East Central (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3755','NAD83(HPGN) / Wyoming East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3754','NAD83(HPGN) / Ohio South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3753','NAD83(HPGN) / Ohio North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3336','Kerguelen 62 / UTM 42S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3337','Le Pouce 34 / Mauritius','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3339','IGCB 1955 / Congo TM 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3340','IGCB 1955 / Congo TM 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3341','IGCB 1955 / Congo TM 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3343','Mauritania 99 / UTM 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3344','Mauritania 99 / UTM 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3345','Mauritania 99 / UTM 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3350','Pulkovo 1942 / CS63 C0','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3351','Pulkovo 1942 / CS63 C1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3352','Pulkovo 1942 / CS63 C2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3354','Mhast offshore / UTM 32S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3353','Mhast onshore / UTM 32S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3356','G Cayman 1959 / UTM 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3357','L Cayman 1961 / UTM 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3367','IGN Astro 1960 / UTM 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3368','IGN Astro 1960 / UTM 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3369','IGN Astro 1960 / UTM 30N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3376','GDM2000 / E Malaysia RSO','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3378','GDM2000 / Melaka Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3381','GDM2000 / Terengganu','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3383','GDM2000 / Kedah Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3388','Pulkovo 1942 / Caspian','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4974','278','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3396','PD/83 / 3GK zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3397','PD/83 / 3GK zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3398','RD/83 / 3GK zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3399','RD/83 / 3GK zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3403','NAD83(CSRS) / AB 10TM R','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3402','NAD83(CSRS) / AB 10TM F','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3401','NAD83 / AB 10TM Resource','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3400','NAD83 / AB 10TM Forest','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3407','Hong Kong 1963 Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3411','NSIDC Sea Ice PS North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3412','NSIDC Sea Ice PS South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3413','WGS 84 / NSIDC PS North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3417','NAD83 / Iowa N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3418','NAD83 / Iowa S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3419','NAD83 / Kansas N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3420','NAD83 / Kansas S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3421','NAD83 / Nevada E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3422','NAD83 / Nevada C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3423','NAD83 / Nevada W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3433','NAD83 / Arkansas N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3434','NAD83 / Arkansas S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3435','NAD83 / Illinois E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3436','NAD83 / Illinois W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3437','NAD83 / NH (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3438','NAD83 / RI (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3448','JAD2001 / JA Metric Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3451','NAD83 / Louisiana N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3452','NAD83 / Louisiana S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3453','NAD83 / LA Offshore (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3454','NAD83 / S Dakota N ftUS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3455','NAD83 / S Dakota S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3460','Fiji 1986 / Map Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3461','Dabola 1981 / UTM 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3462','Dabola 1981 / UTM 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3560','NAD83 / Utah North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3566','NAD83 / Utah Cen (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3567','NAD83 / Utah South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3571','WGS 84 / LAEA Bering Sea','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3572','WGS 84 / LAEA Alaska','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3573','WGS 84 / LAEA Canada','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3574','WGS 84 / LAEA Atlantic','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3575','WGS 84 / LAEA Europe','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3576','WGS 84 / LAEA Russia','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3577','GDA94 / Aus Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3706','NAD83(NSRS) / UTM 59N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3707','NAD83(NSRS) / UTM 60N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3708','NAD83(NSRS) / UTM 1N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3709','NAD83(NSRS) / UTM 2N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3710','NAD83(NSRS) / UTM 3N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3711','NAD83(NSRS) / UTM 4N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3712','NAD83(NSRS) / UTM 5N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3713','NAD83(NSRS) / UTM 6N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3714','NAD83(NSRS) / UTM 7N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3715','NAD83(NSRS) / UTM 8N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3716','NAD83(NSRS) / UTM 9N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3717','NAD83(NSRS) / UTM 10N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3718','NAD83(NSRS) / UTM 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3719','NAD83(NSRS) / UTM 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3720','NAD83(NSRS) / UTM 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3721','NAD83(NSRS) / UTM 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3722','NAD83(NSRS) / UTM 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3723','NAD83(NSRS) / UTM 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3724','NAD83(NSRS) / UTM 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3725','NAD83(NSRS) / UTM 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3726','NAD83(NSRS) / UTM 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3734','NAD83 / Ohio N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3735','NAD83 / Ohio S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3736','NAD83 / Wyoming E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3737','NAD83 / Wyoming EC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3738','NAD83 / Wyoming WC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3739','NAD83 / Wyoming W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3759','NAD83 / Hawaii 3 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3762','WGS 84 / S Georgia LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3764','NZGD2000 / CI Circuit','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3771','NAD27 / Alberta 3TM 111','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3772','NAD27 / Alberta 3TM 114','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3773','NAD27 / Alberta 3TM 117','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3800','NAD27 / Alberta 3TM 112','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3775','NAD83 / Alberta 3TM 111','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3776','NAD83 / Alberta 3TM 114','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3777','NAD83 / Alberta 3TM 117','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3801','NAD83 / Alberta 3TM 120','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3783','Pitcairn 2006 / TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3784','Pitcairn 1967 / UTM 9S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3785','Popular Vis CRS / Merc','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3786','World Equidistant Cyl','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3829','Hu Tzu Shan / UTM 51N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3845','SWEREF99 / RT90 7.5 gon V','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3846','SWEREF99 / RT90 5 gon V','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3847','SWEREF99 / RT90 2.5 gon V','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3848','SWEREF99 / RT90 0 gon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3849','SWEREF99 / RT90 2.5 gon O','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3850','SWEREF99 / RT90 5 gon O','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3920','Puerto Rico / UTM 20N','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5607','Bora Bora 2001 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5733','Dansk Normal Nul height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5736','YS56 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5737','YS85 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5753','Nivellement General de Nouvelle Caledonie','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5755','Nivellement General Guyanais 1977','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20436','Ain el Abd / UTM 36N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20440','Ain el Abd / UTM 40N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20791','DLx','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21453','Beijing 1954 / GK CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21454','Beijing 1954 / GK CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21455','Beijing 1954 / GK CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21456','Beijing 1954 / GK CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21457','Beijing 1954 / GK CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21458','Beijing 1954 / GK CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21459','Beijing 1954 / GK CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21460','Beijing 1954 / GK CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21461','Beijing 1954 / GK CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21462','Beijing 1954 / GK CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21463','Beijing 1954 / GK CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','21818','Bogota 1975 / UTM 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22521','Corrego Alegre / UTM 21S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22522','Corrego Alegre / UTM 22S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22525','Corrego Alegre / UTM 25S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23830','DGN95 / Indonesia 46.2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23831','DGN95 / Indonesia 47.1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23832','DGN95 / Indonesia 47.2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23833','DGN95 / Indonesia 48.1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23834','DGN95 / Indonesia 48.2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23835','DGN95 / Indonesia 49.1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23836','DGN95 / Indonesia 49.2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23837','DGN95 / Indonesia 50.1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23838','DGN95 / Indonesia 50.2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23839','DGN95 / Indonesia 51.1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23840','DGN95 / Indonesia 51.2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23841','DGN95 / Indonesia 52.1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23842','DGN95 / Indonesia 52.2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23843','DGN95 / Indonesia 53.1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23844','DGN95 / Indonesia 53.2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','23845','DGN95 / Indonesia 54.1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26847','NAD83 / Maine E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26848','NAD83 / Maine W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26849','NAD83 / Minnesota N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26850','NAD83 / Minnesota C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26851','NAD83 / Minnesota S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26853','NAD83 / WV North (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26854','NAD83 / WV South (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27037','Nahrwan 1967 / UTM 37N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27205','NZGD49 / Mount Eden','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27206','NZGD49 / Bay of Plenty','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27207','NZGD49 / Poverty Bay','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27208','NZGD49 / Hawkes Bay','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27209','NZGD49 / Taranaki','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27210','NZGD49 / Tuhirangi','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27211','NZGD49 / Wanganui','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27212','NZGD49 / Wairarapa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27213','NZGD49 / Wellington','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27214','NZGD49 / Collingwood','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27220','NZGD49 / Marlborough','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27221','NZGD49 / Hokitika','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27223','NZGD49 / Jacksons Bay','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27224','NZGD49 / Mount Pleasant','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27227','NZGD49 / Lindis Peak','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27228','NZGD49 / Mount Nicholas','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27229','NZGD49 / Mount York','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27230','NZGD49 / Observation Pt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27231','NZGD49 / North Taieri','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','27493','Datum 73 / Modified Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28404','Pulkovo 1942 / GK zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','28405','Pulkovo 1942 / GK zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','29901','OSNI 52 / Irish Nat Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30179','Tokyo / Japan zone XIX','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30493','Voirol79 / N Algeria old','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30494','Voirol79 / S Algeria old','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31251','MGI (Ferro) / Aut GK W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31252','MGI (Ferro) / Aut GK C','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31253','MGI (Ferro) / Aut GK E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31466','DHDN / 3GK zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31467','DHDN / 3GK zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31468','DHDN / 3GK zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31469','DHDN / 3GK zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31528','Conakry 1905 / UTM 28N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31529','Conakry 1905 / UTM 29N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31965','SIRGAS 2000 / UTM 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31966','SIRGAS 2000 / UTM 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31967','SIRGAS 2000 / UTM 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31968','SIRGAS 2000 / UTM 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31969','SIRGAS 2000 / UTM 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31970','SIRGAS 2000 / UTM 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31971','SIRGAS 2000 / UTM 17N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31972','SIRGAS 2000 / UTM 18N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31973','SIRGAS 2000 / UTM 19N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31974','SIRGAS 2000 / UTM 20N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31975','SIRGAS 2000 / UTM 21N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31976','SIRGAS 2000 / UTM 22N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31977','SIRGAS 2000 / UTM 17S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31978','SIRGAS 2000 / UTM 18S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31979','SIRGAS 2000 / UTM 19S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31980','SIRGAS 2000 / UTM 20S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31981','SIRGAS 2000 / UTM 21S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31982','SIRGAS 2000 / UTM 22S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31983','SIRGAS 2000 / UTM 23S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31984','SIRGAS 2000 / UTM 24S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31985','SIRGAS 2000 / UTM 25S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32099','NAD27 / Louisiana Off','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32199','NAD83 / Louisiana Off m','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32600','WGS 84 / UTM system N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32700','WGS 84 / UTM system S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32663','WGS 84 / Equidistant Cyl','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3465','NAD83(NSRS) / AL E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3466','NAD83(NSRS) / AL W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3484','NAD83(NSRS) / AR N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3485','NAD83(NSRS) / AR N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3486','NAD83(NSRS) / AR S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3487','NAD83(NSRS) / AR S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3479','NAD83(NSRS) / AZ C (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3478','NAD83(NSRS) / AZ C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3481','NAD83(NSRS) / AZ E (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3480','NAD83(NSRS) / AZ E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3483','NAD83(NSRS) / AZ W (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3482','NAD83(NSRS) / AZ W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3489','NAD83(NSRS) / CA 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3490','NAD83(NSRS) / CA 1 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3491','NAD83(NSRS) / CA 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3492','NAD83(NSRS) / CA 2 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3493','NAD83(NSRS) / CA 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3494','NAD83(NSRS) / CA 3 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3495','NAD83(NSRS) / CA 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3496','NAD83(NSRS) / CA 4 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3497','NAD83(NSRS) / CA 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3498','NAD83(NSRS) / CA 5 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3499','NAD83(NSRS) / CA 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3500','NAD83(NSRS) / CA 6 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3488','NAD83(NSRS) / CA Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3501','NAD83(NSRS) / CO C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3502','NAD83(NSRS) / CO C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3503','NAD83(NSRS) / CO N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3504','NAD83(NSRS) / CO N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3505','NAD83(NSRS) / CO S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3506','NAD83(NSRS) / CO S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3508','NAD83(NSRS) / CT (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3507','NAD83(NSRS) / CT (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3510','NAD83(NSRS) / DE (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3511','NAD83(NSRS) / FL E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3512','NAD83(NSRS) / FL E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3513','NAD83(NSRS) / FL GDL AEA','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3514','NAD83(NSRS) / FL N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3515','NAD83(NSRS) / FL N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3516','NAD83(NSRS) / FL W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3517','NAD83(NSRS) / FL W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3518','NAD83(NSRS) / GA E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3519','NAD83(NSRS) / GA E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3520','NAD83(NSRS) / GA W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3521','NAD83(NSRS) / GA W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3537','NAD83(NSRS) / IA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3539','NAD83(NSRS) / IA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3522','NAD83(NSRS) / ID C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3523','NAD83(NSRS) / ID C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3525','NAD83(NSRS) / ID E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3527','NAD83(NSRS) / ID W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3528','NAD83(NSRS) / IL E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3529','NAD83(NSRS) / IL E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3530','NAD83(NSRS) / IL W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3531','NAD83(NSRS) / IL W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3532','NAD83(NSRS) / IN E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3533','NAD83(NSRS) / IN E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3534','NAD83(NSRS) / IN W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3535','NAD83(NSRS) / IN W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3540','NAD83(NSRS) / KS N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3541','NAD83(NSRS) / KS N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3542','NAD83(NSRS) / KS S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3543','NAD83(NSRS) / KS S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3544','NAD83(NSRS) / KY N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3545','NAD83(NSRS) / KY N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3548','NAD83(NSRS) / KY S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3549','NAD83(NSRS) / KY S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3546','NAD83(NSRS) / KY1Z (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3550','NAD83(NSRS) / LA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3551','NAD83(NSRS) / LA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3552','NAD83(NSRS) / LA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3553','NAD83(NSRS) / LA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3583','NAD83(NSRS) / MA Is (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3584','NAD83(NSRS) / MA Is (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3585','NAD83(NSRS) / MA md (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3586','NAD83(NSRS) / MA md (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3582','NAD83(NSRS) / MD (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3554','NAD83(NSRS) / ME 2000 C','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3555','NAD83(NSRS) / ME 2000 E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3556','NAD83(NSRS) / ME 2000 W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3557','NAD83(NSRS) / ME83 E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26863','NAD83(NSRS) / ME E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3558','NAD83(NSRS) / ME83 W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26864','NAD83(NSRS) / ME W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3588','NAD83(NSRS) / MI C (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3587','NAD83(NSRS) / MI C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3591','NAD83(NSRS) / MI Georef','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3590','NAD83(NSRS) / MI N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3589','NAD83(NSRS) / MI N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3593','NAD83(NSRS) / MI S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3592','NAD83(NSRS) / MI S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3594','NAD83(NSRS) / MN C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26866','NAD83(NSRS) / MN C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3595','NAD83(NSRS) / MN N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26865','NAD83(NSRS) / MN N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3596','NAD83(NSRS) / MN S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26867','NAD83(NSRS) / MN S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3601','NAD83(NSRS) / MO C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3602','NAD83(NSRS) / MO E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3603','NAD83(NSRS) / MO W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3597','NAD83(NSRS) / MS E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3598','NAD83(NSRS) / MS E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3599','NAD83(NSRS) / MS W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3600','NAD83(NSRS) / MS W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3816','NAD83(NSRS) / MSTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3605','NAD83(NSRS) / MT (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3632','NAD83(NSRS) / NC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3631','NAD83(NSRS) / NC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3634','NAD83(NSRS) / ND N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3633','NAD83(NSRS) / ND N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3636','NAD83(NSRS) / ND S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3635','NAD83(NSRS) / ND S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26868','NAD83(NSRS) / NE (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3606','NAD83(NSRS) / NE (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3614','NAD83(NSRS) / NH (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3613','NAD83(NSRS) / NH (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3616','NAD83(NSRS) / NJ (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3617','NAD83(NSRS) / NM C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3618','NAD83(NSRS) / NM C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3619','NAD83(NSRS) / NM E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3620','NAD83(NSRS) / NM E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3621','NAD83(NSRS) / NM W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3622','NAD83(NSRS) / NM W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3607','NAD83(NSRS) / NV C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3608','NAD83(NSRS) / NV C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3609','NAD83(NSRS) / NV E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3610','NAD83(NSRS) / NV E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3611','NAD83(NSRS) / NV W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3612','NAD83(NSRS) / NV W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3623','NAD83(NSRS) / NY C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3624','NAD83(NSRS) / NY C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3625','NAD83(NSRS) / NY E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3626','NAD83(NSRS) / NY E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3627','NAD83(NSRS) / NY LI (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3628','NAD83(NSRS) / NY LI (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3629','NAD83(NSRS) / NY W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3630','NAD83(NSRS) / NY W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3728','NAD83(NSRS) / OH N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3729','NAD83(NSRS) / OH S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3639','NAD83(NSRS) / OK N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3640','NAD83(NSRS) / OK N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3641','NAD83(NSRS) / OK S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3642','NAD83(NSRS) / OK S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3646','NAD83(NSRS) / OR N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3645','NAD83(NSRS) / OR N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3648','NAD83(NSRS) / OR S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3647','NAD83(NSRS) / OR S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3644','NAD83(2007) / OR GIC Lam (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3649','NAD83(NSRS) / PA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3650','NAD83(NSRS) / PA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3651','NAD83(NSRS) / PA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3652','NAD83(NSRS) / PA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3654','NAD83(NSRS) / RI (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3653','NAD83(NSRS) / RI (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3656','NAD83(NSRS) / SC (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3655','NAD83(NSRS) / SC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3657','NAD83(NSRS) / SD N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3658','NAD83(NSRS) / SD N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3659','NAD83(NSRS) / SD S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3660','NAD83(NSRS) / SD S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3662','NAD83(NSRS) / TN (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3663','NAD83(NSRS) / TX C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3664','NAD83(NSRS) / TX C ftUS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3667','NAD83(NSRS) / TX N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3668','NAD83(NSRS) / TX N ftUS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3669','NAD83(NSRS) / TX NC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3670','NAD83(NSRS) / TX NC ftUS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3671','NAD83(NSRS) / TX S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3672','NAD83(NSRS) / TX S ftUS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3673','NAD83(NSRS) / TX SC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3674','NAD83(NSRS) / TX SC ftUS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3676','NAD83(NSRS) / UT C (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3675','NAD83(NSRS) / UT C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3677','NAD83(NSRS) / UT C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3679','NAD83(NSRS) / UT N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3680','NAD83(NSRS) / UT N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3682','NAD83(NSRS) / UT S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3683','NAD83(NSRS) / UT S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3685','NAD83(NSRS) / VA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3686','NAD83(NSRS) / VA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3687','NAD83(NSRS) / VA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3688','NAD83(NSRS) / VA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3689','NAD83(NSRS) / WA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3690','NAD83(NSRS) / WA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3691','NAD83(NSRS) / WA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3692','NAD83(NSRS) / WA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3695','NAD83(NSRS) / WI C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3696','NAD83(NSRS) / WI C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3697','NAD83(NSRS) / WI N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3698','NAD83(NSRS) / WI N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3699','NAD83(NSRS) / WI S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3700','NAD83(NSRS) / WI S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3701','NAD83(NSRS) / WTM 83','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3693','NAD83(NSRS) / WV N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26869','NAD83(NSRS) / WV N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3694','NAD83(NSRS) / WV S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','26870','NAD83(NSRS) / WV S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3702','NAD83(NSRS) / WY E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3730','NAD83(NSRS) / WY E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3703','NAD83(NSRS) / WY EC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3731','NAD83(NSRS) / WY EC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3705','NAD83(NSRS) / WY W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3733','NAD83(NSRS) / WY W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3704','NAD83(NSRS) / WY WC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3732','NAD83(NSRS) / WY WC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3467','NAD83(NSRS) / AK Alb','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3468','NAD83(NSRS) / AK 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3469','NAD83(NSRS) / AK 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3470','NAD83(NSRS) / AK 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3471','NAD83(NSRS) / AK 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3472','NAD83(NSRS) / AK 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3473','NAD83(NSRS) / AK 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3474','NAD83(NSRS) / AK 7 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3475','NAD83(NSRS) / AK 8 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3476','NAD83(NSRS) / AK 9 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3477','NAD83(NSRS) / AK 10 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3509','NAD83(NSRS) / DE (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3524','NAD83(NSRS) / ID E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3526','NAD83(NSRS) / ID W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3536','NAD83(NSRS) / IA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3538','NAD83(NSRS) / IA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3559','NAD83(NSRS) / MD (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3604','NAD83(NSRS) / MT (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3615','NAD83(NSRS) / NJ (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3661','NAD83(NSRS) / TN (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3665','NAD83(NSRS) / TX Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3666','NAD83(NSRS) / TX LC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3678','NAD83(NSRS) / UT N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3681','NAD83(NSRS) / UT S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3684','NAD83(NSRS) / VT (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2790','NAD83(HARN) / Illinois East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3084','NAD83(HARN) / TX LC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3083','TCMS/AEA','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3082','NAD83 / TX LC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3085','NAD83(HARN) / TX Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3091','KY1Z','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3090','NAD83(HARN) / KY1Z','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3088','NAD83 / KY1Z (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7423','ETRF89 + EVRF2007 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3857','WGS 84 / Popular Visualisation Pseudo-Mercator','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','3886','National Elevation Network height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3893','ED50 / Iraq Nat. Grid','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4743','Karbala 1979 (Polservice)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3391','Karbala 1979 (Polservice) / UTM zone 37N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3392','Karbala 1979 (Polservice) / UTM zone 38N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3393','Karbala 1979 (Polservice) / UTM zone 39N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4191','ALB86','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2462','ALB86 / GK zn 4','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4129','Observatario Campos Rodrigues 1907','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6984','IG05','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6962','ETRS89 / Albania LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6991','IG05/12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6870','ETRS89 / Albania TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2039','Israel / Israeli TM Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6796','NAD83(CORS96) / Oregon Bend-Vale zone (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4141','Israel','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2039','Israeli New Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6997','NAD83(2011) / CCSF-CS13 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5843','Abu Dhabi height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6996','NAD83(2011) / San Francisco CS13 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6996','NAD83(2011) / CCSF-CS13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7006','Nahrwan 1934 / UTM 38N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7007','Nahrwan 1934 / UTM 39N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4201','Blue Nile 1958','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20135','Blue Nile 1958 / UTM zone 35N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20136','Blue Nile 1958 / UTM zone 36N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20137','Blue Nile 1958 / UTM zone 37N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','20138','Blue Nile 1958 / UTM zone 38N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6307','NAD83(CORS96) / PR and VI','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6312','CGRS93 / Local Transverse Mercator (LTM)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4171','RGF93 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4965','RGF93 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7057','NAD83(2011) / IaRCS zone 1 Spencer','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7058','NAD83(2011) / IaRCS zone 2 Mason City','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7059','NAD83(2011) / IaRCS zone 3 Elkader','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5489','RGAF09 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7060','NAD83(2011) / IaRCS zone 4 Sioux City-Iowa Falls','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4624','RGFG95 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7061','NAD83(2011) / IaRCS zone 5 Waterloo','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4627','RGR92 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7062','NAD83(2011) / IaRCS zone 6 Council Bluffs','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4470','RGM04 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7063','NAD83(2011) / IaRCS zone 7 Carroll-Atlantic','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4463','RGSPM06 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7064','NAD83(2011) / IaRCS zone 8 Ames-Des Moines','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4466','RGSPM06 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7065','NAD83(2011) / IaRCS zone 9 Newton','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4469','RGM04 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7066','NAD83(2011) / IaRCS zone 10 Cedar Rapids','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4971','RGR92 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7067','NAD83(2011) / IaRCS zone 11 Dubuque-Davenport','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4967','RGFG95 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7068','NAD83(2011) / IaRCS zone 12 Red Oak-Ottumwa','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5488','RGAF09 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7069','NAD83(2011) / IaRCS zone 13 Fairfield','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7073','RGTAAF07 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7070','NAD83(2011) / IaRCS zone 14 Burlington','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7072','RGTAAF07','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7109','NAD83(2011) / St Mary (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7114','NAD83(2011) / Ft Peck Sx (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7110','NAD83(2011) / Blackfeet (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7125','NAD83(2011) / Crow (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7111','NAD83(2011) / Milk R (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7115','NAD83(2011) / Crow (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7112','NAD83(2011) / Ft Belknap (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7278','InGCS 2011 11 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7113','NAD83(2011) / Ft Peck As (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7116','NAD83(2011) / Bobcat (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7126','NAD83(2011) / Bobcat (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7117','NAD83(2011) / Billings (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7118','NAD83(2011) / Wind R (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7127','NAD83(2011) / Billings (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7119','NAD83(2011) / St Mary (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7120','NAD83(2011) / Blackfeet (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7128','NAD83(2011) / Wind R (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7121','NAD83(2011) / Milk R (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7122','NAD83(2011) / Ft Belknap (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7123','NAD83(2011) / Ft Peck As (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7124','NAD83(2011) / Ft Peck Sx (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7279','InGCS 2011 12 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7267','InGCS 2011 06-32 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7142','Palestine Grid modified','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7267','NAD83(2011) / InGCS Boone (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7267','NAD83(2011) / InGCS Hendricks (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7259','InGCS 2011 02 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7323','InGCS 2011 39 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7131','NAD83(2011) / San Francisco CS13 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7131','NAD83(2011) / CCSF-CS13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7132','NAD83(2011) / CCSF-CS13 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3973','WGS 84 / NSIDC EA North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3974','WGS 84 / NSIDC EA South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3975','WGS 84 / NSIDC EA Global','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3976','WGS 84 / NSIDC PS South','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3979','NAD83(CSRS) / Canada LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3986','Katanga 1955 / TM zone A','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3987','Katanga 1955 / TM zone B','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7280','InGCS 2011 12 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7349','InGCS 2011 65 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7268','InGCS 2011 06-32 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7268','NAD83(2011) / InGCS Boone (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7268','NAD83(2011) / InGCS Hendricks (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7297','InGCS 2011 23-86 (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','3906','D48','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7257','InGCS 2011 01 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7294','InGCS 2011 20-43-85 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7294','NAD83(2011) / InGCS Elkhart (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7281','InGCS 2011 13-47-59 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7260','InGCS 2011 02 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7269','InGCS 2011 07 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7281','NAD83(2011) / InGCS Crawford (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7270','InGCS 2011 07 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7258','InGCS 2011 01 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7281','NAD83(2011) / InGCS Lawrence (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7281','NAD83(2011) / InGCS Orange (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7294','NAD83(2011) / InGCS Kosciusko (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7294','NAD83(2011) / InGCS Wabash (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7261','InGCS 2011 03 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7271','InGCS 2011 08 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7262','InGCS 2011 03 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7295','InGCS 2011 21-24-81 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7263','InGCS 2011 04 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7272','InGCS 2011 08 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7264','InGCS 2011 04 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7295','NAD83(2011) / InGCS Fayette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7273','InGCS 2011 09 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7282','InGCS 2011 13-47-59 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7274','InGCS 2011 09 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7265','InGCS 2011 05-18 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7265','NAD83(2011) / InGCS Blackford (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7265','NAD83(2011) / InGCS Delaware (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7282','NAD83(2011) / InGCS Crawford (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7282','NAD83(2011) / InGCS Lawrence (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7282','NAD83(2011) / InGCS Orange (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7295','NAD83(2011) / InGCS Franklin (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7275','InGCS 2011 10-22-72 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7266','InGCS 2011 05-18 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7266','NAD83(2011) / InGCS Blackford (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7266','NAD83(2011) / InGCS Delaware (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7275','NAD83(2011) / InGCS Clark (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7275','NAD83(2011) / InGCS Floyd (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7275','NAD83(2011) / InGCS Scott (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7295','NAD83(2011) / InGCS Union (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7297','NAD83(2011) / InGCS Fountain (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3043','ETRS89 / UTM zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7283','InGCS 2011 14-28 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3043','DE_ETRS89 / UTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7283','NAD83(2011) / InGCS Daviess (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3044','DE_ETRS89 / UTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3044','ETRS89 / UTM zone 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7276','InGCS 2011 10-22-72 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7276','NAD83(2011) / InGCS Clark (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3045','ETRS89 / UTM zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7276','NAD83(2011) / InGCS Floyd (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7276','NAD83(2011) / InGCS Scott (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7283','NAD83(2011) / InGCS Greene (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7277','InGCS 2011 11 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7297','NAD83(2011) / InGCS Warren (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7309','InGCS 2011 31-88 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7309','NAD83(2011) / InGCS Harrison (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7284','InGCS 2011 14-28 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3045','DE_ETRS89 / UTM_BB','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3045','ETRS89 / UTM zone 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7284','NAD83(2011) / InGCS Daviess (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7284','NAD83(2011) / InGCS Greene (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7296','InGCS 2011 21-24-81 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7296','NAD83(2011) / InGCS Fayette (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7296','NAD83(2011) / InGCS Franklin (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7296','NAD83(2011) / InGCS Union (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7285','InGCS 2011 15-58-78 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7285','NAD83(2011) / InGCS Dearborn (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7285','NAD83(2011) / InGCS Ohio (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7285','NAD83(2011) / InGCS Switzerland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7309','NAD83(2011) / InGCS Washington (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7298','InGCS 2011 23-86 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7298','NAD83(2011) / InGCS Fountain (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7298','NAD83(2011) / InGCS Warren (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7286','InGCS 2011 15-58-78 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7286','NAD83(2011) / InGCS Dearborn (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7286','NAD83(2011) / InGCS Ohio (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7286','NAD83(2011) / InGCS Switzerland (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7315','InGCS 2011 35-92 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7315','NAD83(2011) / InGCS Huntington (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7315','NAD83(2011) / InGCS Whitley (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7287','InGCS 2011 16-70 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7287','NAD83(2011) / InGCS Decatur (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7287','NAD83(2011) / InGCS Rush (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7310','InGCS 2011 31-88 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7299','InGCS 2011 25-50-71 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7299','NAD83(2011) / InGCS Fulton (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7288','InGCS 2011 16-70 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7288','NAD83(2011) / InGCS Decatur (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7288','NAD83(2011) / InGCS Rush (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7299','NAD83(2011) / InGCS Marshall (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7289','InGCS 2011 17 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7299','NAD83(2011) / InGCS St. Joseph (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7290','InGCS 2011 17 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7310','NAD83(2011) / InGCS Harrison (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7310','NAD83(2011) / InGCS Washington (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7324','InGCS 2011 39 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7291','InGCS 2011 19-51 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7291','NAD83(2011) / InGCS Dubois (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7291','NAD83(2011) / InGCS Martin (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7311','InGCS 2011 33 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7300','InGCS 2011 25-50-71 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7300','NAD83(2011) / InGCS Fulton (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7292','InGCS 2011 19-51 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7292','NAD83(2011) / InGCS Dubois (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7292','NAD83(2011) / InGCS Martin (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7300','NAD83(2011) / InGCS Marshall (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7300','NAD83(2011) / InGCS St. Joseph (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7359','InGCS 2011 76 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7301','InGCS 2011 26 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7293','InGCS 2011 20-43-85 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7293','NAD83(2011) / InGCS Elkhart (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7293','NAD83(2011) / InGCS Kosciusko (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7293','NAD83(2011) / InGCS Wabash (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7312','InGCS 2011 33 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7302','InGCS 2011 26 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7325','InGCS 2011 40 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7303','InGCS 2011 27 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3970','NAD83(NSRS) / VA LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7316','InGCS 2011 35-92 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3969','NAD83(HARN) / VA LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3969','NAD83(HPGN) / Virginia Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7304','InGCS 2011 27 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7316','NAD83(2011) / InGCS Huntington (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7313','InGCS 2011 34-52 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7313','NAD83(2011) / InGCS Howard (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7305','InGCS 2011 29-80 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7305','NAD83(2011) / InGCS Hamilton (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7305','NAD83(2011) / InGCS Tipton (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7313','NAD83(2011) / InGCS Miami (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7316','NAD83(2011) / InGCS Whitley (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7333','InGCS 2011 45-56 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7306','InGCS 2011 29-80 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7306','NAD83(2011) / InGCS Hamilton (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7306','NAD83(2011) / InGCS Tipton (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7317','InGCS 2011 36 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7314','InGCS 2011 34-52 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7314','NAD83(2011) / InGCS Howard (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7307','InGCS 2011 30-48 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7307','NAD83(2011) / InGCS Hancock (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7307','NAD83(2011) / InGCS Madison (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7314','NAD83(2011) / InGCS Miami (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7326','InGCS 2011 40 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7318','InGCS 2011 36 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7308','InGCS 2011 30-48 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7308','NAD83(2011) / InGCS Hancock (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7308','NAD83(2011) / InGCS Madison (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7333','NAD83(2011) / InGCS Lake (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7333','NAD83(2011) / InGCS Newton (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7339','InGCS 2011 54-67 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7319','InGCS 2011 37-64 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7319','NAD83(2011) / InGCS Jasper (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7319','NAD83(2011) / InGCS Porter (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7327','InGCS 2011 41-49 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7327','NAD83(2011) / InGCS Johnson (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7327','NAD83(2011) / InGCS Marion (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7320','InGCS 2011 37-64 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7320','NAD83(2011) / InGCS Jasper (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7320','NAD83(2011) / InGCS Porter (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7339','NAD83(2011) / InGCS Montgomery (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7321','InGCS 2011 38 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7339','NAD83(2011) / InGCS Putnam (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7322','InGCS 2011 38 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7334','InGCS 2011 45-56 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7328','InGCS 2011 41-49 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7328','NAD83(2011) / InGCS Johnson (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7328','NAD83(2011) / InGCS Marion (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7334','NAD83(2011) / InGCS Lake (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7329','InGCS 2011 42 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7334','NAD83(2011) / InGCS Newton (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7330','InGCS 2011 42 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7343','InGCS 2011 61-83 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7343','NAD83(2011) / InGCS Parke (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7343','NAD83(2011) / InGCS Vermillion (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7331','InGCS 2011 44-57 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7331','NAD83(2011) / InGCS LaGrange (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7331','NAD83(2011) / InGCS Noble (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7340','InGCS 2011 54-67 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7335','InGCS 2011 46-66-75 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7335','NAD83(2011) / InGCS LaPorte (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7332','InGCS 2011 44-57 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7332','NAD83(2011) / InGCS LaGrange (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7332','NAD83(2011) / InGCS Noble (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7335','NAD83(2011) / InGCS Pulaski (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7335','NAD83(2011) / InGCS Starke (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7340','NAD83(2011) / InGCS Montgomery (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4049','RGRDC 2005 / Congo TM 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7340','NAD83(2011) / InGCS Putnam (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4048','RGRDC 2005 / Congo TM 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7350','InGCS 2011 65 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7341','InGCS 2011 60 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7336','InGCS 2011 46-66-75 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7336','NAD83(2011) / InGCS LaPorte (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7336','NAD83(2011) / InGCS Pulaski (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7336','NAD83(2011) / InGCS Starke (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7342','InGCS 2011 60 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7360','InGCS 2011 76 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7337','InGCS 2011 53-55 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7337','NAD83(2011) / InGCS Monroe (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7337','NAD83(2011) / InGCS Morgan (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7344','InGCS 2011 61-83 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7344','NAD83(2011) / InGCS Parke (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7344','NAD83(2011) / InGCS Vermillion (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7338','InGCS 2011 53-55 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7338','NAD83(2011) / InGCS Monroe (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7338','NAD83(2011) / InGCS Morgan (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6312','CGRS93 / Cyprus LTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7345','InGCS 2011 62 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7351','InGCS 2011 68-89 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7346','InGCS 2011 62 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7351','NAD83(2011) / InGCS Randolph (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7351','NAD83(2011) / InGCS Wayne (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7361','InGCS 2011 77 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7347','InGCS 2011 63-87 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7347','NAD83(2011) / InGCS Pike (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7347','NAD83(2011) / InGCS Warrick (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7362','InGCS 2011 77 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7352','InGCS 2011 68-89 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7348','InGCS 2011 63-87 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7348','NAD83(2011) / InGCS Pike (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7348','NAD83(2011) / InGCS Warrick (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7352','NAD83(2011) / InGCS Randolph (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7352','NAD83(2011) / InGCS Wayne (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7353','InGCS 2011 69 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7354','InGCS 2011 69 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7355','InGCS 2011 73 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7363','InGCS 2011 79-91 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7356','InGCS 2011 73 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7363','NAD83(2011) / InGCS Tippecanoe (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7357','InGCS 2011 74 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7363','NAD83(2011) / InGCS White (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7358','InGCS 2011 74 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7364','InGCS 2011 79-91 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7364','NAD83(2011) / InGCS Tippecanoe (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7364','NAD83(2011) / InGCS White (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4037','WGS 84 / UTM zone 35N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7365','InGCS 2011 82 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4038','WGS 84 / UTM zone 36N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7366','InGCS 2011 82 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7367','InGCS 2011 84 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7368','InGCS 2011 84 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7369','InGCS 2011 90 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7370','InGCS 2011 90 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7535','NAD83(2011) / WISCRS Outagamie (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','7446','Cyprus vertical system','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7542','WISCRS Door (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7560','WISCRS Marinette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7531','WISCRS Bayfield (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7535','NAD83(2011) / WISCRS Winnebago (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7528','WISCRS Adams-Juneau (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7528','NAD83(2011) / WISCRS Adams (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7528','NAD83(2011) / WISCRS Juneau (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7532','WISCRS Brown (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7546','WISCRS Florence (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7533','WISCRS Buffalo (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7536','WISCRS Chippewa (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7529','WISCRS Ashland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7534','WISCRS Burnett (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7563','WISCRS Oconto (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7537','WISCRS Clark (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7547','WISCRS Forest (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7535','WISCRS Out-Cal-Win-FdL (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7530','WISCRS Barron (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7535','NAD83(2011) / WISCRS Calumet (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7535','NAD83(2011) / WISCRS Fond du Lac (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7561','WISCRS Menominee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7548','WISCRS Grant (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4728','Pico de las Nieves','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4728','PN84','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7538','WISCRS Columbia (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7580','WISCRS Walworth (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7562','WISCRS Monroe (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7564','WISCRS Oneida (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7539','WISCRS Crawford (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7549','WISCRS Green-Lafayette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7540','WISCRS Dane (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7549','NAD83(2011) / WISCRS Green (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7549','NAD83(2011) / WISCRS Lafayette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7589','WISCRS Barron (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7541','WISCRS Dodge-Jefferson (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7541','NAD83(2011) / WISCRS Dodge (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7541','NAD83(2011) / WISCRS Jefferson (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7565','WISCRS Pepin-Pierce (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7565','NAD83(2011) / WISCRS Pepin (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7550','WISCRS Green Lake-Marquette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7543','WISCRS Douglas (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7550','NAD83(2011) / WISCRS Green Lake (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7544','WISCRS Dunn (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7550','NAD83(2011) / WISCRS Marquette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7545','WISCRS Eau Claire (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7565','NAD83(2011) / WISCRS Pierce (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7551','WISCRS Iowa (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7581','WISCRS Washburn (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7552','WISCRS Iron (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7566','WISCRS Polk (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7553','WISCRS Jackson (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7603','WISCRS Dunn (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7567','WISCRS Portage (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7582','WISCRS Washington (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7568','WISCRS Price (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7590','WISCRS Bayfield (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7554','WISCRS Oz-Milw-Rac-Ken (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7554','NAD83(2011) / WISCRS Kenosha(m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7554','NAD83(2011) / WISCRS Milwaukee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7554','NAD83(2011) / WISCRS Ozaukee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7554','NAD83(2011) / WISCRS Racine (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7569','WISCRS Richland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7583','WISCRS Waukesha (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7570','WISCRS Rock (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7619','WISCRS Marinette (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7571','WISCRS Rusk (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7555','WISCRS Kew-Manit-Sheb (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7555','NAD83(2011) / WISCRS Kewaunee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7555','NAD83(2011) / WISCRS Manitowoc (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7555','NAD83(2011) / WISCRS Sheboygan (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7584','WISCRS Waupaca (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7572','WISCRS Sauk (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7556','WISCRS La Crosse (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7591','WISCRS Brown (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7557','WISCRS Langlade (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7573','WISCRS Sawyer (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7558','WISCRS Lincoln (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7585','WISCRS Waushara (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7559','WISCRS Marathon (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7574','WISCRS Shawano (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7604','WISCRS Eau Claire (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7575','WISCRS St. Croix (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7586','WISCRS Wood (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7576','WISCRS Taylor (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7592','WISCRS Buffalo (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7577','WISCRS Trempealeau (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7632','WISCRS Sawyer (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7578','WISCRS Vernon (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7593','WISCRS Burnett (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7579','WISCRS Vilas (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7587','WISCRS Adams-Juneau (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7587','NAD83(2011) / WISCRS Adams (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7587','NAD83(2011) / WISCRS Juneau (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7605','WISCRS Florence (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7588','WISCRS Ashland (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7620','WISCRS Menominee (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7606','WISCRS Forest (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7594','WISCRS Out-Cal-Win-FdL (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7594','NAD83(2011) / WISCRS Calumet (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7594','NAD83(2011) / WISCRS Fond du Lac (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7594','NAD83(2011) / WISCRS Outagamie (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7594','NAD83(2011) / WISCRS Winnebago (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7595','WISCRS Chippewa (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7607','WISCRS Grant (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7596','WISCRS Clark (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7621','WISCRS Monroe (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7633','WISCRS Shawano (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7622','WISCRS Oconto (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7597','WISCRS Columbia (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3152','ST74 0 gon 65:-1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7608','WISCRS Green-Lafayette (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7608','NAD83(2011) / WISCRS Green (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7608','NAD83(2011) / WISCRS Lafayette (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7598','WISCRS Crawford (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7599','WISCRS Dane (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7623','WISCRS Oneida (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7634','WISCRS St. Croix (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7609','WISCRS GreenLake-Marqt (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7600','WISCRS Dodge-Jefferson (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7600','NAD83(2011) / WISCRS Dodge (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7600','NAD83(2011) / WISCRS Jefferson (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7609','NAD83(2011) / WISCRS Green Lake (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7601','WISCRS Door (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7609','NAD83(2011) / WISCRS Marquette (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7602','WISCRS Douglas (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7624','WISCRS Pepin-Pierce (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7610','WISCRS Iowa (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7624','NAD83(2011) / WISCRS Pepin (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7611','WISCRS Iron (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7624','NAD83(2011) / WISCRS Pierce (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7612','WISCRS Jackson (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7625','WISCRS Polk (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7635','WISCRS Taylor (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7626','WISCRS Portage (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7613','WISCRS Oz-Milw-Rac-Ken (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7613','NAD83(2011) / WISCRS Kenosha (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7613','NAD83(2011) / WISCRS Milwaukee (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7613','NAD83(2011) / WISCRS Ozaukee (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7613','NAD83(2011) / WISCRS Racine (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7627','WISCRS Price (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7636','WISCRS Trempealeau (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7628','WISCRS Richland (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7629','WISCRS Rock (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7614','WISCRS Kew-Manit-Sheb (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7614','NAD83(2011) / WISCRS Kewaunee (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7614','NAD83(2011) / WISCRS Manitowoc (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7614','NAD83(2011) / WISCRS Sheboygan (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7637','WISCRS Vernon (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7630','WISCRS Rusk (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7615','WISCRS La Crosse (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7616','WISCRS Langlade (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7631','WISCRS Sauk (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7617','WISCRS Lincoln (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7638','WISCRS Vilas (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7618','WISCRS Marathon (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4093','ETRF89 / DKTM1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4093','EUREF89 / DKTM1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7639','WISCRS Walworth (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4094','ETRF89 / DKTM2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4094','EUREF89 / DKTM2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4095','ETRF89 / DKTM3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4095','EUREF89 / DKTM3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4096','ETRF89 / DKTM4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4096','EUREF89 / DKTM4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7640','WISCRS Washburn (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7641','WISCRS Washington (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7642','WISCRS Waukesha (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7643','WISCRS Waupaca (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7644','WISCRS Waushara (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7645','WISCRS Wood (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6316','Macedonia State Coordinate System zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3857','Web Mercator','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','4099','ETRF89 / DKTM3 + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','4099','EUREF89 / DKTM3 + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','4097','ETRF89 / DKTM1 + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','4097','EUREF89 / DKTM1 + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','4098','ETRF89 / DKTM2 + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','4098','EUREF89 / DKTM2 + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','4100','ETRF89 / DKTM4 + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','4100','EUREF89 / DKTM4 + DVR90 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7692','Kyrg06-68','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7693','Kyrg06-71','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7694','Kyrg06-74','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7695','Kyrg06-77','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7696','Kyrg06-80','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','7700','LAS-2000 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5754','Poolbeg height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7791','RDN2008 / UTM zone 32N (E-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7792','RDN2008 / TM33 (E-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7792','RDN2008 / UTM zone 33N (E-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7791','RDN2008 / TM32 (E-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7793','RDN2008 / UTM zone 34N (E-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7800','CS2005 zone 35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7794','RDN2008 / Fuso Italia (E-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7795','RDN2008 / Fuso 12 (E-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7799','CS2005 zone 34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7799','Coordinate System 2005 zone 35','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7815','WGS 84 (Original)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7800','Coordinate System 2005 zone 35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7803','BGS2005 / UTM zone 34N (E-N)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7816','WGS 84 (Original)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7804','BGS2005 / UTM zone 35 (E-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7825','Pulkovo 1942 / CS63 X1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7831','Pulkovo 1942 / CS63 X7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7826','Pulkovo 1942 / CS63 X2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7827','Pulkovo 1942 / CS63 X3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7828','Pulkovo 1942 / CS63 X4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7829','Pulkovo 1942 / CS63 X5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7830','Pulkovo 1942 / CS63 X6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7845','GDA2020 / Geoscience Australia Lambert','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4710','ASTRO DOS 71/4','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4710','St. Helena 1971','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','7837','DE_AMST_2016 / NH','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7879','WGS 84 Tritan St. Helena','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7878','St. Helena 1971 / UTM zone 30S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7880','WGS 84 Tritan St. Helena','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7881','WGS 84 Tritan St. Helena','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7882','WGS 84 Tritan St. Helena / SHLG(Tritan)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7899','GDA2020 / Vicgrid2020','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3111','GDA94 / Vicgrid94','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7908','388','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7909','355','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7909','ITRF2000 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7910','209','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7911','277','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7911','ITRF2008 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5332','242','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5332','ITRF2008 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4896','269','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4919','419','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4919','ITRF2000 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4918','349','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7887','SHGD2015 / UTM zone 30S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7887','St. Helena Map Grid 2015','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','7888','MSL 1971 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','7889','MSL Tritan height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7877','St. Helena 1971 / SHLG71','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7954','St. Helena 1971 / UTM zone 30S + Jamestown 1971 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22196','C Inchauspe /Argentina 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22197','C Inchauspe /Argentina 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22195','C Inchauspe /Argentina 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22193','C Inchauspe /Argentina 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22194','C Inchauspe /Argentina 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22192','C Inchauspe /Argentina 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22191','C Inchauspe /Argentina 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2315','Campo Inchauspe /UTM 19S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2316','Campo Inchauspe /UTM 20S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','7992','Malongo 1987 / UTM 33S','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','7976','Hong Kong Principal Datum depth','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8042','S-SC','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8042','Stable Cadastre','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8043','Stable cadastre','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8043','S-SC','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8050','mean sea level height (ft)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8050','msl height (ft)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8051','mean sea level depth (ft)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8051','msl depth (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8065','NAD83(2011) / PCCS east zone(ft)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8052','mean sea level height (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8052','msl height (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8066','NAD83(2011) / PCCS central zone(ft)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8053','mean sea level depth (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8053','msl depth (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8067','NAD83(2011) / PCCS west zone(ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8082','NAD83(CSRS)v6 / MTM NS zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8068','NAD83(2011) / PCCS Mt. Lemmon zone(ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8083','NAD83(CSRS)v6 / MTM NS zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8090','WISCRS Florence (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4974','SIRGAS95 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8091','WISCRS Florence (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8096','WISCRS Wood (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7789','425','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8095','WISCRS Wood (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8109','WISCRS Vilas (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8097','WISCRS Waushara (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8105','WISCRS Washburn (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8098','WISCRS Waushara (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8113','WISCRS Trempealeau (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8099','WISCRS Waupaca (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8106','WISCRS Washburn (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8100','WISCRS Waupaca (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8110','WISCRS Vilas (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8101','WISCRS Waukesha (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8107','WISCRS Walworth (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8102','WISCRS Waukesha (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8131','WISCRS Price (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8103','WISCRS Washington (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8108','WISCRS Walworth (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8104','WISCRS Washington (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8111','WISCRS Vernon (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8114','WISCRS Trempealeau (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8112','WISCRS Vernon (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8154','WISCRS Langlade (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8115','WISCRS Taylor (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8132','WISCRS Price (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8116','WISCRS Taylor (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8161','WISCRS Jackson (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8117','WISCRS St. Croix (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8133','WISCRS Portage (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8118','WISCRS St. Croix (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8155','WISCRS La Crosse (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8119','WISCRS Shawano (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8134','WISCRS Portage (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8120','WISCRS Shawano (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8165','WISCRS Iowa (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8121','WISCRS Sawyer (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8135','WISCRS Polk (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8122','WISCRS Sawyer (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8156','WISCRS La Crosse (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8123','WISCRS Sauk (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8136','WISCRS Polk (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8124','WISCRS Sauk (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8162','WISCRS Jackson (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8125','WISCRS Rusk (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8092','WISCRS Eau Claire (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8126','WISCRS Rusk (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8163','WISCRS Iron (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8127','WISCRS Rock (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8137','WISCRS Pepin-Pierce (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8128','WISCRS Rock (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8137','NAD83(HARN) / WISCRS Pepin (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8129','WISCRS Richland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8137','NAD83(HARN) / WISCRS Pierce (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8130','WISCRS Richland (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8166','WISCRS Iowa (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8157','WISCRS Kew-Manit-Sheb (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8157','NAD83(HARN) / WISCRS Kewaunee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8138','WISCRS Pepin-Pierce (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8138','NAD83(HARN) / WISCRS Pepin (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8138','NAD83(HARN) / WISCRS Pierce (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8157','NAD83(HARN) / WISCRS Manitowoc (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8139','WISCRS Oneida (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8157','NAD83(HARN) / WISCRS Sheboygan (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8140','WISCRS Oneida (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8164','WISCRS Iron (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8141','WISCRS Oconto (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8170','WISCRS Green-Lafayette (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8142','WISCRS Oconto (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8093','WISCRS Eau Claire (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8143','WISCRS Monroe (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8170','NAD83(HARN) / WISCRS Green (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8144','WISCRS Monroe (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8158','WISCRS Kew-Manit-Sheb (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8145','WISCRS Menominee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8158','NAD83(HARN) / WISCRS Kewaunee (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8146','WISCRS Menominee (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8158','NAD83(HARN) / WISCRS Manitowoc (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8147','WISCRS Marinette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8158','NAD83(HARN) / WISCRS Sheboygan (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8148','WISCRS Marinette (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8167','WISCRS Green Lake-Marquette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8149','WISCRS Marathon (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8167','NAD83(HARN) / WISCRS Green Lake (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8150','WISCRS Marathon (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8167','NAD83(HARN) / WISCRS Marquette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8151','WISCRS Lincoln (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8179','WISCRS Dunn (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8152','WISCRS Lincoln (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8170','NAD83(HARN) / WISCRS Lafayette (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8153','WISCRS Langlade (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8159','WISCRS Oz-Milw-Rac-Ken (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8159','NAD83(HARN) / WISCRS Kenosha(m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8159','NAD83(HARN) / WISCRS Milwaukee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8159','NAD83(HARN) / WISCRS Ozaukee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8159','NAD83(HARN) / WISCRS Racine (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8180','WISCRS Dunn (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8168','WISCRS GreenLake-Marqt (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8168','NAD83(HARN) / WISCRS Green Lake (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8168','NAD83(HARN) / WISCRS Marquette (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8228','North American Vertical Datum of 1988 height (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8160','WISCRS Oz-Milw-Rac-Ken (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8160','NAD83(HARN) / WISCRS Kenosha (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8160','NAD83(HARN) / WISCRS Milwaukee (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8160','NAD83(HARN) / WISCRS Ozaukee (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8160','NAD83(HARN) / WISCRS Racine (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8181','WISCRS Douglas (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8200','WISCRS Columbia (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8169','WISCRS Green-Lafayette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8169','NAD83(HARN) / WISCRS Green (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8169','NAD83(HARN) / WISCRS Lafayette (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8182','WISCRS Douglas (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8203','WISCRS Chippewa (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','Guam Geodetic Network 1993','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8171','WISCRS Grant (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8184','WISCRS Door (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8172','WISCRS Grant (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8173','WISCRS Forest (m)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','GGN93','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8185','WISCRS Door (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8177','WISCRS Forest (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8204','WISCRS Chippewa (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8237','NAD83(CSRS98)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8187','WISCRS Dodge-Jefferson (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8187','NAD83(HARN) / WISCRS Dodge (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8187','NAD83(HARN) / WISCRS Jefferson (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8189','WISCRS Dodge-Jefferson (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8189','NAD83(HARN) / WISCRS Dodge (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8189','NAD83(HARN) / WISCRS Jefferson (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8205','WISCRS Out-Cal-Win-FdL (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8191','WISCRS Dane (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8205','NAD83(HARN) / WISCRS Calumet (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8193','WISCRS Dane (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8205','NAD83(HARN) / WISCRS Fond du Lac (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8196','WISCRS Crawford (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8205','NAD83(HARN) / WISCRS Outagamie (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8197','WISCRS Crawford (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8205','NAD83(HARN) / WISCRS Winnebago (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8198','WISCRS Columbia (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8313','NAD83(2011) / OCRS_CBU (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8201','WISCRS Clark (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8202','WISCRS Clark (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8206','WISCRS Out-Cal-Win-FdL (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8206','NAD83(HARN) / WISCRS Calumet (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8206','NAD83(HARN) / WISCRS Fond du Lac (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8206','NAD83(HARN) / WISCRS Outagamie (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8206','NAD83(HARN) / WISCRS Winnebago (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8311','NAD83(2011) / OCRS_BHA (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8207','WISCRS Burnett (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8323','NAD83(2011) / OCRS_MDI (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8208','WISCRS Burnett (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8314','NAD83(2011) / OCRS_CBU (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8209','WISCRS Buffalo (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8312','NAD83(2011) / OCRS_BHA (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8210','WISCRS Buffalo (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8333','NAD83(2011) / OCRS_PRU (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8212','WISCRS Brown (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8315','NAD83(2011) / OCRS_CRN (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8213','WISCRS Brown (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8324','NAD83(2011) / OCRS_MDI (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8214','WISCRS Bayfield (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8316','NAD83(2011) / OCRS_CRN (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8216','WISCRS Bayfield (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8337','NAD83(2011) / OCRS_RLA (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8218','WISCRS Barron (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8317','NAD83(2011) / OCRS_DPR (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8220','WISCRS Barron (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8325','NAD83(2011) / OCRS_MTC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8222','WISCRS Ashland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8318','NAD83(2011) / OCRS_DPR (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8224','WISCRS Ashland (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8334','NAD83(2011) / OCRS_PRU (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8319','NAD83(2011) / OCRS_DBU (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8326','NAD83(2011) / OCRS_MTC (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8225','WISCRS Adams-Juneau (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8225','NAD83(HARN) / WISCRS Adams (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8225','NAD83(HARN) / WISCRS Juneau (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8320','NAD83(2011) / OCRS_DBU (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8339','NAD83(2011) / OCRS_SKP (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8321','NAD83(2011) / OCRS_HLF (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8226','WISCRS Adams-Juneau (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8226','NAD83(HARN) / WISCRS Adams (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8226','NAD83(HARN) / WISCRS Juneau (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8327','NAD83(2011) / OCRS_NCE (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8322','NAD83(2011) / OCRS_HLF (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8335','NAD83(2011) / OCRS_PCB (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8328','NAD83(2011) / OCRS_NCE (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8338','NAD83(2011) / OCRS_RLA (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8329','NAD83(2011) / OCRS_OCH (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8336','NAD83(2011) / OCRS_PCB (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8330','NAD83(2011) / OCRS_OCH (ft)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4957','Guam Geodetic Network 1993','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4957','GGN93','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8370','ETRS89 / Lambert 2008 + Oostende height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8331','NAD83(2011) / OCRS_OWY (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8340','NAD83(2011) / OCRS_SKP (ft)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4956','Guam Geodetic Network 1993','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4956','GGN93','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8332','NAD83(2011) / OCRS_OWY (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8353','S-JTSK [JTSK03] / Krovak EN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8341','NAD83(2011) / OCRS_UFX (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8342','NAD83(2011) / OCRS_UFX (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8343','NAD83(2011) / OCRS_WAL (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6130','GCVD54 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8344','NAD83(2011) / OCRS_WAL (ft)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6131','LCVD61 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8345','NAD83(2011) / OCRS_WHI (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6132','CBVD61 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8346','NAD83(2011) / OCRS_WHI (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8347','NAD83(2011) / OCRS_WPA (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8348','NAD83(2011) / OCRS_WPA (ft)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8360','ETRS89 [ETRF2000] + Bpv','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4417','Pulkovo 42(83) / 3GK zn7','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8357','Bpv','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4434','Pulkovo 42(83) / 3GK zn8','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8360','ETRS89 [ETRF2000] + Bpv','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8351','S-JTSK (JTSK03)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8352','S-JTSK (JTSK03) / Krovak','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8357','SK_KRON / NH','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8378','TVD','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8357','CZ_KRON / NH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8384','NCRS Las Vegas (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8353','S-JTSK (JTSK03) / Krovak East North','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','NAD83','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5513','S-JTSK [JTSK] / Krovak','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8385','NCRS Las Vegas high (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8383','NCRS Las Vegas (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8387','NCRS Las Vegas high (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8433','Macao 1920 Grid System','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5514','S-JTSK [JTSK] / Krovak East North','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5711','AHD71 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5711','AHD-TAS83 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4414','GGN93 / Guam Map Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4414','Guam Geodetic Network 1993 / Guam Map Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4414','NAD83 / Guam Map Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4414','NAD83(HPGN) / Guam Map Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8538','NAD83(2011) / KS RCS zone 18 Arkansas City','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8519','NAD83(2011) / KS RCS zone 2 Colby','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8520','NAD83(2011) / KS RCS zone 3 Oberlin','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8539','NAD83(2011) / KS RCS zone 19 Coffeyville','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8521','NAD83(2011) / KS RCS zone 4 Hays','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8441','Tananarive / Laborde Grid (Greenwich)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8522','NAD83(2011) / KS RCS zone 5 Great Bend','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8540','NAD83(2011) / KS RCS zone 20 Pittsburg','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8523','NAD83(2011) / KS RCS zone 6 Beloit','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7407','NAD27 / Texas North + NGVD29 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8524','NAD83(2011) / KS RCS zone 7 Salina','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8700','NAD83 / AZ_E + NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8525','NAD83(2011) / KS RCS zone 8 Manhattan','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8701','NAD83 / AZ_C + NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8526','NAD83(2011) / KS RCS zone 9 Emporia','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8702','NAD83 / AZ_W+ NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8527','NAD83(2011) / KS RCS zone 10 Atchison','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8528','NAD83(2011) / KS RCS zone 11 Kansas City','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8703','NAD83 / MI_N + NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8529','NAD83(2011) / KS RCS zone 12 Ulysses','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8531','NAD83(2011) / KS RCS zone 13 Garden City','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8533','NAD83(2011) / KS RCS zone 14 Dodge City','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8704','NAD83 / MI_C + NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8534','NAD83(2011) / KS RCS zone 15 Larned','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8705','NAD83 / MI_S+ NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8535','NAD83(2011) / KS RCS zone 16 Pratt','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8706','NAD83 / MT + NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8536','NAD83(2011) / KS RCS zone 17 Wichita','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8707','NAD83 / ND_N + NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8708','NAD83 / ND_S + NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8449','NAD83(2002 PRVI)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8709','NAD83 / OR_N + NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8710','NAD83 / OR_S + NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8711','NAD83 / SC + NAVD88 ht (ft)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8712','NAD83 / AR_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8713','NAD83 / AR_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8714','NAD83 / CA_1 + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8715','NAD83 / CA_2 + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8716','NAD83 / CA_3 + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8717','NAD83 / CA_4 + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8718','NAD83 / CA_5 + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8719','NAD83 / CA_6 + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8720','NAD83 / CO_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8721','NAD83 / CO_C + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8722','NAD83 / CO_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8723','NAD83 / CT + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8724','NAD83 / DE + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8725','NAD83 / FL_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8726','NAD83 / FL_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8727','NAD83 / FL_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8728','NAD83 / GA_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8729','NAD83 / GA_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8730','NAD83 / ID_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8731','NAD83 / ID_C + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8732','NAD83 / ID_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8733','NAD83 / IL_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8734','NAD83 / IL_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8735','NAD83 / IN_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8736','NAD83 / IN_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8737','NAD83 / IA_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8738','NAD83 / IA_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8739','NAD83 / KS_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8740','NAD83 / KS_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8741','NAD83 / KY_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8742','NAD83 / KY_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8743','NAD83 / LA_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8744','NAD83 / LA_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8745','NAD83 / ME_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8746','NAD83 / ME_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4437','NAD83(NSRS) / PR and VI','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8747','NAD83 / MD + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8748','NAD83 / MA_M + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8749','NAD83 / MA_I + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8750','NAD83 / MN_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8751','NAD83 / MN_C + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8752','NAD83 / MN_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8753','NAD83 / MS_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8754','NAD83 / MS_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8755','NAD83 / NE + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8756','NAD83 / NV_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8757','NAD83 / NV_C + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8758','NAD83 / NV_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8759','NAD83 / NH + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8760','NAD83 / NJ + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8761','NAD83 / NM_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8762','NAD83 / NM_C + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8763','NAD83 / NM_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8764','NAD83 / NY_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8765','NAD83 / NY_C + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8766','NAD83 / NY_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8767','NAD83 / NY_LI + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8768','NAD83 / NC + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8769','NAD83 / OH_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8770','NAD83 / OH_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8771','NAD83 / OK_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4455','NAD27 / Pennsylvania S','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8772','NAD83 / OK_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4456','NAD27 / New York Long Is','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8773','NAD83 / PA_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4457','NAD83 / S Dakota N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8774','NAD83 / PA_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8775','NAD83 / RI + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8776','NAD83 / SD_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8777','NAD83 / SD_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8778','NAD83 / TN + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8779','NAD83 / TX_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8780','NAD83 / TX_NC + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8781','NAD83 / TX_C + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8782','NAD83 / TX_SC + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8783','NAD83 / TX_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8784','NAD83 / UT_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8785','NAD83 / UT_C + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3112','GDA94 / GA LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3112','GDA94 / Geoscience LCC','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8786','NAD83 / UT_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8787','NAD83 / VT + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8788','NAD83 / VA_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8789','NAD83 / VA_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8790','NAD83 / WA_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8791','NAD83 / WA_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8792','NAD83 / WV_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8793','NAD83 / WV_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8794','NAD83 / WI_N + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8795','NAD83 / WI_C + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8796','NAD83 / WI_S + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8797','NAD83 / WY_E + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8798','NAD83 / WY_EC + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8799','NAD83 / WY_WC + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8800','NAD83 / WY_W + NAVD88 ht (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8801','NAD83 / AL_E + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8802','NAD83 / AL_W + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8803','NAD83 / AK_1 + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8804','NAD83 / AK_2 + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8805','NAD83 / AK_3 + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8806','NAD83 / AK_4 + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8807','NAD83 / AK_5 + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8808','NAD83 / AK_6 + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8809','NAD83 / AK_7 + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8810','NAD83 / AK_8 + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8811','NAD83 / AK_9 + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8812','NAD83 / AK_10 + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8813','NAD83 / MO_E + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8814','NAD83 / MO_C + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8815','NAD83 / MO_W + NAVD88 ht (m)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7406','NAD27 + NGVD29 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6316','B&H GK zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8677','HDKS zone 5','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8675','N43','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8677','D48 zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8677','HR_HDKS / HR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8678','HDKS zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8678','HR_HDKS / HR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8677','B&H GK zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8686','SI_D48 / SI_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8686','D48 / Slovenia Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8687','D96/UTM','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5779','NVN99 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8678','B&H GK zone 6','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8544','NAD83(1997 PRVI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8545','NAD83(1997 PRVI)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4474','Cadastre 1997 / UTM 38S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8541','NAD83(2002 AS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8541','NAD83(2002 GU)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8542','NAD83(2002 AS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8542','NAD83(2002 GU)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8542','NAD83(2002 PRVI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8449','NAD83(2002 AS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8449','NAD83(2002 GU)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8541','NAD83(2002 PRVI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8543','NAD83(1997 PRVI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4956','NAD83(1992 AK)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4956','NAD83(1993 HI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4956','NAD83(1993 AS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4956','NAD83(1993 GU)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4956','NAD83(1993 PRVI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4957','NAD83(1992 AK)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4957','NAD83(1993 HI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4957','NAD83(1993 AS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4957','NAD83(1993 GU)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4957','NAD83(1993 PRVI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','NAD83(1992 AK)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','NAD83(1993 HI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','NAD83(1993 AS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','NAD83(1993 GU)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','NAD83(1993 PRVI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8683','STRS00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8684','STRS00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8685','STRS00','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8682','STRS00 / UTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22032','Camacupa / UTM zone 32S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4220','Camacupa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22091','Camacupa / TM 11.30 SE','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8694','Camacupa','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8698','REPANGOL','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22092','Camacupa / TM 12 SE','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22033','Camacupa / UTM zone 33S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8677','MGI 1901 / Gauss–Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8678','MGI 1901 / Gauss–Kruger zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8679','MGI 1901 / Gauss–Kruger zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6316','MGI 1901 / Gauss–Kruger zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8826','NAD83 / IDTM','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8860','NAD83(2002 PRVI)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8860','NAD83(2002 AS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8860','NAD83(2002 GU)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8697','REPANGOL','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','8897','TVD','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8905','CR14','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8899','RGWF96 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8900','RGWF96 (lat-lon)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8906','CR14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8908','CR14 / CRTM05','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7912','226','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8909','CR14 / UTM 16N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5358','SIRGAS-Chile realización 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','8910','CR14 / UTM 17N','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','8912','CR14 / CRTM05 + DACR52 height','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5358','SIRGAS-Chile epoch 2002.00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8988','ITRF88 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8988','337','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7789','ITRF2014 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7912','ITRF2014 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4896','ITRF2005 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7908','ITRF97 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4918','ITRF97 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4917','275','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4917','ITRF96 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7907','233','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7907','ITRF96 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4916','352','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4916','ITRF94 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7906','264','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7906','ITRF94 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4915','263','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4915','ITRF93 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7905','227','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7905','ITRF93 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4914','261','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4914','ITRF92 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7904','286','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7904','ITRF92 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8989','ITRF89 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8989','401','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4913','258','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4913','ITRF91 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7903','241','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7903','ITRF91 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4912','301','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4912','ITRF90 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7902','282','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7902','ITRF90 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4911','387','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4911','ITRF89 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7901','361','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7901','ITRF89 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4910','439','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4910','ITRF88 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7900','400','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7900','ITRF88 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8227','370','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8227','IGS14 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6934','417','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6934','IGS08 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7910','ITRF2005 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','4458','Dunedin-Bluff height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4462','WGS 84 / ACRESLC','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9001','367','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4479','CGCS2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4480','CGCS2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9001','IGS97 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8990','ITRF90 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8990','254','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8997','ITRF2000 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8997','300','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8991','ITRF91 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8991','259','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9002','274','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9002','IGS97 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8992','ITRF92 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8992','326','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8998','ITRF2005 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8998','403','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8993','ITRF93 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4495','CGCS2000 / 6-degree Gauss-Kruger zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4495','CGCS2000 / G-K zone 17','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8993','450','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9003','440','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9003','IGS97 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8994','ITRF94 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4492','CGCS2000 / 6-degree Gauss-Kruger zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4492','CGCS2000 / G-K zone 14','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8994','434','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4493','CGCS2000 / 6-degree Gauss-Kruger zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4493','CGCS2000 / G-K zone 15','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8999','ITRF2008 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8999','392','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8995','ITRF96 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8995','389','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4496','CGCS2000 / 6-degree Gauss-Kruger zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4496','CGCS2000 / G-K zone 18','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8996','ITRF97 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8996','268','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9000','ITRF2014 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9000','333','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9004','289','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9004','IGS00 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9007','309','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9007','IGb00 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4498','CGCS2000 / 6-degree Gauss-Kruger zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4498','CGCS2000 / G-K zone 20','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9005','459','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9005','IGS00 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9015','382','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4499','CGCS2000 / 6-degree Gauss-Kruger zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4499','CGCS2000 / G-K zone 21','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9015','IGb08 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9006','364','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9006','IGS00 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4500','CGCS2000 / 6-degree Gauss-Kruger zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4500','CGCS2000 / G-K zone 22','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9008','420','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9008','IGb00 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4501','CGCS2000 / 6-degree Gauss-Kruger zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4501','CGCS2000 / G-K zone 23','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9009','336','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9009','IGb00 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4502','CGCS2000 / 6-degree Gauss-Kruger CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4502','CGCS2000 / G-K CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9016','402','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9016','IGb08 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9010','310','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4503','CGCS2000 / 6-degree Gauss-Kruger CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4503','CGCS2000 / G-K CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9010','IGS05 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4504','CGCS2000 / 6-degree Gauss-Kruger CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4504','CGCS2000 / G-K CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9011','453','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9011','IGS05 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9017','297','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4505','CGCS2000 / 6-degree Gauss-Kruger CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4505','CGCS2000 / G-K CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9017','IGb08 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9012','441','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9012','IGS05 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4506','CGCS2000 / 6-degree Gauss-Kruger CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4506','CGCS2000 / G-K CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9013','205','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4507','CGCS2000 / 6-degree Gauss-Kruger CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4507','CGCS2000 / G-K CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9013','IGS08 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9018','299','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9018','IGS14 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4508','CGCS2000 / 6-degree Gauss-Kruger CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4508','CGCS2000 / G-K CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9014','424','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9014','IGS08 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3035','ETRS89 / LAEA Europe','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4509','CGCS2000 / 6-degree Gauss-Kruger CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4509','CGCS2000 / G-K CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3034','ETRS89 / LCC Europe','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9019','406','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9019','IGS14 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4510','CGCS2000 / 6-degree Gauss-Kruger CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4510','CGCS2000 / G-K CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4512','CGCS2000 / 6-degree Gauss-Kruger CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4512','CGCS2000 / G-K CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4490','CGCS2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3907','HDKS zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3908','HDKS zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3907','D48 zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3907','HR_HDKS / HR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3908','HR_HDKS / HR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3911','SI_D48 / SI_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3911','D48 / Slovenia Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3912','D48/GK','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3985','Katanga 1955 / Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4050','RGRDC 2005 / Congo TM 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4051','RGRDC 2005 / Congo TM 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4056','RGRDC 2005 / Congo TM 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4057','RGRDC 2005 / Congo TM 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4058','RGRDC 2005 / Congo TM 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4059','RGRDC 2005 / Congo TM 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4060','RGRDC 2005 / Congo TM 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4061','RGRDC 2005 / UTM 33S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4062','RGRDC 2005 / UTM 34S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4063','RGRDC 2005 / UTM 35S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4975','306','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4975','SIRGAS95 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4170','318','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4170','SIRGAS95 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4988','384','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4988','SIRGAS2000 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4989','313','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4989','SIRGAS2000 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4674','398','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4674','SIRGAS2000 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8972','322','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8972','SIRGAS-CON DGF00P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8916','454','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8916','SIRGAS-CON DGF00P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8915','376','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8915','SIRGAS-CON DGF00P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8973','422','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8973','SIRGAS-CON DGF01P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8918','363','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8918','SIRGAS-CON DGF01P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8917','411','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8917','SIRGAS-CON DGF01P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8974','321','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8974','SIRGAS-CON DGF01P02 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8920','348','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8920','SIRGAS-CON DGF01P02 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8919','332','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8919','SIRGAS-CON DGF01P02 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8975','418','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8975','SIRGAS-CON DGF02P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8922','346','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8922','SIRGAS-CON DGF02P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8921','283','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8921','SIRGAS-CON DGF02P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8976','366','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8976','SIRGAS-CON DGF04P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8924','212','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8924','SIRGAS-CON DGF04P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8923','345','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8923','SIRGAS-CON DGF04P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8977','290','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8977','SIRGAS-CON DGF05P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8926','220','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8926','SIRGAS-CON DGF05P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8925','373','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4541','CGCS2000 / 3GK CM 96E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8925','SIRGAS-CON DGF05P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4534','CGCS2000 / 3GK CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8978','223','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4535','CGCS2000 / 3GK CM 78E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8978','SIRGAS-CON DGF06P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4536','CGCS2000 / 3GK CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8928','250','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4537','CGCS2000 / 3GK CM 84E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8928','SIRGAS-CON DGF06P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8927','359','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8927','SIRGAS-CON DGF06P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4538','CGCS2000 / 3GK CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8979','296','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4539','CGCS2000 / 3GK CM 90E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8979','SIRGAS-CON DGF07P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4540','CGCS2000 / 3GK CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8930','271','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8930','SIRGAS-CON DGF07P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4542','CGCS2000 / 3GK CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8929','324','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8929','SIRGAS-CON DGF07P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4543','CGCS2000 / 3GK CM 102E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8980','276','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8980','SIRGAS-CON DGF08P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4544','CGCS2000 / 3GK CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8932','232','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8932','SIRGAS-CON DGF08P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4545','CGCS2000 / 3GK CM 108E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8931','442','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8931','SIRGAS-CON DGF08P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4546','CGCS2000 / 3GK CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8981','395','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8981','SIRGAS-CON SIR09P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4547','CGCS2000 / 3GK CM 114E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8934','451','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8934','SIRGAS-CON SIR09P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4548','CGCS2000 / 3GK CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8933','319','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8933','SIRGAS-CON SIR09P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4549','CGCS2000 / 3GK CM 120E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8982','456','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8982','SIRGAS-CON SIR10P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4550','CGCS2000 / 3GK CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8936','211','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8936','SIRGAS-CON SIR10P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4551','CGCS2000 / 3GK CM 126E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8935','427','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8935','SIRGAS-CON SIR10P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4552','CGCS2000 / 3GK CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8983','307','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8983','SIRGAS-CON SIR11P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4553','CGCS2000 / 3GK CM 132E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8938','303','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8938','SIRGAS-CON SIR11P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4554','CGCS2000 / 3GK CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8937','218','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8937','SIRGAS-CON SIR11P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8984','240','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8984','SIRGAS-CON SIR13P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8940','399','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8940','SIRGAS-CON SIR13P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8939','413','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8939','SIRGAS-CON SIR13P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8985','380','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8985','SIRGAS-CON SIR14P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8942','203','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8942','SIRGAS-CON SIR14P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8941','257','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8941','SIRGAS-CON SIR14P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8986','249','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8986','SIRGAS-CON SIR15P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8944','235','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8944','SIRGAS-CON SIR15P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8943','446','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8943','SIRGAS-CON SIR15P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8987','396','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8987','SIRGAS-CON SIR17P01 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8946','312','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8946','SIRGAS-CON SIR17P01 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8945','273','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8945','SIRGAS-CON SIR17P01 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4202','298','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4202','AGD66 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4203','350','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4203','AGD84 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5711','339','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5711','AHD - NOHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7844','284','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7844','GDA2020 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7843','329','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7843','GDA2020 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7842','404','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7842','GDA2020 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4283','368','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4283','GDA94 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4939','288','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4939','GDA94 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4938','362','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4938','GDA94 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7663','216','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8888','WGS 84 (Original)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9053','374','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9053','WGS 84 (G730) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8888','426','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8888','WGS 84 TRANSIT - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9054','208','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9054','WGS 84 (G873) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9055','228','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9055','WGS 84 (G1150) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9056','237','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9056','WGS 84 (G1674) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9057','265','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4568','New Beijing / 6-degree Gauss-Kruger zone 13','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9057','WGS 84 (G1762) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4568','New Beijing / G-K zone 13','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7663','WGS 84 (G1674) - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4569','New Beijing / 6-degree Gauss-Kruger zone 14','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7662','334','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4569','New Beijing / G-K zone 14','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7662','WGS 84 (G1674) - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7816','342','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4570','New Beijing / 6-degree Gauss-Kruger zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4570','New Beijing / G-K zone 15','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7816','WGS 84 TRANSIT - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7815','272','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7815','WGS 84 TRANSIT - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7657','458','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7657','WGS 84 (G730) - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4571','New Beijing / G-K zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4571','New Beijing / 6-degree Gauss-Kruger zone 16','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7656','314','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4572','New Beijing / 6-degree Gauss-Kruger zone 17','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7656','WGS 84 (G730) - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4572','New Beijing / G-K zone 17','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7659','344','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7659','WGS 84 (G873) - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4573','New Beijing / 6-degree Gauss-Kruger zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4573','New Beijing / G-K zone 18','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7658','325','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7658','WGS 84 (G873) - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4574','New Beijing / G-K zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4574','New Beijing / 6-degree Gauss-Kruger zone 19','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7661','414','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7661','WGS 84 (G1150) - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4575','New Beijing / G-K zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4575','New Beijing / 6-degree Gauss-Kruger zone 20','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7660','210','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4576','New Beijing / 6-degree Gauss-Kruger zone 21','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7660','WGS 84 (G1150) - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4576','New Beijing / G-K zone 21','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7665','405','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4577','New Beijing / 6-degree Gauss-Kruger zone 22','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7665','WGS 84 (G1762) - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4577','New Beijing / G-K zone 22','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7664','215','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7664','WGS 84 (G1762) - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4578','New Beijing / G-K zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4578','New Beijing / 6-degree Gauss-Kruger zone 23','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','3855','436','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2333','Xian 1980 / G-K zone 19','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','3855','WGS 84 EGM2008 - OHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4497','CGCS2000 / G-K zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4497','CGCS2000 / 6-degree Gauss-Kruger zone 19','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5798','383','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5798','WGS 84 EGM84 - OHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5773','444','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5773','WGS 84 EGM96 - OHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8237','285','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4579','New Beijing / 6-degree Gauss-Kruger CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4579','New Beijing / G-K CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8237','NAD83(CSRS) v2 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8235','437','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8235','NAD83(CSRS) v2 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4580','New Beijing / 6-degree Gauss-Kruger CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4580','New Beijing / G-K CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8233','432','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8233','NAD83(CSRS) v2 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8231','331','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4581','New Beijing / 6-degree Gauss-Kruger CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4581','New Beijing / G-K CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8231','NAD83(CSRS96) v1 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8231','NAD83(CSRS)v1','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8230','447','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4582','New Beijing / 6-degree Gauss-Kruger CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4582','New Beijing / G-K CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8230','NAD83(CSRS96) v1 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8230','NAD83(CSRS96)v1','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8232','230','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4583','New Beijing / 6-degree Gauss-Kruger CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4583','New Beijing / G-K CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8232','NAD83(CSRS96) v1 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8232','NAD83(CSRS96)v1','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8253','448','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4584','New Beijing / 6-degree Gauss-Kruger CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4584','New Beijing / G-K CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8253','NAD83(CSRS) v7 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8254','243','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8254','NAD83(CSRS) v7 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4585','New Beijing / 6-degree Gauss-Kruger CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4585','New Beijing / G-K CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8255','236','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8255','NAD83(CSRS) v7 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8250','372','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4586','New Beijing / 6-degree Gauss-Kruger CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4586','New Beijing / G-K CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8250','NAD83(CSRS) v6 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8251','327','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8251','NAD83(CSRS) v6 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4587','New Beijing / 6-degree Gauss-Kruger CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4587','New Beijing / G-K CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8252','292','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8252','NAD83(CSRS) v6 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8247','429','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4588','New Beijing / 6-degree Gauss-Kruger CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4588','New Beijing / G-K CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8247','NAD83(CSRS) v5 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8248','431','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8248','NAD83(CSRS) v5 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4589','New Beijing / 6-degree Gauss-Kruger CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4589','New Beijing / G-K CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8249','377','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8249','NAD83(CSRS) v5 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8242','245','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8242','NAD83(CSRS) v4 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8244','347','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8244','NAD83(CSRS) v4 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8246','340','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8246','NAD83(CSRS) v4 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8238','386','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8238','NAD83(CSRS) v3 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8239','375','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8239','NAD83(CSRS) v3 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8240','320','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8240','NAD83(CSRS) v3 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5713','323','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5713','CGVD28 - NOHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6647','423','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6647','CGVD2013(CGG2013) - OHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4122','225','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4122','ATS77 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9191','WGS 84 / New Zealand Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5899','VN-2000 / TM-3 Da Nang zone','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5621','409','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5621','EVRF2007 - NHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5730','238','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5730','EVRF2000 - NHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5621','EVRF2007_AMST / NH','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7928','433','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7928','ETRF97 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7929','330','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7929','ETRF97 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7926','356','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7926','ETRF96 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7927','421','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7927','ETRF96 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7924','206','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7924','ETRF94 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7925','407','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7925','ETRF94 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7922','244','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7922','ETRF93 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7923','358','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7923','ETRF93 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7920','221','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7920','ETRF92 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7921','369','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7921','ETRF92 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7918','213','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7918','ETRF91 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7919','371','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7919','ETRF91 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7916','435','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7916','ETRF90 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7917','353','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7917','ETRF90 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7914','308','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7914','ETRF89 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7915','217','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7915','ETRF89 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8397','378','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8397','ETRF2005 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8399','317','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8399','ETRF2005 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7930','260','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7930','ETRF2000 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7931','457','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','7931','ETRF2000 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4612','394','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4612','JGD2000 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9059','247','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9059','ETRF89 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9061','343','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9061','ETRF91 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9060','224','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9060','ETRF90 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9062','410','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9062','ETRF92 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9068','279','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9068','ETRF2005 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9063','430','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9063','ETRF93 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9064','ETRF94 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9064','255','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4947','281','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4947','JGD2000 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9065','266','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9065','ETRF96 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4946','251','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4946','JGD2000 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9066','267','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9066','ETRF97 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6694','390','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6694','JGD2000 (vertical) - OHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9067','234','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9067','ETRF2000 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6695','428','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6695','JGD2011 (vertical) - OHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6666','229','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6666','JGD2011 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6667','365','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6667','JGD2011 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6668','416','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6668','JGD2011 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4272','443','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4272','NZGD1949 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4167','293','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4167','NZGD2000 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4959','287','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4959','NZGD2000 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4958','222','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4958','NZGD2000 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','4440','438','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','4440','NZVD2009 - NOHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','7839','328','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','7839','NZVD2016 - NOHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6642','219','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6642','VIVD09 - NOHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6641','360','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6641','PRVD02 - NOHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6640','391','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6640','NMVD03 - NOHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5702','214','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5702','NGVD29 - NOHt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5703','256','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5703','NAVD88 - OHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4608','248','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4608','NAD27(MAY76) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4609','304','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4609','NAD27(CGQ77) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4267','246','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4267','NAD27 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4269','270','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4269','NAD 83 (1986) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4269','NAD83(Original)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6320','449','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6320','NAD 83 (PA11) Epoch 2010 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6321','445','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6321','NAD 83 (PA11) Epoch 2010 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6322','207','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6322','NAD 83 (PA11) Epoch 2010 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6323','379','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6323','NAD 83 (MA11) Epoch 2010 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6324','231','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6324','NAD 83 (MA11) Epoch 2010 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6325','393','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6325','NAD 83 (MA11) Epoch 2010 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8544','204','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8544','NAD 83 (HARN) CORRECTED - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8545','291','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8545','NAD 83 (HARN) CORRECTED - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4957','351','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6644','GUVD04 - NOHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4957','NAD 83 (HARN) - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','341','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4152','NAD 83 (HARN) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8542','412','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8542','NAD 83 (FBN) - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8860','262','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8860','NAD 83 (FBN) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6781','311','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6781','NAD 83 (CORS96) Epoch 1997.0 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6781','294','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6781','NAD 83 (CORS96) Epoch 2002.0 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6782','385','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6782','NAD 83 (CORS96) Epoch 1997.0 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6782','354','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6782','NAD 83 (CORS96) Epoch 2002.0 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6783','302','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6783','NAD 83 (CORS96) Epoch 1997.0 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6783','338','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6783','NAD 83 (CORS96) Epoch 2002.0 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6317','252','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6317','NAD 83 (2011) Epoch 2010 - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6319','239','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6319','NAD 83 (2011) Epoch 2010 - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6318','415','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6318','NAD 83 (2011) Epoch 2010 - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4893','397','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4893','NAD 83 (2007) - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4759','316','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4759','NAD 83 (2007) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6644','253','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6643','452','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6643','ASVD02 - NOHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9070','408','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9070','NAD 83 (MARP00) - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9071','305','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9071','NAD 83 (MARP00) - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9072','280','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9072','NAD 83 (MARP00) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9073','315','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9073','NAD 83 (PACP00) - XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9074','455','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9074','NAD 83 (PACP00) - LatLonEHt','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9075','357','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9075','NAD 83 (PACP00) - LatLon','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4491','CGCS2000 / 6-degree Gauss-Kruger zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4491','CGCS2000 / G-K zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5897','VN-2000 / TM-3 105-00','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4511','CGCS2000 / 6-degree Gauss-Kruger CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4511','CGCS2000 / G-K CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5898','VN-2000 / TM-3 108-00','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4531','CGCS2000 / 3GK zone 43','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4533','CGCS2000 / 3GK zone 45','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4532','CGCS2000 / 3GK zone 44','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4530','CGCS2000 / 3GK zone 42','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4528','CGCS2000 / 3GK zone 40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4526','CGCS2000 / 3GK zone 38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4494','CGCS2000 / 6-degree Gauss-Kruger zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4494','CGCS2000 / G-K zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4527','CGCS2000 / 3GK zone 39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4525','CGCS2000 / 3GK zone 37','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4524','CGCS2000 / 3GK zone 36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4523','CGCS2000 / 3GK zone 35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4522','CGCS2000 / 3GK zone 34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4521','CGCS2000 / 3GK zone 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4520','CGCS2000 / 3GK zone 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4519','CGCS2000 / 3GK zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4518','CGCS2000 / 3GK zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4517','CGCS2000 / 3GK zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4516','CGCS2000 / 3GK zone 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4515','CGCS2000 / 3GK zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4514','CGCS2000 / 3GK zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4513','CGCS2000 / 3GK zone 25','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5359','SIRGAS-Chile','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8947','SIRGAS-Chile epoch 2010','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8947','SIRGAS-Chile realización 2','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8948','SIRGAS-Chile realización 2','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8948','SIRGAS-Chile epoch 2010.00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8949','SIRGAS-Chile realización 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9141','KOSOVAREF01 / Transverse Mercator (TM)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','8949','SIRGAS-Chile epoch 2010.00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5359','SIRGAS-Chile realización 1','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5359','SIRGAS-Chile 2002.00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5360','SIRGAS-Chile realización 1','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5360','SIRGAS-Chile epoch 2002.00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5360','SIRGAS-Chile','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5358','SIRGAS-Chile','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9146','SIRGAS-Chile epoch 2013','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9146','SIRGAS-Chile realización 3','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9153','SIRGAS-Chile realización 4','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9153','SIRGAS-Chile epoch 2016.00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9147','SIRGAS-Chile realización 3','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9147','SIRGAS-Chile epoch 2013.00','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9148','SIRGAS-Chile realización 3','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9148','SIRGAS-Chile epoch 2013.00','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4782','New Beijing / 3GK CM 75E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9151','SIRGAS-Chile epoch 2016','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4783','New Beijing / 3GK CM 78E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9151','SIRGAS-Chile realización 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4784','New Beijing / 3GK CM 81E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9152','SIRGAS-Chile realización 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4785','New Beijing / 3GK CM 84E','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','9152','SIRGAS-Chile epoch 2016.00','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4786','New Beijing / 3GK CM 87E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4787','New Beijing / 3GK CM 90E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4788','New Beijing / 3GK CM 93E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4789','New Beijing / 3GK CM 96E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4790','New Beijing / 3GK CM 99E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4791','New Beijing / 3GK CM 102E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4792','New Beijing / 3GK CM 105E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4793','New Beijing / 3GK CM 108E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4794','New Beijing / 3GK CM 111E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4795','New Beijing / 3GK CM 114E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4796','New Beijing / 3GK CM 117E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4797','New Beijing / 3GK CM 120E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4798','New Beijing / 3GK CM 123E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4799','New Beijing / 3GK CM 126E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4800','New Beijing / 3GK CM 129E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4812','New Beijing / 3GK CM 132E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4822','New Beijing / 3GK CM 135E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9221','Hartebeesthoek94 / RSA BSU Albers 25E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9221','Hartebeesthoek94 / ZA BSU Albers 25E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4652','New Beijing / 3GK zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4653','New Beijing / 3GK zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9222','Hartebeesthoek94 / RSA BSU Albers 44E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4654','New Beijing / 3GK zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9222','Hartebeesthoek94 / ZA BSU Albers 44E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4655','New Beijing / 3GK zone 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4656','New Beijing / 3GK zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4766','New Beijing / 3GK zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4767','New Beijing / 3GK zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4768','New Beijing / 3GK zone 32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4769','New Beijing / 3GK zone 33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4770','New Beijing / 3GK zone 34','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','9245','Canadian Geodetic Vertical Datum of 2013 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4771','New Beijing / 3GK zone 35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4772','New Beijing / 3GK zone 36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4773','New Beijing / 3GK zone 37','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','9245','335','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4774','New Beijing / 3GK zone 38','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','9245','CGVD2013(CGG2013a) - OHt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4775','New Beijing / 3GK zone 39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4778','New Beijing / 3GK zone 42','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4779','New Beijing / 3GK zone 43','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4780','New Beijing / 3GK zone 44','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4781','New Beijing / 3GK zone 45','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4529','CGCS2000 / 3GK zone 41','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4160','Quini-Huao','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9249','Tapi Aike / Argentina zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9249','Tapi Aike / Gauss-Kruger zone 1','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4160','Quiñi-Huao','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9250','Tapi Aike / Argentina zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9250','Tapi Aike / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2081','Quiñi-Huao / Argentina 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9252','MMN / Argentina zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9252','MMN / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2081','Quini-Huao / Argentina 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9254','MMS / Argentina zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9254','MMS / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9284','Pampa del Castillo / Gauss-Kruger zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9284','Pampa del Castillo / Argentina zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9285','Pampa del Castillo / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','9285','Pampa del Castillo / Argentina zone 3','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4289','RD-Bessel','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4776','New Beijing / 3GK zone 40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4777','New Beijing / 3GK zone 41','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31289','MGI (Ferro) / M31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31290','MGI (Ferro) / M34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31288','MGI (Ferro) / M28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4826','WGS 84 / Cape Verde New','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4647','ETRS89 / UTM zone 32N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4824','Morro do Papagaio','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4824','Island of Principe datum','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4823','Fortaleza','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4823','Island of Sao Tome datum','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4481','Red Geodesica Nacional ITRF92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4482','Red Geodesica Nacional ITRF92','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4483','Red Geodesica Nacional ITRF92','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3034','ETRS89 / LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3034','ETRS89-LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3038','ETRS89 / ETRS-TM26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3038','ETRS89-TM26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4411','NAD27 / UTM zone 11N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4412','NAD27 / UTM zone 12N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4413','NAD27 / UTM zone 13N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4419','NAD27 / UTM zone 19N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4401','NAD27 / UTM zone 1N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4402','NAD27 / UTM zone 2N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4403','NAD27 / UTM zone 3N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4404','NAD27 / UTM zone 4N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4405','NAD27 / UTM zone 5N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4407','NAD27 / UTM zone 7N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4408','NAD27 / UTM zone 8N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4409','NAD27 / UTM zone 9N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4430','NAD83 / UTM zone 10N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4431','NAD83 / UTM zone 11N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4432','NAD83 / UTM zone 12N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4433','NAD83 / UTM zone 13N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4438','NAD83 / UTM zone 18N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4439','NAD83 / UTM zone 19N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4421','NAD83 / UTM zone 1N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4422','NAD83 / UTM zone 2N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4423','NAD83 / UTM zone 3N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4424','NAD83 / UTM zone 4N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4425','NAD83 / UTM zone 5N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4426','NAD83 / UTM zone 6N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4427','NAD83 / UTM zone 7N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4428','NAD83 / UTM zone 8N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4429','NAD83 / UTM zone 9N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4410','NAD27 / UTM zone 10N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4418','NAD27 / UTM zone 18N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4406','NAD27 / UTM zone 6N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4399','NAD27 / UTM zone 59N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4217','NAD83 / UTM zone 59N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4420','NAD83 / UTM zone 60N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4400','NAD27 / UTM zone 60N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3035','ETRS89 / LAEA','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3035','ETRS89-LAEA','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3039','ETRS89 / ETRS-TM27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3039','ETRS89-TM27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3051','ETRS89 / ETRS-TM39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3051','ETRS89-TM39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3050','ETRS89 / ETRS-TM38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3050','ETRS89-TM38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3049','ETRS89 / TM37','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3049','ETRS89-TM37','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3048','ETRS89 / TM36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3048','ETRS89-TM36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3047','ETRS89 / TM35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3047','ETRS89-TM35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3046','ETRS89 / TM34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3046','ETRS89-TM34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3045','ETRS89 / TM33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3045','ETRS89-TM33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3044','ETRS89 / TM32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3044','ETRS89-TM32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3043','ETRS89 / TM31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3043','ETRS89-TM31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3042','ETRS89 / TM30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3042','ETRS89-TM30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3041','ETRS89 / TM29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3041','ETRS89-TM29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3040','ETRS89-TM28','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4936','ETRS89-XYZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4937','ETRS89-GRS80h','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4258','ETRS89-GRS80','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4839','ETRS89-LCC-DE(N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4855','ETRF89 / NTM zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4855','EUREF89 / NTM zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4856','ETRF89 / NTM zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4856','EUREF89 / NTM zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4857','ETRF89 / NTM zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4857','EUREF89 / NTM zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4858','ETRF89 / NTM zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4858','EUREF89 / NTM zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4859','ETRF89 / NTM zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4859','EUREF89 / NTM zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4880','ETRF89 / NTM zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4880','EUREF89 / NTM zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4879','ETRF89 / NTM zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4879','EUREF89 / NTM zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4878','ETRF89 / NTM zone 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4878','EUREF89 / NTM zone 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4877','ETRF89 / NTM zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4877','EUREF89 / NTM zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4876','ETRF89 / NTM zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4876','EUREF89 / NTM zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4875','ETRF89 / NTM zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4875','EUREF89 / NTM zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4874','ETRF89 / NTM zone 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4874','EUREF89 / NTM zone 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4873','ETRF89 / NTM zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4873','EUREF89 / NTM zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4872','ETRF89 / NTM zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4872','EUREF89 / NTM zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4871','ETRF89 / NTM zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4871','EUREF89 / NTM zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4870','ETRF89 / NTM zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4870','EUREF89 / NTM zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4869','ETRF89 / NTM zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4869','EUREF89 / NTM zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4868','ETRF89 / NTM zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4868','EUREF89 / NTM zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4867','ETRF89 / NTM zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4867','EUREF89 / NTM zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4866','ETRF89 / NTM zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4866','EUREF89 / NTM zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4865','ETRF89 / NTM zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4865','EUREF89 / NTM zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4864','ETRF89 / NTM zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4864','EUREF89 / NTM zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4863','ETRF89 / NTM zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4863','EUREF89 / NTM zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4862','ETRF89 / NTM zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4862','EUREF89 / NTM zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4861','ETRF89 / NTM zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4861','EUREF89 / NTM zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4860','ETRF89 / NTM zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4860','EUREF89 / NTM zone 10','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4160','Chos Malal','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4254','Hito XVIII','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2082','Pampa Cas / Argentina 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2082','Pampa del Castillo / Argentina zone 2','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4161','Pampa Cas','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22181','POSGAR 94 / Gauss-Kruger zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22182','POSGAR 94 / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22183','POSGAR 94 / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22184','POSGAR 94 / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22185','POSGAR 94 / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22187','POSGAR 94 / Gauss-Kruger zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22172','POSGAR 98 / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22171','POSGAR 98 / Gauss-Kruger zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22173','POSGAR 98 / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22174','POSGAR 98 / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22175','POSGAR 98 / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22176','POSGAR 98 / Gauss-Kruger zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22177','POSGAR 98 / Gauss-Kruger zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22186','POSGAR 94 / Gauss-Kruger zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5017','BB DLx','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5018','DLx','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5018','Lisbon 1937 / Portuguese Grid New','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2083','Hito XVIII / Argentina 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2081','Chos Malal / Argentina 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','2393','YKG','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','7405','OSGB36 / British National Grid + ODN height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3067','ETRS89 / TM35FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3067','ETRS89-TM35FIN(E,N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3067','ETRS-TM35FIN(E,N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3873','ETRF89 / GK19FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3873','ETRS89-GK19FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3873','ETRS-GK19FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3874','ETRF89 / GK20FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3874','ETRS89-GK20FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3874','ETRS-GK20FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3875','ETRS89-GK21FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3875','ETRF89 / GK21FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3875','ETRS-GK21FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3876','ETRF89 / GK22FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3876','ETRS89-GK22FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3876','ETRS-GK22FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3877','ETRF89 / GK23FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3877','ETRS89-GK23FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3877','ETRS-GK23FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3878','ETRF89 / GK24FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3878','ETRS89-GK24FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3878','ETRS-GK24FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3879','ETRS89-GK25FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3879','ETRF89 / GK25FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3879','ETRS-GK25FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3880','ETRF89 / GK26FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3880','ETRS89-GK26FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3880','ETRS-GK26FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3881','ETRF89 / GK27FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3881','ETRS89-GK27FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3881','ETRS-GK27FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3882','ETRF89 / GK28FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3882','ETRS89-GK28FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3882','ETRS-GK28FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3883','ETRF89 / GK29FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3883','ETRS89-GK29FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3883','ETRS-GK29FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3884','ETRF89 / GK30FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3884','ETRS89-GK30FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3884','ETRS-GK30FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3885','ETRS-GK31FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3885','ETRF89 / GK31FIN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3885','ETRS89-GK31FIN','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','3903','ETRS-TM35FIN(N,E)/N2000','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','3903','ETRS89-TM35FIN(N,E)/N2000','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','3901','YKJ/N60','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','3901','YKJ + N60 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','3900','N2000','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5717','N60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5048','ETRF89 / TM35FIN(N,E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5048','ETRS89-TM35FIN(N,E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5048','ETRS-TM35FIN(N,E)','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','3902','ETRS89-TM35FIN(N,E)/N60','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','3902','ETRS-TM35FIN(N,E)/N60','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5120','ETRF89 / NTM zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5120','EUREF89 / NTM zone 20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5123','ETRF89 / NTM zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5123','EUREF89 / NTM zone 23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5124','ETRF89 / NTM zone 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5124','EUREF89 / NTM zone 24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5125','ETRF89 / NTM zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5125','EUREF89 / NTM zone 25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5126','ETRF89 / NTM zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5126','EUREF89 / NTM zone 26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5129','ETRF89 / NTM zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5129','EUREF89 / NTM zone 29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5130','ETRF89 / NTM zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5130','EUREF89 / NTM zone 30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5105','ETRF89 / NTM zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5105','EUREF89 / NTM zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5106','ETRF89 / NTM zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5106','EUREF89 / NTM zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5107','ETRF89 / NTM zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5107','EUREF89 / NTM zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5108','ETRF89 / NTM zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5108','EUREF89 / NTM zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5109','ETRF89 / NTM zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5109','EUREF89 / NTM zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5110','ETRF89 / NTM zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5110','EUREF89 / NTM zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5111','ETRF89 / NTM zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5111','EUREF89 / NTM zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5112','ETRF89 / NTM zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5112','EUREF89 / NTM zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5113','ETRF89 / NTM zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5113','EUREF89 / NTM zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5114','ETRF89 / NTM zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5114','EUREF89 / NTM zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5115','ETRF89 / NTM zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5115','EUREF89 / NTM zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5116','ETRF89 / NTM zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5116','EUREF89 / NTM zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5117','ETRF89 / NTM zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5117','EUREF89 / NTM zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5118','ETRF89 / NTM zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5118','EUREF89 / NTM zone 18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5119','ETRF89 / NTM zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5119','EUREF89 / NTM zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5121','ETRF89 / NTM zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5121','EUREF89 / NTM zone 21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5122','ETRF89 / NTM zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5122','EUREF89 / NTM zone 22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5127','ETRF89 / NTM zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5127','EUREF89 / NTM zone 27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5128','ETRF89 / NTM zone 28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5128','EUREF89 / NTM zone 28','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5781','RO_CONST / NH','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5705','LT_KRON / NH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5181','Korea 2000 / Central','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5182','Korea 2000 / Jeju','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5184','Korea 2000 / East Sea','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5185','Korea 2000 / West 2010','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5186','Korea 2000 / Central 2010','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5187','Korea 2000 / East 2010','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5188','Korea 2000 / E Sea 2010','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5168','Korean 1985 / Jeju Belt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5167','Korean 1985 / East Sea','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5174','Korean 1985 / Mod Cen','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5175','Korean 1985 / Mod Jeju','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5177','Korean 1985 / Mod E Sea','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4301','Tokyo 1918','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5173','Korean 1985 / Mod West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5176','Korean 1985 / Mod East','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5132','Tokyo 1898','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5169','Tokyo / Korea West Belt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5169','Tokyo 1892 / Korea West','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5169','Tokyo 1898 / Korea West Belt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5170','Tokyo / Korea Central Belt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5170','Tokyo 1892 / Korea Cen','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5170','Tokyo 1898 / Korea Central Belt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5171','Tokyo / Korea East Belt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5171','Tokyo 1892 / Korea East','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5171','Tokyo 1898 / Korea East Belt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5172','Tokyo / Korea East Sea Belt','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5172','Tokyo 1892 / Korea E Sea','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5172','Tokyo 1898 / Korea East Sea Belt','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5613','SE_AMST2000 / NH','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5214','IT_GENO / OH','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5195','HR_TRIE / NOH','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5243','ETRS89-LCC-DE(E-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5254','TUREF / 3-degree Gauss-Kruger CM 30E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5254','TR_TUREF / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5256','TUREF / 3-degree Gauss-Kruger CM 36E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5256','TR_TUREF / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5257','TUREF / 3-degree Gauss-Kruger CM 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5257','TR_TUREF / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5258','TUREF / 3-degree Gauss-Kruger CM 42E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5258','TR_TUREF / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5259','TUREF / 3-degree Gauss-Kruger CM 45E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5259','TR_TUREF / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5269','TUREF / Turkey zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5270','TUREF / Turkey zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5271','TUREF / Turkey zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5272','TUREF / Turkey zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5273','TUREF / Turkey zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5274','TUREF / Turkey zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5275','TUREF / Turkey zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5255','TUREF / 3-degree Gauss-Kruger CM 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5255','TR_TUREF / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5253','TUREF / 3-degree Gauss-Kruger CM 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5253','TR_TUREF / TR_TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5247','GDBD2009 / Brunei RSO','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4484','Mexico 1992 / UTM 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4484','Red Geodesica Nacional ITRF92 / UTM 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4485','Mexico 1992 / UTM 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4485','Red Geodesica Nacional ITRF92 / UTM 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4486','Mexico 1992 / UTM 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4486','Red Geodesica Nacional ITRF92 / UTM 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4487','Mexico 1992 / UTM 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4487','Red Geodesica Nacional ITRF92 / UTM 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4488','Mexico 1992 / UTM 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4488','Red Geodesica Nacional ITRF92 / UTM 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4489','Red Geodesica Nacional ITRF92 / UTM 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4489','Mexico 1992 / UTM 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5266','DRUKREF 03 / Bhutan NG','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5302','DRUKREF 03 / S Jong TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5309','DRUKREF 03 / Wangdue TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5300','DRUKREF 03 / P-Gatsh TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5306','DRUKREF 03 / T-Gang TM','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5318','ETRF89 / Faroe TM + FVR09 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5316','ETRS89 / FOTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5316','ETRF89 / Faroe TM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5224','S-JTSK/05 (F) / ModKrovak','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5225','S-JTSK/05 (F) / ModKrovakEN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5221','S-JTSK (F) / Krovak EN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5320','NAD83 / Teranet LC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5321','NAD83(CSRS) / Teranet LC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5330','Batavia (Jkt) / NEIEZ','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5331','Makassar (Jkt) / NEIEZ','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4248','La Canoa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31254','AT_MGI / Austria GK','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31256','AT_MGI / Austria GK','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31255','AT_MGI / Austria GK','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3416','AT_ETRS89 / Austria Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5459','Ocotepeque / Guatemala S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5458','Ocotepeque / Guatemala N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5460','Ocotepeque / El Salvador','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5461','Ocotepeque / Nicaragua N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5462','Ocotepeque / Nicaragua S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5396','SIRGAS 2000 / UTM 26S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5466','Sibun Gorge / Colony Grd','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5469','Panama-Colon / Lambert','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5382','SIRGAS-ROU98 / UTM 21S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5383','SIRGAS-ROU98 / UTM 22S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4309','ROU-USAMS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5362','SIRGAS-Chile / UTM 18S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5361','SIRGAS-Chile / UTM 19S','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5341','Marco de Referencia Geodésico Nacional Oficial','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5342','Marco de Referencia Geodésico Nacional Oficial','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','5340','Marco de Referencia Geodésico Nacional Oficial','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5349','POSGAR 07 / Argentina 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5349','POSGAR 2007 / Gauss-Kruger zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5348','POSGAR 07 / Argentina 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5348','POSGAR 2007 / Gauss-Kruger zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5347','POSGAR 07 / Argentina 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5347','POSGAR 2007 / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5346','POSGAR 07 / Argentina 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5346','POSGAR 2007 / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5345','POSGAR 07 / Argentina 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5345','POSGAR 2007 / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5344','POSGAR 2007 / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5344','POSGAR 07 / Argentina 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5343','POSGAR 07 / Argentina 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5343','POSGAR 2007 / Gauss-Kruger zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5456','Ocotepeque / Costa Rica N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5457','Ocotepeque / C R Sur','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5515','S-JTSK/05 / ModKrovak','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5516','S-JTSK/05 / ModKrovakEN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5514','S-JTSK / Krovak EN (G)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5518','CI1971 / CIMG','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32183','NAD83 / SCoPQ zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32184','NAD83 / SCoPQ zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32185','NAD83 / SCoPQ zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32186','NAD83 / SCoPQ zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32187','NAD83 / SCoPQ zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32188','NAD83 / SCoPQ zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32189','NAD83 / SCoPQ zone 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','32190','NAD83 / SCoPQ zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5519','CI1979 / CIMG','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5520','DHDN / 3GK zone 1','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4646','IGN50','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5523','WGS 84 / GTM 2011','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5223','WGS 84 / GTM','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4225','Corrego Alegre','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22524','Corrego Alegre / UTM zone 24S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22523','Corrego Alegre / UTM zone 23S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22522','Corrego Alegre / UTM zone 22S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22521','Corrego Alegre / UTM zone 21S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','22525','Corrego Alegre / UTM zone 25S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5536','Corrego Aleg61 / UTM 21S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5537','Corrego Aleg61 / UTM 22S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5538','Corrego Aleg61 / UTM 23S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5539','Corrego Aleg61 / UTM 24S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5472','Panama-Colon / Polyconic','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4674','SIRGAS2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4988','SIRGAS2000','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4989','SIRGAS2000','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5396','SIRGAS2000 / UTM zone 26S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31985','SIRGAS2000 / UTM zone 25S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31984','SIRGAS2000 / UTM zone 24S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31983','SIRGAS2000 / UTM zone 23S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31982','SIRGAS2000 / UTM zone 22S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31981','SIRGAS2000 / UTM zone 21S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31980','SIRGAS2000 / UTM zone 20S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31979','SIRGAS2000 / UTM zone 19S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','31978','SIRGAS2000 / UTM zone 18S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5559','Ocotepeque / Guatemala N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5589','Sibun Gorge / Colony Grd','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5566','UCS-2000 / 6-degree Gauss-Kruger CM 21E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5566','UCS-2000 / 6GK 21E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5567','UCS-2000 / 6-degree Gauss-Kruger CM 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5567','UCS-2000 / 6GK 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5568','UCS-2000 / 6-degree Gauss-Kruger CM 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5568','UCS-2000 / 6GK 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5569','UCS-2000 / 6-degree Gauss-Kruger CM 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5569','UCS-2000 / 6GK 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5583','UCS-2000 / 3GK 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5582','UCS-2000 / 3GK 36E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5581','UCS-2000 / 3GK 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5580','UCS-2000 / 3GK 30E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5578','UCS-2000 / 3GK 24E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5579','UCS-2000 / 3GK 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5570','UCS-2000 / 3GK zn 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5571','UCS-2000 / 3GK zn 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5572','UCS-2000 / 3GK zn 9','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5573','UCS-2000 / 3GK zn 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5574','UCS-2000 / 3GK zn 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5575','UCS-2000 / 3GK zn 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5576','UCS-2000 / 3GK zn 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5562','UCS-2000 / 6-degree Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5562','UCS-2000 zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5563','UCS-2000 / 6-degree Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5563','UCS-2000 zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5564','UCS-2000 / 6-degree Gauss-Kruger zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5564','UCS-2000 zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5565','UCS-2000 / 6-degree Gauss-Kruger zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5565','UCS-2000 zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5577','UCS-2000 / 3GK 21E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5588','NAD27 / NB Stereographic','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5596','Fehmarnbelt Coordinate System','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5596','FCS','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5598','FCS + FCSVR10 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5624','NAD27 / Michigan Old Cen','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','3040','ETRS89 / TM28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4647','ETRF89 / UTM zone 32N (zE-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5646','NAD83 / VT (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5654','NAD83(HPGN) / Vermont (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5654','NAD83(HARN) / VT (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5655','NAD83(NSRS) / VT (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5680','DHDN / 3GK zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5676','DHDN / Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5676','DE_DHDN / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5676','DHDN / 3GK zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5677','DHDN / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5677','DE_DHDN / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5677','DHDN / 3GK zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5678','DHDN / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5678','DE_DHDN / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5678','DHDN / 3GK zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5679','DHDN / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5679','DE_DHDN / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5679','DHDN / 3GK zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5666','DHDN / 3GK zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5666','DE_PD/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5666','PD/83 / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5666','PD/83 / 3GK zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5667','DHDN / 3GK zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5667','DE_PD/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5667','PD/83 / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5667','PD/83 / 3GK zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5670','Pulkovo 42(58) / 3GK zn3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5671','Pulkovo 42(58) / 3GK zn4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5672','System 1942/15 (3)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5672','Pulkovo 42(58) / 3GK zn5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5631','Pulkovo 1942(58) / 6-degree Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5631','S-42 zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5631','Pulkovo 42(58) / GK zn 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5663','System 1942/15 (6)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5663','S-42 zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5663','Pulkovo 1942(58) / 6-degree Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5663','Pulkovo 42(58) / GK zn 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5673','Pulkovo 1942(83) / Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5673','DE_42/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5673','Pulkovo 42(83) / 3GK zn3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5674','Pulkovo 1942(83) / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5674','DE_42/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5674','Pulkovo 42(83) / 3GK zn4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5675','Pulkovo 1942(83) / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5675','DE_42/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5675','Pulkovo 42(83) / 3GK zn5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5664','Pulkovo 1942(83) / 6-degree Gauss-Kruger zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5664','S-42 zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5664','Pulkovo 42(83) / GK zn 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5665','Pulkovo 1942(83) / 6-degree Gauss-Kruger zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5665','S-42 zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5665','Pulkovo 42(83) / GK zn 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5668','DHDN / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5668','DE_RD/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5668','RD/83 / Gauss-Kruger zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5668','RD/83 / 3GK zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5669','DHDN / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5669','DE_RD/83 / GK_3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5669','RD/83 / Gauss-Kruger zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5669','RD/83 / 3GK zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5825','AGD66 / ACT SGC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5683','DB_REF / 3GK zone 3 E-N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5682','DB_REF / 3GK zone 2 E-N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5684','DB_REF / 3GK zone 4 E-N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5685','DB_REF / 3GK zone 5 E-N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5836','Yemen NGN96 / UTM 37N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5837','Yemen NGN96 / UTM 40N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30791','Nord Sahara 1959 / Lambert Algerie Nord','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30791','Nord Sahara 1959 / LAN','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30792','Nord Sahara 1959 / Lambert Algerie Sud','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30792','Nord Sahara 1959 / LAS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30791','Nord Sahara 1959 / Voirol Unifie Nord','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','30792','Nord Sahara 1959 / Voirol Unifie Sud','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5659','Monte Mario / UTMRER','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5844','RGRDC 2005 / Congo TM 30','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5715','msl depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5714','msl height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5868','Mean High Water height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5869','Mean Higher High Water height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5870','Mean High Water Spring Tides height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5871','Higher High Water Large Tide height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5872','Highest Astronomic Tide height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5829','sea level height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5865','Mean Low Water Spring Tides depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5867','Mean Low Water depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5864','Mean Lower Low Water Spring Tides depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5866','Mean Lower Low Water depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5831','sea level depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5863','Indian Spring Low Water depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5863','Indian Tidal Plane depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5861','Lowest Astronomic Tide depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5862','Lower Low Water Large Tide depth','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5874','High Tide height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5873','Low Tide depth','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5649','ETRS89 / UTM zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5649','ETRF89 / UTM zone 31N (zE-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5651','ETRS89 / UTM zone 31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5651','ETRF89 / UTM zone 31N (N-zE)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5652','ETRF89 / UTM zone 32N (N-zE)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5652','ETRS89 / UTM zone 32N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5650','ETRF89 / UTM zone 33N (zE-N)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5650','ETRS89 / UTM zone 33N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5653','ETRF89 / UTM zone 33N (N-zE)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5653','ETRS89 / UTM zone 33N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4839','ETRF89 / LCC Germany (N-E)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5879','Cadastre 1997 / UTM 38S','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5887','TGD2005 / TMG','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5890','JAXA Snow Depth PS North','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5932','WGS 84 / EPSG Arctic C2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5931','WGS 84 / EPSG Arctic C1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5933','WGS 84 / EPSG Arctic C3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5934','WGS 84 / EPSG Arctic C4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5935','WGS 84 / EPSG Arctic C5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5921','WGS 84 / EPSG Arctic A1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5922','WGS 84 / EPSG Arctic A2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5923','WGS 84 / EPSG Arctic A3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5924','WGS 84 / EPSG Arctic A4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5925','WGS 84 / EPSG Arctic A5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5926','WGS 84 / EPSG Arctic B1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5927','WGS 84 / EPSG Arctic B2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5928','WGS 84 / EPSG Arctic B3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5929','WGS 84 / EPSG Arctic B4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5936','WGS 84 / EPSG Alaska PS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5937','WGS 84 / EPSG Canada PS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5938','WGS 84 / EPSG Greenland PS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5939','WGS 84 / EPSG Norway PS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5940','WGS 84 / EPSG Russia PS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','5930','WGS 84 / EPSG Arctic B5','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5945','ETRF89 / NTM zone 5 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5945','EUREF89 / NTM zone 5 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5946','ETRF89 / NTM zone 6 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5946','EUREF89 / NTM zone 6 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5947','ETRF89 / NTM zone 7 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5947','EUREF89 / NTM zone 7 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5949','ETRF89 / NTM zone 9 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5949','EUREF89 / NTM zone 9 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5950','ETRF89 / NTM zone 10 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5950','EUREF89 / NTM zone 10 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5951','ETRF89 / NTM zone 11 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5951','EUREF89 / NTM zone 11 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5952','ETRF89 / NTM zone 12 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5952','EUREF89 / NTM zone 12 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5953','ETRF89 / NTM zone 13 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5953','EUREF89 / NTM zone 13 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5954','ETRF89 / NTM zone 14 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5954','EUREF89 / NTM zone 14 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5955','ETRF89 / NTM zone 15 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5955','EUREF89 / NTM zone 15 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5956','ETRF89 / NTM zone 16 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5956','EUREF89 / NTM zone 16 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5957','ETRF89 / NTM zone 17 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5957','EUREF89 / NTM zone 17 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5958','ETRF89 / NTM zone 18 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5958','EUREF89 / NTM zone 18 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5959','ETRF89 / NTM zone 19 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5959','EUREF89 / NTM zone 19 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5960','ETRF89 / NTM zone 20 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5960','EUREF89 / NTM zone 20 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5961','ETRF89 / NTM zone 21 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5961','EUREF89 / NTM zone 21 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5962','ETRF89 / NTM zone 22 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5962','EUREF89 / NTM zone 22 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5963','ETRF89 / NTM zone 23 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5963','EUREF89 / NTM zone 23 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5964','ETRF89 / NTM zone 24 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5964','EUREF89 / NTM zone 24 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5965','ETRF89 / NTM zone 25 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5965','EUREF89 / NTM zone 25 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5967','ETRF89 / NTM zone 27 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5967','EUREF89 / NTM zone 27 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5966','ETRF89 / NTM zone 26 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5966','EUREF89 / NTM zone 26 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5968','ETRF89 / NTM zone 28 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5968','EUREF89 / NTM zone 28 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5969','ETRF89 / NTM zone 29 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5969','EUREF89 / NTM zone 29 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5970','ETRF89 / NTM zone 30 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5970','EUREF89 / NTM zone 30 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5973','ETRF89 / UTM zone 33 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5973','EUREF89 / UTM zone 33 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5975','ETRF89 / UTM zone 35 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5975','EUREF89 / UTM zone 35 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5974','ETRF89 / UTM zone 34 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5974','EUREF89 / UTM zone 34 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5976','ETRF89 / UTM zone 36 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5976','EUREF89 / UTM zone 36 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5972','ETRF89 / UTM zone 32 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5972','EUREF89 / UTM zone 32 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5971','ETRF89 / UTM zone 31 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5971','EUREF89 / UTM zone 31 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6050','GR96 / EPSG Arctic 1-25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6051','GR96 / EPSG Arctic 2-18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6052','GR96 / EPSG Arctic 2-20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6053','GR96 / EPSG Arctic 3-29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6054','GR96 / EPSG Arctic 3-31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6055','GR96 / EPSG Arctic 3-33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6056','GR96 / EPSG Arctic 4-20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6059','GR96 / EPSG Arctic 5-41','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6060','GR96 / EPSG Arctic 5-43','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6061','GR96 / EPSG Arctic 5-45','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6062','GR96 / EPSG Arctic 6-26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6063','GR96 / EPSG Arctic 6-28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6067','GR96 / EPSG Arctic 8-20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6068','GR96 / EPSG Arctic 8-22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6070','ETRS89 / EPSG Arctic 3-11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6070','EUREF89 / EPSG Arctic zone 3-11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6070','ETRF89 / EPSG Arctic zone 3-11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6071','ETRS89 / EPSG Arctic 4-26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6071','EUREF89 / EPSG Arctic zone 4-26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6071','ETRF89 / EPSG Arctic zone 4-26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6073','ETRS89 / EPSG Arctic 5-11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6073','EUREF89 / EPSG Arctic zone 5-11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6073','ETRF89 / EPSG Arctic zone 5-11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6074','ETRS89 / EPSG Arctic 5-13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6074','EUREF89 / EPSG Arctic zone 5-13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6074','ETRF89 / EPSG Arctic zone 5-13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6075','WGS 84 / EPSG Arctic 2-24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6076','WGS 84 / EPSG Arctic 2-26','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6077','WGS 84 / EPSG Arctic 3-13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6078','WGS 84 / EPSG Arctic 3-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6079','WGS 84 / EPSG Arctic 3-17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6069','ETRS89 / EPSG Arctic 2-22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6069','EUREF89 / EPSG Arctic zone 2-22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6069','ETRF89 / EPSG Arctic zone 2-22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6080','WGS 84 / EPSG Arctic 3-19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6087','WGS 84 / EPSG Arctic 5-15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6088','WGS 84 / EPSG Arctic 5-17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6089','WGS 84 / EPSG Arctic 5-19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6090','WGS 84 / EPSG Arctic 5-21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6091','WGS 84 / EPSG Arctic 5-23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6092','WGS 84 / EPSG Arctic 5-25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6093','WGS 84 / EPSG Arctic 5-27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6095','NAD83(NSRS2007) / EPSG Arctic 5-31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6096','NAD83(NSRS2007) / EPSG Arctic 6-14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6097','NAD83(NSRS2007) / EPSG Arctic 6-16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6098','NAD83(CSRS) / EPSG Arctic 1-23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6099','NAD83(CSRS) / EPSG Arctic 2-14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6100','NAD83(CSRS) / EPSG Arctic 2-16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6101','NAD83(CSRS) / EPSG Arctic 3-25','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6102','NAD83(CSRS) / EPSG Arctic 3-27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6103','NAD83(CSRS) / EPSG Arctic 3-29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6105','NAD83(CSRS) / EPSG Arctic 4-16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6106','NAD83(CSRS) / EPSG Arctic 4-18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6107','NAD83(CSRS) / EPSG Arctic 5-33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6108','NAD83(CSRS) / EPSG Arctic 5-35','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6109','NAD83(CSRS) / EPSG Arctic 5-37','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6110','NAD83(CSRS) / EPSG Arctic 5-39','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6111','NAD83(CSRS) / EPSG Arctic 6-18','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6112','NAD83(CSRS) / EPSG Arctic 6-20','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6113','NAD83(CSRS) / EPSG Arctic 6-22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6114','NAD83(CSRS) / EPSG Arctic 6-24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6115','WGS 84 / EPSG Arctic 1-27','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6116','WGS 84 / EPSG Arctic 1-29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6117','WGS 84 / EPSG Arctic 1-31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6118','WGS 84 / EPSG Arctic 1-21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6119','WGS 84 / EPSG Arctic 2-28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6121','WGS 84 / EPSG Arctic 2-12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6120','WGS 84 / EPSG Arctic 2-10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6122','WGS 84 / EPSG Arctic 3-21','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6123','WGS 84 / EPSG Arctic 3-23','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6064','GR96 / EPSG Arctic 6-30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6065','GR96 / EPSG Arctic 7-11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6066','GR96 / EPSG Arctic 7-13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6128','GCNG59','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6129','SING61','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6086','WGS 84 / EPSG Arctic 4-40','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6085','WGS 84 / EPSG Arctic 4-38','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6084','WGS 84 / EPSG Arctic 4-36','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6083','WGS 84 / EPSG Arctic 4-34','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6082','WGS 84 / EPSG Arctic 4-32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6081','WGS 84 / EPSG Arctic 4-30','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6124','WGS 84 / EPSG Arctic 4-12','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5948','ETRF89 / NTM zone 8 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5948','EUREF89 / NTM zone 8 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6125','ETRF89 / EPSG Arctic zone 5-47','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6125','ETRS89 / EPSG Arctic 5-47','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6125','EUREF89 / EPSG Arctic zone 5-47','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6072','ETRS89 / EPSG Arctic 4-28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6072','EUREF89 / EPSG Arctic zone 4-28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6072','ETRF89 / EPSG Arctic zone 4-28','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6104','NAD83(CSRS) / EPSG Arctic 4-14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6141','CING11','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4723','Grand Cayman 1959','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4726','Little Cayman 1961','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5942','ETRF89 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','5942','EUREF89 + NN2000 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6147','ETRF89 / NTM zone 7 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6147','EUREF89 / NTM zone 7 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6148','ETRF89 / NTM zone 8 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6148','EUREF89 / NTM zone 8 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6149','ETRF89 / NTM zone 9 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6149','EUREF89 / NTM zone 9 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6146','ETRF89 / NTM zone 6 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6146','EUREF89 / NTM zone 6 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6145','ETRF89 / NTM zone 5 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6145','EUREF89 / NTM zone 5 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6170','ETRF89 / NTM zone 30 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6170','EUREF89 / NTM zone 30 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6169','ETRF89 / NTM zone 29 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6169','EUREF89 / NTM zone 29 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6168','ETRF89 / NTM zone 28 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6168','EUREF89 / NTM zone 28 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6167','ETRF89 / NTM zone 27 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6167','EUREF89 / NTM zone 27 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6166','ETRF89 / NTM zone 26 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6166','EUREF89 / NTM zone 26 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6165','ETRF89 / NTM zone 25 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6165','EUREF89 / NTM zone 25 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6164','ETRF89 / NTM zone 24 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6164','EUREF89 / NTM zone 24 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6163','ETRF89 / NTM zone 23 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6163','EUREF89 / NTM zone 23 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6162','ETRF89 / NTM zone 22 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6162','EUREF89 / NTM zone 22 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6161','ETRF89 / NTM zone 21 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6161','EUREF89 / NTM zone 21 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6160','ETRF89 / NTM zone 20 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6160','EUREF89 / NTM zone 20 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6159','ETRF89 / NTM zone 19 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6159','EUREF89 / NTM zone 19 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6158','ETRF89 / NTM zone 18 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6158','EUREF89 / NTM zone 18 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6157','ETRF89 / NTM zone 17 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6157','EUREF89 / NTM zone 17 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6156','ETRF89 / NTM zone 16 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6156','EUREF89 / NTM zone 16 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6155','ETRF89 / NTM zone 15 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6155','EUREF89 / NTM zone 15 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6154','ETRF89 / NTM zone 14 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6154','EUREF89 / NTM zone 14 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6153','ETRF89 / NTM zone 13 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6153','EUREF89 / NTM zone 13 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6152','ETRF89 / NTM zone 12 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6152','EUREF89 / NTM zone 12 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6151','ETRF89 / NTM zone 11 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6151','EUREF89 / NTM zone 11 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6150','ETRF89 / NTM zone 10 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6150','EUREF89 / NTM zone 10 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6171','ETRF89 / UTM zone 31 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6171','EUREF89 / UTM zone 31 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6172','ETRF89 / UTM zone 32 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6172','EUREF89 / UTM zone 32 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6173','ETRF89 / UTM zone 33 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6173','EUREF89 / UTM zone 33 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6174','ETRF89 / UTM zone 34 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6174','EUREF89 / UTM zone 34 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6175','ETRF89 / UTM zone 35 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6175','EUREF89 / UTM zone 35 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6176','ETRF89 / UTM zone 36 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6176','EUREF89 / UTM zone 36 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6144','ETRF89 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('compound_crs','EPSG','6144','EUREF89 + NN54 height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5710','BE_OOST / UNCOR','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5710','Oostende height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6057','GR96 / EPSG Arctic 4-22','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6058','GR96 / EPSG Arctic 4-24','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6094','NAD83(NSRS2007) / EPSG Arctic 5-29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6210','SIRGAS 2000 / UTM 23N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6211','SIRGAS 2000 / UTM 24N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6244','MAGNA-SIRGAS / Arauca','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6245','MAGNA-SIRGAS / Armenia','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6247','MAGNA-SIRGAS / Bogota DC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6248','MAGNA-SIRGAS / Bucaramanga','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6251','MAGNA-SIRGAS / Cucuta','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6250','MAGNA-SIRGAS / Cartagena','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6252','MAGNA-SIRGAS / Florencia','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6253','MAGNA-SIRGAS / Ibague','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6254','MAGNA-SIRGAS / Inirida','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6255','MAGNA-SIRGAS / Leticia','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6256','MAGNA-SIRGAS / Manizales','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6257','MAGNA-SIRGAS / Medellin','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6258','MAGNA-SIRGAS / Mitu','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6259','MAGNA-SIRGAS / Mocoa','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6260','MAGNA-SIRGAS / Monteria','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6261','MAGNA-SIRGAS / Neiva','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6262','MAGNA-SIRGAS / Pasto','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6263','MAGNA-SIRGAS / Pereira','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6264','MAGNA-SIRGAS / Popayan','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6265','MAGNA-SIRGAS / Puerto Carreno','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6266','MAGNA-SIRGAS / Quibdo','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6267','MAGNA-SIRGAS / Riohacha','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6268','MAGNA-SIRGAS / San Andres','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6269','MAGNA-SIRGAS / San Jose','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6270','MAGNA-SIRGAS / Santa Marta','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6271','MAGNA-SIRGAS / Sucre','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6272','MAGNA-SIRGAS / Tunja','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6273','MAGNA-SIRGAS / Valledupar','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6274','MAGNA-SIRGAS / Villavicencio','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6275','MAGNA-SIRGAS / Yopal','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6249','MAGNA-SIRGAS / Cali','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6246','MAGNA-SIRGAS / Barranquilla','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6204','MGI 1901 / Macedonia GK','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6204','MGI 1901 / Macedonia Gauss-Kruger','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6204','MSCS','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6316','MSCS zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6351','NAD83(2011) / EPSG Arctic 5-29','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6352','NAD83(2011) / EPSG Arctic 5-31','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6353','NAD83(2011) / EPSG Arctic 6-14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6354','NAD83(2011) / EPSG Arctic 6-16','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6357','North American Vertical Datum of 1988 depth (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6359','National Geodetic Vertical Datum of 1929 depth (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6360','North American Vertical Datum of 1988 height (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6358','North American Vertical Datum of 1988 depth (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4481','Mexican Datum of 1993','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4482','Mexican Datum of 1993','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','4483','Mexican Datum of 1993','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4484','Mexican Datum of 1993 / UTM zone 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4485','Mexican Datum of 1993 / UTM zone 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4486','Mexican Datum of 1993 / UTM zone 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4487','Mexican Datum of 1993 / UTM zone 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4489','Mexican Datum of 1993 / UTM zone 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','4488','Mexican Datum of 1993 / UTM zone 15N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6365','Red Geodesica Nacional ITRF2008','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6371','Red Geodesica Nacional ITRF2008 / UTM 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6371','Mexico 2008 / UTM 16N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6370','Mexico 2008 / UTM 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6370','Red Geodesica Nacional ITRF2008 / UTM 15N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6369','Mexico 2008 / UTM 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6369','Red Geodesica Nacional ITRF2008 / UTM 14N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6368','Mexico 2008 / UTM 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6368','Red Geodesica Nacional ITRF2008 / UTM 13N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6367','Mexico 2008 / UTM 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6367','Red Geodesica Nacional ITRF2008 / UTM 12N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6366','Mexico 2008 / UTM 11N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6366','Red Geodesica Nacional ITRF2008 / UTM 11N','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6364','Red Geodesica Nacional ITRF2008','EPSG'); INSERT INTO "alias_name" VALUES('geodetic_crs','EPSG','6363','Red Geodesica Nacional ITRF2008','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6381','UCS-2000 / 3GK 21E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6382','UCS-2000 / 3GK 24E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6384','UCS-2000 / 3GK 30E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6383','UCS-2000 / 3GK 27E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6385','UCS-2000 / 3GK 33E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6386','UCS-2000 / 3GK 36E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6387','UCS-2000 / 3GK 39E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6362','Red Geodesica Nacional ITRF92 / CCL','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6372','Red Geodesica Nacional ITRF2008 / CCL','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6391','CING11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6395','NAD83(2011) / Alaska zone 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6395','NAD83(2011) / AK 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6355','NAD83(2011) / Alabama East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6355','NAD83(2011) / AL E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6356','NAD83(2011) / Alabama West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6356','NAD83(2011) / AL W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6393','NAD83(2011) / AK Alb','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6394','NAD83(2011) / Alaska zone 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6394','NAD83(2011) / AK 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6396','NAD83(2011) / Alaska zone 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6396','NAD83(2011) / AK 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6397','NAD83(2011) / Alaska zone 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6397','NAD83(2011) / AK 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6398','NAD83(2011) / Alaska zone 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6398','NAD83(2011) / AK 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6399','NAD83(2011) / Alaska zone 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6399','NAD83(2011) / AK 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6400','NAD83(2011) / Alaska zone 7 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6400','NAD83(2011) / AK 7 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6401','NAD83(2011) / Alaska zone 8 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6401','NAD83(2011) / AK 8 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6402','NAD83(2011) / Alaska zone 9 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6402','NAD83(2011) / AK 9 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6403','NAD83(2011) / Alaska zone 10 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6403','NAD83(2011) / AK 10 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6404','NAD83(2011) / Arizona Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6404','NAD83(2011) / AZ C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6405','NAD83(2011) / AZ C (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6406','NAD83(2011) / Arizona East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6406','NAD83(2011) / AZ E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6407','NAD83(2011) / AZ E (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6408','NAD83(2011) / Arizona West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6408','NAD83(2011) / AZ W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6409','NAD83(2011) / AZ W (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6410','NAD83(2011) / Arkansas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6410','NAD83(2011) / AR N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6411','NAD83(2011) / AR N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6412','NAD83(2011) / Arkansas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6412','NAD83(2011) / AR S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6413','NAD83(2011) / AR S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6414','NAD83(2011) / CA Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6416','NAD83(2011) / CA 1 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6415','NAD83(2011) / California zone 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6415','NAD83(2011) / CA 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6417','NAD83(2011) / California zone 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6417','NAD83(2011) / CA 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6418','NAD83(2011) / CA 2 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6419','NAD83(2011) / California zone 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6419','NAD83(2011) / CA 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6420','NAD83(2011) / CA 3 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6421','NAD83(2011) / California zone 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6421','NAD83(2011) / CA 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6422','NAD83(2011) / CA 4 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6423','NAD83(2011) / California zone 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6423','NAD83(2011) / CA 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6424','NAD83(2011) / CA 5 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6425','NAD83(2011) / California zone 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6425','NAD83(2011) / CA 6 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6426','NAD83(2011) / CA 6 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6427','NAD83(2011) / Colorado Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6427','NAD83(2011) / CO C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6428','NAD83(2011) / CO C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6429','NAD83(2011) / Colorado North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6429','NAD83(2011) / CO N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6430','NAD83(2011) / CO N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6431','NAD83(2011) / Colorado South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6431','NAD83(2011) / CO S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6432','NAD83(2011) / CO S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6433','NAD83(2011) / Connecticut (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6433','NAD83(2011) / CT (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6434','NAD83(2011) / CT (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6435','NAD83(2011) / Delaware (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6435','NAD83(2011) / DE (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6436','NAD83(2011) / DE (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6437','NAD83(2011) / Florida East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6437','NAD83(2011) / FL E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6438','NAD83(2011) / FL E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6439','NAD83(2011) / FL GDL AEA','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6440','NAD83(2011) / Florida North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6440','NAD83(2011) / FL N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6441','NAD83(2011) / FL N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6442','NAD83(2011) / Florida West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6442','NAD83(2011) / FL W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6443','NAD83(2011) / FL W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6444','NAD83(2011) / Georgia East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6444','NAD83(2011) / GA E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6445','NAD83(2011) / GA E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6446','NAD83(2011) / Georgia West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6446','NAD83(2011) / GA W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6447','NAD83(2011) / GA W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6448','NAD83(2011) / Idaho Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6448','NAD83(2011) / ID C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6449','NAD83(2011) / ID C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6450','NAD83(2011) / Idaho East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6450','NAD83(2011) / ID E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6451','NAD83(2011) / ID E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6452','NAD83(2011) / Idaho West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6452','NAD83(2011) / ID W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6453','NAD83(2011) / ID W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6454','NAD83(2011) / Illinois East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6454','NAD83(2011) / IL E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6455','NAD83(2011) / IL E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6456','NAD83(2011) / Illinois West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6456','NAD83(2011) / IL W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6457','NAD83(2011) / IL W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6458','NAD83(2011) / Indiana East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6458','NAD83(2011) / IN E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6459','NAD83(2011) / IN E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6460','NAD83(2011) / Indiana West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6460','NAD83(2011) / IN W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6461','NAD83(2011) / IN W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6462','NAD83(2011) / Iowa North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6462','NAD83(2011) / IA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6464','NAD83(2011) / Iowa South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6464','NAD83(2011) / IA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6466','NAD83(2011) / Kansas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6466','NAD83(2011) / KS N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6468','NAD83(2011) / Kansas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6468','NAD83(2011) / KS S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6470','NAD83(2011) / Kentucky North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6470','NAD83(2011) / KY N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6471','NAD83(2011) / KY N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6472','NAD83(2011) / Kentucky Single Zone (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6472','KY1Z','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6472','NAD83(2011) / KY1Z (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6473','NAD83(2011) / KY1Z (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6473','KY1Z','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6474','NAD83(2011) / Kentucky South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6474','NAD83(2011) / KY S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6475','NAD83(2011) / KY S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6476','NAD83(2011) / Louisiana North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6476','NAD83(2011) / LA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6477','NAD83(2011) / LA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6478','NAD83(2011) / Louisiana South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6478','NAD83(2011) / LA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6479','NAD83(2011) / LA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6480','NAD83(2011) / Maine CS2000 Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6480','Maine Coordinate System of 2000 Central Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6480','NAD83(2011) / ME 2000 C','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6481','NAD83(2011) / Maine CS2000 East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6481','Maine Coordinate System of 2000 East Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6481','NAD83(2011) / ME 2000 E','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6482','NAD83(2011) / Maine CS2000 West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6482','Maine Coordinate System of 2000 West Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6482','NAD83(2011) / ME 2000 W','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6483','NAD83(2011) / Maine CS83 East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6483','Maine Coordinate System of 1983 East Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6483','NAD83(2011) / ME83 E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6484','NAD83(2011) / Maine CS83 East (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6484','NAD83(2011) / ME E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6485','NAD83(2011) / Maine West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6485','Maine Coordinate System of 1983 West Zone','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6485','NAD83(2011) / ME83 W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6486','NAD83(2011) / Maine CS83 West (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6486','NAD83(2011) / ME W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6487','NAD83(2011) / Maryland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6487','NAD83(2011) / MD (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6488','NAD83(2011) / MD (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6489','NAD83(2011) / Massachusetts Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6489','NAD83(2011) / MA Is (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6490','NAD83(2011) / MA Is (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6491','NAD83(2011) / Massachusetts Mainland (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6491','NAD83(2011) / MA md (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6492','NAD83(2011) / MA md (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6493','NAD83(2011) / Michigan Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6493','NAD83(2011) / MI C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6494','NAD83(2011) / MI C (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6495','NAD83(2011) / Michigan North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6495','NAD83(2011) / MI N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6496','NAD83(2011) / MI N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6497','NAD83(2011) / MI Georef','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6498','NAD83(2011) / Michigan South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6498','NAD83(2011) / MI S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6499','NAD83(2011) / MI S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6500','NAD83(2011) / Minnesota Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6500','NAD83(2011) / MN C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6501','NAD83(2011) / MN C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6502','NAD83(2011) / Minnesota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6502','NAD83(2011) / MN N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6503','NAD83(2011) / MN N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6504','NAD83(2011) / Minnesota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6504','NAD83(2011) / MN S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6505','NAD83(2011) / MN S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6506','NAD83(2011) / Mississippi East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6506','NAD83(2011) / MS E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6507','NAD83(2011) / MS E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6508','NAD83(2011) / MSTM','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6509','NAD83(2011) / Mississippi West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6509','NAD83(2011) / MS W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6510','NAD83(2011) / MS W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6511','NAD83(2011) / Missouri Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6511','NAD83(2011) / MO C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6512','NAD83(2011) / Missouri East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6512','NAD83(2011) / MO E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6513','NAD83(2011) / Missouri West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6513','NAD83(2011) / MO W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6514','NAD83(2011) / Montana (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6514','NAD83(2011) / MT (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6515','NAD83(2011) / MT (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6518','NAD83(2011) / Nevada Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6518','NAD83(2011) / NV C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6520','NAD83(2011) / Nevada East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6520','NAD83(2011) / NV E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6522','NAD83(2011) / Nevada West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6522','NAD83(2011) / NV W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6524','NAD83(2011) / New Hampshire (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6524','NAD83(2011) / NH (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6525','NAD83(2011) / NH (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6526','NAD83(2011) / New Jersey (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6526','NAD83(2011) / NJ (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6528','NAD83(2011) / New Mexico Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6528','NAD83(2011) / NM C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6529','NAD83(2011) / NM C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6530','NAD83(2011) / New Mexico East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6530','NAD83(2011) / NM E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6531','NAD83(2011) / NM E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6532','NAD83(2011) / New Mexico West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6532','NAD83(2011) / NM W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6533','NAD83(2011) / NM W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6534','NAD83(2011) / New York Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6534','NAD83(2011) / NY C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6535','NAD83(2011) / NY C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6536','NAD83(2011) / New York East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6536','NAD83(2011) / NY E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6537','NAD83(2011) / NY E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6538','NAD83(2011) / New York Long Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6538','NAD83(2011) / NY LI (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6539','NAD83(2011) / NY LI (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6540','NAD83(2011) / New York West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6540','NAD83(2011) / NY W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6541','NAD83(2011) / NY W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6542','NAD83(2011) / North Carolina (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6542','NAD83(2011) / NC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6543','NAD83(2011) / NC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6544','NAD83(2011) / North Dakota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6544','NAD83(2011) / ND N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6545','NAD83(2011) / ND N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6546','NAD83(2011) / North Dakota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6546','NAD83(2011) / ND S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6547','NAD83(2011) / ND S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6548','NAD83(2011) / Ohio North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6549','NAD83(2011) / OH N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6550','NAD83(2011) / Ohio South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6551','NAD83(2011) / OH S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6552','NAD83(2011) / Oklahoma North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6552','NAD83(2011) / OK N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6553','NAD83(2011) / OK N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6554','NAD83(2011) / Oklahoma South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6554','NAD83(2011) / OK S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6555','NAD83(2011) / OK S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6557','NAD83(2011) / OR GIC Lam (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6558','NAD83(2011) / Oregon North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6558','NAD83(2011) / OR N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6559','NAD83(2011) / OR N (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6560','NAD83(2011) / Oregon South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6560','NAD83(2011) / OR S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6561','NAD83(2011) / OR S (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6562','NAD83(2011) / Pennsylvania North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6562','NAD83(2011) / PA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6563','NAD83(2011) / PA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6564','NAD83(2011) / Pennsylvania South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6564','NAD83(2011) / PA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6565','NAD83(2011) / PA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6566','NAD83(2011) / PR and VI','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6567','NAD83(2011) / Rhode Island (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6567','NAD83(2011) / RI (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6568','NAD83(2011) / RI (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6569','NAD83(2011) / South Carolina (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6569','NAD83(2011) / SC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6570','NAD83(2011) / SC (ft)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6571','NAD83(2011) / South Dakota North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6571','NAD83(2011) / SD N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6572','NAD83(2011) / SD N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6573','NAD83(2011) / South Dakota South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6573','NAD83(2011) / SD S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6574','NAD83(2011) / SD S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6575','NAD83(2011) / Tennessee (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6575','NAD83(2011) / TN (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6576','NAD83(2011) / TN (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6577','NAD83(2011) / Texas Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6577','NAD83(2011) / TX C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6578','NAD83(2011) / TX C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6579','NAD83(2011) / TX Albers','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6580','NAD83(2011) / TX LC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6581','NAD83(2011) / Texas North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6581','NAD83(2011) / TX N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6582','NAD83(2011) / TX N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6583','NAD83(2011) / Texas North Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6583','NAD83(2011) / TX NC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6584','NAD83(2011) / TX NC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6585','NAD83(2011) / Texas South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6585','NAD83(2011) / TX S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6586','NAD83(2011) / TX S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6587','NAD83(2011) / Texas South Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6587','NAD83(2011) / TX SC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6588','NAD83(2011) / TX SC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6589','NAD83(2011) / Vermont (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6589','NAD83(2011) / VT (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6590','NAD83(2011) / VT (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6591','NAD83(2011) / VA LCC','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6592','NAD83(2011) / Virginia North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6592','NAD83(2011) / VA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6593','NAD83(2011) / VA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6594','NAD83(2011) / Virginia South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6594','NAD83(2011) / VA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6595','NAD83(2011) / VA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6596','NAD83(2011) / Washington North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6596','NAD83(2011) / WA N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6597','NAD83(2011) / WA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6598','NAD83(2011) / Washington South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6598','NAD83(2011) / WA S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6599','NAD83(2011) / WA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6600','NAD83(2011) / West Virginia North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6600','NAD83(2011) / WV N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6601','NAD83(2011) / WV N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6602','NAD83(2011) / West Virginia South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6602','NAD83(2011) / WV S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6603','NAD83(2011) / WV S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6604','NAD83(2011) / Wisconsin Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6604','NAD83(2011) / WI C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6605','NAD83(2011) / WI C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6606','NAD83(2011) / Wisconsin North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6606','NAD83(2011) / WI N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6607','NAD83(2011) / WI N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6608','NAD83(2011) / Wisconsin South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6608','NAD83(2011) / WI S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6609','NAD83(2011) / WI S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6610','NAD83(2011) / WTM 83','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6611','NAD83(2011) / Wyoming East (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6611','NAD83(2011) / WY E (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6612','NAD83(2011) / WY E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6613','NAD83(2011) / Wyoming East Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6613','NAD83(2011) / WY EC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6614','NAD83(2011) / WY EC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6615','NAD83(2011) / Wyoming West (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6615','NAD83(2011) / WY W (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6618','NAD83(2011) / WY WC (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6616','NAD83(2011) / WY W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6628','NAD83(PA11) / Hawaii zone 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6628','NAD83(PA11) / HI 1 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6629','NAD83(PA11) / Hawaii zone 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6629','NAD83(PA11) / HI 2 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6630','NAD83(PA11) / Hawaii zone 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6630','NAD83(PA11) / HI 3 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6631','NAD83(PA11) / Hawaii zone 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6631','NAD83(PA11) / HI 4 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6633','NAD83(PA11) / Hawaii zone 3 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6633','NAD83(PA11) / HI 3 (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6634','NAD83(PA11) / UTM 4N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6632','NAD83(PA11) / Hawaii zone 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6632','NAD83(PA11) / HI 5 (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6635','NAD83(PA11) / UTM 5N','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6636','NAD83(PA11) / UTM 2S','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6640','Northern Marianas Vertical Datum of 2003 height (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6642','Virgin Islands Vertical Datum of 2009 height (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6643','American Samoa Vertical Datum of 2002 height (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6638','Tutuila Vertical Datum of 1962 height (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6644','Guam Vertical Datum of 2004 height (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6639','Guam Vertical Datum of 1963 height (m)','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6641','Puerto Rico Vertical Datum of 2002 height (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6619','NAD83(2011) / Utah Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6619','NAD83(2011) / UT C (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6620','NAD83(2011) / Utah North (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6620','NAD83(2011) / UT N (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6621','NAD83(2011) / Utah South (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6621','NAD83(2011) / UT S (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6625','NAD83(2011) / UT C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6626','NAD83(2011) / UT N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6627','NAD83(2011) / UT S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6463','NAD83(2011) / IA N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6465','NAD83(2011) / IA S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6467','NAD83(2011) / KS N (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6469','NAD83(2011) / KS S (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6516','NAD83(2011) / Nebraska (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6516','NAD83(2011) / NE (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6517','NAD83(2011) / NE (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6519','NAD83(2011) / NV C (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6521','NAD83(2011) / NV E (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6523','NAD83(2011) / NV W (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6527','NAD83(2011) / NJ (ftUS)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6617','NAD83(2011) / Wyoming West Central (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6617','NAD83(2011) / WY WC (m)','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6646','Karbala 1979 (Polservice) / Iraq National Grid','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6646','Karbala / Iraq Nat. Grid','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6647','Canadian Geodetic Vertical Datum of 2013 height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6669','JGD2011 / Japan zone 1','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6670','JGD2011 / Japan zone 2','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6671','JGD2011 / Japan zone 3','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6672','JGD2011 / Japan zone 4','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6673','JGD2011 / Japan zone 5','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6674','JGD2011 / Japan zone 6','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6675','JGD2011 / Japan zone 7','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6676','JGD2011 / Japan zone 8','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6678','JGD2011 / Japan zone 10','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6679','JGD2011 / Japan zone 11','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6680','JGD2011 / Japan zone 12','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6681','JGD2011 / Japan zone 13','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6682','JGD2011 / Japan zone 14','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6687','JGD2011 / Japan zone 19','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6683','JGD2011 / Japan zone 15','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6684','JGD2011 / Japan zone 16','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6685','JGD2011 / Japan zone 17','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6686','JGD2011 / Japan zone 18','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','5723','JSLD height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6677','JGD2011 / Japan zone 9','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6693','Japan Levelling Datum height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6693','Japanese Standard Levelling Datum height','EPSG'); INSERT INTO "alias_name" VALUES('vertical_crs','EPSG','6693','JSLD height','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6707','RDN2008 / TM32','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6708','RDN2008 / TM33','EPSG'); INSERT INTO "alias_name" VALUES('projected_crs','EPSG','6709','RDN2008 / TM34','EPSG'); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1112','helmert_transformation','EPSG','1672','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1154','helmert_transformation','EPSG','1304','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1232','helmert_transformation','EPSG','1305','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1236','helmert_transformation','EPSG','1280','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1236','helmert_transformation','EPSG','1669','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1297','helmert_transformation','EPSG','1298','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1297','helmert_transformation','EPSG','1299','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1297','helmert_transformation','EPSG','1300','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1297','helmert_transformation','EPSG','1301','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1320','helmert_transformation','EPSG','1326','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1321','helmert_transformation','EPSG','1324','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1322','helmert_transformation','EPSG','1324','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1324','helmert_transformation','EPSG','1327','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1325','helmert_transformation','EPSG','1327','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1330','helmert_transformation','EPSG','1557','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1437','helmert_transformation','EPSG','1895','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','1451','grid_transformation','EPSG','1575','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1459','helmert_transformation','EPSG','1594','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','1464','grid_transformation','EPSG','1596','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','1506','grid_transformation','EPSG','1803','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','1507','grid_transformation','EPSG','1803','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','1559','grid_transformation','EPSG','1593','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','1593','grid_transformation','EPSG','1804','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','1596','grid_transformation','EPSG','1803','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1655','helmert_transformation','EPSG','1997','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1657','helmert_transformation','EPSG','1992','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1674','helmert_transformation','EPSG','1775','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1680','helmert_transformation','EPSG','1896','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1683','helmert_transformation','EPSG','1684','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1683','helmert_transformation','EPSG','1685','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1683','helmert_transformation','EPSG','1686','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1683','helmert_transformation','EPSG','1687','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1807','helmert_transformation','EPSG','1808','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1900','helmert_transformation','EPSG','1901','EPSG'); INSERT INTO "supersession" VALUES('concatenated_operation','EPSG','8047','concatenated_operation','EPSG','8569','EPSG'); INSERT INTO "supersession" VALUES('concatenated_operation','EPSG','8047','helmert_transformation','EPSG','1612','EPSG'); INSERT INTO "supersession" VALUES('concatenated_operation','EPSG','8569','helmert_transformation','EPSG','1612','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1638','helmert_transformation','EPSG','10098','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1639','helmert_transformation','EPSG','10099','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1751','helmert_transformation','EPSG','15739','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1066','helmert_transformation','EPSG','15740','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','15781','grid_transformation','EPSG','10084','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15791','helmert_transformation','EPSG','1330','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15817','helmert_transformation','EPSG','15818','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15852','grid_transformation','EPSG','15851','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15853','grid_transformation','EPSG','15851','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15854','grid_transformation','EPSG','15851','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15856','grid_transformation','EPSG','15851','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1309','helmert_transformation','EPSG','1776','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1673','helmert_transformation','EPSG','1777','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1753','helmert_transformation','EPSG','1766','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','15895','grid_transformation','EPSG','15932','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','15907','grid_transformation','EPSG','15933','EPSG'); INSERT INTO "supersession" VALUES('concatenated_operation','EPSG','8581','helmert_transformation','EPSG','1439','EPSG'); INSERT INTO "supersession" VALUES('concatenated_operation','EPSG','8657','helmert_transformation','EPSG','15846','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1672','helmert_transformation','EPSG','15934','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1829','helmert_transformation','EPSG','1449','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1830','helmert_transformation','EPSG','1448','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1831','helmert_transformation','EPSG','1242','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15993','helmert_transformation','EPSG','15994','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1656','helmert_transformation','EPSG','1988','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1658','helmert_transformation','EPSG','1987','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1928','helmert_transformation','EPSG','15901','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15783','helmert_transformation','EPSG','15901','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1917','helmert_transformation','EPSG','15902','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1927','helmert_transformation','EPSG','15902','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1962','helmert_transformation','EPSG','15903','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1963','helmert_transformation','EPSG','15903','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','3972','helmert_transformation','EPSG','4834','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','10092','helmert_transformation','EPSG','5051','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1992','helmert_transformation','EPSG','5037','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1281','helmert_transformation','EPSG','5043','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1267','helmert_transformation','EPSG','5044','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1997','helmert_transformation','EPSG','5038','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1550','helmert_transformation','EPSG','5061','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1551','helmert_transformation','EPSG','5061','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1552','helmert_transformation','EPSG','5061','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15710','helmert_transformation','EPSG','5053','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15711','helmert_transformation','EPSG','5051','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15712','helmert_transformation','EPSG','5055','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','10091','helmert_transformation','EPSG','5055','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','10089','helmert_transformation','EPSG','5051','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','10090','helmert_transformation','EPSG','5053','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15872','helmert_transformation','EPSG','5078','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1642','helmert_transformation','EPSG','5485','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1643','helmert_transformation','EPSG','5486','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15754','helmert_transformation','EPSG','5055','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15754','helmert_transformation','EPSG','5053','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15754','helmert_transformation','EPSG','5051','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','10093','helmert_transformation','EPSG','5055','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','10093','helmert_transformation','EPSG','5053','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','10093','helmert_transformation','EPSG','5051','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1079','helmert_transformation','EPSG','5484','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1078','helmert_transformation','EPSG','5483','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10082','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1108','helmert_transformation','EPSG','6905','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10081','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10078','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10039','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10040','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10041','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10042','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10043','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','6392','helmert_transformation','EPSG','6279','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1121','helmert_transformation','EPSG','6906','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10083','grid_transformation','EPSG','5657','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','6315','helmert_transformation','EPSG','6278','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','6313','helmert_transformation','EPSG','6280','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1256','helmert_transformation','EPSG','6908','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1951','helmert_transformation','EPSG','6909','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','5662','helmert_transformation','EPSG','6939','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15938','helmert_transformation','EPSG','6998','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10000','grid_transformation','EPSG','8271','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15800','helmert_transformation','EPSG','6907','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','15897','helmert_transformation','EPSG','6895','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1868','helmert_transformation','EPSG','6976','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1868','helmert_transformation','EPSG','6975','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1868','helmert_transformation','EPSG','6974','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1203','helmert_transformation','EPSG','6971','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1204','helmert_transformation','EPSG','6973','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10063','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10037','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10064','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10066','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10067','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10068','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10069','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','5334','grid_transformation','EPSG','7718','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','5335','grid_transformation','EPSG','7719','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10001','grid_transformation','EPSG','8271','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10058','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10059','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10060','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10061','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10062','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1646','grid_transformation','EPSG','7674','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10034','grid_transformation','EPSG','7713','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10070','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10031','grid_transformation','EPSG','7713','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10030','grid_transformation','EPSG','7713','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10026','grid_transformation','EPSG','7713','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10071','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10025','grid_transformation','EPSG','7713','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10024','grid_transformation','EPSG','7713','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10072','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10033','grid_transformation','EPSG','7715','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10032','grid_transformation','EPSG','7716','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10021','grid_transformation','EPSG','7711','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10029','grid_transformation','EPSG','7712','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1766','grid_transformation','EPSG','7788','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10027','grid_transformation','EPSG','7714','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10023','grid_transformation','EPSG','7717','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10002','grid_transformation','EPSG','8272','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10073','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10038','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10074','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10035','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10044','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10045','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10046','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10047','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10048','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10049','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10050','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10051','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10052','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10053','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10036','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10054','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10055','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10056','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10057','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10075','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10076','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','5338','grid_transformation','EPSG','7709','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','5339','grid_transformation','EPSG','7710','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10077','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10079','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10080','grid_transformation','EPSG','5656','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','10003','grid_transformation','EPSG','8272','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','1923','helmert_transformation','EPSG','8270','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','4829','concatenated_operation','EPSG','8443','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','4827','concatenated_operation','EPSG','8443','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','4827','concatenated_operation','EPSG','8442','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','4829','concatenated_operation','EPSG','8442','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','5504','grid_transformation','EPSG','9135','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','5502','grid_transformation','EPSG','9136','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','8371','grid_transformation','EPSG','8885','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','3917','helmert_transformation','EPSG','8688','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','3915','helmert_transformation','EPSG','8688','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','3916','helmert_transformation','EPSG','8689','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','3914','helmert_transformation','EPSG','8689','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','5506','grid_transformation','EPSG','9134','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','5503','grid_transformation','EPSG','9133','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','5505','grid_transformation','EPSG','9188','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','5508','grid_transformation','EPSG','9187','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','9137','grid_transformation','EPSG','9228','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','6326','grid_transformation','EPSG','9229','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7646','grid_transformation','EPSG','9230','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7647','grid_transformation','EPSG','9231','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','4831','helmert_transformation','EPSG','9281','EPSG'); INSERT INTO "supersession" VALUES('helmert_transformation','EPSG','4830','helmert_transformation','EPSG','9281','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7000','grid_transformation','EPSG','9282','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7860','grid_transformation','EPSG','9312','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','4459','grid_transformation','EPSG','9325','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7840','grid_transformation','EPSG','9326','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7861','grid_transformation','EPSG','9313','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7872','grid_transformation','EPSG','9324','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7871','grid_transformation','EPSG','9323','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7870','grid_transformation','EPSG','9322','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7869','grid_transformation','EPSG','9321','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7868','grid_transformation','EPSG','9320','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7867','grid_transformation','EPSG','9319','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7866','grid_transformation','EPSG','9318','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7865','grid_transformation','EPSG','9317','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7864','grid_transformation','EPSG','9316','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7863','grid_transformation','EPSG','9315','EPSG'); INSERT INTO "supersession" VALUES('grid_transformation','EPSG','7862','grid_transformation','EPSG','9314','EPSG'); --- This file has been generated by scripts/build_db.py. DO NOT EDIT ! INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2156','EPSG','2195','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2291','EPSG','2292','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4035','EPSG','4047','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4226','EPSG','4142','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31462','EPSG','31466','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31463','EPSG','31467','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31464','EPSG','31468','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31465','EPSG','31469','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31265','EPSG','31275','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31266','EPSG','31276','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31267','EPSG','31277','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31268','EPSG','31278','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31278','EPSG','31279','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31291','EPSG','31281','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31292','EPSG','31282','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31293','EPSG','31283','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31294','EPSG','31284','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31295','EPSG','31285','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31296','EPSG','31286','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31297','EPSG','31287','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29900','EPSG','29902','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2155','EPSG','2194','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4226','EPSG','4143','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4172','EPSG','4190','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27581','EPSG','27571','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27582','EPSG','27572','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27583','EPSG','27573','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27584','EPSG','27574','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27591','EPSG','27561','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27592','EPSG','27562','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27593','EPSG','27563','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27594','EPSG','27564','EPSG'); INSERT INTO "deprecation" VALUES('compound_crs','EPSG','7401','EPSG','7411','EPSG'); INSERT INTO "deprecation" VALUES('compound_crs','EPSG','7402','EPSG','7412','EPSG'); INSERT INTO "deprecation" VALUES('compound_crs','EPSG','7403','EPSG','7413','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32036','EPSG','2204','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26979','EPSG','2205','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4228','EPSG','4192','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4260','EPSG','4193','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','22832','EPSG','2214','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4287','EPSG','4194','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32074','EPSG','32064','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32075','EPSG','32065','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32076','EPSG','32066','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32077','EPSG','32067','EPSG'); INSERT INTO "deprecation" VALUES('vertical_crs','EPSG','5704','EPSG','5736','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21473','EPSG','21453','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21474','EPSG','21454','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21475','EPSG','21455','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21476','EPSG','21456','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21477','EPSG','21457','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21478','EPSG','21458','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21479','EPSG','21459','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21480','EPSG','21460','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21481','EPSG','21461','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21482','EPSG','21462','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21483','EPSG','21463','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2199','EPSG','2462','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2166','EPSG','2397','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2167','EPSG','2398','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2168','EPSG','2399','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2091','EPSG','2395','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2092','EPSG','2396','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20092','EPSG','2491','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20091','EPSG','2490','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20090','EPSG','2489','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20089','EPSG','2488','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20088','EPSG','2487','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20087','EPSG','2486','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20086','EPSG','2485','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20085','EPSG','2484','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20084','EPSG','2483','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20083','EPSG','2482','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20082','EPSG','2481','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20081','EPSG','2480','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20080','EPSG','2479','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20079','EPSG','2478','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20078','EPSG','2477','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20077','EPSG','2476','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20076','EPSG','2475','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20075','EPSG','2474','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20074','EPSG','2473','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20073','EPSG','2472','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20072','EPSG','2471','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20071','EPSG','2470','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20070','EPSG','2469','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20069','EPSG','2468','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20068','EPSG','2467','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20067','EPSG','2466','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20066','EPSG','2465','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20065','EPSG','2464','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','20064','EPSG','2463','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28462','EPSG','2492','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28463','EPSG','2493','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28464','EPSG','2494','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28465','EPSG','2495','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28466','EPSG','2496','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28467','EPSG','2497','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28468','EPSG','2498','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28469','EPSG','2499','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28470','EPSG','2500','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28471','EPSG','2501','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28472','EPSG','2502','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28473','EPSG','2503','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28474','EPSG','2504','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28475','EPSG','2505','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28476','EPSG','2506','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28477','EPSG','2507','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28478','EPSG','2508','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28479','EPSG','2509','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28480','EPSG','2510','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28481','EPSG','2511','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28482','EPSG','2512','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28483','EPSG','2513','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28484','EPSG','2514','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28485','EPSG','2515','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28486','EPSG','2516','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28487','EPSG','2517','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28488','EPSG','2518','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28489','EPSG','2519','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28490','EPSG','2520','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28491','EPSG','2521','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28492','EPSG','2522','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4294','EPSG','4613','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4125','EPSG','4613','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2550','EPSG','2933','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4185','EPSG','4615','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4185','EPSG','4616','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2191','EPSG','2942','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2191','EPSG','2943','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4140','EPSG','4617','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2147','EPSG','2952','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2140','EPSG','2945','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2141','EPSG','2946','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2142','EPSG','2947','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2143','EPSG','2948','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2144','EPSG','2949','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2145','EPSG','2950','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2146','EPSG','2951','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2036','EPSG','2953','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2292','EPSG','2954','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2139','EPSG','2944','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2153','EPSG','2955','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2152','EPSG','2956','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2151','EPSG','2957','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2150','EPSG','2958','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2149','EPSG','2959','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2037','EPSG','2960','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2038','EPSG','2961','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2148','EPSG','2962','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4234','EPSG','4197','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','23433','EPSG','2312','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4291','EPSG','4618','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29100','EPSG','29101','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29177','EPSG','29187','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29118','EPSG','29168','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29185','EPSG','29195','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29184','EPSG','29194','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29183','EPSG','29193','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29182','EPSG','29192','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29181','EPSG','29191','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29180','EPSG','29190','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29179','EPSG','29189','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29178','EPSG','29188','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29122','EPSG','29172','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29121','EPSG','29171','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29120','EPSG','29170','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29119','EPSG','29169','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26193','EPSG','26194','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2245','EPSG','2966','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2244','EPSG','2965','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2889','EPSG','2967','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2890','EPSG','2968','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4327','EPSG','4329','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4235','EPSG','4623','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21100','EPSG','3001','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','25700','EPSG','3002','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2934','EPSG','3000','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26591','EPSG','3003','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26592','EPSG','3004','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29635','EPSG','20135','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29636','EPSG','20136','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4296','EPSG','4201','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2400','EPSG','3021','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','30800','EPSG','3027','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4634','EPSG','4662','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2982','EPSG','3060','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4340','EPSG','4930','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4344','EPSG','4932','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4342','EPSG','4934','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4346','EPSG','4936','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4348','EPSG','4938','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4350','EPSG','4940','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4352','EPSG','4942','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4387','EPSG','4944','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4385','EPSG','4919','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4330','EPSG','4910','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4331','EPSG','4911','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4332','EPSG','4912','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4333','EPSG','4913','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4334','EPSG','4914','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4335','EPSG','4915','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4336','EPSG','4916','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4337','EPSG','4917','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4338','EPSG','4918','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4354','EPSG','4946','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4389','EPSG','4948','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4356','EPSG','4950','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4358','EPSG','4952','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4360','EPSG','4954','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4362','EPSG','4956','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4364','EPSG','4958','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4366','EPSG','4960','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4368','EPSG','4962','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4370','EPSG','4964','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4372','EPSG','4966','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4382','EPSG','4968','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4374','EPSG','4970','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4384','EPSG','4972','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4376','EPSG','4974','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4378','EPSG','4976','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4328','EPSG','4978','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4380','EPSG','4980','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4388','EPSG','4949','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4386','EPSG','4945','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4383','EPSG','4973','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4381','EPSG','4969','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4379','EPSG','4981','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4377','EPSG','4977','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4375','EPSG','4975','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4373','EPSG','4971','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4371','EPSG','4967','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4369','EPSG','4965','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4367','EPSG','4963','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4365','EPSG','4961','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4363','EPSG','4959','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4361','EPSG','4957','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4359','EPSG','4955','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4357','EPSG','4953','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4355','EPSG','4951','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4353','EPSG','4947','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4351','EPSG','4943','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4349','EPSG','4941','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4347','EPSG','4939','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4345','EPSG','4937','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4343','EPSG','4933','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4341','EPSG','4935','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4339','EPSG','4931','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4329','EPSG','4979','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4126','EPSG','4669','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4819','EPSG','4307','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31900','EPSG','31901','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2194','EPSG','3102','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4233','EPSG','4684','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4233','EPSG','4685','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21891','EPSG','21896','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21892','EPSG','21897','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21893','EPSG','21898','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','21894','EPSG','21899','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2214','EPSG','3119','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26747','EPSG','26799','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4172','EPSG','4694','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4685','EPSG','4696','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2171','EPSG','3120','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2979','EPSG','3336','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4631','EPSG','4698','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2600','EPSG','3346','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26432','EPSG','3353','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26432','EPSG','3354','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4264','EPSG','4704','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4264','EPSG','4705','EPSG'); INSERT INTO "deprecation" VALUES('compound_crs','EPSG','7408','EPSG','7415','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4681','EPSG','4700','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4681','EPSG','4702','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3103','EPSG','3343','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3103','EPSG','3367','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3104','EPSG','3344','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3104','EPSG','3368','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3105','EPSG','3345','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3105','EPSG','3369','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5532','EPSG','5858','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2577','EPSG','3389','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2694','EPSG','3390','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3785','EPSG','3857','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4968','EPSG','4906','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4645','EPSG','4749','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4969','EPSG','4907','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2984','EPSG','3163','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4635','EPSG','4750','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2983','EPSG','3164','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','24571','EPSG','3167','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','24571','EPSG','3168','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4731','EPSG','4752','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3359','EPSG','3404','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3366','EPSG','3407','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29700','EPSG','29701','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','29700','EPSG','29702','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3143','EPSG','3460','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2063','EPSG','3461','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2064','EPSG','3462','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3073','EPSG','3463','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3076','EPSG','3464','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2990','EPSG','3727','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4902','EPSG','4901','EPSG'); INSERT INTO "deprecation" VALUES('compound_crs','EPSG','7412','EPSG','7421','EPSG'); INSERT INTO "deprecation" VALUES('compound_crs','EPSG','7413','EPSG','7422','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27492','EPSG','27493','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32662','EPSG','32663','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32662','EPSG','3786','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2086','EPSG','3796','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2085','EPSG','3795','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26814','EPSG','26847','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26815','EPSG','26848','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26825','EPSG','26855','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26826','EPSG','26856','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26836','EPSG','26863','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26837','EPSG','26864','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26819','EPSG','26849','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26820','EPSG','26850','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26821','EPSG','26851','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26830','EPSG','26857','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26831','EPSG','26858','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26832','EPSG','26859','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26841','EPSG','26865','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26842','EPSG','26866','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26843','EPSG','26867','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26822','EPSG','26852','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26833','EPSG','26860','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26844','EPSG','26868','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26823','EPSG','26853','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26824','EPSG','26854','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26834','EPSG','26861','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26835','EPSG','26862','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26845','EPSG','26869','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26846','EPSG','26870','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3774','EPSG','3800','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3778','EPSG','3801','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3782','EPSG','3802','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3349','EPSG','3832','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3752','EPSG','3994','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28403','EPSG','3333','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','28402','EPSG','3833','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31700','EPSG','3844','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4317','EPSG','4179','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31275','EPSG','3907','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31276','EPSG','3908','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31277','EPSG','3909','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','31279','EPSG','3910','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3787','EPSG','3912','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2170','EPSG','3911','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3314','EPSG','3985','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3315','EPSG','3989','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3315','EPSG','3988','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3315','EPSG','3987','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3315','EPSG','3986','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32663','EPSG','4087','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3786','EPSG','4088','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3985','EPSG','4415','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3842','EPSG','4417','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3843','EPSG','4434','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32029','EPSG','4455','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32018','EPSG','4456','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3454','EPSG','4457','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4972','EPSG','4556','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4973','EPSG','4557','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4640','EPSG','4558','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2989','EPSG','4559','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4868','EPSG','5118','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4869','EPSG','5119','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4870','EPSG','5120','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4861','EPSG','5111','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4860','EPSG','5110','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4871','EPSG','5121','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4872','EPSG','5122','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4873','EPSG','5123','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4855','EPSG','5105','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4856','EPSG','5106','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4857','EPSG','5107','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4858','EPSG','5108','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4859','EPSG','5109','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4862','EPSG','5112','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4863','EPSG','5113','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4864','EPSG','5114','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4865','EPSG','5115','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4866','EPSG','5116','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4867','EPSG','5117','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4874','EPSG','5124','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4875','EPSG','5125','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4876','EPSG','5126','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4877','EPSG','5127','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4878','EPSG','5128','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4879','EPSG','5129','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4880','EPSG','5130','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32061','EPSG','5458','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','32062','EPSG','5459','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5466','EPSG','5589','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5458','EPSG','5559','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26801','EPSG','5623','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26802','EPSG','5624','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26803','EPSG','5625','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','2192','EPSG','2154','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5388','EPSG','5839','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','4474','EPSG','5879','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3356','EPSG','6128','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3357','EPSG','6129','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26811','EPSG','6200','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26812','EPSG','6201','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','26813','EPSG','6202','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4268','EPSG','4267','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5570','EPSG','6381','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5577','EPSG','6381','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5571','EPSG','6382','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5578','EPSG','6382','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5579','EPSG','6383','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5572','EPSG','6383','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5573','EPSG','6384','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5580','EPSG','6384','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5574','EPSG','6385','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5581','EPSG','6385','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5575','EPSG','6386','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5582','EPSG','6386','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5576','EPSG','6387','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','5583','EPSG','6387','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','6141','EPSG','6391','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','6604','EPSG','6879','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','6517','EPSG','6880','EPSG'); INSERT INTO "deprecation" VALUES('compound_crs','EPSG','6871','EPSG','6893','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3975','EPSG','6933','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3973','EPSG','6931','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3974','EPSG','6932','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','6200','EPSG','6966','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','7088','EPSG','7133','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','6996','EPSG','7131','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','6997','EPSG','7132','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27037','EPSG','7005','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3907','EPSG','8677','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','6978','EPSG','7134','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','6980','EPSG','7136','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','6979','EPSG','7135','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','6985','EPSG','7137','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','6986','EPSG','7138','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','6987','EPSG','7139','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3908','EPSG','8678','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3909','EPSG','6316','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','27038','EPSG','7006','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','6956','EPSG','5896','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','6957','EPSG','5897','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','6958','EPSG','5898','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','6959','EPSG','5899','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3910','EPSG','8679','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','7082','EPSG','8456','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','7082','EPSG','8455','EPSG'); INSERT INTO "deprecation" VALUES('projected_crs','EPSG','3911','EPSG','8686','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','8449','EPSG','8860','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4280','EPSG','4211','EPSG'); INSERT INTO "deprecation" VALUES('geodetic_crs','EPSG','4808','EPSG','4813','EPSG'); --- This file has been generated by scripts/build_db_from_esri.py. DO NOT EDIT ! INSERT INTO "metadata" VALUES('ESRI.VERSION', 'ArcMap 10.8.0'); INSERT INTO "metadata" VALUES('ESRI.DATE', '2019-12-01'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','1025','Millimeter','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','1033','Centimeter','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9001','Meter','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9002','Foot','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9003','Foot_US','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9005','Foot_Clarke','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9014','Fathom','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9030','Nautical_Mile','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9031','Meter_German','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9033','Chain_US','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9034','Link_US','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9035','Mile_US','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9036','Kilometer','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9037','Yard_Clarke','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9038','Chain_Clarke','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9039','Link_Clarke','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9040','Yard_Sears','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9041','Foot_Sears','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9042','Chain_Sears','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9043','Link_Sears','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9050','Yard_Benoit_1895_A','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9051','Foot_Benoit_1895_A','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9052','Chain_Benoit_1895_A','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9053','Link_Benoit_1895_A','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9060','Yard_Benoit_1895_B','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9061','Foot_Benoit_1895_B','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9062','Chain_Benoit_1895_B','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9063','Link_Benoit_1895_B','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9070','Foot_1865','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9080','Foot_Indian','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9081','Foot_Indian_1937','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9082','Foot_Indian_1962','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9083','Foot_Indian_1975','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9084','Yard_Indian','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9085','Yard_Indian_1937','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9086','Yard_Indian_1962','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9087','Yard_Indian_1975','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9093','Statute_Mile','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9094','Foot_Gold_Coast','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9095','Foot_British_1936','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9096','Yard','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9097','Chain','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9098','Link','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9099','Yard_Sears_1922_Truncated','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9300','Foot_Sears_1922_Truncated','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9301','Chain_Sears_1922_Truncated','ESRI'); INSERT INTO alias_name VALUES('unit_of_measure','EPSG','9302','Link_Sears_1922_Truncated','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','1026','Zach_1812','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7001','Airy_1830','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7002','Airy_Modified','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7003','Australian','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7004','Bessel_1841','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7005','Bessel_Modified','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7006','Bessel_Namibia','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7007','Clarke_1858','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7008','Clarke_1866','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7009','Clarke_1866_Michigan','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7010','Clarke_1880_Benoit','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7011','Clarke_1880_IGN','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7012','Clarke_1880_RGS','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7013','Clarke_1880_Arc','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7014','Clarke_1880_SGA','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7015','Everest_Adjustment_1937','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7016','Everest_Definition_1967','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7018','Everest_1830_Modified','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7019','GRS_1980','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7020','Helmert_1906','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7021','Indonesian','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7022','International_1924','ESRI'); INSERT INTO ellipsoid VALUES('ESRI','7023','International_1967','International 1967','PROJ','EARTH',6378160.0,'EPSG','9001',298.25,NULL,0); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7024','Krasovsky_1940','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7025','NWL_9D','ESRI'); INSERT INTO ellipsoid VALUES('ESRI','7026','NWL_10D','NWL-10D == WGS 1972','PROJ','EARTH',6378135.0,'EPSG','9001',298.26,NULL,0); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7027','Plessis_1817','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7028','Struve_1860','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7029','War_Office','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7030','WGS_1984','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7031','GEM_10C','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7032','OSU_86F','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7033','OSU_91A','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7034','Clarke_1880','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7036','GRS_1967','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7041','ATS_1977','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7042','Everest_1830','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7043','WGS_1972','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7044','Everest_Definition_1962','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7045','Everest_Definition_1975','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7048','Sphere_GRS_1980_Authalic','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7049','Xian_1980','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7050','GRS_1967_Truncated','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7051','Danish_1876','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7052','Sphere_Clarke_1866_Authalic','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7053','Hough_1960','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7054','PZ_1990','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7055','Clarke_1880_Intl_Ft','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7056','Everest_Modified_1969','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7057','Sphere_International_1924_Authalic','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7058','Hughes_1980','ESRI'); INSERT INTO alias_name VALUES('ellipsoid','EPSG','7059','WGS_1984_Major_Auxiliary_Sphere','ESRI'); INSERT INTO ellipsoid VALUES('ESRI','107001','WGS_1966','WGS 1966','PROJ','EARTH',6378145.0,'EPSG','9001',298.25,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107002','Fischer_1960','Fischer 1960','PROJ','EARTH',6378166.0,'EPSG','9001',298.3,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107003','Fischer_1968','Fischer 1968','PROJ','EARTH',6378150.0,'EPSG','9001',298.3,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107004','Fischer_Modified','Fischer modified','PROJ','EARTH',6378155.0,'EPSG','9001',298.3,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107005','Hough_1960','Hough 1960','PROJ','EARTH',6378270.0,'EPSG','9001',297.0,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107006','Everest_Modified_1969','Everest modified 1969 - 107006, called Everest 1830 (RSO 1969) in EPSG','PROJ','EARTH',6377295.664,'EPSG','9001',300.8017,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107007','Walbeck','Walbeck','PROJ','EARTH',6376896.0,'EPSG','9001',302.78,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107008','Sphere_ARC_INFO','Authalic sphere (ARC/INFO)','PROJ','EARTH',6370997.0,'EPSG','9001',0.0,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107009','Sphere_EMEP','EMEP Sphere of 6370000 m','PROJ','EARTH',6370000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107036','GRS_1967_Truncated','GRS 1967 Truncated - was 107036, called GRS67 Modified in EPSG','PROJ','EARTH',6378160.0,'EPSG','9001',298.25,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107037','WGS_1984_Major_Auxiliary_Sphere','Major auxiliary sphere based on WGS 1984','PROJ','EARTH',6378137.0,'EPSG','9001',0.0,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107038','CGCS2000','China Geodetic Coordinate System 2000','PROJ','EARTH',6378137.0,'EPSG','9001',298.257222101,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107047','Sphere_GRS_1980_Mean_Radius','Sphere with mean radius based on GRS80','PROJ','EARTH',6371008.7714,'EPSG','9001',0.0,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107700','S_GRS_1980_Adj_MN_Anoka','GRS 1980 Adj. Minnesota Anoka','PROJ','EARTH',6378418.941,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107701','S_GRS_1980_Adj_MN_Becker','GRS 1980 Adj. Minnesota Becker','PROJ','EARTH',6378586.581,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107702','S_GRS_1980_Adj_MN_Beltrami_North','GRS 1980 Adj. Minnesota Beltrami North','PROJ','EARTH',6378505.809,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107703','S_GRS_1980_Adj_MN_Beltrami_South','GRS 1980 Adj. Minnesota Beltrami South','PROJ','EARTH',6378544.823,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107704','S_GRS_1980_Adj_MN_Benton','GRS 1980 Adj. Minnesota Benton','PROJ','EARTH',6378490.569,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107705','S_GRS_1980_Adj_MN_Big_Stone','GRS 1980 Adj. Minnesota Big Stone','PROJ','EARTH',6378470.757,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107706','S_GRS_1980_Adj_MN_Blue_Earth','GRS 1980 Adj. Minnesota Blue Earth','PROJ','EARTH',6378403.701,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107707','S_GRS_1980_Adj_MN_Brown','GRS 1980 Adj. Minnesota Brown','PROJ','EARTH',6378434.181,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107708','S_GRS_1980_Adj_MN_Carlton','GRS 1980 Adj. Minnesota Carlton','PROJ','EARTH',6378454.907,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107709','S_GRS_1980_Adj_MN_Carver','GRS 1980 Adj. Minnesota Carver','PROJ','EARTH',6378400.653,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107710','S_GRS_1980_Adj_MN_Cass_North','GRS 1980 Adj. Minnesota Cass North','PROJ','EARTH',6378567.378,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107711','S_GRS_1980_Adj_MN_Cass_South','GRS 1980 Adj. Minnesota Cass South','PROJ','EARTH',6378546.957,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107712','S_GRS_1980_Adj_MN_Chippewa','GRS 1980 Adj. Minnesota Chippewa','PROJ','EARTH',6378476.853,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107713','S_GRS_1980_Adj_MN_Chisago','GRS 1980 Adj. Minnesota Chisago','PROJ','EARTH',6378411.321,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107714','S_GRS_1980_Adj_MN_Cook_North','GRS 1980 Adj. Minnesota Cook North','PROJ','EARTH',6378647.541,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107715','S_GRS_1980_Adj_MN_Cook_South','GRS 1980 Adj. Minnesota Cook South','PROJ','EARTH',6378647.541,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107716','S_GRS_1980_Adj_MN_Cottonwood','GRS 1980 Adj. Minnesota Cottonwood','PROJ','EARTH',6378514.953,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107717','S_GRS_1980_Adj_MN_Crow_Wing','GRS 1980 Adj. Minnesota Crow Wing','PROJ','EARTH',6378546.957,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107718','S_GRS_1980_Adj_MN_Dakota','GRS 1980 Adj. Minnesota Dakota','PROJ','EARTH',6378421.989,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107719','S_GRS_1980_Adj_MN_Dodge','GRS 1980 Adj. Minnesota Dodge','PROJ','EARTH',6378481.425,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107720','S_GRS_1980_Adj_MN_Douglas','GRS 1980 Adj. Minnesota Douglas','PROJ','EARTH',6378518.001,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107721','S_GRS_1980_Adj_MN_Faribault','GRS 1980 Adj. Minnesota Faribault','PROJ','EARTH',6378521.049,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107722','S_GRS_1980_Adj_MN_Fillmore','GRS 1980 Adj. Minnesota Fillmore','PROJ','EARTH',6378464.661,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107723','S_GRS_1980_Adj_MN_Freeborn','GRS 1980 Adj. Minnesota Freeborn','PROJ','EARTH',6378521.049,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107724','S_GRS_1980_Adj_MN_Goodhue','GRS 1980 Adj. Minnesota Goodhue','PROJ','EARTH',6378434.181,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107725','S_GRS_1980_Adj_MN_Grant','GRS 1980 Adj. Minnesota Grant','PROJ','EARTH',6378518.001,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107726','S_GRS_1980_Adj_MN_Hennepin','GRS 1980 Adj. Minnesota Hennepin','PROJ','EARTH',6378418.941,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107727','S_GRS_1980_Adj_MN_Houston','GRS 1980 Adj. Minnesota Houston','PROJ','EARTH',6378436.619,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107728','S_GRS_1980_Adj_MN_Isanti','GRS 1980 Adj. Minnesota Isanti','PROJ','EARTH',6378411.321,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107729','S_GRS_1980_Adj_MN_Itasca_North','GRS 1980 Adj. Minnesota Itasca North','PROJ','EARTH',6378574.389,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107730','S_GRS_1980_Adj_MN_Itasca_South','GRS 1980 Adj. Minnesota Itasca South','PROJ','EARTH',6378574.389,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107731','S_GRS_1980_Adj_MN_Jackson','GRS 1980 Adj. Minnesota Jackson','PROJ','EARTH',6378521.049,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107732','S_GRS_1980_Adj_MN_Kanabec','GRS 1980 Adj. Minnesota Kanabec','PROJ','EARTH',6378472.281,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107733','S_GRS_1980_Adj_MN_Kandiyohi','GRS 1980 Adj. Minnesota Kandiyohi','PROJ','EARTH',6378498.189,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107734','S_GRS_1980_Adj_MN_Kittson','GRS 1980 Adj. Minnesota Kittson','PROJ','EARTH',6378449.421,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107735','S_GRS_1980_Adj_MN_Koochiching','GRS 1980 Adj. Minnesota Koochiching','PROJ','EARTH',6378525.621,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107736','S_GRS_1980_Adj_MN_Lac_Qui_Parle','GRS 1980 Adj. Minnesota Lac Qui Parle','PROJ','EARTH',6378476.853,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107737','S_GRS_1980_Adj_MN_Lake_of_the_Woods_North','GRS 1980 Adj. Minnesota Lake of the Woods North','PROJ','EARTH',6378466.185,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107738','S_GRS_1980_Adj_MN_Lake_of_the_Woods_South','GRS 1980 Adj. Minnesota Lake of the Woods South','PROJ','EARTH',6378496.665,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107739','S_GRS_1980_Adj_MN_Le_Sueur','GRS 1980 Adj. Minnesota Le Sueur','PROJ','EARTH',6378434.181,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107740','S_GRS_1980_Adj_MN_Lincoln','GRS 1980 Adj. Minnesota Lincoln','PROJ','EARTH',6378643.579,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107741','S_GRS_1980_Adj_MN_Lyon','GRS 1980 Adj. Minnesota Lyon','PROJ','EARTH',6378559.758,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107742','S_GRS_1980_Adj_MN_McLeod','GRS 1980 Adj. Minnesota McLeod','PROJ','EARTH',6378414.369,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107743','S_GRS_1980_Adj_MN_Mahnomen','GRS 1980 Adj. Minnesota Mahnomen','PROJ','EARTH',6378586.581,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107744','S_GRS_1980_Adj_MN_Marshall','GRS 1980 Adj. Minnesota Marshall','PROJ','EARTH',6378441.801,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107745','S_GRS_1980_Adj_MN_Martin','GRS 1980 Adj. Minnesota Martin','PROJ','EARTH',6378521.049,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107746','S_GRS_1980_Adj_MN_Meeker','GRS 1980 Adj. Minnesota Meeker','PROJ','EARTH',6378498.189,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107747','S_GRS_1980_Adj_MN_Morrison','GRS 1980 Adj. Minnesota Morrison','PROJ','EARTH',6378502.761,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107748','S_GRS_1980_Adj_MN_Mower','GRS 1980 Adj. Minnesota Mower','PROJ','EARTH',6378521.049,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107749','S_GRS_1980_Adj_MN_Murray','GRS 1980 Adj. Minnesota Murray','PROJ','EARTH',6378617.061,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107750','S_GRS_1980_Adj_MN_Nicollet','GRS 1980 Adj. Minnesota Nicollet','PROJ','EARTH',6378403.701,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107751','S_GRS_1980_Adj_MN_Nobles','GRS 1980 Adj. Minnesota Nobles','PROJ','EARTH',6378624.681,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107752','S_GRS_1980_Adj_MN_Norman','GRS 1980 Adj. Minnesota Norman','PROJ','EARTH',6378468.623,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107753','S_GRS_1980_Adj_MN_Olmsted','GRS 1980 Adj. Minnesota Olmsted','PROJ','EARTH',6378481.425,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107754','S_GRS_1980_Adj_MN_Ottertail','GRS 1980 Adj. Minnesota Ottertail','PROJ','EARTH',6378525.621,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107755','S_GRS_1980_Adj_MN_Pennington','GRS 1980 Adj. Minnesota Pennington','PROJ','EARTH',6378445.763,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107756','S_GRS_1980_Adj_MN_Pine','GRS 1980 Adj. Minnesota Pine','PROJ','EARTH',6378472.281,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107757','S_GRS_1980_Adj_MN_Pipestone','GRS 1980 Adj. Minnesota Pipestone','PROJ','EARTH',6378670.401,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107758','S_GRS_1980_Adj_MN_Polk','GRS 1980 Adj. Minnesota Polk','PROJ','EARTH',6378445.763,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107759','S_GRS_1980_Adj_MN_Pope','GRS 1980 Adj. Minnesota Pope','PROJ','EARTH',6378502.761,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107760','S_GRS_1980_Adj_MN_Ramsey','GRS 1980 Adj. Minnesota Ramsey','PROJ','EARTH',6378418.941,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107761','S_GRS_1980_Adj_MN_Red_Lake','GRS 1980 Adj. Minnesota Red Lake','PROJ','EARTH',6378445.763,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107762','S_GRS_1980_Adj_MN_Redwood','GRS 1980 Adj. Minnesota Redwood','PROJ','EARTH',6378438.753,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107763','S_GRS_1980_Adj_MN_Renville','GRS 1980 Adj. Minnesota Renville','PROJ','EARTH',6378414.369,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107764','S_GRS_1980_Adj_MN_Rice','GRS 1980 Adj. Minnesota Rice','PROJ','EARTH',6378434.181,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107765','S_GRS_1980_Adj_MN_Rock','GRS 1980 Adj. Minnesota Rock','PROJ','EARTH',6378624.681,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107766','S_GRS_1980_Adj_MN_Roseau','GRS 1980 Adj. Minnesota Roseau','PROJ','EARTH',6378449.421,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107767','S_GRS_1980_Adj_MN_St_Louis_North','GRS 1980 Adj. Minnesota St Louis North','PROJ','EARTH',6378543.909,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107768','S_GRS_1980_Adj_MN_St_Louis_Central','GRS 1980 Adj. Minnesota St Louis Central','PROJ','EARTH',6378605.783,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107769','S_GRS_1980_Adj_MN_St_Louis_South','GRS 1980 Adj. Minnesota St Louis South','PROJ','EARTH',6378540.861,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107770','S_GRS_1980_Adj_MN_Scott','GRS 1980 Adj. Minnesota Scott','PROJ','EARTH',6378421.989,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107771','S_GRS_1980_Adj_MN_Sherburne','GRS 1980 Adj. Minnesota Sherburne','PROJ','EARTH',6378443.325,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107772','S_GRS_1980_Adj_MN_Sibley','GRS 1980 Adj. Minnesota Sibley','PROJ','EARTH',6378414.369,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107773','S_GRS_1980_Adj_MN_Stearns','GRS 1980 Adj. Minnesota Stearns','PROJ','EARTH',6378502.761,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107774','S_GRS_1980_Adj_MN_Steele','GRS 1980 Adj. Minnesota Steele','PROJ','EARTH',6378481.425,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107775','S_GRS_1980_Adj_MN_Stevens','GRS 1980 Adj. Minnesota Stevens','PROJ','EARTH',6378502.761,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107776','S_GRS_1980_Adj_MN_Swift','GRS 1980 Adj. Minnesota Swift','PROJ','EARTH',6378470.757,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107777','S_GRS_1980_Adj_MN_Todd','GRS 1980 Adj. Minnesota Todd','PROJ','EARTH',6378548.481,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107778','S_GRS_1980_Adj_MN_Traverse','GRS 1980 Adj. Minnesota Traverse','PROJ','EARTH',6378463.746,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107779','S_GRS_1980_Adj_MN_Wabasha','GRS 1980 Adj. Minnesota Wabasha','PROJ','EARTH',6378426.561,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107780','S_GRS_1980_Adj_MN_Wadena','GRS 1980 Adj. Minnesota Wadena','PROJ','EARTH',6378546.957,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107781','S_GRS_1980_Adj_MN_Waseca','GRS 1980 Adj. Minnesota Waseca','PROJ','EARTH',6378481.425,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107782','S_GRS_1980_Adj_MN_Watonwan','GRS 1980 Adj. Minnesota Watonwan','PROJ','EARTH',6378514.953,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107783','S_GRS_1980_Adj_MN_Winona','GRS 1980 Adj. Minnesota Winona','PROJ','EARTH',6378453.688,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107784','S_GRS_1980_Adj_MN_Wright','GRS 1980 Adj. Minnesota Wright','PROJ','EARTH',6378443.325,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107785','S_GRS_1980_Adj_MN_Yellow_Medicine','GRS 1980 Adj. Minnesota Yellow Medicine','PROJ','EARTH',6378530.193,'EPSG','9001',298.2572221008827,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107786','S_GRS_1980_Adj_MN_St_Louis','GRS 1980 Adj. Minnesota St. Louis','PROJ','EARTH',6378523.0,'EPSG','9001',298.2752724,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107800','GRS_1980_Adj_WI_AL','GRS 1980 Adj. Wisconsin Ashland','PROJ','EARTH',6378471.92,'EPSG','9001',298.272883775229,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107801','GRS_1980_Adj_WI_BA','GRS 1980 Adj. Wisconsin Barron','PROJ','EARTH',6378472.931,'EPSG','9001',298.272931052052,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107802','GRS_1980_Adj_WI_BF','GRS 1980 Adj. Wisconsin Bayfield','PROJ','EARTH',6378411.351,'EPSG','9001',298.270051421254,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107803','GRS_1980_Adj_WI_BR','GRS 1980 Adj. Wisconsin Brown','PROJ','EARTH',6378137.0,'EPSG','9001',298.257222100225,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107804','GRS_1980_Adj_WI_BU','GRS 1980 Adj. Wisconsin Buffalo','PROJ','EARTH',6378380.991,'EPSG','9001',298.268631713702,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107805','GRS_1980_Adj_WI_BN','GRS 1980 Adj. Wisconsin Burnett','PROJ','EARTH',6378414.96,'EPSG','9001',298.270220186885,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107806','GRS_1980_Adj_WI_CP','GRS 1980 Adj. Wisconsin Chippewa','PROJ','EARTH',6378412.542,'EPSG','9001',298.270107115315,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107807','GRS_1980_Adj_WI_CK','GRS 1980 Adj. Wisconsin Clark','PROJ','EARTH',6378470.401,'EPSG','9001',298.272812743089,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107808','GRS_1980_Adj_WI_CO','GRS 1980 Adj. Wisconsin Columbia','PROJ','EARTH',6378376.331,'EPSG','9001',298.268413800752,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107809','GRS_1980_Adj_WI_CR','GRS 1980 Adj. Wisconsin Crawford','PROJ','EARTH',6378379.031,'EPSG','9001',298.268540059328,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107810','GRS_1980_Adj_WI_DN','GRS 1980 Adj. Wisconsin Dane','PROJ','EARTH',6378407.621,'EPSG','9001',298.269876997368,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107811','GRS_1980_Adj_WI_DR','GRS 1980 Adj. Wisconsin Door','PROJ','EARTH',6378313.92,'EPSG','9001',298.26549531037,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107812','GRS_1980_Adj_WI_DG','GRS 1980 Adj. Wisconsin Douglas','PROJ','EARTH',6378414.93,'EPSG','9001',298.270218784012,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107813','GRS_1980_Adj_WI_DU','GRS 1980 Adj. Wisconsin Dunn','PROJ','EARTH',6378413.021,'EPSG','9001',298.270129514522,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107814','GRS_1980_Adj_WI_EC','GRS 1980 Adj. Wisconsin EauClaire','PROJ','EARTH',6378380.381,'EPSG','9001',298.268603188617,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107815','GRS_1980_Adj_WI_FN','GRS 1980 Adj. Wisconsin Florence','PROJ','EARTH',6378530.851,'EPSG','9001',298.275639532334,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107816','GRS_1980_Adj_WI_FR','GRS 1980 Adj. Wisconsin Forest','PROJ','EARTH',6378591.521,'EPSG','9001',298.278476609315,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107817','GRS_1980_Adj_WI_GT','GRS 1980 Adj. Wisconsin Grant','PROJ','EARTH',6378378.881,'EPSG','9001',298.268533044963,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107818','GRS_1980_Adj_WI_IA','GRS 1980 Adj. Wisconsin Iowa','PROJ','EARTH',6378408.041,'EPSG','9001',298.269896637591,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107819','GRS_1980_Adj_WI_IR','GRS 1980 Adj. Wisconsin Iron','PROJ','EARTH',6378655.071,'EPSG','9001',298.281448362111,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107820','GRS_1980_Adj_WI_JA','GRS 1980 Adj. Wisconsin Jackson','PROJ','EARTH',6378409.151,'EPSG','9001',298.269948543895,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107821','GRS_1980_Adj_WI_LC','GRS 1980 Adj. Wisconsin LaCrosse','PROJ','EARTH',6378379.301,'EPSG','9001',298.268552685186,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107822','GRS_1980_Adj_WI_LG','GRS 1980 Adj. Wisconsin Langlade','PROJ','EARTH',6378560.121,'EPSG','9001',298.277008268831,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107823','GRS_1980_Adj_WI_LN','GRS 1980 Adj. Wisconsin Lincoln','PROJ','EARTH',6378531.821,'EPSG','9001',298.275684891897,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107824','GRS_1980_Adj_WI_MA','GRS 1980 Adj. Wisconsin Marathon','PROJ','EARTH',6378500.6,'EPSG','9001',298.274224921888,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107825','GRS_1980_Adj_WI_MN','GRS 1980 Adj. Wisconsin Marinette','PROJ','EARTH',6378376.041,'EPSG','9001',298.268400239645,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107826','GRS_1980_Adj_WI_ME','GRS 1980 Adj. Wisconsin Menominee','PROJ','EARTH',6378406.601,'EPSG','9001',298.269829299684,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107827','GRS_1980_Adj_WI_MR','GRS 1980 Adj. Wisconsin Monroe','PROJ','EARTH',6378438.991,'EPSG','9001',298.27134393498,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107828','GRS_1980_Adj_WI_OC','GRS 1980 Adj. Wisconsin Oconto','PROJ','EARTH',6378345.42,'EPSG','9001',298.266968327098,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107829','GRS_1980_Adj_WI_ON','GRS 1980 Adj. Wisconsin Oneida','PROJ','EARTH',6378593.86,'EPSG','9001',298.278585986653,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107830','GRS_1980_Adj_WI_PK','GRS 1980 Adj. Wisconsin Polk','PROJ','EARTH',6378413.671,'EPSG','9001',298.270159910105,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107831','GRS_1980_Adj_WI_PT','GRS 1980 Adj. Wisconsin Portage','PROJ','EARTH',6378344.377,'EPSG','9001',298.266919538913,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107832','GRS_1980_Adj_WI_PR','GRS 1980 Adj. Wisconsin Price','PROJ','EARTH',6378563.891,'EPSG','9001',298.277184563214,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107833','GRS_1980_Adj_WI_RC','GRS 1980 Adj. Wisconsin Richland','PROJ','EARTH',6378408.091,'EPSG','9001',298.269898975713,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107834','GRS_1980_Adj_WI_RK','GRS 1980 Adj. Wisconsin Rock','PROJ','EARTH',6378377.671,'EPSG','9001',298.268476462415,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107835','GRS_1980_Adj_WI_RS','GRS 1980 Adj. Wisconsin Rusk','PROJ','EARTH',6378472.751,'EPSG','9001',298.272922634813,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107836','GRS_1980_Adj_WI_SC','GRS 1980 Adj. Wisconsin StCroix','PROJ','EARTH',6378412.511,'EPSG','9001',298.270105665679,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107837','GRS_1980_Adj_WI_SK','GRS 1980 Adj. Wisconsin Sauk','PROJ','EARTH',6378407.281,'EPSG','9001',298.26986109814,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107838','GRS_1980_Adj_WI_SW','GRS 1980 Adj. Wisconsin Sawyer','PROJ','EARTH',6378534.451,'EPSG','9001',298.275807877103,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107839','GRS_1980_Adj_WI_SH','GRS 1980 Adj. Wisconsin Shawano','PROJ','EARTH',6378406.051,'EPSG','9001',298.269803580344,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107840','GRS_1980_Adj_WI_TA','GRS 1980 Adj. Wisconsin Taylor','PROJ','EARTH',6378532.921,'EPSG','9001',298.275736330576,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107841','GRS_1980_Adj_WI_TR','GRS 1980 Adj. Wisconsin Trempealeau','PROJ','EARTH',6378380.091,'EPSG','9001',298.26858962751,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107842','GRS_1980_Adj_WI_VR','GRS 1980 Adj. Wisconsin Vernon','PROJ','EARTH',6378408.941,'EPSG','9001',298.269938723784,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107843','GRS_1980_Adj_WI_VI','GRS 1980 Adj. Wisconsin Vilas','PROJ','EARTH',6378624.171,'EPSG','9001',298.280003402845,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107844','GRS_1980_Adj_WI_WW','GRS 1980 Adj. Wisconsin Walworth','PROJ','EARTH',6378377.411,'EPSG','9001',298.268464304182,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107845','GRS_1980_Adj_WI_WB','GRS 1980 Adj. Wisconsin Washburn','PROJ','EARTH',6378474.591,'EPSG','9001',298.273008677695,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107846','GRS_1980_Adj_WI_WA','GRS 1980 Adj. Wisconsin Washington','PROJ','EARTH',6378407.141,'EPSG','9001',298.269854551399,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107847','GRS_1980_Adj_WI_WK','GRS 1980 Adj. Wisconsin Waukesha','PROJ','EARTH',6378376.871,'EPSG','9001',298.268439052467,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107848','GRS_1980_Adj_WI_WP','GRS 1980 Adj. Wisconsin Waupaca','PROJ','EARTH',6378375.251,'EPSG','9001',298.268363297321,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107849','GRS_1980_Adj_WI_WS','GRS 1980 Adj. Wisconsin Waushara','PROJ','EARTH',6378405.971,'EPSG','9001',298.269799839349,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107850','GRS_1980_Adj_WI_WD','GRS 1980 Adj. Wisconsin Wood','PROJ','EARTH',6378437.651,'EPSG','9001',298.271281273316,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107851','GRS_1980_Adj_WI_AD_JN','GRS 1980 Adj. Wisconsin Adams and Juneau','PROJ','EARTH',6378376.271,'EPSG','9001',298.268410995005,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107852','GRS_1980_Adj_WI_GR_LF','GRS 1980 Adj. Wisconsin Green and Lafayette','PROJ','EARTH',6378408.481,'EPSG','9001',298.269917213063,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107853','GRS_1980_Adj_WI_GL_MQ','GRS 1980 Adj. Wisconsin Green Lake and Marquette','PROJ','EARTH',6378375.601,'EPSG','9001',298.268379664173,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107854','GRS_1980_Adj_WI_DD_JF','GRS 1980 Adj. Wisconsin Dodge and Jefferson','PROJ','EARTH',6378376.811,'EPSG','9001',298.268436246721,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107855','GRS_1980_Adj_WI_PP_PC','GRS 1980 Adj. Wisconsin Pepin and Pierce','PROJ','EARTH',6378381.271,'EPSG','9001',298.268644807185,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107856','GRS_1980_Adj_WI_CL_FL_OG_WN','GRS 1980 Adj. Wisconsin Calumet, Fond du Lac, Outagamie, and Winnebago','PROJ','EARTH',6378345.09,'EPSG','9001',298.266952895494,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107857','GRS_1980_Adj_WI_KN_MW_OZ_RA','GRS 1980 Adj. Wisconsin Kenosha, Milwaukee, Ozaukee, and Racine','PROJ','EARTH',6378315.7,'EPSG','9001',298.265578547505,NULL,1); INSERT INTO ellipsoid VALUES('ESRI','107858','GRS_1980_Adj_WI_KW_MT_SG','GRS 1980 Adj. Wisconsin Kewaunee, Manitowoc, and Sheboygan','PROJ','EARTH',6378285.86,'EPSG','9001',298.264183156421,NULL,1); INSERT INTO celestial_body VALUES('ESRI', 'Mercury', 'Mercury', 2439700.0); INSERT INTO ellipsoid VALUES('ESRI','107900','Mercury_2000_IAU_IAG','Mercury','ESRI','Mercury',2439700.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Venus', 'Venus', 6051000.0); INSERT INTO ellipsoid VALUES('ESRI','107901','Venus_1985_IAU_IAG_COSPAR','Venus 1985','ESRI','Venus',6051000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107902','Venus_2000_IAU_IAG','Venus 2000','ESRI','Venus',6051800.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Moon', 'Moon', 1737400.0); INSERT INTO ellipsoid VALUES('ESRI','107903','Moon_2000_IAU_IAG','The Moon','ESRI','Moon',1737400.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Mars', 'Mars', 3393400.0); INSERT INTO ellipsoid VALUES('ESRI','107904','Mars_1979_IAU_IAG','Mars 1979','ESRI','Mars',3393400.0,'EPSG','9001',192.0430107526882,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107905','Mars_2000_IAU_IAG','Mars 2000','ESRI','Mars',3396190.0,'EPSG','9001',169.8944472236118,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Deimos', 'Deimos', 6200.0); INSERT INTO ellipsoid VALUES('ESRI','107906','Deimos_2000_IAU_IAG','Mars - Deimos','ESRI','Deimos',6200.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Phobos', 'Phobos', 11100.0); INSERT INTO ellipsoid VALUES('ESRI','107907','Phobos_2000_IAU_IAG','Mars - Phobos','ESRI','Phobos',11100.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Jupiter', 'Jupiter', 71492000.0); INSERT INTO ellipsoid VALUES('ESRI','107908','Jupiter_2000_IAU_IAG','Jupiter','ESRI','Jupiter',71492000.0,'EPSG','9001',15.41440275981026,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Adrastea', 'Adrastea', 8200.0); INSERT INTO ellipsoid VALUES('ESRI','107909','Adrastea_2000_IAU_IAG','Jupiter - Adrastea','ESRI','Adrastea',8200.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Amalthea', 'Amalthea', 83500.0); INSERT INTO ellipsoid VALUES('ESRI','107910','Amalthea_2000_IAU_IAG','Jupiter - Amalthea','ESRI','Amalthea',83500.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Ananke', 'Ananke', 10000.0); INSERT INTO ellipsoid VALUES('ESRI','107911','Ananke_2000_IAU_IAG','Jupiter - Ananke','ESRI','Ananke',10000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Callisto', 'Callisto', 2409300.0); INSERT INTO ellipsoid VALUES('ESRI','107912','Callisto_2000_IAU_IAG','Jupiter - Callisto','ESRI','Callisto',2409300.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Carme', 'Carme', 15000.0); INSERT INTO ellipsoid VALUES('ESRI','107913','Carme_2000_IAU_IAG','Jupiter - Carme','ESRI','Carme',15000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Elara', 'Elara', 40000.0); INSERT INTO ellipsoid VALUES('ESRI','107914','Elara_2000_IAU_IAG','Jupiter - Elara','ESRI','Elara',40000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Europa', 'Europa', 1562090.0); INSERT INTO ellipsoid VALUES('ESRI','107915','Europa_2000_IAU_IAG','Jupiter - Europa','ESRI','Europa',1562090.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Ganymede', 'Ganymede', 2632345.0); INSERT INTO ellipsoid VALUES('ESRI','107916','Ganymede_2000_IAU_IAG','Jupiter - Ganymede','ESRI','Ganymede',2632345.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Himalia', 'Himalia', 85000.0); INSERT INTO ellipsoid VALUES('ESRI','107917','Himalia_2000_IAU_IAG','Jupiter - Himalia','ESRI','Himalia',85000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Io', 'Io', 1821460.0); INSERT INTO ellipsoid VALUES('ESRI','107918','Io_2000_IAU_IAG','Jupiter - Io','ESRI','Io',1821460.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Leda', 'Leda', 5000.0); INSERT INTO ellipsoid VALUES('ESRI','107919','Leda_2000_IAU_IAG','Jupiter - Leda','ESRI','Leda',5000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Lysithea', 'Lysithea', 12000.0); INSERT INTO ellipsoid VALUES('ESRI','107920','Lysithea_2000_IAU_IAG','Jupiter - Lysithea','ESRI','Lysithea',12000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Metis', 'Metis', 30000.0); INSERT INTO ellipsoid VALUES('ESRI','107921','Metis_2000_IAU_IAG','Jupiter - Metis','ESRI','Metis',30000.0,'EPSG','9001',3.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Pasiphae', 'Pasiphae', 18000.0); INSERT INTO ellipsoid VALUES('ESRI','107922','Pasiphae_2000_IAU_IAG','Jupiter - Pasiphae','ESRI','Pasiphae',18000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Sinope', 'Sinope', 14000.0); INSERT INTO ellipsoid VALUES('ESRI','107923','Sinope_2000_IAU_IAG','Jupiter - Sinope','ESRI','Sinope',14000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Thebe', 'Thebe', 49300.0); INSERT INTO ellipsoid VALUES('ESRI','107924','Thebe_2000_IAU_IAG','Jupiter - Thebe','ESRI','Thebe',49300.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Saturn', 'Saturn', 60268000.0); INSERT INTO ellipsoid VALUES('ESRI','107925','Saturn_2000_IAU_IAG','Saturn','ESRI','Saturn',60268000.0,'EPSG','9001',10.2079945799458,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Atlas', 'Atlas', 16000.0); INSERT INTO ellipsoid VALUES('ESRI','107926','Atlas_2000_IAU_IAG','Saturn - Atlas','ESRI','Atlas',16000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Calypso', 'Calypso', 9500.0); INSERT INTO ellipsoid VALUES('ESRI','107927','Calypso_2000_IAU_IAG','Saturn - Calypso','ESRI','Calypso',9500.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Dione', 'Dione', 560000.0); INSERT INTO ellipsoid VALUES('ESRI','107928','Dione_2000_IAU_IAG','Saturn - Dione','ESRI','Dione',560000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Enceladus', 'Enceladus', 249400.0); INSERT INTO ellipsoid VALUES('ESRI','107929','Enceladus_2000_IAU_IAG','Saturn - Enceladus','ESRI','Enceladus',249400.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Epimetheus', 'Epimetheus', 59500.0); INSERT INTO ellipsoid VALUES('ESRI','107930','Epimetheus_2000_IAU_IAG','Saturn - Epimetheus','ESRI','Epimetheus',59500.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Helene', 'Helene', 16000.0); INSERT INTO ellipsoid VALUES('ESRI','107931','Helene_2000_IAU_IAG','Saturn - Helene','ESRI','Helene',16000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Hyperion', 'Hyperion', 133000.0); INSERT INTO ellipsoid VALUES('ESRI','107932','Hyperion_2000_IAU_IAG','Saturn - Hyperion','ESRI','Hyperion',133000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Iapetus', 'Iapetus', 718000.0); INSERT INTO ellipsoid VALUES('ESRI','107933','Iapetus_2000_IAU_IAG','Saturn - Iapetus','ESRI','Iapetus',718000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Janus', 'Janus', 88800.0); INSERT INTO ellipsoid VALUES('ESRI','107934','Janus_2000_IAU_IAG','Saturn - Janus','ESRI','Janus',88800.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Mimas', 'Mimas', 198630.0); INSERT INTO ellipsoid VALUES('ESRI','107935','Mimas_2000_IAU_IAG','Saturn - Mimas','ESRI','Mimas',198630.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Pan', 'Pan', 10000.0); INSERT INTO ellipsoid VALUES('ESRI','107936','Pan_2000_IAU_IAG','Saturn - Pan','ESRI','Pan',10000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Pandora', 'Pandora', 41900.0); INSERT INTO ellipsoid VALUES('ESRI','107937','Pandora_2000_IAU_IAG','Saturn - Pandora','ESRI','Pandora',41900.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Phoebe', 'Phoebe', 110000.0); INSERT INTO ellipsoid VALUES('ESRI','107938','Phoebe_2000_IAU_IAG','Saturn - Phoebe','ESRI','Phoebe',110000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Prometheus', 'Prometheus', 50100.0); INSERT INTO ellipsoid VALUES('ESRI','107939','Prometheus_2000_IAU_IAG','Saturn - Prometheus','ESRI','Prometheus',50100.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Rhea', 'Rhea', 764000.0); INSERT INTO ellipsoid VALUES('ESRI','107940','Rhea_2000_IAU_IAG','Saturn - Rhea','ESRI','Rhea',764000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Telesto', 'Telesto', 11000.0); INSERT INTO ellipsoid VALUES('ESRI','107941','Telesto_2000_IAU_IAG','Saturn - Telesto','ESRI','Telesto',11000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Tethys', 'Tethys', 529800.0); INSERT INTO ellipsoid VALUES('ESRI','107942','Tethys_2000_IAU_IAG','Saturn - Tethys','ESRI','Tethys',529800.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Titan', 'Titan', 2575000.0); INSERT INTO ellipsoid VALUES('ESRI','107943','Titan_2000_IAU_IAG','Saturn - Titan','ESRI','Titan',2575000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Uranus', 'Uranus', 25559000.0); INSERT INTO ellipsoid VALUES('ESRI','107944','Uranus_2000_IAU_IAG','Uranus','ESRI','Uranus',25559000.0,'EPSG','9001',43.61604095563141,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Ariel', 'Ariel', 578900.0); INSERT INTO ellipsoid VALUES('ESRI','107945','Ariel_2000_IAU_IAG','Uranus - Ariel','ESRI','Ariel',578900.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Belinda', 'Belinda', 33000.0); INSERT INTO ellipsoid VALUES('ESRI','107946','Belinda_2000_IAU_IAG','Uranus - Belinda','ESRI','Belinda',33000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Bianca', 'Bianca', 21000.0); INSERT INTO ellipsoid VALUES('ESRI','107947','Bianca_2000_IAU_IAG','Uranus - Bianca','ESRI','Bianca',21000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Cordelia', 'Cordelia', 13000.0); INSERT INTO ellipsoid VALUES('ESRI','107948','Cordelia_2000_IAU_IAG','Uranus - Cordelia','ESRI','Cordelia',13000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Cressida', 'Cressida', 31000.0); INSERT INTO ellipsoid VALUES('ESRI','107949','Cressida_2000_IAU_IAG','Uranus - Cressida','ESRI','Cressida',31000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Desdemona', 'Desdemona', 27000.0); INSERT INTO ellipsoid VALUES('ESRI','107950','Desdemona_2000_IAU_IAG','Uranus - Desdemona','ESRI','Desdemona',27000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Juliet', 'Juliet', 42000.0); INSERT INTO ellipsoid VALUES('ESRI','107951','Juliet_2000_IAU_IAG','Uranus - Juliet','ESRI','Juliet',42000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Miranda', 'Miranda', 235800.0); INSERT INTO ellipsoid VALUES('ESRI','107952','Miranda_2000_IAU_IAG','Uranus - Miranda','ESRI','Miranda',235800.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Oberon', 'Oberon', 761400.0); INSERT INTO ellipsoid VALUES('ESRI','107953','Oberon_2000_IAU_IAG','Uranus - Oberon','ESRI','Oberon',761400.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Ophelia', 'Ophelia', 15000.0); INSERT INTO ellipsoid VALUES('ESRI','107954','Ophelia_2000_IAU_IAG','Uranus - Ophelia','ESRI','Ophelia',15000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Portia', 'Portia', 54000.0); INSERT INTO ellipsoid VALUES('ESRI','107955','Portia_2000_IAU_IAG','Uranus - Portia','ESRI','Portia',54000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Puck', 'Puck', 77000.0); INSERT INTO ellipsoid VALUES('ESRI','107956','Puck_2000_IAU_IAG','Uranus - Puck','ESRI','Puck',77000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Rosalind', 'Rosalind', 27000.0); INSERT INTO ellipsoid VALUES('ESRI','107957','Rosalind_2000_IAU_IAG','Uranus - Rosalind','ESRI','Rosalind',27000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Titania', 'Titania', 788900.0); INSERT INTO ellipsoid VALUES('ESRI','107958','Titania_2000_IAU_IAG','Uranus - Titania','ESRI','Titania',788900.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Umbriel', 'Umbriel', 584700.0); INSERT INTO ellipsoid VALUES('ESRI','107959','Umbriel_2000_IAU_IAG','Uranus - Umbriel','ESRI','Umbriel',584700.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Neptune', 'Neptune', 24764000.0); INSERT INTO ellipsoid VALUES('ESRI','107960','Neptune_2000_IAU_IAG','Neptune','ESRI','Neptune',24764000.0,'EPSG','9001',58.54373522458629,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Despina', 'Despina', 74000.0); INSERT INTO ellipsoid VALUES('ESRI','107961','Despina_2000_IAU_IAG','Neptune - Despina','ESRI','Despina',74000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Galatea', 'Galatea', 79000.0); INSERT INTO ellipsoid VALUES('ESRI','107962','Galatea_2000_IAU_IAG','Neptune - Galatea','ESRI','Galatea',79000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Larissa', 'Larissa', 104000.0); INSERT INTO ellipsoid VALUES('ESRI','107963','Larissa_2000_IAU_IAG','Neptune - Larissa','ESRI','Larissa',104000.0,'EPSG','9001',6.933333333333334,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Naiad', 'Naiad', 29000.0); INSERT INTO ellipsoid VALUES('ESRI','107964','Naiad_2000_IAU_IAG','Neptune - Naiad','ESRI','Naiad',29000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Nereid', 'Nereid', 170000.0); INSERT INTO ellipsoid VALUES('ESRI','107965','Nereid_2000_IAU_IAG','Neptune - Nereid','ESRI','Nereid',170000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Proteus', 'Proteus', 208000.0); INSERT INTO ellipsoid VALUES('ESRI','107966','Proteus_2000_IAU_IAG','Neptune - Proteus','ESRI','Proteus',208000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Thalassa', 'Thalassa', 40000.0); INSERT INTO ellipsoid VALUES('ESRI','107967','Thalassa_2000_IAU_IAG','Neptune - Thalassa','ESRI','Thalassa',40000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Triton', 'Triton', 1352600.0); INSERT INTO ellipsoid VALUES('ESRI','107968','Triton_2000_IAU_IAG','Neptune - Triton','ESRI','Triton',1352600.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Pluto', 'Pluto', 1195000.0); INSERT INTO ellipsoid VALUES('ESRI','107969','Pluto_2000_IAU_IAG','Pluto','ESRI','Pluto',1195000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Charon', 'Charon', 593000.0); INSERT INTO ellipsoid VALUES('ESRI','107970','Charon_2000_IAU_IAG','Pluto - Charon','ESRI','Charon',593000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107971','Mars_2000_(Sphere)','Mars 2000 (Sphere)','ESRI','Mars',3396190.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', '1_Ceres', '1_Ceres', 470000.0); INSERT INTO ellipsoid VALUES('ESRI','107972','1_Ceres_2015','1 Ceres 2015','ESRI','1_Ceres',470000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', '4_Vesta', '4_Vesta', 255000.0); INSERT INTO ellipsoid VALUES('ESRI','107973','4_Vesta_2015','4 Vesta 2015','ESRI','4_Vesta',255000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO ellipsoid VALUES('ESRI','107974','Mercury_2015','Mercury 2015','ESRI','Mercury',2439400.0,'EPSG','9001',0.0,NULL,0); INSERT INTO celestial_body VALUES('ESRI', 'Sun', 'Sun', 695700000.0); INSERT INTO ellipsoid VALUES('ESRI','107975','Sun_2015','Sun IAU 2015','ESRI','Sun',695700000.0,'EPSG','9001',0.0,NULL,0); INSERT INTO alias_name VALUES('prime_meridian','EPSG','8914','Paris_RGS','ESRI'); INSERT INTO "prime_meridian" VALUES('ESRI','108900','Reference_Meridian',0.0,'EPSG','9110',0); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1024','D_Hungarian_Datum_1909','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1025','D_TWD_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1026','D_TWD_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1029','D_Iraqi_Geospatial_Reference_System','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1031','D_MGI_1901','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1032','D_MOLDREF99','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1033','D_Reseau_Geodesique_de_la_RDC_2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1034','D_Serbian_Reference_Network_1998','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1035','D_Red_Geodesica_de_Canarias_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1036','D_Reseau_Geodesique_de_Mayotte_2004','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1037','D_Cadastre_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1038','D_Reseau_Geodesique_de_St_Pierre_et_Miquelon_2006','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1041','D_PTRA08','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1042','D_Mexican_Datum_of_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1043','D_China_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1044','D_Sao_Tome','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1045','D_New_Beijing','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1046','D_Principe','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1047','D_RRAF_1991','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1052','D_S_JTSK_05','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1053','D_Sri_Lanka_Datum_1999','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1055','D_S_JTSK_05_Ferro','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1056','D_GDBD2009','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1057','D_Turkish_National_Reference_Frame','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1058','D_Bhutan_National_Geodetic_Datum','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1060','D_Islands_Network_2004','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1061','D_ITRF_2008','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1062','D_POSGAR_2007','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1063','D_Marco_Geodesico_Nacional','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1064','D_SIRGAS-Chile','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1065','D_Costa_Rica_2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1066','D_SGNP_MARCARIO_SOLIS','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1067','D_Peru96','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1068','D_SIRGAS-ROU98','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1069','D_SIRGAS_ES2007.8','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1070','D_Ocotepeque_1935','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1071','D_Sibun_Gorge_1922','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1072','D_Panama-Colon-1911','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1073','Reseau_Geodesique_des_Antilles_Francaises_2009','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1074','D_Corrego_Alegre_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1075','D_South_American_Datum_1969_96','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1076','D_Papua_New_Guinea_Geodetic_Datum_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1077','D_Ukraine_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1078','D_Fehmarnbelt_Datum_2010','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1081','D_Deutsche_Bahn_Reference_System','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1095','D_Tonga_Geodetic_Datum_2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1100','D_Cayman_Islands_Geodetic_Datum_2011','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1111','D_Nepal_Nagarkot','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1112','D_Cyprus_Geodetic_Reference_System_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1113','D_Reseau_Geodesique_des_Terres_Australes_et_Antarctiques_Francaises_2007','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1114','Israel_Geodetic_Datum_2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1115','Israeli_Geodetic_Datum_2005(2012)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1116','D_NAD_1983_2011','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1117','D_NAD_1983_PA11','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1118','D_NAD_1983_MA11','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1120','D_Mexico_ITRF2008','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1128','D_JGD_2011','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1132','D_Rete_Dinamica_Nazionale_2008','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1133','D_NAD_1983_CORS96','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1135','D_Aden_1925','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1136','D_Bioko','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1137','D_Bekaa_Valley_1920','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1138','D_South_East_Island_1943','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1139','D_Gambia','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1142','IG05_Intermediate_Datum','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1143','Israel_Geodetic_Datum_2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1144','IG05(2012)_Intermediate_Datum','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1145','Israeli_Geodetic_Datum_2005(2012)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1147','Oman_National_Geodetic_Datum_2014','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1152','World_Geodetic_System_1984_(G730)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1153','World_Geodetic_System_1984_(G873)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1154','World_Geodetic_System_1984_(G1150)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1155','World_Geodetic_System_1984_(G1674)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1156','World_Geodetic_System_1984_(G1762)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1157','Parametry_Zemli_1990.02','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1158','Parametry_Zemli_1990.11','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1159','Geodezicheskaya_Sistema_Koordinat_2011','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1165','International_Terrestrial_Reference_Frame_2014','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1166','World_Geodetic_System_1984_(Transit)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1167','Bulgaria_Geodetic_System_2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1168','GDA2020','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1173','St_Helena_Tritan','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1174','St_Helena_Geodetic_Datum_2015','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1178','D_ETRF_1989','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1179','European_Terrestrial_Reference_Frame_1990','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1180','European_Terrestrial_Reference_Frame_1991','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1181','European_Terrestrial_Reference_Frame_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1182','European_Terrestrial_Reference_Frame_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1183','European_Terrestrial_Reference_Frame_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1184','European_Terrestrial_Reference_Frame_1996','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1185','European_Terrestrial_Reference_Frame_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1186','European_Terrestrial_Reference_Frame_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1187','Islands_Net_2016','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1188','Gusterberg_(Ferro)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1189','St._Stephen_(Ferro)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1192','North_American_Datum_of_1983_(CSRS96)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1193','North_American_Datum_of_1983_(CSRS)_version_2','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1194','North_American_Datum_of_1983_(CSRS)_version_3','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1195','North_American_Datum_of_1983_(CSRS)_version_4','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1196','North_American_Datum_of_1983_(CSRS)_version_5','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1197','North_American_Datum_of_1983_(CSRS)_version_6','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1198','North_American_Datum_of_1983_(CSRS)_version_7','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1201','S-JTSK_[JTSK03]','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1204','European_Terrestrial_Reference_Frame_2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1206','European_Terrestrial_Reference_Frame_2014','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1207','Macao_1920','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1209','Hong_Kong_Geodetic','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1211','NAD_1983_(Federal_Base_Network)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1212','NAD_1983_(High_Accuracy_Reference_Network-Corrected)','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1214','Serbian_Spatial_Reference_System_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1217','Camacupa_2015','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1218','MOMRA_Terrestrial_Reference_Frame_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1220','Reference_System_de_Angola_2013','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1221','D_NAD_1983_MARP00','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1223','Reseau_Geodesique_de_Wallis_et_Futuna_1996','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1227','SIRGAS_Continuously_Operating_Network_DGF00P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1228','SIRGAS_Continuously_Operating_Network_DGF01P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1229','SIRGAS_Continuously_Operating_Network_DGF01P02','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1230','SIRGAS_Continuously_Operating_Network_DGF02P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1231','SIRGAS_Continuously_Operating_Network_DGF04P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1232','SIRGAS_Continuously_Operating_Network_DGF05P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1233','SIRGAS_Continuously_Operating_Network_DGF06P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1234','SIRGAS_Continuously_Operating_Network_DGF07P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1235','SIRGAS_Continuously_Operating_Network_DGF08P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1236','SIRGAS_Continuously_Operating_Network_SIR09P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1237','SIRGAS_Continuously_Operating_Network_SIR10P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1238','SIRGAS_Continuously_Operating_Network_SIR11P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1239','SIRGAS_Continuously_Operating_Network_SIR13P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1240','SIRGAS_Continuously_Operating_Network_SIR14P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1241','SIRGAS_Continuously_Operating_Network_SIR15P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1242','SIRGAS_Continuously_Operating_Network_SIR17P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1243','SIRGAS-Chile_realization_2_epoch_2010','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1249','D_NAD_1983_PACP00','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1251','Kosovo_Reference_System_2001','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1252','SIRGAS-Chile_realization_3_epoch_2013','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','1253','SIRGAS-Chile_realization_4_epoch_2016','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6001','D_Airy_1830','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6002','D_Airy_Modified','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6003','D_Australian','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6004','D_Bessel_1841','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6005','D_Bessel_Modified','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6006','D_Bessel_Namibia','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6007','D_Clarke_1858','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6008','D_Clarke_1866','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6009','D_Clarke_1866_Michigan','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6010','D_Clarke_1880_Benoit','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6011','D_Clarke_1880_IGN','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6012','D_Clarke_1880_RGS','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6013','D_Clarke_1880_Arc','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6014','D_Clarke_1880_SGA','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6015','D_Everest_Adj_1937','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6016','D_Everest_Def_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6018','D_Everest_Modified','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6019','D_GRS_1980','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6020','D_Helmert_1906','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6021','D_Indonesian','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6022','D_International_1924','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6024','D_Krasovsky_1940','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6025','D_NWL_9D','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6027','D_Plessis_1817','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6028','D_Struve_1860','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6029','D_War_Office','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6031','D_GEM_10C','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6032','D_OSU_86F','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6033','D_OSU_91A','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6034','D_Clarke_1880','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6035','D_Sphere','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6036','D_GRS_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6042','D_Everest_1830','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6044','D_Everest_Def_1962','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6045','D_Everest_Def_1975','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6047','D_Sphere_GRS_1980_Authalic','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6052','D_Sphere_Clarke_1866_Authalic','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6053','D_Sphere_International_1924_Authalic','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6054','D_Hughes_1980','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6055','D_WGS_1984_Major_Auxiliary_Sphere','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6120','D_Greek','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6121','D_GGRS_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6122','D_ATS_1977','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6123','D_KKJ','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6124','D_RT_1990','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6125','D_Samboja','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6126','D_Lithuania_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6127','D_Tete','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6128','D_Madzansua','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6129','D_Observatario','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6130','D_Moznet','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6131','D_Indian_1960','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6132','D_FD_1958','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6133','D_Estonia_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6134','D_PDO_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6135','D_Old_Hawaiian','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6136','D_St_Lawrence_Island','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6137','D_St_Paul_Island','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6138','D_St_George_Island','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6139','D_Puerto_Rico','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6140','D_North_American_1983_CSRS','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6141','D_Israel','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6142','D_Locodjo_1965','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6143','D_Abidjan_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6144','D_Kalianpur_1937','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6145','D_Kalianpur_1962','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6146','D_Kalianpur_1975','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6147','D_Hanoi_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6148','D_Hartebeesthoek_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6149','D_CH1903','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6150','D_CH1903+','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6151','D_Swiss_TRF_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6152','D_North_American_1983_HARN','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6153','D_Rassadiran','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6154','D_European_1950_ED77','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6155','D_Dabola_1981','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6156','D_S_JTSK','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6157','D_Mount_Dillon','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6158','D_Naparima_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6159','D_European_Libyan_1979','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6160','D_Chos_Malal_1914','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6161','D_Pampa_del_Castillo','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6162','D_Korean_Datum_1985','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6163','D_Yemen_NGN_1996','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6164','D_South_Yemen','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6165','D_Bissau','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6166','D_Korean_Datum_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6167','D_NZGD_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6168','D_Accra','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6169','D_American_Samoa_1962','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6170','D_SIRGAS','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6171','D_RGF_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6172','D_POSGAR','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6173','D_IRENET95','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6174','D_Sierra_Leone_1924','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6175','D_Sierra_Leone_1968','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6176','D_Australian_Antarctic_1998','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6178','D_Pulkovo_1942_Adj_1983','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6179','D_Pulkovo_1942_Adj_1958','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6180','D_Estonia_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6181','D_Luxembourg_1930','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6182','D_Azores_Occidental_Islands_1939','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6183','D_Azores_Central_Islands_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6184','D_Azores_Oriental_Islands_1940','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6185','D_Madeira_1936','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6188','D_OSNI_1952','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6189','D_REGVEN','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6190','D_POSGAR_1998','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6191','D_Albanian_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6192','D_Douala_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6193','D_Manoca_1962','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6194','D_Qornoq_1927','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6195','D_Scoresbysund_1952','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6196','D_Ammassalik_1958','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6197','D_Garoua','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6198','D_Kousseri','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6199','D_Egypt_1930','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6200','D_Pulkovo_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6201','D_Adindan','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6202','D_Australian_1966','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6203','D_Australian_1984','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6204','D_Ain_el_Abd_1970','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6205','D_Afgooye','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6206','D_Agadez','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6207','D_Lisbon','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6208','D_Aratu','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6209','D_Arc_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6210','D_Arc_1960','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6211','D_Batavia','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6212','D_Barbados_1938','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6213','D_Beduaram','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6214','D_Beijing_1954','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6215','D_Belge_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6216','D_Bermuda_1957','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6218','D_Bogota','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6219','D_Bukit_Rimpah','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6220','D_Camacupa','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6221','D_Campo_Inchauspe','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6222','D_Cape','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6223','D_Carthage','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6224','D_Chua','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6225','D_Corrego_Alegre','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6226','D_Cote_d_Ivoire','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6227','D_Deir_ez_Zor','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6228','D_Douala','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6229','D_Egypt_1907','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6230','D_European_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6231','D_European_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6232','D_Fahud','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6233','D_Gandajika_1970','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6234','D_Garoua','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6235','D_Guyane_Francaise','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6236','D_Hu_Tzu_Shan','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6237','D_Hungarian_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6238','D_Indonesian_1974','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6239','D_Indian_1954','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6240','D_Indian_1975','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6241','D_Jamaica_1875','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6242','D_Jamaica_1969','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6243','D_Kalianpur_1880','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6244','D_Kandawala','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6245','D_Kertau','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6246','D_Kuwait_Oil_Company','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6247','D_La_Canoa','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6248','D_Provisional_S_American_1956','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6249','D_Lake','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6250','D_Leigon','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6251','D_Liberia_1964','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6252','D_Lome','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6253','D_Luzon_1911','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6254','D_Hito_XVIII_1963','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6255','D_Herat_North','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6256','D_Mahe_1971','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6257','D_Makassar','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6258','D_ETRS_1989','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6259','D_Malongo_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6260','D_Manoca','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6261','D_Merchich','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6262','D_Massawa','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6263','D_Minna','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6264','D_Mhast','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6265','D_Monte_Mario','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6266','D_Mporaloko','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6267','D_North_American_1927','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6268','D_North_American_Michigan','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6269','D_North_American_1983','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6270','D_Nahrwan_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6271','D_Naparima_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6272','D_New_Zealand_1949','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6273','D_NGO_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6274','D_Datum_73','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6275','D_NTF','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6276','D_NSWC_9Z_2','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6277','D_OSGB_1936','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6278','D_OSGB_1970_SN','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6279','D_OS_SN_1980','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6280','D_Padang_1884','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6281','D_Palestine_1923','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6282','D_Pointe_Noire','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6283','D_GDA_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6284','D_Pulkovo_1942','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6285','D_Qatar','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6286','D_Qatar_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6287','D_Qornoq','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6288','D_Loma_Quintana','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6289','D_Amersfoort','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6291','D_South_American_1969','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6292','D_Sapper_Hill_1943','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6293','D_Schwarzeck','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6294','D_Segora','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6295','D_Serindung','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6296','D_Sudan','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6297','D_Tananarive_1925','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6298','D_Timbalai_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6299','D_TM65','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6300','D_TM75','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6301','D_Tokyo','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6302','D_Trinidad_1903','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6303','D_Trucial_Coast_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6304','D_Voirol_1875','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6306','D_Bern_1938','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6307','D_Nord_Sahara_1959','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6308','D_Stockholm_1938','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6309','D_Yacare','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6310','D_Yoff','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6311','D_Zanderij','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6312','D_MGI','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6313','D_Belge_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6314','D_Deutsches_Hauptdreiecksnetz','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6315','D_Conakry_1905','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6316','D_Dealul_Piscului_1933','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6317','D_Dealul_Piscului_1970','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6318','D_NGN','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6319','D_Kuwait_Utility','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6322','D_WGS_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6324','D_WGS_1972_BE','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6326','D_WGS_1984','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6600','D_Anguilla_1957','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6601','D_Antigua_1943','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6602','D_Dominica_1945','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6603','D_Grenada_1953','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6604','D_Montserrat_1958','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6605','D_St_Kitts_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6606','D_St_Lucia_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6607','D_St_Vincent_1945','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6608','D_NAD_1927_Definition_1976','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6609','D_NAD_1927_CGQ77','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6610','D_Xian_1980','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6611','D_Hong_Kong_1980','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6612','D_JGD_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6613','D_Gunung_Segara','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6614','D_QND_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6615','D_Porto_Santo_1936','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6616','D_Selvagem_Grande_1938','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6618','D_South_American_1969','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6619','D_SWEREF99','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6620','D_Point_58','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6621','D_Fort_Marigot','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6622','D_Sainte_Anne','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6623','D_CSG_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6624','D_RGFG_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6625','D_Fort_Desaix','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6626','D_Reunion_1947','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6627','D_RGR_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6628','D_Tahiti_1952','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6629','D_Tahaa_1954','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6630','D_IGN72_Nuku_Hiva','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6631','D_Kerguelen_Island_1949','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6632','D_Combani_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6633','D_IGN56_Lifou','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6634','D_IGN72_Grande_Terre','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6636','D_Petrels_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6637','D_Pointe_Geologie_Perroud_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6638','D_Saint_Pierre_et_Miquelon_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6639','D_MOP78','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6641','D_IGN53_Mare','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6642','D_ST84_Ile_des_Pins','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6643','D_ST71_Belep','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6644','D_NEA74_Noumea','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6645','D_RGNC_1991','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6646','D_Grand_Comoros','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6647','D_ITRF_1988','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6648','D_ITRF_1989','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6649','D_ITRF_1990','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6650','D_ITRF_1991','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6651','D_ITRF_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6652','D_ITRF_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6653','D_ITRF_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6654','D_ITRF_1996','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6655','D_ITRF_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6656','D_ITRF_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6657','D_Reykjavik_1900','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6658','D_Hjorsey_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6659','D_Islands_Network_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6660','D_Helle_1954','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6661','D_Latvia_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6663','D_Porto_Santo_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6664','D_Azores_Oriental_Islands_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6665','D_Azores_Central_Islands_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6666','D_Lisbon_1890','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6667','D_Iraq_Kuwait_Boundary_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6668','D_European_1979','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6670','D_IGM_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6671','D_Voirol_1879','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6672','D_Chatham_Island_1971','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6673','D_Chatham_Islands_1979','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6674','D_SIRGAS_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6675','D_Guam_1963','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6676','D_Vientiane_1982','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6677','D_Lao_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6678','D_Lao_National_Datum_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6679','D_Jouik_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6680','D_Nouakchott_1965','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6682','D_Gulshan_303','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6683','D_Philippine_Reference_System_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6684','D_Gan_1970','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6686','D_MAGNA','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6687','D_Reseau_Geodesique_de_la_Polynesie_Francaise','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6688','D_Fatu_Iva_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6689','D_IGN63_Hiva_Oa','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6690','D_Tahiti_1979','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6691','D_Moorea_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6692','D_Maupiti_1983','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6693','D_Nakhl-e_Ghanem','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6694','D_POSGAR_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6695','D_Katanga_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6696','D_Kasai_1953','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6697','D_IGC_1962_Arc_of_the_6th_Parallel_South','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6698','D_Kerguelen_Island_1949','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6699','D_Le_Pouce_1934','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6700','D_IGN_Astro_1960','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6701','D_Institut_Geographique_du_Congo_Belge_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6702','D_Mauritania_1999','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6703','D_Mhast_1951','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6704','D_Mhast_Onshore','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6705','D_Mhast_Offshore','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6706','D_Egypt_Gulf_of_Suez_S-650_TL','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6707','D_Tern_Island_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6708','D_Anna_1_1965','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6709','D_Beacon_E_1945','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6710','D_DOS_71_4','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6711','D_Astro_1952','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6712','D_Ascension_Island_1958','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6713','D_Ayabelle','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6714','D_Bellevue_IGN','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6715','D_Camp_Area','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6716','D_Canton_1966','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6717','D_Cape_Canaveral','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6718','D_Solomon_1968','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6719','D_Easter_Island_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6720','D_Fiji_1986','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6721','D_Fiji_1956','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6722','D_ISTS_061_1968','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6723','D_Grand_Cayman_1959','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6724','D_ISTS_073_1969','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6725','D_Johnston_Island_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6726','D_Little_Cayman_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6727','D_Midway_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6728','D_Pico_de_Las_Nieves','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6729','D_Pitcairn_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6730','D_Santo_DOS_1965','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6731','D_Viti_Levu_1916','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6732','D_Wake_Eniwetok_1960','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6733','D_Wake_Island_1952','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6734','D_Tristan_1968','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6735','D_Kusaie_1951','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6736','D_Deception_Island','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6737','D_Korea_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6738','D_Hong_Kong_1963','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6739','D_Hong_Kong_1963_67','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6740','D_Parametrop_Zemp_1990','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6741','D_Faroe_Datum_1954','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6742','D_GDM_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6743','D_Karbala_1979_Polservice','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6744','D_Nahrwan_1934','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6745','D_Rauenberg_1983','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6746','D_Potsdam_1983','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6747','D_Greenland_1996','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6748','D_Vanua_Levu_1915','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6749','D_Reseau_Geodesique_de_Nouvelle_Caledonie_1991-93','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6750','D_ST87_Ouvea','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6751','D_Kertau_RSO','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6752','D_Viti_Levu_1912','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6753','D_fk89','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6754','D_Libyan_Geodetic_Datum_2006','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6755','D_Datum_Geodesi_Nasional_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6756','D_Vietnam_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6757','D_SVY21','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6758','D_Jamaica_2001','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6759','D_NAD_1983_NSRS2007','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6760','D_WGS_1966','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6761','D_Croatian_Terrestrial_Reference_System','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6762','D_Bermuda_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6763','D_Pitcairn_2006','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6764','D_Ross_Sea_Region_Geodetic_Datum_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6765','D_Slovenia_Geodetic_Datum_1996','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6896','D_ITRF_2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6901','D_ATF','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6902','D_Nord_de_Guerre','ESRI'); INSERT INTO alias_name VALUES('geodetic_datum','EPSG','6903','D_Madrid_1870','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','3819','GCS_HD1909','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','3821','GCS_TWD_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','3824','GCS_TWD_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','3889','GCS_IGRS','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','3906','GCS_MGI_1901','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4001','GCS_Airy_1830','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4002','GCS_Airy_Modified','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4003','GCS_Australian','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4004','GCS_Bessel_1841','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4005','GCS_Bessel_Modified','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4006','GCS_Bessel_Namibia','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4007','GCS_Clarke_1858','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4008','GCS_Clarke_1866','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4009','GCS_Clarke_1866_Michigan','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4010','GCS_Clarke_1880_Benoit','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4011','GCS_Clarke_1880_IGN','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4012','GCS_Clarke_1880_RGS','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4013','GCS_Clarke_1880_Arc','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4014','GCS_Clarke_1880_SGA','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4015','GCS_Everest_Adj_1937','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4016','GCS_Everest_def_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4018','GCS_Everest_Modified','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4019','GCS_GRS_1980','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4020','GCS_Helmert_1906','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4021','GCS_Indonesian','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4022','GCS_International_1924','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4023','GCS_MOLDREF99','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4024','GCS_Krasovsky_1940','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4025','GCS_NWL_9D','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4027','GCS_Plessis_1817','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4028','GCS_Struve_1860','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4029','GCS_War_Office','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4031','GCS_GEM_10C','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4032','GCS_OSU_86F','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4033','GCS_OSU_91A','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4034','GCS_Clarke_1880','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4035','GCS_Sphere','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4036','GCS_GRS_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4042','GCS_Everest_1830','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4044','GCS_Everest_def_1962','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4045','GCS_Everest_def_1975','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4046','GCS_RGRDC_2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4047','GCS_Sphere_GRS_1980_Authalic','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4052','GCS_Sphere_Clarke_1866_Authalic','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4053','GCS_Sphere_International_1924_Authalic','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4054','GCS_Hughes_1980','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4055','GCS_WGS_1984_Major_Auxiliary_Sphere','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4075','GCS_SREF98','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4081','GCS_REGCAN95','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4120','GCS_Greek','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4121','GCS_GGRS_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4122','GCS_ATS_1977','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4123','GCS_KKJ','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4124','GCS_RT_1990','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4125','GCS_Samboja','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4126','GCS_LKS_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4127','GCS_Tete','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4128','GCS_Madzansua','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4129','GCS_Observatario','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4130','GCS_Moznet','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4131','GCS_Indian_1960','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4132','GCS_FD_1958','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4133','GCS_Estonia_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4134','GCS_PDO_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4135','GCS_Old_Hawaiian','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4136','GCS_St_Lawrence_Island','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4137','GCS_St_Paul_Island','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4138','GCS_St_George_Island','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4139','GCS_Puerto_Rico','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4140','GCS_North_American_1983_CSRS','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4141','GCS_Israel','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4142','GCS_Locodjo_1965','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4143','GCS_Abidjan_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4144','GCS_Kalianpur_1937','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4145','GCS_Kalianpur_1962','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4146','GCS_Kalianpur_1975','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4147','GCS_Hanoi_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4148','GCS_Hartebeesthoek_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4149','GCS_CH1903','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4150','GCS_CH1903+','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4151','GCS_Swiss_TRF_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4152','GCS_North_American_1983_HARN','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4153','GCS_Rassadiran','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4154','GCS_European_1950_ED77','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4155','GCS_Dabola_1981','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4156','GCS_S_JTSK','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4157','GCS_Mount_Dillon','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4158','GCS_Naparima_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4159','GCS_European_Libyan_Datum_1979','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4160','GCS_Chos_Malal_1914','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4161','GCS_Pampa_del_Castillo','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4162','GCS_Korean_Datum_1985','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4163','GCS_Yemen_NGN_1996','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4164','GCS_South_Yemen','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4165','GCS_Bissau','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4166','GCS_Korean_Datum_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4167','GCS_NZGD_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4168','GCS_Accra','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4169','GCS_American_Samoa_1962','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4170','GCS_SIRGAS','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4171','GCS_RGF_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4172','GCS_POSGAR','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4173','GCS_IRENET95','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4174','GCS_Sierra_Leone_1924','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4175','GCS_Sierra_Leone_1968','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4176','GCS_Australian_Antarctic_1998','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4178','GCS_Pulkovo_1942_Adj_1983','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4179','GCS_Pulkovo_1942_Adj_1958','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4180','GCS_Estonia_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4181','GCS_Luxembourg_1930','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4182','GCS_Azores_Occidental_1939','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4183','GCS_Azores_Central_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4184','GCS_Azores_Oriental_1940','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4185','GCS_Madeira_1936','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4188','GCS_OSNI_1952','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4189','GCS_REGVEN','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4190','GCS_POSGAR_1998','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4191','GCS_Albanian_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4192','GCS_Douala_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4193','GCS_Manoca_1962','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4194','GCS_Qornoq_1927','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4195','GCS_Scoresbysund_1952','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4196','GCS_Ammassalik_1958','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4197','GCS_Garoua','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4198','GCS_Kousseri','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4199','GCS_Egypt_1930','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4200','GCS_Pulkovo_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4201','GCS_Adindan','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4202','GCS_Australian_1966','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4203','GCS_Australian_1984','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4204','GCS_Ain_el_Abd_1970','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4205','GCS_Afgooye','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4206','GCS_Agadez','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4207','GCS_Lisbon','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4208','GCS_Aratu','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4209','GCS_Arc_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4210','GCS_Arc_1960','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4211','GCS_Batavia','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4212','GCS_Barbados_1938','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4213','GCS_Beduaram','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4214','GCS_Beijing_1954','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4215','GCS_Belge_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4216','GCS_Bermuda_1957','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4218','GCS_Bogota','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4219','GCS_Bukit_Rimpah','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4220','GCS_Camacupa','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4221','GCS_Campo_Inchauspe','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4222','GCS_Cape','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4223','GCS_Carthage','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4224','GCS_Chua','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4225','GCS_Corrego_Alegre','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4226','GCS_Cote_d_Ivoire','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4227','GCS_Deir_ez_Zor','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4228','GCS_Douala','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4229','GCS_Egypt_1907','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4230','GCS_European_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4231','GCS_European_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4232','GCS_Fahud','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4233','GCS_Gandajika_1970','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4234','GCS_Garoua','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4235','GCS_Guyane_Francaise','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4236','GCS_Hu_Tzu_Shan','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4237','GCS_Hungarian_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4238','GCS_Indonesian_1974','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4239','GCS_Indian_1954','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4240','GCS_Indian_1975','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4241','GCS_Jamaica_1875','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4242','GCS_Jamaica_1969','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4243','GCS_Kalianpur_1880','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4244','GCS_Kandawala','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4245','GCS_Kertau','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4246','GCS_Kuwait_Oil_Company','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4247','GCS_La_Canoa','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4248','GCS_Provisional_S_American_1956','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4249','GCS_Lake','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4250','GCS_Leigon','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4251','GCS_Liberia_1964','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4252','GCS_Lome','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4253','GCS_Luzon_1911','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4254','GCS_Hito_XVIII_1963','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4255','GCS_Herat_North','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4256','GCS_Mahe_1971','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4257','GCS_Makassar','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4258','GCS_ETRS_1989','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4259','GCS_Malongo_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4260','GCS_Manoca','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4261','GCS_Merchich','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4262','GCS_Massawa','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4263','GCS_Minna','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4264','GCS_Mhast','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4265','GCS_Monte_Mario','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4266','GCS_Mporaloko','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4267','GCS_North_American_1927','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4268','GCS_North_American_Michigan','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4269','GCS_North_American_1983','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4270','GCS_Nahrwan_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4271','GCS_Naparima_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4272','GCS_New_Zealand_1949','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4273','GCS_NGO_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4274','GCS_Datum_73','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4275','GCS_NTF','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4276','GCS_NSWC_9Z_2','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4277','GCS_OSGB_1936','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4278','GCS_OSGB_1970_SN','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4279','GCS_OS_SN_1980','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4280','GCS_Padang_1884','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4281','GCS_Palestine_1923','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4282','GCS_Pointe_Noire','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4283','GCS_GDA_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4284','GCS_Pulkovo_1942','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4285','GCS_Qatar_1974','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4286','GCS_Qatar_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4287','GCS_Qornoq','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4288','GCS_Loma_Quintana','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4289','GCS_Amersfoort','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4291','GCS_South_American_1969','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4292','GCS_Sapper_Hill_1943','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4293','GCS_Schwarzeck','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4294','GCS_Segora','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4295','GCS_Serindung','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4296','GCS_Sudan','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4297','GCS_Tananarive_1925','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4298','GCS_Timbalai_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4299','GCS_TM65','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4300','GCS_TM75','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4301','GCS_Tokyo','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4302','GCS_Trinidad_1903','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4303','GCS_Trucial_Coast_1948','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4304','GCS_Voirol_1875','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106011','D_Voirol_Unifie_1960','Voirol Unifie 1960',NULL,'EPSG','7012','EPSG','8901','EPSG','1365',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','4305','GCS_Voirol_Unifie_1960',NULL,NULL,'geographic 2D','EPSG','6403','ESRI','106011','EPSG','1365',NULL,1); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4306','GCS_Bern_1938','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4307','GCS_Nord_Sahara_1959','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4308','GCS_RT38','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4309','GCS_Yacare','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4310','GCS_Yoff','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4311','GCS_Zanderij','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4312','GCS_MGI','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4313','GCS_Belge_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4314','GCS_Deutsches_Hauptdreiecksnetz','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4315','GCS_Conakry_1905','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4316','GCS_Dealul_Piscului_1933','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4317','GCS_Dealul_Piscului_1970','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4318','GCS_NGN','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4319','GCS_KUDAMS','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4322','GCS_WGS_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4324','GCS_WGS_1972_BE','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4326','GCS_WGS_1984','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4463','GCS_RGSPM_2006','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106997','D_Reseau_Geodesique_de_St_Pierre_et_Miquelon_2006','Reseau Geodesique de St Pierre et Miquelon 2006',NULL,'EPSG','7019','EPSG','8901','EPSG','1220',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','4466','GCS_RGSPM_2006',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106997','EPSG','1220',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','4466','geodetic_crs','EPSG','4463','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106998','D_Reseau_Geodesique_de_Mayotte_2004','Reseau Geodesique de Mayotte 2004',NULL,'EPSG','7019','EPSG','8901','EPSG','1159',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','4469','GCS_RGM_2004',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106998','EPSG','1159',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','4469','geodetic_crs','EPSG','4470','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4470','GCS_RGM_2004','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4475','GCS_Cadastre_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4483','GCS_Mexican_Datum_of_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4490','GCS_China_Geodetic_Coordinate_System_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4555','GCS_New_Beijing','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4558','GCS_RRAF_1991','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4600','GCS_Anguilla_1957','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4601','GCS_Antigua_1943','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4602','GCS_Dominica_1945','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4603','GCS_Grenada_1953','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4604','GCS_Montserrat_1958','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4605','GCS_St_Kitts_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4606','GCS_St_Lucia_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4607','GCS_St_Vincent_1945','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4608','GCS_NAD_1927_Definition_1976','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4609','GCS_NAD_1927_CGQ77','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4610','GCS_Xian_1980','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4611','GCS_Hong_Kong_1980','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4612','GCS_JGD_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4613','GCS_Gunung_Segara','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4614','GCS_QND_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4615','GCS_Porto_Santo_1936','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4616','GCS_Selvagem_Grande_1938','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4617','GCS_North_American_1983_CSRS','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4618','GCS_South_American_1969','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4619','GCS_SWEREF99','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4620','GCS_Point_58','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4621','GCS_Fort_Marigot','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4622','GCS_Sainte_Anne','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4623','GCS_CSG_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4624','GCS_RGFG_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4625','GCS_Fort_Desaix','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4626','GCS_Reunion_1947','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4627','GCS_RGR_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4628','GCS_Tahiti_1952','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4629','GCS_Tahaa_1954','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4630','GCS_IGN72_Nuku_Hiva','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4631','GCS_Kerguelen_Island_1949','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4632','GCS_Combani_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4633','GCS_IGN56_Lifou','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4636','GCS_Petrels_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4637','GCS_Pointe_Geologie_Perroud_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4638','GCS_Saint_Pierre_et_Miquelon_1950','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4639','GCS_MOP78','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4641','GCS_IGN53_Mare','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4642','GCS_ST84_Ile_des_Pins','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4643','GCS_ST71_Belep','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4644','GCS_NEA74_Noumea','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4645','GCS_RGNC_1991','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4646','GCS_Grand_Comoros','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4657','GCS_Reykjavik_1900','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4658','GCS_Hjorsey_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4659','GCS_ISN_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4660','GCS_Helle_1954','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4661','GCS_LKS_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4662','GCS_IGN72_Grande_Terre','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4663','GCS_Porto_Santo_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4664','GCS_Azores_Oriental_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4665','GCS_Azores_Central_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4666','GCS_Lisbon_1890','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4667','GCS_IKBD_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4668','GCS_European_1979','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4669','GCS_LKS_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4670','GCS_IGM_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4671','GCS_Voirol_1879','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4672','GCS_Chatham_Island_1971','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4673','GCS_Chatham_Islands_1979','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4674','GCS_SIRGAS_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4675','GCS_Guam_1963','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4676','GCS_Vientiane_1982','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4677','GCS_Lao_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4678','GCS_Lao_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4679','GCS_Jouik_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4680','GCS_Nouakchott_1965','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4682','GCS_Gulshan_303','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4683','GCS_PRS_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4684','GCS_Gan_1970','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4686','GCS_MAGNA','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4687','GCS_RGPF','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4688','GCS_Fatu_Iva_1972','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4689','GCS_IGN63_Hiva_Oa','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4690','GCS_Tahiti_1979','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4691','GCS_Moorea_1987','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4692','GCS_Maupiti_1983','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4693','GCS_Nakhl-e_Ghanem','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4694','GCS_POSGAR_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4695','GCS_Katanga_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4696','GCS_Kasai_1953','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4697','GCS_IGC_1962_6th_Parallel_South','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4698','GCS_Kerguelen_Island_1949','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4699','GCS_Le_Pouce_1934','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4700','GCS_IGN_Astro_1960','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4701','GCS_IGCB_1955','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4702','GCS_Mauritania_1999','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4703','GCS_Mhast_1951','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4704','GCS_Mhast_Onshore','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4705','GCS_Mhast_Offshore','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4706','GCS_Egypt_Gulf_of_Suez_S-650_TL','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4707','GCS_Tern_Island_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4708','GCS_Anna_1_1965','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4709','GCS_Beacon_E_1945','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4710','GCS_DOS_71_4','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4711','GCS_Astro_1952','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4712','GCS_Ascension_Island_1958','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4713','GCS_Ayabelle','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4714','GCS_Bellevue_IGN','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4715','GCS_Camp_Area','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4716','GCS_Canton_1966','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4717','GCS_Cape_Canaveral','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4718','GCS_Solomon_1968','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4719','GCS_Easter_Island_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4720','GCS_Fiji_1986','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4721','GCS_Fiji_1956','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4722','GCS_ISTS_061_1968','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4723','GCS_Grand_Cayman_1959','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4724','GCS_ISTS_073_1969','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4725','GCS_Johnston_Island_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4726','GCS_Little_Cayman_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4727','GCS_Midway_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4728','GCS_Pico_de_Las_Nieves','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4729','GCS_Pitcairn_1967','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4730','GCS_Santo_DOS_1965','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4731','GCS_Viti_Levu_1916','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4732','GCS_Wake_Eniwetok_1960','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4733','GCS_Wake_Island_1952','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4734','GCS_Tristan_1968','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4735','GCS_Kusaie_1951','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4736','GCS_Deception_Island','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4737','GCS_Korea_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4738','GCS_Hong_Kong_1963','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4739','GCS_Hong_Kong_1963_67','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4740','GCS_PZ_1990','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4741','GCS_FD_1954','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4742','GCS_GDM_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4743','GCS_Karbala_1979_Polservice','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4744','GCS_Nahrwan_1934','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4745','GCS_RD/83','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4746','GCS_PD/83','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4747','GCS_Greenland_1996','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4748','GCS_Vanua_Levu_1915','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4749','GCS_RGNC_1991-93','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4750','GCS_ST87_Ouvea','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4751','GCS_Kertau_RSO','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4752','GCS_Viti_Levu_1912','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4753','GCS_fk89','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4754','GCS_LGD2006','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4755','GCS_DGN_1995','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4756','GCS_VN_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4757','GCS_SVY21','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4758','GCS_JAD_2001','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4759','GCS_NAD_1983_NSRS2007','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4760','GCS_WGS_1966','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4761','GCS_HTRS96','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4762','GCS_Bermuda_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4763','GCS_Pitcairn_2006','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4764','GCS_RSRGD2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4765','GCS_Slovenia_1996','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4801','GCS_Bern_1898_Bern','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4802','GCS_Bogota_Bogota','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4803','GCS_Lisbon_Lisbon','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4804','GCS_Makassar_Jakarta','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4805','GCS_MGI_Ferro','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4806','GCS_Monte_Mario_Rome','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4807','GCS_NTF_Paris','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4808','GCS_Padang_1884_Jakarta','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4809','GCS_Belge_1950_Brussels','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4810','GCS_Tananarive_1925_Paris','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4811','GCS_Voirol_1875_Paris','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106011_Paris','D_Voirol_Unifie_1960',NULL,'Voirol Unifie 1960','EPSG','7012','EPSG','8903','EPSG','1365',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','4812','GCS_Voirol_Unifie_1960_Paris',NULL,NULL,'geographic 2D','EPSG','6403','ESRI','106011_Paris','EPSG','1365',NULL,1); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4813','GCS_Batavia_Jakarta','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4814','GCS_RT38_Stockholm','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4815','GCS_Greek_Athens','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4816','GCS_Carthage_Paris','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4817','GCS_NGO_1948_Oslo','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4818','GCS_S_JTSK_Ferro','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4819','GCS_Nord_Sahara_1959_Paris','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4820','GCS_Gunung_Segara_Jakarta','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4821','GCS_Voirol_1879_Paris','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4823','GCS_Sao_Tome','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4824','GCS_Principe','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4901','GCS_ATF_Paris','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4902','GCS_Nord_de_Guerre_Paris','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4903','GCS_Madrid_1870_Madrid','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','4904','GCS_Lisbon_1890_Lisbon','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5013','GCS_PTRA08','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5228','GCS_S_JTSK/05','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5229','GCS_S_JTSK/05_Ferro','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5233','GCS_SLD99','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5246','GCS_GDBD2009','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5252','GCS_TUREF','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5264','GCS_DRUKREF_03','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5324','GCS_ISN_2004','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5340','GCS_POSGAR_2007','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5354','GCS_MARGEN','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5360','GCS_SIRGAS-Chile','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5365','GCS_CR05','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5371','GCS_MARCARIO_SOLIS','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5373','GCS_Peru96','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5381','GCS_SIRGAS-ROU98','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5393','GCS_SIRGAS_ES2007.8','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5451','GCS_Ocotepeque_1935','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5464','GCS_Sibun_Gorge_1922','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5467','GCS_Panama-Colon_1911','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5489','GCS_RGAF09','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5524','GCS_Corrego_Alegre_1961','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5527','GCS_SAD_1969_96','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5546','GCS_PNG94','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5561','GCS_Ukraine_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5593','GCS_FEH2010','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5681','GCS_DB_REF','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','5886','GCS_TGD2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6135','GCS_CIGD11','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6207','GCS_Nepal_Nagarkot','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6311','GCS_CGRS_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6318','GCS_NAD_1983_2011','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6322','GCS_NAD_1983_PA11','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6325','GCS_NAD_1983_MA11','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6365','GCS_Mexico_ITRF2008','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6668','GCS_JGD_2011','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6706','GCS_RDN2008','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6783','GCS_NAD_1983_CORS96','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6881','GCS_Aden_1925','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6882','GCS_Bekaa_Valley_1920','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6883','GCS_Bioko','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6892','GCS_South_East_Island_1943','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6894','GCS_Gambia','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6983','IG05_Intermediate_CRS','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6987','IGD05(2012)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','6990','IG05(2012)_Intermediate_CRS','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','7035','RGSPM06_(lon-lat)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','7037','RGR92_(lon-lat)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','7039','RGM04_(lon-lat)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','7041','RGFG95_(lon-lat)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','7073','GCS_RGTAAF07','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','7084','RGF93_(lon-lat)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','7086','RGAF09_(lon-lat)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','7133','RGTAAF07_(lon-lat)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','7139','IGD05(2012)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','7881','St_Helena_Tritan','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8042','Gusterberg(Ferro)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8043','St._Stephen(Ferro)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8351','S-JTSK_[JTSK03]','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8427','Hong_Kong_Geodetic_CS','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8428','Macao_1920','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8431','GCS_MACAO_2008','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8449','NAD_1983_(FBN)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8545','NAD_1983_(HARN_Corrected)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8694','Camacupa_2015','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8860','NAD_1983_(FBN)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8888','WGS_1984_(Transit)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8902','RGWF96_(lon-lat)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8949','SIRGAS-Chile_2010','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8972','SIRGAS-CON_DGF00P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8973','SIRGAS-CON_DGF01P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8974','SIRGAS-CON_DGF01P02','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8975','SIRGAS-CON_DGF02P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8976','SIRGAS-CON_DGF04P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8977','SIRGAS-CON_DGF05P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8978','SIRGAS-CON_DGF06P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8979','SIRGAS-CON_DGF07P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8980','SIRGAS-CON_DGF08P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8981','SIRGAS-CON_SIR09P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8982','SIRGAS-CON_SIR10P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8983','SIRGAS-CON_SIR11P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8984','SIRGAS-CON_SIR13P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8985','SIRGAS-CON_SIR14P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8986','SIRGAS-CON_SIR15P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8987','SIRGAS-CON_SIR17P01','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8988','GCS_ITRF_1988','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8989','GCS_ITRF_1989','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8990','GCS_ITRF_1990','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8991','GCS_ITRF_1991','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8992','GCS_ITRF_1992','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8993','GCS_ITRF_1993','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8994','GCS_ITRF_1994','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8995','GCS_ITRF_1996','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8996','GCS_ITRF_1997','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8997','GCS_ITRF_2000','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8998','GCS_ITRF_2005','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','8999','GCS_ITRF_2008','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','9014','GCS_IGS08','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','9053','WGS_1984_(G730)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','9054','WGS_1984_(G873)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','9055','WGS_1984_(G1150)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','9056','WGS_1984_(G1674)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','9057','WGS_1984_(G1762)','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','9059','GCS_ETRF_1989','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','9148','SIRGAS-Chile_2013','ESRI'); INSERT INTO alias_name VALUES('geodetic_crs','EPSG','9153','SIRGAS-Chile_2016','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106001','D_WGS_1966','WGS 1966',NULL,'ESRI','107001','EPSG','8901','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37001','GCS_WGS_1966',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106001','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37001','geodetic_crs','EPSG','4760','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106002','D_Fischer_1960','Fischer 1960',NULL,'ESRI','107002','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37002','GCS_Fischer_1960',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106002','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106003','D_Fischer_1968','Fischer 1968',NULL,'ESRI','107003','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37003','GCS_Fischer_1968',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106003','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106004','D_Fischer_Modified','Fischer modified',NULL,'ESRI','107004','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37004','GCS_Fischer_Modified',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106004','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106005','D_Hough_1960','Hough 1960',NULL,'EPSG','7053','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37005','GCS_Hough_1960',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106005','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106006','D_Everest_Modified_1969','Everest modified 1969',NULL,'EPSG','7056','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37006','GCS_Everest_Modified_1969',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106006','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106007','D_Walbeck','Walbeck',NULL,'ESRI','107007','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37007','GCS_Walbeck',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106007','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106008','D_Sphere_ARC_INFO','Authalic sphere (ARC/INFO)',NULL,'ESRI','107008','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37008','GCS_Sphere_ARC_INFO',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106008','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106201','D_European_1979','European 1979',NULL,'EPSG','7022','EPSG','8901','EPSG','1297',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37201','GCS_European_1979',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106201','EPSG','1297',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37201','geodetic_crs','EPSG','4668','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106202','D_Everest_Bangladesh','Everest - Bangladesh',NULL,'EPSG','7015','EPSG','8901','EPSG','1041',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37202','GCS_Everest_Bangladesh',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106202','EPSG','1041',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106203','D_Everest_India_Nepal','Everest - India and Nepal',NULL,'EPSG','7044','EPSG','8901','EPSG','1121',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37203','GCS_Everest_India_Nepal',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106203','EPSG','1121',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106204','D_Hjorsey_1955','Hjorsey 1955',NULL,'EPSG','7022','EPSG','8901','EPSG','3262',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37204','GCS_Hjorsey_1955',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106204','EPSG','3262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37204','geodetic_crs','EPSG','4658','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106205','D_Hong_Kong_1963_67','Hong Kong 1963(67)',NULL,'EPSG','7022','EPSG','8901','EPSG','1118',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37205','GCS_Hong_Kong_1963_67',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106205','EPSG','1118',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37205','geodetic_crs','EPSG','4739','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106206','D_Oman','Oman',NULL,'EPSG','7012','EPSG','8901','EPSG','1183',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37206','GCS_Oman',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106206','EPSG','1183',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106207','D_South_Asia_Singapore','South Asia Singapore',NULL,'ESRI','107004','EPSG','8901','EPSG','1210',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37207','GCS_South_Asia_Singapore',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106207','EPSG','1210',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106208','D_Ayabelle','Ayabelle Lighthouse',NULL,'EPSG','7012','EPSG','8901','EPSG','1081',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37208','GCS_Ayabelle',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106208','EPSG','1081',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37208','geodetic_crs','EPSG','4713','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106211','D_Point_58','Point 58',NULL,'EPSG','7012','EPSG','8901','EPSG','2790',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37211','GCS_Point_58',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106211','EPSG','2790',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37211','geodetic_crs','EPSG','4620','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106212','D_Beacon_E_1945','Astro Beacon E 1945 (Iwo Jima 1945)',NULL,'EPSG','7022','EPSG','8901','EPSG','3200',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37212','GCS_Beacon_E_1945',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106212','EPSG','3200',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37212','geodetic_crs','EPSG','4709','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106213','D_Tern_Island_1961','Tern Island Astro 1961',NULL,'EPSG','7022','EPSG','8901','EPSG','3181',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37213','GCS_Tern_Island_1961',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106213','EPSG','3181',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37213','geodetic_crs','EPSG','4707','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106214','D_Astro_1952','Astronomical Station 1952 (Marcus Island 1952 )',NULL,'EPSG','7022','EPSG','8901','EPSG','1872',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37214','GCS_Astro_1952',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106214','EPSG','1872',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37214','geodetic_crs','EPSG','4711','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106215','D_Bellevue_IGN','Bellevue IGN',NULL,'EPSG','7022','EPSG','8901','EPSG','3193',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37215','GCS_Bellevue_IGN',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106215','EPSG','3193',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37215','geodetic_crs','EPSG','4714','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106216','D_Canton_1966','Canton Astro 1966 (Phoenix Islands 1966)',NULL,'EPSG','7022','EPSG','8901','EPSG','3196',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37216','GCS_Canton_1966',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106216','EPSG','3196',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37216','geodetic_crs','EPSG','4716','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106217','D_Chatham_Island_1971','Chatham Island Astro 1971',NULL,'EPSG','7022','EPSG','8901','EPSG','2889',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37217','GCS_Chatham_Island_1971',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106217','EPSG','2889',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37217','geodetic_crs','EPSG','4672','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106218','D_DOS_1968','DOS 1968',NULL,'EPSG','7022','EPSG','8901','EPSG','3198',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37218','GCS_DOS_1968',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106218','EPSG','3198',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106219','D_Easter_Island_1967','Easter Island 1967',NULL,'EPSG','7022','EPSG','8901','EPSG','3188',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37219','GCS_Easter_Island_1967',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106219','EPSG','3188',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37219','geodetic_crs','EPSG','4719','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106220','D_Guam_1963','Guam 1963',NULL,'EPSG','7008','EPSG','8901','EPSG','4167',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37220','GCS_Guam_1963',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106220','EPSG','4167',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37220','geodetic_crs','EPSG','4675','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106221','D_GUX_1','GUX 1 Astro',NULL,'EPSG','7022','EPSG','8901','EPSG','3197',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37221','GCS_GUX_1',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106221','EPSG','3197',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106222','D_Johnston_Island_1961','Johnston Island 1961',NULL,'EPSG','7022','EPSG','8901','EPSG','3201',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37222','GCS_Johnston_Island_1961',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106222','EPSG','3201',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37222','geodetic_crs','EPSG','4725','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','37223','GCS_Carthage',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6223','EPSG','1236',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37223','geodetic_crs','EPSG','4223','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106224','D_Midway_1961','Midway Astro 1961',NULL,'EPSG','7022','EPSG','8901','EPSG','3202',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37224','GCS_Midway_1961',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106224','EPSG','3202',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37224','geodetic_crs','EPSG','4727','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','37225','GCS_Carthage_Grad',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6223','EPSG','1236',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106226','D_Pitcairn_1967','Pitcairn Astro 1967',NULL,'EPSG','7022','EPSG','8901','EPSG','3208',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37226','GCS_Pitcairn_1967',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106226','EPSG','3208',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37226','geodetic_crs','EPSG','4729','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106227','D_Santo_DOS_1965','Santo DOS 1965',NULL,'EPSG','7022','EPSG','8901','EPSG','3194',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37227','GCS_Santo_DOS_1965',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106227','EPSG','3194',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37227','geodetic_crs','EPSG','4730','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106228','D_Viti_Levu_1916','Viti Levu 1916',NULL,'EPSG','7012','EPSG','8901','EPSG','3195',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37228','GCS_Viti_Levu_1916',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106228','EPSG','3195',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37228','geodetic_crs','EPSG','4731','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106229','D_Wake_Eniwetok_1960','Wake-Eniwetok 1960 (Marshall Islands 1960)',NULL,'EPSG','7053','EPSG','8901','EPSG','3191',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37229','GCS_Wake_Eniwetok_1960',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106229','EPSG','3191',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37229','geodetic_crs','EPSG','4732','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106230','D_Wake_Island_1952','Wake Island Astro 1952',NULL,'EPSG','7022','EPSG','8901','EPSG','3190',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37230','GCS_Wake_Island_1952',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106230','EPSG','3190',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37230','geodetic_crs','EPSG','4733','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106231','D_Anna_1_1965','Anna 1 Astro 1965 (Cocos Islands 1965)',NULL,'EPSG','7003','EPSG','8901','EPSG','1069',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37231','GCS_Anna_1_1965',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106231','EPSG','1069',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37231','geodetic_crs','EPSG','4708','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106232','D_Gan_1970','Gan 1970',NULL,'EPSG','7022','EPSG','8901','EPSG','3274',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37232','GCS_Gan_1970',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106232','EPSG','3274',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37232','geodetic_crs','EPSG','4684','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106233','D_ISTS_073_1969','ISTS 073 Astro 1969 (Diego Garcia 1969)',NULL,'EPSG','7022','EPSG','8901','EPSG','3189',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37233','GCS_ISTS_073_1969',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106233','EPSG','3189',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37233','geodetic_crs','EPSG','4724','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106234','D_Kerguelen_Island_1949','Kerguelen Island 1949',NULL,'EPSG','7022','EPSG','8901','EPSG','2816',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37234','GCS_Kerguelen_Island_1949',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106234','EPSG','2816',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37234','geodetic_crs','EPSG','4698','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106235','D_Reunion_1947','Reunion 1947',NULL,'EPSG','7022','EPSG','8901','EPSG','3337',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37235','GCS_Reunion_1947',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106235','EPSG','3337',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37235','geodetic_crs','EPSG','4626','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106237','D_Ascension_Island_1958','Ascension Island 1958',NULL,'EPSG','7022','EPSG','8901','EPSG','3182',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37237','GCS_Ascension_Island_1958',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106237','EPSG','3182',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37237','geodetic_crs','EPSG','4712','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106238','D_DOS_71_4','Astro DOS 71/4 (St. Helena 1971)',NULL,'EPSG','7022','EPSG','8901','EPSG','3183',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37238','GCS_DOS_71_4',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106238','EPSG','3183',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37238','geodetic_crs','EPSG','4710','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106239','D_Cape_Canaveral','Cape Canaveral',NULL,'EPSG','7008','EPSG','8901','EPSG','3206',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37239','GCS_Cape_Canaveral',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106239','EPSG','3206',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37239','geodetic_crs','EPSG','4717','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106240','D_Fort_Thomas_1955','Fort Thomas 1955',NULL,'EPSG','7012','EPSG','8901','EPSG','1200',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37240','GCS_Fort_Thomas_1955',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106240','EPSG','1200',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106241','D_Graciosa_Base_SW_1948','Graciosa Base SW 1948',NULL,'EPSG','7022','EPSG','8901','EPSG','1301',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37241','GCS_Graciosa_Base_SW_1948',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106241','EPSG','1301',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106242','D_ISTS_061_1968','ISTS 061 Astro 1968 (South Georgia 1968)',NULL,'EPSG','7022','EPSG','8901','EPSG','3529',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37242','GCS_ISTS_061_1968',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106242','EPSG','3529',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37242','geodetic_crs','EPSG','4722','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106243','D_LC5_1961','L.C. 5 Astro 1961',NULL,'EPSG','7008','EPSG','8901','EPSG','3186',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37243','GCS_LC5_1961',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106243','EPSG','3186',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106245','D_Observatorio_Meteorologico_1939','Observ. Meteorologico 1939',NULL,'EPSG','7022','EPSG','8901','EPSG','1344',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37245','GCS_Observatorio_Meteorologico_1939',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106245','EPSG','1344',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106246','D_Pico_de_Las_Nieves','Pico de Las Nieves',NULL,'EPSG','7022','EPSG','8901','EPSG','3873',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37246','GCS_Pico_de_Las_Nieves',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106246','EPSG','3873',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37246','geodetic_crs','EPSG','4728','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106247','D_Porto_Santo_1936','Porto Santo 1936',NULL,'EPSG','7022','EPSG','8901','EPSG','1314',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37247','GCS_Porto_Santo_1936',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106247','EPSG','1314',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37247','geodetic_crs','EPSG','4615','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106249','D_Sao_Braz','Sao Braz',NULL,'EPSG','7022','EPSG','8901','EPSG','1345',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37249','GCS_Sao_Braz',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106249','EPSG','1345',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106250','D_Selvagem_Grande_1938','Selvagem Grande 1938',NULL,'EPSG','7022','EPSG','8901','EPSG','2779',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37250','GCS_Selvagem_Grande_1938',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106250','EPSG','2779',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37250','geodetic_crs','EPSG','4616','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106251','D_Tristan_1968','Tristan Astro 1968',NULL,'EPSG','7022','EPSG','8901','EPSG','3184',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37251','GCS_Tristan_1968',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106251','EPSG','3184',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37251','geodetic_crs','EPSG','4734','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106252','D_American_Samoa_1962','American Samoa 1962',NULL,'EPSG','7008','EPSG','8901','EPSG','3109',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37252','GCS_American_Samoa_1962',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106252','EPSG','3109',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37252','geodetic_crs','EPSG','4169','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106253','D_Camp_Area','Camp Area Astro',NULL,'EPSG','7022','EPSG','8901','EPSG','3205',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37253','GCS_Camp_Area',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106253','EPSG','3205',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37253','geodetic_crs','EPSG','4715','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106254','D_Deception_Island','Deception Island',NULL,'EPSG','7012','EPSG','8901','EPSG','3204',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37254','GCS_Deception_Island',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106254','EPSG','3204',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37254','geodetic_crs','EPSG','4736','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106255','D_Gunung_Segara','Gunung Segara',NULL,'EPSG','7004','EPSG','8901','EPSG','1360',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37255','GCS_Gunung_Segara',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106255','EPSG','1360',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37255','geodetic_crs','EPSG','4613','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106257','D_S42_Hungary','S-42 Hungary',NULL,'EPSG','7024','EPSG','8901','EPSG','1119',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37257','GCS_S42_Hungary',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106257','EPSG','1119',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106259','D_Kusaie_1951','Kusaie Astro 1951',NULL,'EPSG','7022','EPSG','8901','EPSG','3192',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','37259','GCS_Kusaie_1951',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106259','EPSG','3192',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','37259','geodetic_crs','EPSG','4735','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106260','D_Alaskan_Islands','Alaskan Islands',NULL,'EPSG','7008','EPSG','8901','EPSG','1330',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','37260','GCS_Alaskan_Islands',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106260','EPSG','1330',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104000','GCS_Assumed_Geographic_1',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6267','EPSG','1263',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106009','D_Kyrgyz_Republic_2006','Kyrgyz Republic 2006',NULL,'EPSG','7019','EPSG','8901','EPSG','1137',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104009','GCS_Kyrg-06',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106009','EPSG','1137',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104010','GCS_IGS08',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1141','EPSG','2830',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104010','geodetic_crs','EPSG','9014','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104011','WGS_1984_(G730)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1152','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104011','geodetic_crs','EPSG','9053','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104012','WGS_1984_(G873)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1153','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104012','geodetic_crs','EPSG','9054','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104013','WGS_1984_(G1150)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1154','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104013','geodetic_crs','EPSG','9055','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104014','WGS_1984_(G1674)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1155','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104014','geodetic_crs','EPSG','9056','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104015','WGS_1984_(G1762)',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1156','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104015','geodetic_crs','EPSG','9057','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104017','PZ-90.02',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1157','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104018','PZ-90.11',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1158','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104019','ITRF2014',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1165','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104019','geodetic_crs','EPSG','9000','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106020','D_JGD_2011','Japan Geodetic Datum 2011',NULL,'EPSG','7019','EPSG','8901','EPSG','1129',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104020','GCS_JGD_2011',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106020','EPSG','1129',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104020','geodetic_crs','EPSG','6668','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104021','IGS14',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1191','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104021','geodetic_crs','EPSG','9019','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106010','Georgia_Geodetic_Datum','Georgia Geodetic Datum - ITRF2008/IGS08',NULL,'EPSG','7019','EPSG','8901','EPSG','3251',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104022','GGD',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106010','EPSG','3251',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','6023','D_International_1967','International 1967',NULL,'ESRI','7023','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104023','GCS_International_1967',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','6023','EPSG','1263',NULL,1); INSERT INTO "area" VALUES('ESRI','1','USA - California and borders of NV, AZ, OR and MX','USA - California and borders of NV, AZ, OR and MX',32.25,42.53,-124.44,-113.6,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106012','California_SRS_Epoch_2017.50_(NAD83)','California SRS Epoch 2017.5 (NAD83)',NULL,'EPSG','7019','EPSG','8901','ESRI','1',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104024','California_SRS_Epoch_2017.50_(NAD83)',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106012','ESRI','1',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104025','GCS_Voirol_Unifie_1960_Paris',NULL,NULL,'geographic 2D','EPSG','6403','ESRI','106011','EPSG','1365',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106011_Greenwich','D_Voirol_Unifie_1960',NULL,'Voirol Unifie 1960','EPSG','7012','EPSG','8901','EPSG','1365',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104026','GCS_Voirol_Unifie_1960',NULL,NULL,'geographic 2D','EPSG','6403','ESRI','106011_Greenwich','EPSG','1365',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106027','Oman_National_Geodetic_Datum_2017','Oman National Geodetic Datum 2017',NULL,'EPSG','7019','EPSG','8901','EPSG','1183',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104027','ONGD17',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106027','EPSG','1183',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106047','D_Sphere_GRS_1980_Mean_Radius','GRS 1980 Mean Radius Sphere',NULL,'ESRI','107047','EPSG','8901','EPSG','1263',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104047','GCS_Sphere_GRS_1980_Mean_Radius',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106047','EPSG','1263',NULL,0); INSERT INTO "area" VALUES('ESRI','2','UK - London','UK - London',51.2,51.8,-0.7,0.6,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106050','D_Xrail84','Xrail84',NULL,'EPSG','7030','EPSG','8901','ESRI','2',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104050','GCS_Xrail84',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106050','ESRI','2',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106100','D_GDBD2009','GDBD2009',NULL,'EPSG','7019','EPSG','8901','EPSG','1055',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104100','GCS_GDBD2009',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106100','EPSG','1055',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104100','geodetic_crs','EPSG','5246','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106101','D_Estonia_1937','Estonia 1937',NULL,'EPSG','7004','EPSG','8901','EPSG','1090',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104101','GCS_Estonia_1937',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106101','EPSG','1090',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106102','D_Hermannskogel','Hermannskogel',NULL,'EPSG','7004','EPSG','8901','EPSG','1321',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104102','GCS_Hermannskogel',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106102','EPSG','1321',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106103','D_Sierra_Leone_1960','Sierra Leone 1960',NULL,'EPSG','7012','EPSG','8901','EPSG','1209',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104103','GCS_Sierra_Leone_1960',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106103','EPSG','1209',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106261','D_Hong_Kong_1980','Hong Kong 1980',NULL,'EPSG','7022','EPSG','8901','EPSG','1118',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104104','GCS_Hong_Kong_1980',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106261','EPSG','1118',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104104','geodetic_crs','EPSG','4611','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106262','D_Datum_Lisboa_Bessel','Datum Lisboa Bessel',NULL,'EPSG','7004','EPSG','8901','EPSG','1193',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104105','GCS_Datum_Lisboa_Bessel',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106262','EPSG','1193',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106263','D_Datum_Lisboa_Hayford','Datum Lisboa Hayford',NULL,'EPSG','7022','EPSG','8901','EPSG','1193',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104106','GCS_Datum_Lisboa_Hayford',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106263','EPSG','1193',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106264','D_RGF_1993','Reseau Geodesique Francais 1993',NULL,'EPSG','7019','EPSG','8901','EPSG','1096',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104107','GCS_RGF_1993',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106264','EPSG','1096',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104107','geodetic_crs','EPSG','4171','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106265','D_NZGD_2000','New Zealand Geodetic Datum 2000',NULL,'EPSG','7019','EPSG','8901','EPSG','1175',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104108','GCS_NZGD_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106265','EPSG','1175',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104108','geodetic_crs','EPSG','4167','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106266','D_Pohnpei','Pohnpei - Fed. States Micronesia',NULL,'EPSG','7008','EPSG','8901','EPSG','1161',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104109','GCS_Pohnpei',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106266','EPSG','1161',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106267','D_REGVEN','REGVEN',NULL,'EPSG','7019','EPSG','8901','EPSG','1251',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104110','GCS_REGVEN',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106267','EPSG','1251',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104110','geodetic_crs','EPSG','4189','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106268','D_JGD_2000','Japan Geodetic Datum 2000',NULL,'EPSG','7019','EPSG','8901','EPSG','1129',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104111','GCS_JGD_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106268','EPSG','1129',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104111','geodetic_crs','EPSG','4612','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106269','D_Bab_South','Bab South Astro - Bablethuap Is - Republic of Palau',NULL,'EPSG','7008','EPSG','8901','EPSG','1185',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104112','GCS_Bab_South',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106269','EPSG','1185',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106270','D_Majuro','Majuro - Republic of Marshall Is.',NULL,'EPSG','7008','EPSG','8901','EPSG','1155',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104113','GCS_Majuro',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106270','EPSG','1155',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106271','D_Bermuda_2000','Bermuda 2000',NULL,'EPSG','7030','EPSG','8901','EPSG','1047',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104114','GCS_Bermuda_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106271','EPSG','1047',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104114','geodetic_crs','EPSG','4762','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104115','GCS_ITRF_1988',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6647','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104115','geodetic_crs','EPSG','8988','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104116','GCS_ITRF_1989',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6648','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104116','geodetic_crs','EPSG','8989','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104117','GCS_ITRF_1990',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6649','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104117','geodetic_crs','EPSG','8990','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104118','GCS_ITRF_1991',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6650','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104118','geodetic_crs','EPSG','8991','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104119','GCS_ITRF_1992',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6651','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104119','geodetic_crs','EPSG','8992','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104120','GCS_ITRF_1993',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6652','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104120','geodetic_crs','EPSG','8993','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104121','GCS_ITRF_1994',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6653','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104121','geodetic_crs','EPSG','8994','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104122','GCS_ITRF_1996',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6654','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104122','geodetic_crs','EPSG','8995','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104123','GCS_ITRF_1997',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6655','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104123','geodetic_crs','EPSG','8996','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104124','GCS_ITRF_2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6656','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104124','geodetic_crs','EPSG','8997','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106273','D_Chatham_Islands_1979','Chatham Islands 1979',NULL,'EPSG','7022','EPSG','8901','EPSG','2889',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104125','GCS_Chatham_Islands_1979',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106273','EPSG','2889',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104125','geodetic_crs','EPSG','4673','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106274','D_Observatorio_Meteorologico_1965','Observatorio Meteorologico 1965',NULL,'EPSG','7022','EPSG','8901','EPSG','1147',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104126','GCS_Observatorio_Meteorologico_1965',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106274','EPSG','1147',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106275','D_Roma_1940','Roma 1940',NULL,'EPSG','7022','EPSG','8901','EPSG','3343',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104127','GCS_Roma_1940',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106275','EPSG','3343',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106276','D_Sphere_EMEP','EMEP',NULL,'ESRI','107009','EPSG','8901','EPSG','2881',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104128','GCS_Sphere_EMEP',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106276','EPSG','2881',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104129','GCS_EUREF_FIN',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6258','EPSG','1095',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106277','D_Jordan','Jordan',NULL,'EPSG','7022','EPSG','8901','EPSG','1130',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104130','GCS_Jordan',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106277','EPSG','1130',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106278','D_D48','D48 - Slovenia',NULL,'EPSG','7004','EPSG','8901','EPSG','1212',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104131','GCS_D48',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106278','EPSG','1212',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106279','D_Ocotepeque_1935','Ocotepeque 1935',NULL,'EPSG','7008','EPSG','8901','EPSG','3876',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104132','GCS_Ocotepeque_1935',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106279','EPSG','3876',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104132','geodetic_crs','EPSG','5451','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106280','D_Jamaica_2001','Jamaica 2001',NULL,'EPSG','7030','EPSG','8901','EPSG','1128',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104133','GCS_JAD_2001',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106280','EPSG','1128',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104133','geodetic_crs','EPSG','4758','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104134','GCS_MONREF_1997',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6656','EPSG','1164',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104135','GCS_MSK_1942',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6284','EPSG','1164',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106281','D_TWD_1967','Taiwan 1967',NULL,'EPSG','7050','EPSG','8901','EPSG','3315',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104136','GCS_TWD_1967',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106281','EPSG','3315',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104136','geodetic_crs','EPSG','3821','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106282','D_TWD_1997','Taiwan 1997',NULL,'EPSG','7019','EPSG','8901','EPSG','1228',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104137','GCS_TWD_1997',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106282','EPSG','1228',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104137','geodetic_crs','EPSG','3824','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106284','D_Old_Hawaiian_Intl_1924','Old Hawaiian on Intl_1924 spheroid (NGS)',NULL,'EPSG','7022','EPSG','8901','EPSG','1334',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104138','GCS_Old_Hawaiian_Intl_1924',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106284','EPSG','1334',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104139','GCS_Voirol_1875_Grad',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6304','EPSG','1365',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104140','GCS_Voirol_1879_Grad',NULL,NULL,'geographic 2D','EPSG','6403','EPSG','6671','EPSG','1365',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106225','D_Cyprus_Geodetic_Reference_System_1993','Cyprus GRS 1993',NULL,'EPSG','7030','EPSG','8901','EPSG','3236',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104141','GCS_CGRS_1993',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106225','EPSG','3236',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104141','geodetic_crs','EPSG','6311','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106236','D_PTRA08','Portugal - Autonomous Regions (Madeira and Azores Archipelagos)',NULL,'EPSG','7019','EPSG','8901','EPSG','3670',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104142','GCS_PTRA08',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106236','EPSG','3670',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104142','geodetic_crs','EPSG','5013','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106244','D_Costa_Rica_2005','Costa Rica 2005',NULL,'EPSG','7030','EPSG','8901','EPSG','1074',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104143','GCS_CR05',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106244','EPSG','1074',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104143','geodetic_crs','EPSG','5365','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106144','D_Islands_Network_2004','Islands Network 2004',NULL,'EPSG','7019','EPSG','8901','EPSG','1120',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104144','GCS_ISN_2004',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106144','EPSG','1120',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104144','geodetic_crs','EPSG','5324','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106285','D_NAD_1983_2011','NAD 1983 (2011)',NULL,'EPSG','7019','EPSG','8901','EPSG','1511',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104145','GCS_NAD_1983_2011',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106285','EPSG','1511',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104145','geodetic_crs','EPSG','6318','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104179','ETRF90',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1179','EPSG','1298',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104179','geodetic_crs','EPSG','9060','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104180','ETRF91',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1180','EPSG','1298',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104180','geodetic_crs','EPSG','9061','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104181','ETRF92',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1181','EPSG','1298',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104181','geodetic_crs','EPSG','9062','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104182','ETRF93',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1182','EPSG','1298',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104182','geodetic_crs','EPSG','9063','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104183','ETRF94',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1183','EPSG','1298',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104183','geodetic_crs','EPSG','9064','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104184','ETRF96',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1184','EPSG','1298',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104184','geodetic_crs','EPSG','9065','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104185','ETRF97',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1185','EPSG','1298',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104185','geodetic_crs','EPSG','9066','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104186','ETRF2000',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1186','EPSG','1298',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104186','geodetic_crs','EPSG','9067','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106283','D_WGS_1984_Major_Auxiliary_Sphere','Major auxiliary sphere based on WGS 1984',NULL,'EPSG','7059','EPSG','8901','EPSG','1262',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104199','GCS_WGS_1984_Major_Auxiliary_Sphere',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106283','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104199','geodetic_crs','EPSG','4055','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106223','D_NAD_1983_CORS96','NAD 1983 (CORS96)',NULL,'EPSG','7019','EPSG','8901','EPSG','1511',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104223','GCS_NAD_1983_CORS96',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106223','EPSG','1511',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104223','geodetic_crs','EPSG','6783','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106248','D_MACAO_2008','Macao 2008 (ITRF 2005)',NULL,'EPSG','7022','EPSG','8901','EPSG','1147',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104248','GCS_MACAO_2008',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106248','EPSG','1147',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104248','geodetic_crs','EPSG','8431','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106256','D_Nepal_Nagarkot','Nepal Nagarkot',NULL,'EPSG','7015','EPSG','8901','EPSG','1171',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104256','GCS_Nepal_Nagarkot',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106256','EPSG','1171',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104256','geodetic_crs','EPSG','6207','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104257','GCS_ITRF_2008',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','1061','EPSG','2830',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104257','geodetic_crs','EPSG','8999','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106258','D_ETRF_1989','European Terrestrial Ref. Frame 1989',NULL,'EPSG','7030','EPSG','8901','EPSG','1298',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104258','GCS_ETRF_1989',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106258','EPSG','1298',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104258','geodetic_crs','EPSG','9059','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106209','D_NAD_1983_PACP00','NAD 1983 PACP00',NULL,'EPSG','7019','EPSG','8901','EPSG','4162',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104259','GCS_NAD_1983_PACP00',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106209','EPSG','4162',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106210','D_NAD_1983_MARP00','NAD 1983 MARP00',NULL,'EPSG','7019','EPSG','8901','EPSG','4167',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104260','GCS_NAD_1983_MARP00',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106210','EPSG','4167',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104261','GCS_Merchich_Degree',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6261','EPSG','3280',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106286','D_NAD_1983_MA11','NAD 1983 (MA11) - Marianas Plate 2011',NULL,'EPSG','7019','EPSG','8901','EPSG','4167',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104286','GCS_NAD_1983_MA11',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106286','EPSG','4167',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104286','geodetic_crs','EPSG','6325','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106287','D_NAD_1983_PA11','NAD 1983 (PA11) - Pacific Plate 2011',NULL,'EPSG','7019','EPSG','8901','EPSG','4162',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104287','GCS_NAD_1983_PA11',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106287','EPSG','4162',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104287','geodetic_crs','EPSG','6322','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104304','GCS_Voirol_1875',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6304','EPSG','1365',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104304','geodetic_crs','EPSG','4304','ESRI'); INSERT INTO "geodetic_crs" VALUES('ESRI','104305','GCS_Voirol_Unifie_1960_Degree',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106011','EPSG','1365',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106700','D_NAD_1983_HARN_Adj_MN_Anoka','NAD 1983 HARN Adj. Minnesota Anoka',NULL,'ESRI','107700','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104700','GCS_NAD_1983_HARN_Adj_MN_Anoka',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106700','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106701','D_NAD_1983_HARN_Adj_MN_Becker','NAD 1983 HARN Adj. Minnesota Becker',NULL,'ESRI','107701','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104701','GCS_NAD_1983_HARN_Adj_MN_Becker',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106701','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106702','D_NAD_1983_HARN_Adj_MN_Beltrami_North','NAD 1983 HARN Adj. Minnesota Beltrami North',NULL,'ESRI','107702','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104702','GCS_NAD_1983_HARN_Adj_MN_Beltrami_North',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106702','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106703','D_NAD_1983_HARN_Adj_MN_Beltrami_South','NAD 1983 HARN Adj. Minnesota Beltrami South',NULL,'ESRI','107703','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104703','GCS_NAD_1983_HARN_Adj_MN_Beltrami_South',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106703','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106704','D_NAD_1983_HARN_Adj_MN_Benton','NAD 1983 HARN Adj. Minnesota Benton',NULL,'ESRI','107704','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104704','GCS_NAD_1983_HARN_Adj_MN_Benton',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106704','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106705','D_NAD_1983_HARN_Adj_MN_Big_Stone','NAD 1983 HARN Adj. Minnesota Big Stone',NULL,'ESRI','107705','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104705','GCS_NAD_1983_HARN_Adj_MN_Big_Stone',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106705','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106706','D_NAD_1983_HARN_Adj_MN_Blue_Earth','NAD 1983 HARN Adj. Minnesota Blue Earth',NULL,'ESRI','107706','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104706','GCS_NAD_1983_HARN_Adj_MN_Blue_Earth',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106706','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106707','D_NAD_1983_HARN_Adj_MN_Brown','NAD 1983 HARN Adj. Minnesota Brown',NULL,'ESRI','107707','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104707','GCS_NAD_1983_HARN_Adj_MN_Brown',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106707','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106708','D_NAD_1983_HARN_Adj_MN_Carlton','NAD 1983 HARN Adj. Minnesota Carlton',NULL,'ESRI','107708','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104708','GCS_NAD_1983_HARN_Adj_MN_Carlton',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106708','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106709','D_NAD_1983_HARN_Adj_MN_Carver','NAD 1983 HARN Adj. Minnesota Carver',NULL,'ESRI','107709','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104709','GCS_NAD_1983_HARN_Adj_MN_Carver',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106709','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106710','D_NAD_1983_HARN_Adj_MN_Cass_North','NAD 1983 HARN Adj. Minnesota Cass North',NULL,'ESRI','107710','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104710','GCS_NAD_1983_HARN_Adj_MN_Cass_North',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106710','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106711','D_NAD_1983_HARN_Adj_MN_Cass_South','NAD 1983 HARN Adj. Minnesota Cass South',NULL,'ESRI','107711','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104711','GCS_NAD_1983_HARN_Adj_MN_Cass_South',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106711','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106712','D_NAD_1983_HARN_Adj_MN_Chippewa','NAD 1983 HARN Adj. Minnesota Chippewa',NULL,'ESRI','107712','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104712','GCS_NAD_1983_HARN_Adj_MN_Chippewa',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106712','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106713','D_NAD_1983_HARN_Adj_MN_Chisago','NAD 1983 HARN Adj. Minnesota Chisago',NULL,'ESRI','107713','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104713','GCS_NAD_1983_HARN_Adj_MN_Chisago',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106713','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106714','D_NAD_1983_HARN_Adj_MN_Cook_North','NAD 1983 HARN Adj. Minnesota Cook North',NULL,'ESRI','107714','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104714','GCS_NAD_1983_HARN_Adj_MN_Cook_North',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106714','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106715','D_NAD_1983_HARN_Adj_MN_Cook_South','NAD 1983 HARN Adj. Minnesota Cook South',NULL,'ESRI','107715','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104715','GCS_NAD_1983_HARN_Adj_MN_Cook_South',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106715','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106716','D_NAD_1983_HARN_Adj_MN_Cottonwood','NAD 1983 HARN Adj. Minnesota Cottonwood',NULL,'ESRI','107716','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104716','GCS_NAD_1983_HARN_Adj_MN_Cottonwood',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106716','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106717','D_NAD_1983_HARN_Adj_MN_Crow_Wing','NAD 1983 HARN Adj. Minnesota Crow Wing',NULL,'ESRI','107717','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104717','GCS_NAD_1983_HARN_Adj_MN_Crow_Wing',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106717','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106718','D_NAD_1983_HARN_Adj_MN_Dakota','NAD 1983 HARN Adj. Minnesota Dakota',NULL,'ESRI','107718','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104718','GCS_NAD_1983_HARN_Adj_MN_Dakota',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106718','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106719','D_NAD_1983_HARN_Adj_MN_Dodge','NAD 1983 HARN Adj. Minnesota Dodge',NULL,'ESRI','107719','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104719','GCS_NAD_1983_HARN_Adj_MN_Dodge',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106719','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106720','D_NAD_1983_HARN_Adj_MN_Douglas','NAD 1983 HARN Adj. Minnesota Douglas',NULL,'ESRI','107720','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104720','GCS_NAD_1983_HARN_Adj_MN_Douglas',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106720','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106721','D_NAD_1983_HARN_Adj_MN_Faribault','NAD 1983 HARN Adj. Minnesota Faribault',NULL,'ESRI','107721','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104721','GCS_NAD_1983_HARN_Adj_MN_Faribault',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106721','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106722','D_NAD_1983_HARN_Adj_MN_Fillmore','NAD 1983 HARN Adj. Minnesota Fillmore',NULL,'ESRI','107722','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104722','GCS_NAD_1983_HARN_Adj_MN_Fillmore',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106722','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106723','D_NAD_1983_HARN_Adj_MN_Freeborn','NAD 1983 HARN Adj. Minnesota Freeborn',NULL,'ESRI','107723','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104723','GCS_NAD_1983_HARN_Adj_MN_Freeborn',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106723','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106724','D_NAD_1983_HARN_Adj_MN_Goodhue','NAD 1983 HARN Adj. Minnesota Goodhue',NULL,'ESRI','107724','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104724','GCS_NAD_1983_HARN_Adj_MN_Goodhue',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106724','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106725','D_NAD_1983_HARN_Adj_MN_Grant','NAD 1983 HARN Adj. Minnesota Grant',NULL,'ESRI','107725','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104725','GCS_NAD_1983_HARN_Adj_MN_Grant',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106725','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106726','D_NAD_1983_HARN_Adj_MN_Hennepin','NAD 1983 HARN Adj. Minnesota Hennepin',NULL,'ESRI','107726','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104726','GCS_NAD_1983_HARN_Adj_MN_Hennepin',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106726','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106727','D_NAD_1983_HARN_Adj_MN_Houston','NAD 1983 HARN Adj. Minnesota Houston',NULL,'ESRI','107727','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104727','GCS_NAD_1983_HARN_Adj_MN_Houston',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106727','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106728','D_NAD_1983_HARN_Adj_MN_Isanti','NAD 1983 HARN Adj. Minnesota Isanti',NULL,'ESRI','107728','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104728','GCS_NAD_1983_HARN_Adj_MN_Isanti',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106728','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106729','D_NAD_1983_HARN_Adj_MN_Itasca_North','NAD 1983 HARN Adj. Minnesota Itasca North',NULL,'ESRI','107729','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104729','GCS_NAD_1983_HARN_Adj_MN_Itasca_North',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106729','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106730','D_NAD_1983_HARN_Adj_MN_Itasca_South','NAD 1983 HARN Adj. Minnesota Itasca South',NULL,'ESRI','107730','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104730','GCS_NAD_1983_HARN_Adj_MN_Itasca_South',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106730','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106731','D_NAD_1983_HARN_Adj_MN_Jackson','NAD 1983 HARN Adj. Minnesota Jackson',NULL,'ESRI','107731','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104731','GCS_NAD_1983_HARN_Adj_MN_Jackson',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106731','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106732','D_NAD_1983_HARN_Adj_MN_Kanabec','NAD 1983 HARN Adj. Minnesota Kanabec',NULL,'ESRI','107732','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104732','GCS_NAD_1983_HARN_Adj_MN_Kanabec',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106732','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106733','D_NAD_1983_HARN_Adj_MN_Kandiyohi','NAD 1983 HARN Adj. Minnesota Kandiyohi',NULL,'ESRI','107733','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104733','GCS_NAD_1983_HARN_Adj_MN_Kandiyohi',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106733','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106734','D_NAD_1983_HARN_Adj_MN_Kittson','NAD 1983 HARN Adj. Minnesota Kittson',NULL,'ESRI','107734','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104734','GCS_NAD_1983_HARN_Adj_MN_Kittson',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106734','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106735','D_NAD_1983_HARN_Adj_MN_Koochiching','NAD 1983 HARN Adj. Minnesota Koochiching',NULL,'ESRI','107735','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104735','GCS_NAD_1983_HARN_Adj_MN_Koochiching',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106735','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106736','D_NAD_1983_HARN_Adj_MN_Lac_Qui_Parle','NAD 1983 HARN Adj. Minnesota Lac Qui Parle',NULL,'ESRI','107736','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104736','GCS_NAD_1983_HARN_Adj_MN_Lac_Qui_Parle',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106736','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106737','D_NAD_1983_HARN_Adj_MN_Lake_of_the_Woods_North','NAD 1983 HARN Adj. Minnesota Lake of the Woods North',NULL,'ESRI','107737','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104737','GCS_NAD_1983_HARN_Adj_MN_Lake_of_the_Woods_North',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106737','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106738','D_NAD_1983_HARN_Adj_MN_Lake_of_the_Woods_South','NAD 1983 HARN Adj. Minnesota Lake of the Woods South',NULL,'ESRI','107738','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104738','GCS_NAD_1983_HARN_Adj_MN_Lake_of_the_Woods_South',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106738','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106739','D_NAD_1983_HARN_Adj_MN_Le_Sueur','NAD 1983 HARN Adj. Minnesota Le Sueur',NULL,'ESRI','107739','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104739','GCS_NAD_1983_HARN_Adj_MN_Le_Sueur',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106739','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106740','D_NAD_1983_HARN_Adj_MN_Lincoln','NAD 1983 HARN Adj. Minnesota Lincoln',NULL,'ESRI','107740','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104740','GCS_NAD_1983_HARN_Adj_MN_Lincoln',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106740','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106741','D_NAD_1983_HARN_Adj_MN_Lyon','NAD 1983 HARN Adj. Minnesota Lyon',NULL,'ESRI','107741','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104741','GCS_NAD_1983_HARN_Adj_MN_Lyon',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106741','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106742','D_NAD_1983_HARN_Adj_MN_McLeod','NAD 1983 HARN Adj. Minnesota McLeod',NULL,'ESRI','107742','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104742','GCS_NAD_1983_HARN_Adj_MN_McLeod',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106742','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106743','D_NAD_1983_HARN_Adj_MN_Mahnomen','NAD 1983 HARN Adj. Minnesota Mahnomen',NULL,'ESRI','107743','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104743','GCS_NAD_1983_HARN_Adj_MN_Mahnomen',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106743','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106744','D_NAD_1983_HARN_Adj_MN_Marshall','NAD 1983 HARN Adj. Minnesota Marshall',NULL,'ESRI','107744','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104744','GCS_NAD_1983_HARN_Adj_MN_Marshall',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106744','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106745','D_NAD_1983_HARN_Adj_MN_Martin','NAD 1983 HARN Adj. Minnesota Martin',NULL,'ESRI','107745','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104745','GCS_NAD_1983_HARN_Adj_MN_Martin',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106745','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106746','D_NAD_1983_HARN_Adj_MN_Meeker','NAD 1983 HARN Adj. Minnesota Meeker',NULL,'ESRI','107746','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104746','GCS_NAD_1983_HARN_Adj_MN_Meeker',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106746','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106747','D_NAD_1983_HARN_Adj_MN_Morrison','NAD 1983 HARN Adj. Minnesota Morrison',NULL,'ESRI','107747','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104747','GCS_NAD_1983_HARN_Adj_MN_Morrison',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106747','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106748','D_NAD_1983_HARN_Adj_MN_Mower','NAD 1983 HARN Adj. Minnesota Mower',NULL,'ESRI','107748','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104748','GCS_NAD_1983_HARN_Adj_MN_Mower',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106748','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106749','D_NAD_1983_HARN_Adj_MN_Murray','NAD 1983 HARN Adj. Minnesota Murray',NULL,'ESRI','107749','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104749','GCS_NAD_1983_HARN_Adj_MN_Murray',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106749','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106750','D_NAD_1983_HARN_Adj_MN_Nicollet','NAD 1983 HARN Adj. Minnesota Nicollet',NULL,'ESRI','107750','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104750','GCS_NAD_1983_HARN_Adj_MN_Nicollet',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106750','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106751','D_NAD_1983_HARN_Adj_MN_Nobles','NAD 1983 HARN Adj. Minnesota Nobles',NULL,'ESRI','107751','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104751','GCS_NAD_1983_HARN_Adj_MN_Nobles',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106751','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106752','D_NAD_1983_HARN_Adj_MN_Norman','NAD 1983 HARN Adj. Minnesota Norman',NULL,'ESRI','107752','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104752','GCS_NAD_1983_HARN_Adj_MN_Norman',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106752','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106753','D_NAD_1983_HARN_Adj_MN_Olmsted','NAD 1983 HARN Adj. Minnesota Olmsted',NULL,'ESRI','107753','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104753','GCS_NAD_1983_HARN_Adj_MN_Olmsted',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106753','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106754','D_NAD_1983_HARN_Adj_MN_Ottertail','NAD 1983 HARN Adj. Minnesota Ottertail',NULL,'ESRI','107754','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104754','GCS_NAD_1983_HARN_Adj_MN_Ottertail',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106754','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106755','D_NAD_1983_HARN_Adj_MN_Pennington','NAD 1983 HARN Adj. Minnesota Pennington',NULL,'ESRI','107755','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104755','GCS_NAD_1983_HARN_Adj_MN_Pennington',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106755','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106756','D_NAD_1983_HARN_Adj_MN_Pine','NAD 1983 HARN Adj. Minnesota Pine',NULL,'ESRI','107756','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104756','GCS_NAD_1983_HARN_Adj_MN_Pine',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106756','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106757','D_NAD_1983_HARN_Adj_MN_Pipestone','NAD 1983 HARN Adj. Minnesota Pipestone',NULL,'ESRI','107757','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104757','GCS_NAD_1983_HARN_Adj_MN_Pipestone',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106757','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106758','D_NAD_1983_HARN_Adj_MN_Polk','NAD 1983 HARN Adj. Minnesota Polk',NULL,'ESRI','107758','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104758','GCS_NAD_1983_HARN_Adj_MN_Polk',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106758','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106759','D_NAD_1983_HARN_Adj_MN_Pope','NAD 1983 HARN Adj. Minnesota Pope',NULL,'ESRI','107759','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104759','GCS_NAD_1983_HARN_Adj_MN_Pope',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106759','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106760','D_NAD_1983_HARN_Adj_MN_Ramsey','NAD 1983 HARN Adj. Minnesota Ramsey',NULL,'ESRI','107760','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104760','GCS_NAD_1983_HARN_Adj_MN_Ramsey',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106760','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106761','D_NAD_1983_HARN_Adj_MN_Red_Lake','NAD 1983 HARN Adj. Minnesota Red Lake',NULL,'ESRI','107761','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104761','GCS_NAD_1983_HARN_Adj_MN_Red_Lake',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106761','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106762','D_NAD_1983_HARN_Adj_MN_Redwood','NAD 1983 HARN Adj. Minnesota Redwood',NULL,'ESRI','107762','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104762','GCS_NAD_1983_HARN_Adj_MN_Redwood',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106762','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106763','D_NAD_1983_HARN_Adj_MN_Renville','NAD 1983 HARN Adj. Minnesota Renville',NULL,'ESRI','107763','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104763','GCS_NAD_1983_HARN_Adj_MN_Renville',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106763','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106764','D_NAD_1983_HARN_Adj_MN_Rice','NAD 1983 HARN Adj. Minnesota Rice',NULL,'ESRI','107764','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104764','GCS_NAD_1983_HARN_Adj_MN_Rice',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106764','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106765','D_NAD_1983_HARN_Adj_MN_Rock','NAD 1983 HARN Adj. Minnesota Rock',NULL,'ESRI','107765','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104765','GCS_NAD_1983_HARN_Adj_MN_Rock',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106765','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106766','D_NAD_1983_HARN_Adj_MN_Roseau','NAD 1983 HARN Adj. Minnesota Roseau',NULL,'ESRI','107766','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104766','GCS_NAD_1983_HARN_Adj_MN_Roseau',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106766','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106767','D_NAD_1983_HARN_Adj_MN_St_Louis_North','NAD 1983 HARN Adj. Minnesota St Louis North',NULL,'ESRI','107767','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104767','GCS_NAD_1983_HARN_Adj_MN_St_Louis_North',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106767','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106768','D_NAD_1983_HARN_Adj_MN_St_Louis_Central','NAD 1983 HARN Adj. Minnesota St Louis Central',NULL,'ESRI','107768','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104768','GCS_NAD_1983_HARN_Adj_MN_St_Louis_Central',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106768','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106769','D_NAD_1983_HARN_Adj_MN_St_Louis_South','NAD 1983 HARN Adj. Minnesota St Louis South',NULL,'ESRI','107769','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104769','GCS_NAD_1983_HARN_Adj_MN_St_Louis_South',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106769','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106770','D_NAD_1983_HARN_Adj_MN_Scott','NAD 1983 HARN Adj. Minnesota Scott',NULL,'ESRI','107770','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104770','GCS_NAD_1983_HARN_Adj_MN_Scott',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106770','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106771','D_NAD_1983_HARN_Adj_MN_Sherburne','NAD 1983 HARN Adj. Minnesota Sherburne',NULL,'ESRI','107771','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104771','GCS_NAD_1983_HARN_Adj_MN_Sherburne',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106771','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106772','D_NAD_1983_HARN_Adj_MN_Sibley','NAD 1983 HARN Adj. Minnesota Sibley',NULL,'ESRI','107772','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104772','GCS_NAD_1983_HARN_Adj_MN_Sibley',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106772','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106773','D_NAD_1983_HARN_Adj_MN_Stearns','NAD 1983 HARN Adj. Minnesota Stearns',NULL,'ESRI','107773','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104773','GCS_NAD_1983_HARN_Adj_MN_Stearns',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106773','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106774','D_NAD_1983_HARN_Adj_MN_Steele','NAD 1983 HARN Adj. Minnesota Steele',NULL,'ESRI','107774','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104774','GCS_NAD_1983_HARN_Adj_MN_Steele',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106774','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106775','D_NAD_1983_HARN_Adj_MN_Stevens','NAD 1983 HARN Adj. Minnesota Stevens',NULL,'ESRI','107775','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104775','GCS_NAD_1983_HARN_Adj_MN_Stevens',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106775','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106776','D_NAD_1983_HARN_Adj_MN_Swift','NAD 1983 HARN Adj. Minnesota Swift',NULL,'ESRI','107776','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104776','GCS_NAD_1983_HARN_Adj_MN_Swift',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106776','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106777','D_NAD_1983_HARN_Adj_MN_Todd','NAD 1983 HARN Adj. Minnesota Todd',NULL,'ESRI','107777','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104777','GCS_NAD_1983_HARN_Adj_MN_Todd',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106777','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106778','D_NAD_1983_HARN_Adj_MN_Traverse','NAD 1983 HARN Adj. Minnesota Traverse',NULL,'ESRI','107778','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104778','GCS_NAD_1983_HARN_Adj_MN_Traverse',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106778','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106779','D_NAD_1983_HARN_Adj_MN_Wabasha','NAD 1983 HARN Adj. Minnesota Wabasha',NULL,'ESRI','107779','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104779','GCS_NAD_1983_HARN_Adj_MN_Wabasha',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106779','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106780','D_NAD_1983_HARN_Adj_MN_Wadena','NAD 1983 HARN Adj. Minnesota Wadena',NULL,'ESRI','107780','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104780','GCS_NAD_1983_HARN_Adj_MN_Wadena',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106780','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106781','D_NAD_1983_HARN_Adj_MN_Waseca','NAD 1983 HARN Adj. Minnesota Waseca',NULL,'ESRI','107781','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104781','GCS_NAD_1983_HARN_Adj_MN_Waseca',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106781','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106782','D_NAD_1983_HARN_Adj_MN_Watonwan','NAD 1983 HARN Adj. Minnesota Watonwan',NULL,'ESRI','107782','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104782','GCS_NAD_1983_HARN_Adj_MN_Watonwan',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106782','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106783','D_NAD_1983_HARN_Adj_MN_Winona','NAD 1983 HARN Adj. Minnesota Winona',NULL,'ESRI','107783','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104783','GCS_NAD_1983_HARN_Adj_MN_Winona',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106783','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106784','D_NAD_1983_HARN_Adj_MN_Wright','NAD 1983 HARN Adj. Minnesota Wright',NULL,'ESRI','107784','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104784','GCS_NAD_1983_HARN_Adj_MN_Wright',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106784','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106785','D_NAD_1983_HARN_Adj_MN_Yellow_Medicine','NAD 1983 HARN Adj. Minnesota Yellow Medicine',NULL,'ESRI','107785','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104785','GCS_NAD_1983_HARN_Adj_MN_Yellow_Medicine',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106785','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106786','D_NAD_1983_HARN_Adj_MN_St_Louis','NAD 1983 HARN Adj. Minnesota St Louis',NULL,'ESRI','107786','EPSG','8901','EPSG','1392',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104786','GCS_NAD_1983_HARN_Adj_MN_St_Louis',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106786','EPSG','1392',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106851','D_NAD_1983_HARN_Adj_WI_AD_JN','NAD 1983 HARN Adj. Wisconsin Adams and Juneau',NULL,'ESRI','107851','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104800','GCS_NAD_1983_HARN_Adj_WI_Adams',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106851','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106800','D_NAD_1983_HARN_Adj_WI_AL','NAD 1983 HARN Adj. Wisconsin Ashland',NULL,'ESRI','107800','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104801','GCS_NAD_1983_HARN_Adj_WI_Ashland',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106800','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106801','D_NAD_1983_HARN_Adj_WI_BA','NAD 1983 HARN Adj. Wisconsin Barron',NULL,'ESRI','107801','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104802','GCS_NAD_1983_HARN_Adj_WI_Barron',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106801','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106802','D_NAD_1983_HARN_Adj_WI_BF','NAD 1983 HARN Adj. Wisconsin Bayfield',NULL,'ESRI','107802','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104803','GCS_NAD_1983_HARN_Adj_WI_Bayfield',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106802','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106803','D_NAD_1983_HARN_Adj_WI_BR','NAD 1983 HARN Adj. Wisconsin Brown',NULL,'ESRI','107803','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104804','GCS_NAD_1983_HARN_Adj_WI_Brown',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106803','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106804','D_NAD_1983_HARN_Adj_WI_BU','NAD 1983 HARN Adj. Wisconsin Buffalo',NULL,'ESRI','107804','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104805','GCS_NAD_1983_HARN_Adj_WI_Buffalo',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106804','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106805','D_NAD_1983_HARN_Adj_WI_BN','NAD 1983 HARN Adj. Wisconsin Burnett',NULL,'ESRI','107805','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104806','GCS_NAD_1983_HARN_Adj_WI_Burnett',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106805','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106856','D_NAD_1983_HARN_Adj_WI_CL_FL_OG_WN','NAD 1983 HARN Adj. Wisconsin Calumet, Fond du Lac, Outagamie, and Winnebago',NULL,'ESRI','107856','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104807','GCS_NAD_1983_HARN_Adj_WI_Calumet',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106856','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106806','D_NAD_1983_HARN_Adj_WI_CP','NAD 1983 HARN Adj. Wisconsin Chippewa',NULL,'ESRI','107806','EPSG','8901','EPSG','1418',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104808','GCS_NAD_1983_HARN_Adj_WI_Chippewa',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106806','EPSG','1418',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106807','D_NAD_1983_HARN_Adj_WI_CK','NAD 1983 HARN Adj. Wisconsin Clark',NULL,'ESRI','107807','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104809','GCS_NAD_1983_HARN_Adj_WI_Clark',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106807','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106808','D_NAD_1983_HARN_Adj_WI_CO','NAD 1983 HARN Adj. Wisconsin Columbia',NULL,'ESRI','107808','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104810','GCS_NAD_1983_HARN_Adj_WI_Columbia',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106808','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106809','D_NAD_1983_HARN_Adj_WI_CR','NAD 1983 HARN Adj. Wisconsin Crawford',NULL,'ESRI','107809','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104811','GCS_NAD_1983_HARN_Adj_WI_Crawford',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106809','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106810','D_NAD_1983_HARN_Adj_WI_DN','NAD 1983 HARN Adj. Wisconsin Dane',NULL,'ESRI','107810','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104812','GCS_NAD_1983_HARN_Adj_WI_Dane',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106810','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106854','D_NAD_1983_HARN_Adj_WI_DD_JF','NAD 1983 HARN Adj. Wisconsin Dodge and Jefferson',NULL,'ESRI','107854','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104813','GCS_NAD_1983_HARN_Adj_WI_Dodge',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106854','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106811','D_NAD_1983_HARN_Adj_WI_DR','NAD 1983 HARN Adj. Wisconsin Door',NULL,'ESRI','107811','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104814','GCS_NAD_1983_HARN_Adj_WI_Door',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106811','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106812','D_NAD_1983_HARN_Adj_WI_DG','NAD 1983 HARN Adj. Wisconsin Douglas',NULL,'ESRI','107812','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104815','GCS_NAD_1983_HARN_Adj_WI_Douglas',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106812','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106813','D_NAD_1983_HARN_Adj_WI_DU','NAD 1983 HARN Adj. Wisconsin Dunn',NULL,'ESRI','107813','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104816','GCS_NAD_1983_HARN_Adj_WI_Dunn',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106813','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106814','D_NAD_1983_HARN_Adj_WI_EC','NAD 1983 HARN Adj. Wisconsin EauClaire',NULL,'ESRI','107814','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104817','GCS_NAD_1983_HARN_Adj_WI_EauClaire',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106814','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106815','D_NAD_1983_HARN_Adj_WI_FN','NAD 1983 HARN Adj. Wisconsin Florence',NULL,'ESRI','107815','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104818','GCS_NAD_1983_HARN_Adj_WI_Florence',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106815','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104819','GCS_NAD_1983_HARN_Adj_WI_FondduLac',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106856','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106816','D_NAD_1983_HARN_Adj_WI_FR','NAD 1983 HARN Adj. Wisconsin Forest',NULL,'ESRI','107816','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104820','GCS_NAD_1983_HARN_Adj_WI_Forest',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106816','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106817','D_NAD_1983_HARN_Adj_WI_GT','NAD 1983 HARN Adj. Wisconsin Grant',NULL,'ESRI','107817','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104821','GCS_NAD_1983_HARN_Adj_WI_Grant',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106817','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106852','D_NAD_1983_HARN_Adj_WI_GR_LF','NAD 1983 HARN Adj. Wisconsin Green and Lafayette',NULL,'ESRI','107852','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104822','GCS_NAD_1983_HARN_Adj_WI_Green',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106852','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106853','D_NAD_1983_HARN_Adj_WI_GL_MQ','NAD 1983 HARN Adj. Wisconsin Green Lake and Marquette',NULL,'ESRI','107853','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104823','GCS_NAD_1983_HARN_Adj_WI_GreenLake',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106853','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106818','D_NAD_1983_HARN_Adj_WI_IA','NAD 1983 HARN Adj. Wisconsin Iowa',NULL,'ESRI','107818','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104824','GCS_NAD_1983_HARN_Adj_WI_Iowa',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106818','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106819','D_NAD_1983_HARN_Adj_WI_IR','NAD 1983 HARN Adj. Wisconsin Iron',NULL,'ESRI','107819','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104825','GCS_NAD_1983_HARN_Adj_WI_Iron',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106819','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106820','D_NAD_1983_HARN_Adj_WI_JA','NAD 1983 HARN Adj. Wisconsin Jackson',NULL,'ESRI','107820','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104826','GCS_NAD_1983_HARN_Adj_WI_Jackson',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106820','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104827','GCS_NAD_1983_HARN_Adj_WI_Jefferson',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106854','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104828','GCS_NAD_1983_HARN_Adj_WI_Juneau',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106851','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106857','D_NAD_1983_HARN_Adj_WI_KN_MW_OZ_RA','NAD 1983 HARN Adj. Wisconsin Kenosha, Milwaukee, Ozaukee, and Racine',NULL,'ESRI','107857','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104829','GCS_NAD_1983_HARN_Adj_WI_Kenosha',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106857','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106858','D_NAD_1983_HARN_Adj_WI_KW_MT_SG','NAD 1983 HARN Adj. Wisconsin Kewaunee, Manitowoc, and Sheboygan',NULL,'ESRI','107858','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104830','GCS_NAD_1983_HARN_Adj_WI_Kewaunee',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106858','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106821','D_NAD_1983_HARN_Adj_WI_LC','NAD 1983 HARN Adj. Wisconsin LaCrosse',NULL,'ESRI','107821','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104831','GCS_NAD_1983_HARN_Adj_WI_LaCrosse',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106821','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104832','GCS_NAD_1983_HARN_Adj_WI_Lafayette',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106852','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106822','D_NAD_1983_HARN_Adj_WI_LG','NAD 1983 HARN Adj. Wisconsin Langlade',NULL,'ESRI','107822','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104833','GCS_NAD_1983_HARN_Adj_WI_Langlade',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106822','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106823','D_NAD_1983_HARN_Adj_WI_LN','NAD 1983 HARN Adj. Wisconsin Lincoln',NULL,'ESRI','107823','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104834','GCS_NAD_1983_HARN_Adj_WI_Lincoln',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106823','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104835','GCS_NAD_1983_HARN_Adj_WI_Manitowoc',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106858','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106824','D_NAD_1983_HARN_Adj_WI_MA','NAD 1983 HARN Adj. Wisconsin Marathon',NULL,'ESRI','107824','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104836','GCS_NAD_1983_HARN_Adj_WI_Marathon',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106824','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106825','D_NAD_1983_HARN_Adj_WI_MN','NAD 1983 HARN Adj. Wisconsin Marinette',NULL,'ESRI','107825','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104837','GCS_NAD_1983_HARN_Adj_WI_Marinette',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106825','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104838','GCS_NAD_1983_HARN_Adj_WI_Marquette',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106853','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106826','D_NAD_1983_HARN_Adj_WI_ME','NAD 1983 HARN Adj. Wisconsin Menominee',NULL,'ESRI','107826','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104839','GCS_NAD_1983_HARN_Adj_WI_Menominee',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106826','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104840','GCS_NAD_1983_HARN_Adj_WI_Milwaukee',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106857','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106827','D_NAD_1983_HARN_Adj_WI_MR','NAD 1983 HARN Adj. Wisconsin Monroe',NULL,'ESRI','107827','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104841','GCS_NAD_1983_HARN_Adj_WI_Monroe',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106827','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106828','D_NAD_1983_HARN_Adj_WI_OC','NAD 1983 HARN Adj. Wisconsin Oconto',NULL,'ESRI','107828','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104842','GCS_NAD_1983_HARN_Adj_WI_Oconto',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106828','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106829','D_NAD_1983_HARN_Adj_WI_ON','NAD 1983 HARN Adj. Wisconsin Oneida',NULL,'ESRI','107829','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104843','GCS_NAD_1983_HARN_Adj_WI_Oneida',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106829','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104844','GCS_NAD_1983_HARN_Adj_WI_Outagamie',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106856','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104845','GCS_NAD_1983_HARN_Adj_WI_Ozaukee',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106857','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106855','D_NAD_1983_HARN_Adj_WI_PP_PC','NAD 1983 HARN Adj. Wisconsin Pepin and Pierce',NULL,'ESRI','107855','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104846','GCS_NAD_1983_HARN_Adj_WI_Pepin',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106855','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104847','GCS_NAD_1983_HARN_Adj_WI_Pierce',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106855','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106830','D_NAD_1983_HARN_Adj_WI_PK','NAD 1983 HARN Adj. Wisconsin Polk',NULL,'ESRI','107830','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104848','GCS_NAD_1983_HARN_Adj_WI_Polk',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106830','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106831','D_NAD_1983_HARN_Adj_WI_PT','NAD 1983 HARN Adj. Wisconsin Portage',NULL,'ESRI','107831','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104849','GCS_NAD_1983_HARN_Adj_WI_Portage',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106831','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106832','D_NAD_1983_HARN_Adj_WI_PR','NAD 1983 HARN Adj. Wisconsin Price',NULL,'ESRI','107832','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104850','GCS_NAD_1983_HARN_Adj_WI_Price',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106832','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104851','GCS_NAD_1983_HARN_Adj_WI_Racine',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106857','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106833','D_NAD_1983_HARN_Adj_WI_RC','NAD 1983 HARN Adj. Wisconsin Richland',NULL,'ESRI','107833','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104852','GCS_NAD_1983_HARN_Adj_WI_Richland',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106833','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106834','D_NAD_1983_HARN_Adj_WI_RK','NAD 1983 HARN Adj. Wisconsin Rock',NULL,'ESRI','107834','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104853','GCS_NAD_1983_HARN_Adj_WI_Rock',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106834','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106835','D_NAD_1983_HARN_Adj_WI_RS','NAD 1983 HARN Adj. Wisconsin Rusk',NULL,'ESRI','107835','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104854','GCS_NAD_1983_HARN_Adj_WI_Rusk',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106835','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106836','D_NAD_1983_HARN_Adj_WI_SC','NAD 1983 HARN Adj. Wisconsin StCroix',NULL,'ESRI','107836','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104855','GCS_NAD_1983_HARN_Adj_WI_StCroix',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106836','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106837','D_NAD_1983_HARN_Adj_WI_SK','NAD 1983 HARN Adj. Wisconsin Sauk',NULL,'ESRI','107837','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104856','GCS_NAD_1983_HARN_Adj_WI_Sauk',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106837','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106838','D_NAD_1983_HARN_Adj_WI_SW','NAD 1983 HARN Adj. Wisconsin Sawyer',NULL,'ESRI','107838','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104857','GCS_NAD_1983_HARN_Adj_WI_Sawyer',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106838','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106839','D_NAD_1983_HARN_Adj_WI_SH','NAD 1983 HARN Adj. Wisconsin Shawano',NULL,'ESRI','107839','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104858','GCS_NAD_1983_HARN_Adj_WI_Shawano',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106839','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104859','GCS_NAD_1983_HARN_Adj_WI_Sheboygan',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106858','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106840','D_NAD_1983_HARN_Adj_WI_TA','NAD 1983 HARN Adj. Wisconsin Taylor',NULL,'ESRI','107840','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104860','GCS_NAD_1983_HARN_Adj_WI_Taylor',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106840','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106841','D_NAD_1983_HARN_Adj_WI_TR','NAD 1983 HARN Adj. Wisconsin Trempealeau',NULL,'ESRI','107841','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104861','GCS_NAD_1983_HARN_Adj_WI_Trempealeau',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106841','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106842','D_NAD_1983_HARN_Adj_WI_VR','NAD 1983 HARN Adj. Wisconsin Vernon',NULL,'ESRI','107842','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104862','GCS_NAD_1983_HARN_Adj_WI_Vernon',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106842','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106843','D_NAD_1983_HARN_Adj_WI_VI','NAD 1983 HARN Adj. Wisconsin Vilas',NULL,'ESRI','107843','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104863','GCS_NAD_1983_HARN_Adj_WI_Vilas',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106843','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106844','D_NAD_1983_HARN_Adj_WI_WW','NAD 1983 HARN Adj. Wisconsin Walworth',NULL,'ESRI','107844','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104864','GCS_NAD_1983_HARN_Adj_WI_Walworth',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106844','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106845','D_NAD_1983_HARN_Adj_WI_WB','NAD 1983 HARN Adj. Wisconsin Washburn',NULL,'ESRI','107845','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104865','GCS_NAD_1983_HARN_Adj_WI_Washburn',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106845','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106846','D_NAD_1983_HARN_Adj_WI_WA','NAD 1983 HARN Adj. Wisconsin Washington',NULL,'ESRI','107846','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104866','GCS_NAD_1983_HARN_Adj_WI_Washington',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106846','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106847','D_NAD_1983_HARN_Adj_WI_WK','NAD 1983 HARN Adj. Wisconsin Waukesha',NULL,'ESRI','107847','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104867','GCS_NAD_1983_HARN_Adj_WI_Waukesha',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106847','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106848','D_NAD_1983_HARN_Adj_WI_WP','NAD 1983 HARN Adj. Wisconsin Waupaca',NULL,'ESRI','107848','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104868','GCS_NAD_1983_HARN_Adj_WI_Waupaca',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106848','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106849','D_NAD_1983_HARN_Adj_WI_WS','NAD 1983 HARN Adj. Wisconsin Waushara',NULL,'ESRI','107849','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104869','GCS_NAD_1983_HARN_Adj_WI_Waushara',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106849','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104870','GCS_NAD_1983_HARN_Adj_WI_Winnebago',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106856','EPSG','1418',NULL,1); INSERT INTO "geodetic_datum" VALUES('ESRI','106850','D_NAD_1983_HARN_Adj_WI_WD','NAD 1983 HARN Adj. Wisconsin Wood',NULL,'ESRI','107850','EPSG','8901','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104871','GCS_NAD_1983_HARN_Adj_WI_Wood',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106850','EPSG','1418',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104896','GCS_ITRF_2005',NULL,NULL,'geographic 2D','EPSG','6422','EPSG','6896','EPSG','1262',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104896','geodetic_crs','EPSG','8998','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106900','D_Mercury_2000','Mercury',NULL,'ESRI','107900','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104900','GCS_Mercury_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106900','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106901','D_Venus_1985','Venus 1985',NULL,'ESRI','107901','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104901','GCS_Venus_1985',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106902','D_Venus_2000','Venus 2000',NULL,'ESRI','107902','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104902','GCS_Venus_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106902','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106903','D_Moon_2000','The Moon',NULL,'ESRI','107903','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104903','GCS_Moon_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106903','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106904','D_Mars_1979','Mars 1979',NULL,'ESRI','107904','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104904','GCS_Mars_1979',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106904','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106905','D_Mars_2000','Mars 2000',NULL,'ESRI','107905','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104905','GCS_Mars_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106905','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106906','D_Deimos_2000','Mars - Deimos',NULL,'ESRI','107906','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104906','GCS_Deimos_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106906','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106907','D_Phobos_2000','Mars - Phobos',NULL,'ESRI','107907','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104907','GCS_Phobos_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106907','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106908','D_Jupiter_2000','Jupiter',NULL,'ESRI','107908','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104908','GCS_Jupiter_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106908','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106909','D_Adrastea_2000','Jupiter - Adrastea',NULL,'ESRI','107909','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104909','GCS_Adrastea_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106909','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106910','D_Amalthea_2000','Jupiter - Amalthea',NULL,'ESRI','107910','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104910','GCS_Amalthea_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106910','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106911','D_Ananke_2000','Jupiter - Ananke',NULL,'ESRI','107911','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104911','GCS_Ananke_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106911','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106912','D_Callisto_2000','Jupiter - Callisto',NULL,'ESRI','107912','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104912','GCS_Callisto_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106912','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106913','D_Carme_2000','Jupiter - Carme',NULL,'ESRI','107913','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104913','GCS_Carme_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106913','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106914','D_Elara_2000','Jupiter - Elara',NULL,'ESRI','107914','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104914','GCS_Elara_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106914','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106915','D_Europa_2000','Jupiter - Europa',NULL,'ESRI','107915','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104915','GCS_Europa_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106915','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106916','D_Ganymede_2000','Jupiter - Ganymede',NULL,'ESRI','107916','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104916','GCS_Ganymede_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106916','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106917','D_Himalia_2000','Jupiter - Himalia',NULL,'ESRI','107917','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104917','GCS_Himalia_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106917','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106918','D_Io_2000','Jupiter - Io',NULL,'ESRI','107918','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104918','GCS_Io_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106918','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106919','D_Leda_2000','Jupiter - Leda',NULL,'ESRI','107919','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104919','GCS_Leda_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106919','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106920','D_Lysithea_2000','Jupiter - Lysithea',NULL,'ESRI','107920','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104920','GCS_Lysithea_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106920','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106921','D_Metis_2000','Jupiter - Metis',NULL,'ESRI','107921','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104921','GCS_Metis_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106921','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106922','D_Pasiphae_2000','Jupiter - Pasiphae',NULL,'ESRI','107922','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104922','GCS_Pasiphae_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106922','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106923','D_Sinope_2000','Jupiter - Sinope',NULL,'ESRI','107923','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104923','GCS_Sinope_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106923','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106924','D_Thebe_2000','Jupiter - Thebe',NULL,'ESRI','107924','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104924','GCS_Thebe_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106924','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106925','D_Saturn_2000','Saturn',NULL,'ESRI','107925','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104925','GCS_Saturn_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106925','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106926','D_Atlas_2000','Saturn - Atlas',NULL,'ESRI','107926','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104926','GCS_Atlas_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106926','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106927','D_Calypso_2000','Saturn - Calypso',NULL,'ESRI','107927','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104927','GCS_Calypso_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106927','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106928','D_Dione_2000','Saturn - Dione',NULL,'ESRI','107928','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104928','GCS_Dione_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106928','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106929','D_Enceladus_2000','Saturn - Enceladus',NULL,'ESRI','107929','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104929','GCS_Enceladus_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106929','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106930','D_Epimetheus_2000','Saturn - Epimetheus',NULL,'ESRI','107930','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104930','GCS_Epimetheus_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106930','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106931','D_Helene_2000','Saturn - Helene',NULL,'ESRI','107931','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104931','GCS_Helene_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106931','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106932','D_Hyperion_2000','Saturn - Hyperion',NULL,'ESRI','107932','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104932','GCS_Hyperion_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106932','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106933','D_Iapetus_2000','Saturn - Iapetus',NULL,'ESRI','107933','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104933','GCS_Iapetus_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106933','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106934','D_Janus_2000','Saturn - Janus',NULL,'ESRI','107934','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104934','GCS_Janus_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106934','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106935','D_Mimas_2000','Saturn - Mimas',NULL,'ESRI','107935','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104935','GCS_Mimas_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106935','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106936','D_Pan_2000','Saturn - Pan',NULL,'ESRI','107936','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104936','GCS_Pan_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106936','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106937','D_Pandora_2000','Saturn - Pandora',NULL,'ESRI','107937','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104937','GCS_Pandora_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106937','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106938','D_Phoebe_2000','Saturn - Phoebe',NULL,'ESRI','107938','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104938','GCS_Phoebe_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106938','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106939','D_Prometheus_2000','Saturn - Prometheus',NULL,'ESRI','107939','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104939','GCS_Prometheus_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106939','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106940','D_Rhea_2000','Saturn - Rhea',NULL,'ESRI','107940','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104940','GCS_Rhea_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106940','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106941','D_Telesto_2000','Saturn - Telesto',NULL,'ESRI','107941','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104941','GCS_Telesto_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106941','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106942','D_Tethys_2000','Saturn - Tethys',NULL,'ESRI','107942','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104942','GCS_Tethys_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106942','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106943','D_Titan_2000','Saturn - Titan',NULL,'ESRI','107943','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104943','GCS_Titan_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106943','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106944','D_Uranus_2000','Uranus',NULL,'ESRI','107944','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104944','GCS_Uranus_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106944','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106945','D_Ariel_2000','Uranus - Ariel',NULL,'ESRI','107945','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104945','GCS_Ariel_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106945','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106946','D_Belinda_2000','Uranus - Belinda',NULL,'ESRI','107946','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104946','GCS_Belinda_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106946','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106947','D_Bianca_2000','Uranus - Bianca',NULL,'ESRI','107947','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104947','GCS_Bianca_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106947','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106948','D_Cordelia_2000','Uranus - Cordelia',NULL,'ESRI','107948','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104948','GCS_Cordelia_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106948','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106949','D_Cressida_2000','Uranus - Cressida',NULL,'ESRI','107949','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104949','GCS_Cressida_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106949','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106950','D_Desdemona_2000','Uranus - Desdemona',NULL,'ESRI','107950','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104950','GCS_Desdemona_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106950','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106951','D_Juliet_2000','Uranus - Juliet',NULL,'ESRI','107951','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104951','GCS_Juliet_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106951','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106952','D_Miranda_2000','Uranus - Miranda',NULL,'ESRI','107952','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104952','GCS_Miranda_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106952','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106953','D_Oberon_2000','Uranus - Oberon',NULL,'ESRI','107953','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104953','GCS_Oberon_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106953','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106954','D_Ophelia_2000','Uranus - Ophelia',NULL,'ESRI','107954','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104954','GCS_Ophelia_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106954','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106955','D_Portia_2000','Uranus - Portia',NULL,'ESRI','107955','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104955','GCS_Portia_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106955','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106956','D_Puck_2000','Uranus - Puck',NULL,'ESRI','107956','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104956','GCS_Puck_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106956','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106957','D_Rosalind_2000','Uranus - Rosalind',NULL,'ESRI','107957','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104957','GCS_Rosalind_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106957','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106958','D_Titania_2000','Uranus - Titania',NULL,'ESRI','107958','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104958','GCS_Titania_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106958','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106959','D_Umbriel_2000','Uranus - Umbriel',NULL,'ESRI','107959','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104959','GCS_Umbriel_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106959','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106960','D_Neptune_2000','Neptune',NULL,'ESRI','107960','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104960','GCS_Neptune_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106960','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106961','D_Despina_2000','Neptune - Despina',NULL,'ESRI','107961','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104961','GCS_Despina_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106961','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106962','D_Galatea_2000','Neptune - Galatea',NULL,'ESRI','107962','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104962','GCS_Galatea_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106962','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106963','D_Larissa_2000','Neptune - Larissa',NULL,'ESRI','107963','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104963','GCS_Larissa_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106963','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106964','D_Naiad_2000','Neptune - Naiad',NULL,'ESRI','107964','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104964','GCS_Naiad_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106964','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106965','D_Nereid_2000','Neptune - Nereid',NULL,'ESRI','107965','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104965','GCS_Nereid_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106965','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106966','D_Proteus_2000','Neptune - Proteus',NULL,'ESRI','107966','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104966','GCS_Proteus_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106966','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106967','D_Thalassa_2000','Neptune - Thalassa',NULL,'ESRI','107967','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104967','GCS_Thalassa_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106967','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106968','D_Triton_2000','Neptune - Triton',NULL,'ESRI','107968','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104968','GCS_Triton_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106968','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106969','D_Pluto_2000','Pluto',NULL,'ESRI','107969','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104969','GCS_Pluto_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106969','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106970','D_Charon_2000','Pluto - Charon',NULL,'ESRI','107970','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104970','GCS_Charon_2000',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106970','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106971','Mars_2000_(Sphere)','Mars 2000 (Sphere)',NULL,'ESRI','107971','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104971','Mars_2000_(Sphere)',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106971','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106972','1_Ceres_2015','1 Ceres 2015',NULL,'ESRI','107972','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104972','1_Ceres_2015',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106972','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106973','4_Vesta_2015','4 Vesta 2015',NULL,'ESRI','107973','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104973','4_Vesta_2015',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106973','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106974','Mercury_2015','Mercury 2015',NULL,'ESRI','107974','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104974','Mercury_2015',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106974','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106975','Sun_2015','Sun IAU 2015',NULL,'ESRI','107975','ESRI','108900','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('ESRI','104975','Sun_2015',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106975','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('ESRI','106990','D_Hungarian_Datum_1909','Hungarian Datum 1909',NULL,'EPSG','7004','EPSG','8901','EPSG','1119',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104990','GCS_HD1909',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106990','EPSG','1119',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104990','geodetic_crs','EPSG','3819','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106991','D_Iraqi_Geospatial_Reference_System','Iraqi Geospatial Reference System',NULL,'EPSG','7019','EPSG','8901','EPSG','1124',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104991','GCS_IGRS',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106991','EPSG','1124',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104991','geodetic_crs','EPSG','3889','ESRI'); INSERT INTO "geodetic_datum" VALUES('ESRI','106992','D_MGI_1901','MGI 1901',NULL,'EPSG','7004','EPSG','8901','EPSG','2370',NULL,1); INSERT INTO "geodetic_crs" VALUES('ESRI','104992','GCS_MGI_1901',NULL,NULL,'geographic 2D','EPSG','6422','ESRI','106992','EPSG','2370',NULL,1); INSERT INTO "supersession" VALUES('geodetic_crs','ESRI','104992','geodetic_crs','EPSG','3906','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2000','Anguilla_1957_British_West_Indies_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2001','Antigua_1943_British_West_Indies_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2002','Dominica_1945_British_West_Indies_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2003','Grenada_1953_British_West_Indies_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2004','Montserrat_1958_British_West_Indies_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2005','St_Kitts_1955_British_West_Indies_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2006','St_Lucia_1955_British_West_Indies_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2007','St_Vincent_1945_British_West_Indies_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2008','NAD_1927_CGQ77_MTM_2_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2009','NAD_1927_CGQ77_MTM_3_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2010','NAD_1927_CGQ77_MTM_4_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2011','NAD_1927_CGQ77_MTM_5_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2012','NAD_1927_CGQ77_MTM_6_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2013','NAD_1927_CGQ77_MTM_7_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2014','NAD_1927_CGQ77_MTM_8_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2015','NAD_1927_CGQ77_MTM_9_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2016','NAD_1927_CGQ77_MTM_10_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2017','NAD_1927_DEF_1976_MTM_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2018','NAD_1927_DEF_1976_MTM_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2019','NAD_1927_DEF_1976_MTM_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2020','NAD_1927_DEF_1976_MTM_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2021','NAD_1927_DEF_1976_MTM_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2022','NAD_1927_DEF_1976_MTM_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2023','NAD_1927_DEF_1976_MTM_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2024','NAD_1927_DEF_1976_MTM_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2025','NAD_1927_DEF_1976_MTM_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2026','NAD_1927_DEF_1976_MTM_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2027','NAD_1927_DEF_1976_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2028','NAD_1927_DEF_1976_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2029','NAD_1927_DEF_1976_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2030','NAD_1927_DEF_1976_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2031','NAD_1927_CGQ77_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2032','NAD_1927_CGQ77_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2033','NAD_1927_CGQ77_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2034','NAD_1927_CGQ77_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2035','NAD_1927_CGQ77_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2036','NAD_1983_CSRS_New_Brunswick_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2037','NAD_1983_CSRS_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2038','NAD_1983_CSRS_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2039','Israel_TM_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2040','Locodjo_1965_UTM_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2041','Abidjan_1987_UTM_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2042','Locodjo_1965_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2043','Abidjan_1987_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2044','Hanoi_1972_GK_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2045','Hanoi_1972_GK_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2056','CH1903+_LV95','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2057','Rassadiran_Nakhl_e_Taqi','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2058','ED_1950_ED77_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2059','ED_1950_ED77_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2060','ED_1950_ED77_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2061','ED_1950_ED77_UTM_Zone_41N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2062','Madrid_1870_Madrid_Spain','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2063','Dabola_1981_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2064','Dabola_1981_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2065','S-JTSK_Ferro_Krovak','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2066','Mount_Dillon_Tobago_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2067','Naparima_1955_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2068','ELD_1979_Libya_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2069','ELD_1979_Libya_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2070','ELD_1979_Libya_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2071','ELD_1979_Libya_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2072','ELD_1979_Libya_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2073','ELD_1979_Libya_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2074','ELD_1979_Libya_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2075','ELD_1979_Libya_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2076','ELD_1979_Libya_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2077','ELD_1979_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2078','ELD_1979_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2079','ELD_1979_UTM_Zone_34N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2080','ELD_1979_UTM_Zone_35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2081','Chos_Malal_1914_Argentina_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2082','Pampa_del_Castillo_Argentina_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2083','Hito_XVIII_1963_Argentina_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2084','Hito_XVIII_1963_UTM_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2085','NAD_1927_Cuba_Norte','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2086','NAD_1927_Cuba_Sur','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2087','ELD_1979_TM_12_NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2088','Carthage_TM_11_NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2089','Yemen_NGN_1996_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2090','Yemen_NGN_1996_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2091','South_Yemen_GK_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2092','South_Yemen_GK_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2093','Hanoi_1972_GK_106_NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2094','WGS_1972_BE_TM_106_NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2095','Bissau_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2096','Korean_1985_Korea_East_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2097','Korean_1985_Korea_Central_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2098','Korean_1985_Korea_West_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2099','Qatar_1948_Qatar_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2100','Greek_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2101','Lake_Maracaibo_Grid_M1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2102','Lake_Maracaibo_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2103','Lake_Maracaibo_Grid_M3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2104','Lake_Maracaibo_La_Rosa_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2105','NZGD_2000_Mount_Eden_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2106','NZGD_2000_Bay_of_Plenty_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2107','NZGD_2000_Poverty_Bay_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2108','NZGD_2000_Hawkes_Bay_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2109','NZGD_2000_Taranaki_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2110','NZGD_2000_Tuhirangi_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2111','NZGD_2000_Wanganui_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2112','NZGD_2000_Wairarapa_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2113','NZGD_2000_Wellington_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2114','NZGD_2000_Collingwood_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2115','NZGD_2000_Nelson_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2116','NZGD_2000_Karamea_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2117','NZGD_2000_Buller_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2118','NZGD_2000_Grey_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2119','NZGD_2000_Amuri_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2120','NZGD_2000_Marlborough_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2121','NZGD_2000_Hokitika_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2122','NZGD_2000_Okarito_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2123','NZGD_2000_Jacksons_Bay_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2124','NZGD_2000_Mount_Pleasant_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2125','NZGD_2000_Gawler_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2126','NZGD_2000_Timaru_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2127','NZGD_2000_Lindis_Peak_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2128','NZGD_2000_Mount_Nicholas_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2129','NZGD_2000_Mount_York_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2130','NZGD_2000_Observation_Point_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2131','NZGD_2000_North_Taieri_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2132','NZGD_2000_Bluff_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2133','NZGD_2000_UTM_Zone_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2134','NZGD_2000_UTM_Zone_59S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2135','NZGD_2000_UTM_Zone_60S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2136','Accra_Ghana_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2137','Accra_TM_1_NW','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2138','NAD_1927_CGQ77_Quebec_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2139','NAD_1983_CSRS_MTM_2_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2140','NAD_1983_CSRS_MTM_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2141','NAD_1983_CSRS_MTM_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2142','NAD_1983_CSRS_MTM_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2143','NAD_1983_CSRS_MTM_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2144','NAD_1983_CSRS_MTM_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2145','NAD_1983_CSRS_MTM_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2146','NAD_1983_CSRS_MTM_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2147','NAD_1983_CSRS_MTM_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2148','NAD_1983_CSRS_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2149','NAD_1983_CSRS_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2150','NAD_1983_CSRS_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2151','NAD_1983_CSRS_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2152','NAD_1983_CSRS_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2153','NAD_1983_CSRS_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2154','RGF_1993_Lambert_93','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2155','Samoa_1962_Samoa_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2157','IRENET95_Irish_Transverse_Mercator','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2158','IRENET95_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2159','Sierra_Leone_1924_New_Colony_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2160','Sierra_Leone_1924_New_War_Office_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2161','Sierra_Leone_1968_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2162','Sierra_Leone_1968_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2163','US_National_Atlas_Equal_Area','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2164','Locodjo_1965_TM_5_NW','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2165','Abidjan_1987_TM_5_NW','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2166','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2167','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2168','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2169','Luxembourg_1930_Gauss','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2170','MGI_Slovenia_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2172','Pulkovo_1942_Adj_1958_Poland_Zone_II','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2173','Pulkovo_1942_Adj_1958_Poland_Zone_III','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2174','Pulkovo_1942_Adj_1958_Poland_Zone_IV','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2175','Pulkovo_1942_Adj_1958_Poland_Zone_V','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2176','ETRS_1989_Poland_CS2000_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2177','ETRS_1989_Poland_CS2000_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2178','ETRS_1989_Poland_CS2000_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2179','ETRS_1989_Poland_CS2000_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2180','ETRS_1989_Poland_CS92','ESRI'); INSERT INTO "conversion" VALUES('ESRI','2181','unnamed',NULL,NULL,'EPSG','1524','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',9500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','2181','ED_1950_Turkey_9',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','2181','EPSG','1524',NULL,1); INSERT INTO "conversion" VALUES('ESRI','2182','unnamed',NULL,NULL,'EPSG','1525','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',10500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','2182','ED_1950_Turkey_10',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','2182','EPSG','1525',NULL,1); INSERT INTO "conversion" VALUES('ESRI','2183','unnamed',NULL,NULL,'EPSG','1526','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',11500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','2183','ED_1950_Turkey_11',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','2183','EPSG','1526',NULL,1); INSERT INTO "conversion" VALUES('ESRI','2184','unnamed',NULL,NULL,'EPSG','1527','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',36.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',12500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','2184','ED_1950_Turkey_12',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','2184','EPSG','1527',NULL,1); INSERT INTO "conversion" VALUES('ESRI','2185','unnamed',NULL,NULL,'EPSG','1528','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',13500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','2185','ED_1950_Turkey_13',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','2185','EPSG','1528',NULL,1); INSERT INTO "conversion" VALUES('ESRI','2186','unnamed',NULL,NULL,'EPSG','1529','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',42.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',14500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','2186','ED_1950_Turkey_14',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','2186','EPSG','1529',NULL,1); INSERT INTO "conversion" VALUES('ESRI','2187','unnamed',NULL,NULL,'EPSG','1530','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',15500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','2187','ED_1950_Turkey_15',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','2187','EPSG','1530',NULL,1); INSERT INTO alias_name VALUES('projected_crs','EPSG','2188','Azores_Occidental_1939_UTM_Zone_25N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2189','Azores_Central_1948_UTM_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2190','Azores_Oriental_1940_UTM_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2191','Madeira_1936_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2192','ED_1950_France_EuroLambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2193','NZGD_2000_New_Zealand_Transverse_Mercator','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2195','NAD_1983_HARN_UTM_Zone_2S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2196','ETRS_1989_Kp2000_Jutland','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2197','ETRS_1989_Kp2000_Zealand','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2198','ETRS_1989_Kp2000_Bornholm','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2200','ATS_1977_New_Brunswick_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2201','REGVEN_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2202','REGVEN_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2203','REGVEN_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2204','NAD_1927_StatePlane_Tennessee_FIPS_4100','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2205','NAD_1983_StatePlane_Kentucky_North_FIPS_1601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2206','ED_1950_3_Degree_GK_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2207','ED_1950_3_Degree_GK_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2208','ED_1950_3_Degree_GK_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2209','ED_1950_3_Degree_GK_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2210','ED_1950_3_Degree_GK_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2211','ED_1950_3_Degree_GK_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2212','ED_1950_3_Degree_GK_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2213','ETRS_1989_TM_30_NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2214','Douala_1948_AEF_West','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2215','Manoca_1962_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2216','Qornoq_1927_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2217','Qornoq_1927_UTM_Zone_23N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2219','ATS_1977_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2220','ATS_1977_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2222','NAD_1983_StatePlane_Arizona_East_FIPS_0201_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2223','NAD_1983_StatePlane_Arizona_Central_FIPS_0202_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2224','NAD_1983_StatePlane_Arizona_West_FIPS_0203_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2225','NAD_1983_StatePlane_California_I_FIPS_0401_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2226','NAD_1983_StatePlane_California_II_FIPS_0402_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2227','NAD_1983_StatePlane_California_III_FIPS_0403_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2228','NAD_1983_StatePlane_California_IV_FIPS_0404_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2229','NAD_1983_StatePlane_California_V_FIPS_0405_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2230','NAD_1983_StatePlane_California_VI_FIPS_0406_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2231','NAD_1983_StatePlane_Colorado_North_FIPS_0501_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2232','NAD_1983_StatePlane_Colorado_Central_FIPS_0502_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2233','NAD_1983_StatePlane_Colorado_South_FIPS_0503_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2234','NAD_1983_StatePlane_Connecticut_FIPS_0600_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2235','NAD_1983_StatePlane_Delaware_FIPS_0700_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2236','NAD_1983_StatePlane_Florida_East_FIPS_0901_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2237','NAD_1983_StatePlane_Florida_West_FIPS_0902_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2238','NAD_1983_StatePlane_Florida_North_FIPS_0903_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2239','NAD_1983_StatePlane_Georgia_East_FIPS_1001_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2240','NAD_1983_StatePlane_Georgia_West_FIPS_1002_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2241','NAD_1983_StatePlane_Idaho_East_FIPS_1101_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2242','NAD_1983_StatePlane_Idaho_Central_FIPS_1102_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2243','NAD_1983_StatePlane_Idaho_West_FIPS_1103_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2244','NAD_1983_StatePlane_Indiana_East_FIPS_1301_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2245','NAD_1983_StatePlane_Indiana_West_FIPS_1302_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2246','NAD_1983_StatePlane_Kentucky_North_FIPS_1601_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2247','NAD_1983_StatePlane_Kentucky_South_FIPS_1602_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2248','NAD_1983_StatePlane_Maryland_FIPS_1900_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2249','NAD_1983_StatePlane_Massachusetts_Mainland_FIPS_2001_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2250','NAD_1983_StatePlane_Massachusetts_Island_FIPS_2002_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2251','NAD_1983_StatePlane_Michigan_North_FIPS_2111_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2252','NAD_1983_StatePlane_Michigan_Central_FIPS_2112_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2253','NAD_1983_StatePlane_Michigan_South_FIPS_2113_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2254','NAD_1983_StatePlane_Mississippi_East_FIPS_2301_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2255','NAD_1983_StatePlane_Mississippi_West_FIPS_2302_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2256','NAD_1983_StatePlane_Montana_FIPS_2500_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2257','NAD_1983_StatePlane_New_Mexico_East_FIPS_3001_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2258','NAD_1983_StatePlane_New_Mexico_Central_FIPS_3002_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2259','NAD_1983_StatePlane_New_Mexico_West_FIPS_3003_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2260','NAD_1983_StatePlane_New_York_East_FIPS_3101_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2261','NAD_1983_StatePlane_New_York_Central_FIPS_3102_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2262','NAD_1983_StatePlane_New_York_West_FIPS_3103_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2263','NAD_1983_StatePlane_New_York_Long_Island_FIPS_3104_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2264','NAD_1983_StatePlane_North_Carolina_FIPS_3200_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2265','NAD_1983_StatePlane_North_Dakota_North_FIPS_3301_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2266','NAD_1983_StatePlane_North_Dakota_South_FIPS_3302_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2267','NAD_1983_StatePlane_Oklahoma_North_FIPS_3501_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2268','NAD_1983_StatePlane_Oklahoma_South_FIPS_3502_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2269','NAD_1983_StatePlane_Oregon_North_FIPS_3601_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2270','NAD_1983_StatePlane_Oregon_South_FIPS_3602_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2271','NAD_1983_StatePlane_Pennsylvania_North_FIPS_3701_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2272','NAD_1983_StatePlane_Pennsylvania_South_FIPS_3702_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2273','NAD_1983_StatePlane_South_Carolina_FIPS_3900_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2274','NAD_1983_StatePlane_Tennessee_FIPS_4100_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2275','NAD_1983_StatePlane_Texas_North_FIPS_4201_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2276','NAD_1983_StatePlane_Texas_North_Central_FIPS_4202_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2277','NAD_1983_StatePlane_Texas_Central_FIPS_4203_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2278','NAD_1983_StatePlane_Texas_South_Central_FIPS_4204_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2279','NAD_1983_StatePlane_Texas_South_FIPS_4205_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2280','NAD_1983_StatePlane_Utah_North_FIPS_4301_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2281','NAD_1983_StatePlane_Utah_Central_FIPS_4302_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2282','NAD_1983_StatePlane_Utah_South_FIPS_4303_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2283','NAD_1983_StatePlane_Virginia_North_FIPS_4501_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2284','NAD_1983_StatePlane_Virginia_South_FIPS_4502_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2285','NAD_1983_StatePlane_Washington_North_FIPS_4601_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2286','NAD_1983_StatePlane_Washington_South_FIPS_4602_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2287','NAD_1983_StatePlane_Wisconsin_North_FIPS_4801_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2288','NAD_1983_StatePlane_Wisconsin_Central_FIPS_4802_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2289','NAD_1983_StatePlane_Wisconsin_South_FIPS_4803_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2290','Prince_Edward_Island_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2291','NAD_1983_CSRS_Prince_Edward_Island','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2292','NAD_1983_CSRS_Prince_Edward_Island','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2294','ATS_1977_MTM_4_Nova_Scotia','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2295','ATS_1977_MTM_5_Nova_Scotia','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2308','Batavia_TM_109_SE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2309','WGS_1984_TM_116_SE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2310','WGS_1984_TM_132_SE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2311','WGS_1984_TM_6_NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2312','Garoua_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2313','Kousseri_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2314','Trinidad_1903_Trinidad_Grid_Feet_Clarke','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2315','Campo_Inchauspe_UTM_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2316','Campo_Inchauspe_UTM_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2317','PSAD_1956_ICN_Regional','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2318','Ain_el_Abd_Aramco_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2319','ED_1950_TM27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2320','ED_1950_TM30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2321','ED_1950_TM33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2322','ED_1950_TM36','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2323','ED_1950_TM39','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2324','ED_1950_TM42','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2325','ED_1950_TM45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2326','Hong_Kong_1980_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2327','Xian_1980_GK_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2328','Xian_1980_GK_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2329','Xian_1980_GK_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2330','Xian_1980_GK_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2331','Xian_1980_GK_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2332','Xian_1980_GK_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2333','Xian_1980_GK_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2334','Xian_1980_GK_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2335','Xian_1980_GK_Zone_21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2336','Xian_1980_GK_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2337','Xian_1980_GK_Zone_23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2338','Xian_1980_GK_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2339','Xian_1980_GK_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2340','Xian_1980_GK_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2341','Xian_1980_GK_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2342','Xian_1980_GK_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2343','Xian_1980_GK_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2344','Xian_1980_GK_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2345','Xian_1980_GK_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2346','Xian_1980_GK_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2347','Xian_1980_GK_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2348','Xian_1980_GK_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2349','Xian_1980_3_Degree_GK_Zone_25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2350','Xian_1980_3_Degree_GK_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2351','Xian_1980_3_Degree_GK_Zone_27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2352','Xian_1980_3_Degree_GK_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2353','Xian_1980_3_Degree_GK_Zone_29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2354','Xian_1980_3_Degree_GK_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2355','Xian_1980_3_Degree_GK_Zone_31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2356','Xian_1980_3_Degree_GK_Zone_32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2357','Xian_1980_3_Degree_GK_Zone_33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2358','Xian_1980_3_Degree_GK_Zone_34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2359','Xian_1980_3_Degree_GK_Zone_35','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2360','Xian_1980_3_Degree_GK_Zone_36','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2361','Xian_1980_3_Degree_GK_Zone_37','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2362','Xian_1980_3_Degree_GK_Zone_38','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2363','Xian_1980_3_Degree_GK_Zone_39','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2364','Xian_1980_3_Degree_GK_Zone_40','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2365','Xian_1980_3_Degree_GK_Zone_41','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2366','Xian_1980_3_Degree_GK_Zone_42','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2367','Xian_1980_3_Degree_GK_Zone_43','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2368','Xian_1980_3_Degree_GK_Zone_44','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2369','Xian_1980_3_Degree_GK_Zone_45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2370','Xian_1980_3_Degree_GK_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2371','Xian_1980_3_Degree_GK_CM_78E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2372','Xian_1980_3_Degree_GK_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2373','Xian_1980_3_Degree_GK_CM_84E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2374','Xian_1980_3_Degree_GK_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2375','Xian_1980_3_Degree_GK_CM_90E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2376','Xian_1980_3_Degree_GK_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2377','Xian_1980_3_Degree_GK_CM_96E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2378','Xian_1980_3_Degree_GK_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2379','Xian_1980_3_Degree_GK_CM_102E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2380','Xian_1980_3_Degree_GK_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2381','Xian_1980_3_Degree_GK_CM_108E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2382','Xian_1980_3_Degree_GK_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2383','Xian_1980_3_Degree_GK_CM_114E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2384','Xian_1980_3_Degree_GK_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2385','Xian_1980_3_Degree_GK_CM_120E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2386','Xian_1980_3_Degree_GK_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2387','Xian_1980_3_Degree_GK_CM_126E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2388','Xian_1980_3_Degree_GK_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2389','Xian_1980_3_Degree_GK_CM_132E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2390','Xian_1980_3_Degree_GK_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2391','Finland_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2392','Finland_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2393','Finland_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2394','Finland_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2395','South_Yemen_GK_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2396','South_Yemen_GK_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2397','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2398','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2399','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2400','RT90_25_gon_W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2401','Beijing_1954_3_Degree_GK_Zone_25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2402','Beijing_1954_3_Degree_GK_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2403','Beijing_1954_3_Degree_GK_Zone_27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2404','Beijing_1954_3_Degree_GK_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2405','Beijing_1954_3_Degree_GK_Zone_29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2406','Beijing_1954_3_Degree_GK_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2407','Beijing_1954_3_Degree_GK_Zone_31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2408','Beijing_1954_3_Degree_GK_Zone_32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2409','Beijing_1954_3_Degree_GK_Zone_33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2410','Beijing_1954_3_Degree_GK_Zone_34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2411','Beijing_1954_3_Degree_GK_Zone_35','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2412','Beijing_1954_3_Degree_GK_Zone_36','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2413','Beijing_1954_3_Degree_GK_Zone_37','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2414','Beijing_1954_3_Degree_GK_Zone_38','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2415','Beijing_1954_3_Degree_GK_Zone_39','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2416','Beijing_1954_3_Degree_GK_Zone_40','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2417','Beijing_1954_3_Degree_GK_Zone_41','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2418','Beijing_1954_3_Degree_GK_Zone_42','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2419','Beijing_1954_3_Degree_GK_Zone_43','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2420','Beijing_1954_3_Degree_GK_Zone_44','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2421','Beijing_1954_3_Degree_GK_Zone_45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2422','Beijing_1954_3_Degree_GK_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2423','Beijing_1954_3_Degree_GK_CM_78E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2424','Beijing_1954_3_Degree_GK_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2425','Beijing_1954_3_Degree_GK_CM_84E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2426','Beijing_1954_3_Degree_GK_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2427','Beijing_1954_3_Degree_GK_CM_90E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2428','Beijing_1954_3_Degree_GK_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2429','Beijing_1954_3_Degree_GK_CM_96E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2430','Beijing_1954_3_Degree_GK_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2431','Beijing_1954_3_Degree_GK_CM_102E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2432','Beijing_1954_3_Degree_GK_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2433','Beijing_1954_3_Degree_GK_CM_108E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2434','Beijing_1954_3_Degree_GK_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2435','Beijing_1954_3_Degree_GK_CM_114E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2436','Beijing_1954_3_Degree_GK_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2437','Beijing_1954_3_Degree_GK_CM_120E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2438','Beijing_1954_3_Degree_GK_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2439','Beijing_1954_3_Degree_GK_CM_126E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2440','Beijing_1954_3_Degree_GK_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2441','Beijing_1954_3_Degree_GK_CM_132E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2442','Beijing_1954_3_Degree_GK_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2443','JGD_2000_Japan_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2444','JGD_2000_Japan_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2445','JGD_2000_Japan_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2446','JGD_2000_Japan_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2447','JGD_2000_Japan_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2448','JGD_2000_Japan_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2449','JGD_2000_Japan_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2450','JGD_2000_Japan_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2451','JGD_2000_Japan_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2452','JGD_2000_Japan_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2453','JGD_2000_Japan_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2454','JGD_2000_Japan_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2455','JGD_2000_Japan_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2456','JGD_2000_Japan_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2457','JGD_2000_Japan_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2458','JGD_2000_Japan_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2459','JGD_2000_Japan_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2460','JGD_2000_Japan_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2461','JGD_2000_Japan_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2462','Albanian_1987_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2463','Pulkovo_1995_Gauss-Kruger_CM_21E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2464','Pulkovo_1995_Gauss-Kruger_CM_27E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2465','Pulkovo_1995_Gauss-Kruger_CM_33E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2466','Pulkovo_1995_Gauss-Kruger_CM_39E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2467','Pulkovo_1995_Gauss-Kruger_CM_45E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2468','Pulkovo_1995_Gauss-Kruger_CM_51E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2469','Pulkovo_1995_Gauss-Kruger_CM_57E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2470','Pulkovo_1995_Gauss-Kruger_CM_63E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2471','Pulkovo_1995_Gauss-Kruger_CM_69E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2472','Pulkovo_1995_Gauss-Kruger_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2473','Pulkovo_1995_Gauss-Kruger_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2474','Pulkovo_1995_Gauss-Kruger_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2475','Pulkovo_1995_Gauss-Kruger_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2476','Pulkovo_1995_Gauss-Kruger_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2477','Pulkovo_1995_Gauss-Kruger_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2478','Pulkovo_1995_Gauss-Kruger_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2479','Pulkovo_1995_Gauss-Kruger_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2480','Pulkovo_1995_Gauss-Kruger_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2481','Pulkovo_1995_Gauss-Kruger_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2482','Pulkovo_1995_Gauss-Kruger_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2483','Pulkovo_1995_Gauss-Kruger_CM_141E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2484','Pulkovo_1995_Gauss-Kruger_CM_147E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2485','Pulkovo_1995_Gauss-Kruger_CM_153E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2486','Pulkovo_1995_Gauss-Kruger_CM_159E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2487','Pulkovo_1995_Gauss-Kruger_CM_165E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2488','Pulkovo_1995_Gauss-Kruger_CM_171E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2489','Pulkovo_1995_Gauss-Kruger_CM_177E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2490','Pulkovo_1995_Gauss-Kruger_CM_177W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2491','Pulkovo_1995_Gauss-Kruger_CM_171W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2494','Pulkovo_1942_Gauss-Kruger_CM_21E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2495','Pulkovo_1942_Gauss-Kruger_CM_27E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2496','Pulkovo_1942_Gauss-Kruger_CM_33E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2497','Pulkovo_1942_Gauss-Kruger_CM_39E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2498','Pulkovo_1942_Gauss-Kruger_CM_45E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2499','Pulkovo_1942_Gauss-Kruger_CM_51E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2500','Pulkovo_1942_Gauss-Kruger_CM_57E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2501','Pulkovo_1942_Gauss-Kruger_CM_63E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2502','Pulkovo_1942_Gauss-Kruger_CM_69E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2503','Pulkovo_1942_Gauss-Kruger_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2504','Pulkovo_1942_Gauss-Kruger_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2505','Pulkovo_1942_Gauss-Kruger_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2506','Pulkovo_1942_Gauss-Kruger_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2507','Pulkovo_1942_Gauss-Kruger_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2508','Pulkovo_1942_Gauss-Kruger_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2509','Pulkovo_1942_Gauss-Kruger_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2510','Pulkovo_1942_Gauss-Kruger_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2511','Pulkovo_1942_Gauss-Kruger_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2512','Pulkovo_1942_Gauss-Kruger_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2513','Pulkovo_1942_Gauss-Kruger_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2514','Pulkovo_1942_Gauss-Kruger_CM_141E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2515','Pulkovo_1942_Gauss-Kruger_CM_147E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2516','Pulkovo_1942_Gauss-Kruger_CM_153E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2517','Pulkovo_1942_Gauss-Kruger_CM_159E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2518','Pulkovo_1942_Gauss-Kruger_CM_165E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2519','Pulkovo_1942_Gauss-Kruger_CM_171E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2520','Pulkovo_1942_Gauss-Kruger_CM_177E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2521','Pulkovo_1942_Gauss-Kruger_CM_177W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2522','Pulkovo_1942_Gauss-Kruger_CM_171W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2523','Pulkovo_1942_3_Degree_GK_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2524','Pulkovo_1942_3_Degree_GK_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2525','Pulkovo_1942_3_Degree_GK_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2526','Pulkovo_1942_3_Degree_GK_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2527','Pulkovo_1942_3_Degree_GK_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2528','Pulkovo_1942_3_Degree_GK_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2529','Pulkovo_1942_3_Degree_GK_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2530','Pulkovo_1942_3_Degree_GK_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2531','Pulkovo_1942_3_Degree_GK_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2532','Pulkovo_1942_3_Degree_GK_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2533','Pulkovo_1942_3_Degree_GK_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2534','Pulkovo_1942_3_Degree_GK_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2535','Pulkovo_1942_3_Degree_GK_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2536','Pulkovo_1942_3_Degree_GK_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2537','Pulkovo_1942_3_Degree_GK_Zone_21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2538','Pulkovo_1942_3_Degree_GK_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2539','Pulkovo_1942_3_Degree_GK_Zone_23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2540','Pulkovo_1942_3_Degree_GK_Zone_24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2541','Pulkovo_1942_3_Degree_GK_Zone_25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2542','Pulkovo_1942_3_Degree_GK_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2543','Pulkovo_1942_3_Degree_GK_Zone_27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2544','Pulkovo_1942_3_Degree_GK_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2545','Pulkovo_1942_3_Degree_GK_Zone_29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2546','Pulkovo_1942_3_Degree_GK_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2547','Pulkovo_1942_3_Degree_GK_Zone_31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2548','Pulkovo_1942_3_Degree_GK_Zone_32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2549','Pulkovo_1942_3_Degree_GK_Zone_33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2550','Samboja_UTM_Zone_50S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2551','Pulkovo_1942_3_Degree_GK_Zone_34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2552','Pulkovo_1942_3_Degree_GK_Zone_35','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2553','Pulkovo_1942_3_Degree_GK_Zone_36','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2554','Pulkovo_1942_3_Degree_GK_Zone_37','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2555','Pulkovo_1942_3_Degree_GK_Zone_38','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2556','Pulkovo_1942_3_Degree_GK_Zone_39','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2557','Pulkovo_1942_3_Degree_GK_Zone_40','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2558','Pulkovo_1942_3_Degree_GK_Zone_41','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2559','Pulkovo_1942_3_Degree_GK_Zone_42','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2560','Pulkovo_1942_3_Degree_GK_Zone_43','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2561','Pulkovo_1942_3_Degree_GK_Zone_44','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2562','Pulkovo_1942_3_Degree_GK_Zone_45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2563','Pulkovo_1942_3_Degree_GK_Zone_46','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2564','Pulkovo_1942_3_Degree_GK_Zone_47','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2565','Pulkovo_1942_3_Degree_GK_Zone_48','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2566','Pulkovo_1942_3_Degree_GK_Zone_49','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2567','Pulkovo_1942_3_Degree_GK_Zone_50','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2568','Pulkovo_1942_3_Degree_GK_Zone_51','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2569','Pulkovo_1942_3_Degree_GK_Zone_52','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2570','Pulkovo_1942_3_Degree_GK_Zone_53','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2571','Pulkovo_1942_3_Degree_GK_Zone_54','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2572','Pulkovo_1942_3_Degree_GK_Zone_55','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2573','Pulkovo_1942_3_Degree_GK_Zone_56','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2574','Pulkovo_1942_3_Degree_GK_Zone_57','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2575','Pulkovo_1942_3_Degree_GK_Zone_58','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2576','Pulkovo_1942_3_Degree_GK_Zone_59','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2577','Pulkovo_1942_3_Degree_GK_Zone_60','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2578','Pulkovo_1942_3_Degree_GK_Zone_61','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2579','Pulkovo_1942_3_Degree_GK_Zone_62','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2580','Pulkovo_1942_3_Degree_GK_Zone_63','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2581','Pulkovo_1942_3_Degree_GK_Zone_64','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2582','Pulkovo_1942_3_Degree_GK_CM_21E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2583','Pulkovo_1942_3_Degree_GK_CM_24E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2584','Pulkovo_1942_3_Degree_GK_CM_27E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2585','Pulkovo_1942_3_Degree_GK_CM_30E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2586','Pulkovo_1942_3_Degree_GK_CM_33E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2587','Pulkovo_1942_3_Degree_GK_CM_36E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2588','Pulkovo_1942_3_Degree_GK_CM_39E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2589','Pulkovo_1942_3_Degree_GK_CM_42E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2590','Pulkovo_1942_3_Degree_GK_CM_45E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2591','Pulkovo_1942_3_Degree_GK_CM_48E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2592','Pulkovo_1942_3_Degree_GK_CM_51E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2593','Pulkovo_1942_3_Degree_GK_CM_54E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2594','Pulkovo_1942_3_Degree_GK_CM_57E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2595','Pulkovo_1942_3_Degree_GK_CM_60E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2596','Pulkovo_1942_3_Degree_GK_CM_63E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2597','Pulkovo_1942_3_Degree_GK_CM_66E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2598','Pulkovo_1942_3_Degree_GK_CM_69E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2599','Pulkovo_1942_3_Degree_GK_CM_72E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2600','LKS_1994_Lithuania_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2601','Pulkovo_1942_3_Degree_GK_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2602','Pulkovo_1942_3_Degree_GK_CM_78E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2603','Pulkovo_1942_3_Degree_GK_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2604','Pulkovo_1942_3_Degree_GK_CM_84E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2605','Pulkovo_1942_3_Degree_GK_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2606','Pulkovo_1942_3_Degree_GK_CM_90E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2607','Pulkovo_1942_3_Degree_GK_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2608','Pulkovo_1942_3_Degree_GK_CM_96E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2609','Pulkovo_1942_3_Degree_GK_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2610','Pulkovo_1942_3_Degree_GK_CM_102E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2611','Pulkovo_1942_3_Degree_GK_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2612','Pulkovo_1942_3_Degree_GK_CM_108E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2613','Pulkovo_1942_3_Degree_GK_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2614','Pulkovo_1942_3_Degree_GK_CM_114E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2615','Pulkovo_1942_3_Degree_GK_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2616','Pulkovo_1942_3_Degree_GK_CM_120E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2617','Pulkovo_1942_3_Degree_GK_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2618','Pulkovo_1942_3_Degree_GK_CM_126E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2619','Pulkovo_1942_3_Degree_GK_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2620','Pulkovo_1942_3_Degree_GK_CM_132E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2621','Pulkovo_1942_3_Degree_GK_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2622','Pulkovo_1942_3_Degree_GK_CM_138E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2623','Pulkovo_1942_3_Degree_GK_CM_141E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2624','Pulkovo_1942_3_Degree_GK_CM_144E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2625','Pulkovo_1942_3_Degree_GK_CM_147E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2626','Pulkovo_1942_3_Degree_GK_CM_150E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2627','Pulkovo_1942_3_Degree_GK_CM_153E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2628','Pulkovo_1942_3_Degree_GK_CM_156E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2629','Pulkovo_1942_3_Degree_GK_CM_159E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2630','Pulkovo_1942_3_Degree_GK_CM_162E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2631','Pulkovo_1942_3_Degree_GK_CM_165E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2632','Pulkovo_1942_3_Degree_GK_CM_168E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2633','Pulkovo_1942_3_Degree_GK_CM_171E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2634','Pulkovo_1942_3_Degree_GK_CM_174E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2635','Pulkovo_1942_3_Degree_GK_CM_177E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2636','Pulkovo_1942_3_Degree_GK_CM_180E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2637','Pulkovo_1942_3_Degree_GK_CM_177W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2638','Pulkovo_1942_3_Degree_GK_CM_174W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2639','Pulkovo_1942_3_Degree_GK_CM_171W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2640','Pulkovo_1942_3_Degree_GK_CM_168W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2641','Pulkovo_1995_3_Degree_GK_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2642','Pulkovo_1995_3_Degree_GK_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2643','Pulkovo_1995_3_Degree_GK_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2644','Pulkovo_1995_3_Degree_GK_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2645','Pulkovo_1995_3_Degree_GK_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2646','Pulkovo_1995_3_Degree_GK_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2647','Pulkovo_1995_3_Degree_GK_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2648','Pulkovo_1995_3_Degree_GK_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2649','Pulkovo_1995_3_Degree_GK_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2650','Pulkovo_1995_3_Degree_GK_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2651','Pulkovo_1995_3_Degree_GK_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2652','Pulkovo_1995_3_Degree_GK_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2653','Pulkovo_1995_3_Degree_GK_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2654','Pulkovo_1995_3_Degree_GK_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2655','Pulkovo_1995_3_Degree_GK_Zone_21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2656','Pulkovo_1995_3_Degree_GK_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2657','Pulkovo_1995_3_Degree_GK_Zone_23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2658','Pulkovo_1995_3_Degree_GK_Zone_24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2659','Pulkovo_1995_3_Degree_GK_Zone_25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2660','Pulkovo_1995_3_Degree_GK_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2661','Pulkovo_1995_3_Degree_GK_Zone_27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2662','Pulkovo_1995_3_Degree_GK_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2663','Pulkovo_1995_3_Degree_GK_Zone_29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2664','Pulkovo_1995_3_Degree_GK_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2665','Pulkovo_1995_3_Degree_GK_Zone_31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2666','Pulkovo_1995_3_Degree_GK_Zone_32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2667','Pulkovo_1995_3_Degree_GK_Zone_33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2668','Pulkovo_1995_3_Degree_GK_Zone_34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2669','Pulkovo_1995_3_Degree_GK_Zone_35','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2670','Pulkovo_1995_3_Degree_GK_Zone_36','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2671','Pulkovo_1995_3_Degree_GK_Zone_37','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2672','Pulkovo_1995_3_Degree_GK_Zone_38','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2673','Pulkovo_1995_3_Degree_GK_Zone_39','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2674','Pulkovo_1995_3_Degree_GK_Zone_40','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2675','Pulkovo_1995_3_Degree_GK_Zone_41','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2676','Pulkovo_1995_3_Degree_GK_Zone_42','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2677','Pulkovo_1995_3_Degree_GK_Zone_43','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2678','Pulkovo_1995_3_Degree_GK_Zone_44','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2679','Pulkovo_1995_3_Degree_GK_Zone_45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2680','Pulkovo_1995_3_Degree_GK_Zone_46','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2681','Pulkovo_1995_3_Degree_GK_Zone_47','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2682','Pulkovo_1995_3_Degree_GK_Zone_48','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2683','Pulkovo_1995_3_Degree_GK_Zone_49','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2684','Pulkovo_1995_3_Degree_GK_Zone_50','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2685','Pulkovo_1995_3_Degree_GK_Zone_51','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2686','Pulkovo_1995_3_Degree_GK_Zone_52','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2687','Pulkovo_1995_3_Degree_GK_Zone_53','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2688','Pulkovo_1995_3_Degree_GK_Zone_54','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2689','Pulkovo_1995_3_Degree_GK_Zone_55','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2690','Pulkovo_1995_3_Degree_GK_Zone_56','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2691','Pulkovo_1995_3_Degree_GK_Zone_57','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2692','Pulkovo_1995_3_Degree_GK_Zone_58','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2693','Pulkovo_1995_3_Degree_GK_Zone_59','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2694','Pulkovo_1995_3_Degree_GK_Zone_60','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2695','Pulkovo_1995_3_Degree_GK_Zone_61','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2696','Pulkovo_1995_3_Degree_GK_Zone_62','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2697','Pulkovo_1995_3_Degree_GK_Zone_63','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2698','Pulkovo_1995_3_Degree_GK_Zone_64','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2699','Pulkovo_1995_3_Degree_GK_CM_21E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2700','Pulkovo_1995_3_Degree_GK_CM_24E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2701','Pulkovo_1995_3_Degree_GK_CM_27E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2702','Pulkovo_1995_3_Degree_GK_CM_30E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2703','Pulkovo_1995_3_Degree_GK_CM_33E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2704','Pulkovo_1995_3_Degree_GK_CM_36E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2705','Pulkovo_1995_3_Degree_GK_CM_39E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2706','Pulkovo_1995_3_Degree_GK_CM_42E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2707','Pulkovo_1995_3_Degree_GK_CM_45E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2708','Pulkovo_1995_3_Degree_GK_CM_48E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2709','Pulkovo_1995_3_Degree_GK_CM_51E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2710','Pulkovo_1995_3_Degree_GK_CM_54E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2711','Pulkovo_1995_3_Degree_GK_CM_57E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2712','Pulkovo_1995_3_Degree_GK_CM_60E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2713','Pulkovo_1995_3_Degree_GK_CM_63E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2714','Pulkovo_1995_3_Degree_GK_CM_66E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2715','Pulkovo_1995_3_Degree_GK_CM_69E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2716','Pulkovo_1995_3_Degree_GK_CM_72E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2717','Pulkovo_1995_3_Degree_GK_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2718','Pulkovo_1995_3_Degree_GK_CM_78E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2719','Pulkovo_1995_3_Degree_GK_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2720','Pulkovo_1995_3_Degree_GK_CM_84E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2721','Pulkovo_1995_3_Degree_GK_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2722','Pulkovo_1995_3_Degree_GK_CM_90E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2723','Pulkovo_1995_3_Degree_GK_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2724','Pulkovo_1995_3_Degree_GK_CM_96E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2725','Pulkovo_1995_3_Degree_GK_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2726','Pulkovo_1995_3_Degree_GK_CM_102E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2727','Pulkovo_1995_3_Degree_GK_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2728','Pulkovo_1995_3_Degree_GK_CM_108E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2729','Pulkovo_1995_3_Degree_GK_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2730','Pulkovo_1995_3_Degree_GK_CM_114E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2731','Pulkovo_1995_3_Degree_GK_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2732','Pulkovo_1995_3_Degree_GK_CM_120E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2733','Pulkovo_1995_3_Degree_GK_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2734','Pulkovo_1995_3_Degree_GK_CM_126E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2735','Pulkovo_1995_3_Degree_GK_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2736','Tete_UTM_Zone_36S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2737','Tete_UTM_Zone_37S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2738','Pulkovo_1995_3_Degree_GK_CM_132E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2739','Pulkovo_1995_3_Degree_GK_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2740','Pulkovo_1995_3_Degree_GK_CM_138E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2741','Pulkovo_1995_3_Degree_GK_CM_141E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2742','Pulkovo_1995_3_Degree_GK_CM_144E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2743','Pulkovo_1995_3_Degree_GK_CM_147E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2744','Pulkovo_1995_3_Degree_GK_CM_150E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2745','Pulkovo_1995_3_Degree_GK_CM_153E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2746','Pulkovo_1995_3_Degree_GK_CM_156E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2747','Pulkovo_1995_3_Degree_GK_CM_159E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2748','Pulkovo_1995_3_Degree_GK_CM_162E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2749','Pulkovo_1995_3_Degree_GK_CM_165E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2750','Pulkovo_1995_3_Degree_GK_CM_168E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2751','Pulkovo_1995_3_Degree_GK_CM_171E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2752','Pulkovo_1995_3_Degree_GK_CM_174E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2753','Pulkovo_1995_3_Degree_GK_CM_177E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2754','Pulkovo_1995_3_Degree_GK_CM_180E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2755','Pulkovo_1995_3_Degree_GK_CM_177W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2756','Pulkovo_1995_3_Degree_GK_CM_174W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2757','Pulkovo_1995_3_Degree_GK_CM_171W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2758','Pulkovo_1995_3_Degree_GK_CM_168W','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2759','NAD_1983_HARN_StatePlane_Alabama_East_FIPS_0101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2760','NAD_1983_HARN_StatePlane_Alabama_West_FIPS_0102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2761','NAD_1983_HARN_StatePlane_Arizona_East_FIPS_0201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2762','NAD_1983_HARN_StatePlane_Arizona_Central_FIPS_0202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2763','NAD_1983_HARN_StatePlane_Arizona_West_FIPS_0203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2764','NAD_1983_HARN_StatePlane_Arkansas_North_FIPS_0301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2765','NAD_1983_HARN_StatePlane_Arkansas_South_FIPS_0302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2766','NAD_1983_HARN_StatePlane_California_I_FIPS_0401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2767','NAD_1983_HARN_StatePlane_California_II_FIPS_0402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2768','NAD_1983_HARN_StatePlane_California_III_FIPS_0403','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2769','NAD_1983_HARN_StatePlane_California_IV_FIPS_0404','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2770','NAD_1983_HARN_StatePlane_California_V_FIPS_0405','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2771','NAD_1983_HARN_StatePlane_California_VI_FIPS_0406','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2772','NAD_1983_HARN_StatePlane_Colorado_North_FIPS_0501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2773','NAD_1983_HARN_StatePlane_Colorado_Central_FIPS_0502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2774','NAD_1983_HARN_StatePlane_Colorado_South_FIPS_0503','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2775','NAD_1983_HARN_StatePlane_Connecticut_FIPS_0600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2776','NAD_1983_HARN_StatePlane_Delaware_FIPS_0700','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2777','NAD_1983_HARN_StatePlane_Florida_East_FIPS_0901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2778','NAD_1983_HARN_StatePlane_Florida_West_FIPS_0902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2779','NAD_1983_HARN_StatePlane_Florida_North_FIPS_0903','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2780','NAD_1983_HARN_StatePlane_Georgia_East_FIPS_1001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2781','NAD_1983_HARN_StatePlane_Georgia_West_FIPS_1002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2782','NAD_1983_HARN_StatePlane_Hawaii_1_FIPS_5101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2783','NAD_1983_HARN_StatePlane_Hawaii_2_FIPS_5102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2784','NAD_1983_HARN_StatePlane_Hawaii_3_FIPS_5103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2785','NAD_1983_HARN_StatePlane_Hawaii_4_FIPS_5104','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2786','NAD_1983_HARN_StatePlane_Hawaii_5_FIPS_5105','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2787','NAD_1983_HARN_StatePlane_Idaho_East_FIPS_1101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2788','NAD_1983_HARN_StatePlane_Idaho_Central_FIPS_1102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2789','NAD_1983_HARN_StatePlane_Idaho_West_FIPS_1103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2790','NAD_1983_HARN_StatePlane_Illinois_East_FIPS_1201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2791','NAD_1983_HARN_StatePlane_Illinois_West_FIPS_1202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2792','NAD_1983_HARN_StatePlane_Indiana_East_FIPS_1301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2793','NAD_1983_HARN_StatePlane_Indiana_West_FIPS_1302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2794','NAD_1983_HARN_StatePlane_Iowa_North_FIPS_1401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2795','NAD_1983_HARN_StatePlane_Iowa_South_FIPS_1402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2796','NAD_1983_HARN_StatePlane_Kansas_North_FIPS_1501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2797','NAD_1983_HARN_StatePlane_Kansas_South_FIPS_1502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2798','NAD_1983_HARN_StatePlane_Kentucky_North_FIPS_1601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2799','NAD_1983_HARN_StatePlane_Kentucky_South_FIPS_1602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2800','NAD_1983_HARN_StatePlane_Louisiana_North_FIPS_1701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2801','NAD_1983_HARN_StatePlane_Louisiana_South_FIPS_1702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2802','NAD_1983_HARN_StatePlane_Maine_East_FIPS_1801','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2803','NAD_1983_HARN_StatePlane_Maine_West_FIPS_1802','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2804','NAD_1983_HARN_StatePlane_Maryland_FIPS_1900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2805','NAD_1983_HARN_StatePlane_Massachusetts_Mainland_FIPS_2001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2806','NAD_1983_HARN_StatePlane_Massachusetts_Island_FIPS_2002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2807','NAD_1983_HARN_StatePlane_Michigan_North_FIPS_2111','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2808','NAD_1983_HARN_StatePlane_Michigan_Central_FIPS_2112','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2809','NAD_1983_HARN_StatePlane_Michigan_South_FIPS_2113','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2810','NAD_1983_HARN_StatePlane_Minnesota_North_FIPS_2201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2811','NAD_1983_HARN_StatePlane_Minnesota_Central_FIPS_2202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2812','NAD_1983_HARN_StatePlane_Minnesota_South_FIPS_2203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2813','NAD_1983_HARN_StatePlane_Mississippi_East_FIPS_2301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2814','NAD_1983_HARN_StatePlane_Mississippi_West_FIPS_2302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2815','NAD_1983_HARN_StatePlane_Missouri_East_FIPS_2401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2816','NAD_1983_HARN_StatePlane_Missouri_Central_FIPS_2402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2817','NAD_1983_HARN_StatePlane_Missouri_West_FIPS_2403','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2818','NAD_1983_HARN_StatePlane_Montana_FIPS_2500','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2819','NAD_1983_HARN_StatePlane_Nebraska_FIPS_2600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2820','NAD_1983_HARN_StatePlane_Nevada_East_FIPS_2701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2821','NAD_1983_HARN_StatePlane_Nevada_Central_FIPS_2702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2822','NAD_1983_HARN_StatePlane_Nevada_West_FIPS_2703','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2823','NAD_1983_HARN_StatePlane_New_Hampshire_FIPS_2800','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2824','NAD_1983_HARN_StatePlane_New_Jersey_FIPS_2900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2825','NAD_1983_HARN_StatePlane_New_Mexico_East_FIPS_3001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2826','NAD_1983_HARN_StatePlane_New_Mexico_Central_FIPS_3002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2827','NAD_1983_HARN_StatePlane_New_Mexico_West_FIPS_3003','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2828','NAD_1983_HARN_StatePlane_New_York_East_FIPS_3101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2829','NAD_1983_HARN_StatePlane_New_York_Central_FIPS_3102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2830','NAD_1983_HARN_StatePlane_New_York_West_FIPS_3103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2831','NAD_1983_HARN_StatePlane_New_York_Long_Island_FIPS_3104','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2832','NAD_1983_HARN_StatePlane_North_Dakota_North_FIPS_3301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2833','NAD_1983_HARN_StatePlane_North_Dakota_South_FIPS_3302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2834','NAD_1983_HARN_StatePlane_Ohio_North_FIPS_3401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2835','NAD_1983_HARN_StatePlane_Ohio_South_FIPS_3402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2836','NAD_1983_HARN_StatePlane_Oklahoma_North_FIPS_3501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2837','NAD_1983_HARN_StatePlane_Oklahoma_South_FIPS_3502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2838','NAD_1983_HARN_StatePlane_Oregon_North_FIPS_3601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2839','NAD_1983_HARN_StatePlane_Oregon_South_FIPS_3602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2840','NAD_1983_HARN_StatePlane_Rhode_Island_FIPS_3800','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2841','NAD_1983_HARN_StatePlane_South_Dakota_North_FIPS_4001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2842','NAD_1983_HARN_StatePlane_South_Dakota_South_FIPS_4002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2843','NAD_1983_HARN_StatePlane_Tennessee_FIPS_4100','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2844','NAD_1983_HARN_StatePlane_Texas_North_FIPS_4201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2845','NAD_1983_HARN_StatePlane_Texas_North_Central_FIPS_4202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2846','NAD_1983_HARN_StatePlane_Texas_Central_FIPS_4203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2847','NAD_1983_HARN_StatePlane_Texas_South_Central_FIPS_4204','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2848','NAD_1983_HARN_StatePlane_Texas_South_FIPS_4205','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2849','NAD_1983_HARN_StatePlane_Utah_North_FIPS_4301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2850','NAD_1983_HARN_StatePlane_Utah_Central_FIPS_4302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2851','NAD_1983_HARN_StatePlane_Utah_South_FIPS_4303','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2852','NAD_1983_HARN_StatePlane_Vermont_FIPS_4400','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2853','NAD_1983_HARN_StatePlane_Virginia_North_FIPS_4501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2854','NAD_1983_HARN_StatePlane_Virginia_South_FIPS_4502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2855','NAD_1983_HARN_StatePlane_Washington_North_FIPS_4601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2856','NAD_1983_HARN_StatePlane_Washington_South_FIPS_4602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2857','NAD_1983_HARN_StatePlane_West_Virginia_North_FIPS_4701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2858','NAD_1983_HARN_StatePlane_West_Virginia_South_FIPS_4702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2859','NAD_1983_HARN_StatePlane_Wisconsin_North_FIPS_4801','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2860','NAD_1983_HARN_StatePlane_Wisconsin_Central_FIPS_4802','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2861','NAD_1983_HARN_StatePlane_Wisconsin_South_FIPS_4803','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2862','NAD_1983_HARN_StatePlane_Wyoming_East_FIPS_4901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2863','NAD_1983_HARN_StatePlane_Wyoming_East_Central_FIPS_4902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2864','NAD_1983_HARN_StatePlane_Wyoming_West_Central_FIPS_4903','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2865','NAD_1983_HARN_StatePlane_Wyoming_West_FIPS_4904','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2866','NAD_1983_HARN_StatePlane_Puerto_Rico_Virgin_Islands_FIPS_5200','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2867','NAD_1983_HARN_StatePlane_Arizona_East_FIPS_0201_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2868','NAD_1983_HARN_StatePlane_Arizona_Central_FIPS_0202_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2869','NAD_1983_HARN_StatePlane_Arizona_West_FIPS_0203_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2870','NAD_1983_HARN_StatePlane_California_I_FIPS_0401_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2871','NAD_1983_HARN_StatePlane_California_II_FIPS_0402_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2872','NAD_1983_HARN_StatePlane_California_III_FIPS_0403_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2873','NAD_1983_HARN_StatePlane_California_IV_FIPS_0404_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2874','NAD_1983_HARN_StatePlane_California_V_FIPS_0405_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2875','NAD_1983_HARN_StatePlane_California_VI_FIPS_0406_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2876','NAD_1983_HARN_StatePlane_Colorado_North_FIPS_0501_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2877','NAD_1983_HARN_StatePlane_Colorado_Central_FIPS_0502_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2878','NAD_1983_HARN_StatePlane_Colorado_South_FIPS_0503_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2879','NAD_1983_HARN_StatePlane_Connecticut_FIPS_0600_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2880','NAD_1983_HARN_StatePlane_Delaware_FIPS_0700_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2881','NAD_1983_HARN_StatePlane_Florida_East_FIPS_0901_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2882','NAD_1983_HARN_StatePlane_Florida_West_FIPS_0902_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2883','NAD_1983_HARN_StatePlane_Florida_North_FIPS_0903_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2884','NAD_1983_HARN_StatePlane_Georgia_East_FIPS_1001_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2885','NAD_1983_HARN_StatePlane_Georgia_West_FIPS_1002_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2886','NAD_1983_HARN_StatePlane_Idaho_East_FIPS_1101_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2887','NAD_1983_HARN_StatePlane_Idaho_Central_FIPS_1102_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2888','NAD_1983_HARN_StatePlane_Idaho_West_FIPS_1103_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2891','NAD_1983_HARN_StatePlane_Kentucky_North_FIPS_1601_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2892','NAD_1983_HARN_StatePlane_Kentucky_South_FIPS_1602_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2893','NAD_1983_HARN_StatePlane_Maryland_FIPS_1900_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2894','NAD_1983_HARN_StatePlane_Massachusetts_Mainland_FIPS_2001_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2895','NAD_1983_HARN_StatePlane_Massachusetts_Island_FIPS_2002_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2896','NAD_1983_HARN_StatePlane_Michigan_North_FIPS_2111_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2897','NAD_1983_HARN_StatePlane_Michigan_Central_FIPS_2112_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2898','NAD_1983_HARN_StatePlane_Michigan_South_FIPS_2113_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2899','NAD_1983_HARN_StatePlane_Mississippi_East_FIPS_2301_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2900','NAD_1983_HARN_StatePlane_Mississippi_West_FIPS_2302_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2901','NAD_1983_HARN_StatePlane_Montana_FIPS_2500_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2902','NAD_1983_HARN_StatePlane_New_Mexico_East_FIPS_3001_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2903','NAD_1983_HARN_StatePlane_New_Mexico_Central_FIPS_3002_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2904','NAD_1983_HARN_StatePlane_New_Mexico_West_FIPS_3003_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2905','NAD_1983_HARN_StatePlane_New_York_East_FIPS_3101_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2906','NAD_1983_HARN_StatePlane_New_York_Central_FIPS_3102_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2907','NAD_1983_HARN_StatePlane_New_York_West_FIPS_3103_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2908','NAD_1983_HARN_StatePlane_New_York_Long_Island_FIPS_3104_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2909','NAD_1983_HARN_StatePlane_North_Dakota_North_FIPS_3301_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2910','NAD_1983_HARN_StatePlane_North_Dakota_South_FIPS_3302_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2911','NAD_1983_HARN_StatePlane_Oklahoma_North_FIPS_3501_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2912','NAD_1983_HARN_StatePlane_Oklahoma_South_FIPS_3502_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2913','NAD_1983_HARN_StatePlane_Oregon_North_FIPS_3601_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2914','NAD_1983_HARN_StatePlane_Oregon_South_FIPS_3602_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2915','NAD_1983_HARN_StatePlane_Tennessee_FIPS_4100_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2916','NAD_1983_HARN_StatePlane_Texas_North_FIPS_4201_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2917','NAD_1983_HARN_StatePlane_Texas_North_Central_FIPS_4202_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2918','NAD_1983_HARN_StatePlane_Texas_Central_FIPS_4203_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2919','NAD_1983_HARN_StatePlane_Texas_South_Central_FIPS_4204_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2920','NAD_1983_HARN_StatePlane_Texas_South_FIPS_4205_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2921','NAD_1983_HARN_StatePlane_Utah_North_FIPS_4301_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2922','NAD_1983_HARN_StatePlane_Utah_Central_FIPS_4302_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2923','NAD_1983_HARN_StatePlane_Utah_South_FIPS_4303_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2924','NAD_1983_HARN_StatePlane_Virginia_North_FIPS_4501_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2925','NAD_1983_HARN_StatePlane_Virginia_South_FIPS_4502_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2926','NAD_1983_HARN_StatePlane_Washington_North_FIPS_4601_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2927','NAD_1983_HARN_StatePlane_Washington_South_FIPS_4602_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2928','NAD_1983_HARN_StatePlane_Wisconsin_North_FIPS_4801_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2929','NAD_1983_HARN_StatePlane_Wisconsin_Central_FIPS_4802_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2930','NAD_1983_HARN_StatePlane_Wisconsin_South_FIPS_4803_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2931','Beduaram_TM_13_NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2932','QND_1995_Qatar_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2933','Gunung_Segara_UTM_Zone_50S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2934','Gunung_Segara_Jakarta_NEIEZ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2935','Pulkovo_1942_CS63_Zone_A1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2936','Pulkovo_1942_CS63_Zone_A2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2937','Pulkovo_1942_CS63_Zone_A3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2938','Pulkovo_1942_CS63_Zone_A4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2939','Pulkovo_1942_CS63_Zone_K2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2940','Pulkovo_1942_CS63_Zone_K3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2941','Pulkovo_1942_CS63_Zone_K4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2942','Porto_Santo_1936_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2943','Selvagem_Grande_1938_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2944','NAD_1983_CSRS_MTM_2_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2945','NAD_1983_CSRS_MTM_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2946','NAD_1983_CSRS_MTM_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2947','NAD_1983_CSRS_MTM_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2948','NAD_1983_CSRS_MTM_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2949','NAD_1983_CSRS_MTM_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2950','NAD_1983_CSRS_MTM_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2951','NAD_1983_CSRS_MTM_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2952','NAD_1983_CSRS_MTM_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2953','NAD_1983_CSRS_New_Brunswick_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2954','NAD_1983_CSRS_Prince_Edward_Island','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2955','NAD_1983_CSRS_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2956','NAD_1983_CSRS_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2957','NAD_1983_CSRS_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2958','NAD_1983_CSRS_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2959','NAD_1983_CSRS_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2960','NAD_1983_CSRS_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2961','NAD_1983_CSRS_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2962','NAD_1983_CSRS_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2964','NAD_1927_Alaska_Albers_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2965','NAD_1983_StatePlane_Indiana_East_FIPS_1301_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2966','NAD_1983_StatePlane_Indiana_West_FIPS_1302_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2967','NAD_1983_HARN_StatePlane_Indiana_East_FIPS_1301_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2968','NAD_1983_HARN_StatePlane_Indiana_West_FIPS_1302_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2969','Fort_Marigot_UTM_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2970','Sainte_Anne_UTM_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2971','CSG_1967_UTM_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2972','RGFG_1995_UTM_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2973','Fort_Desaix_UTM_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2975','RGR_1992_UTM_40S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2976','Tahiti_1952_UTM_6S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2977','Tahaa_1954_UTM_5S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2978','IGN72_Nuku_Hiva_UTM_7S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2979','Kerguelen_Island_1949_UTM_42S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2980','Combani_1950_UTM_38S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2981','IGN56_Lifou_UTM_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2982','IGN72_Grande_Terre_UTM_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2984','RGNC_1991_Lambert_New_Caledonia','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2985','Petrels_1972_Terre_Adelie_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2986','Perroud_1950_Terre_Adelie_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2987','Saint_Pierre_et_Miquelon_1950_UTM_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2988','MOP78_UTM_1S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2991','NAD_1983_Oregon_Statewide_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2992','NAD_1983_Oregon_Statewide_Lambert_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2993','NAD_1983_HARN_Oregon_Statewide_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2994','NAD_1983_HARN_Oregon_Statewide_Lambert_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2995','IGN53_Mare_UTM_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2996','ST84_Ile_des_Pins_UTM_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2997','ST71_Belep_UTM_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2998','NEA74_Noumea_UTM_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','2999','Grand_Comoros_UTM_38S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3000','Gunung_Segara_NEIEZ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3001','Batavia_NEIEZ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3002','Makassar_NEIEZ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3003','Monte_Mario_Italy_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3004','Monte_Mario_Italy_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3005','NAD_1983_BC_Environment_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3006','SWEREF99_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3007','SWEREF99_12_00','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3008','SWEREF99_13_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3009','SWEREF99_15_00','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3010','SWEREF99_16_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3011','SWEREF99_18_00','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3012','SWEREF99_14_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3013','SWEREF99_15_45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3014','SWEREF99_17_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3015','SWEREF99_18_45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3016','SWEREF99_20_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3017','SWEREF99_21_45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3018','SWEREF99_23_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3019','RT90_75_gon_V','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3020','RT90_5_gon_V','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3021','RT90_25_gon_V','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3022','RT90_0_gon','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3023','RT90_25_gon_O','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3024','RT90_5_gon_O','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3025','RT38_75_gon_V','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3026','RT38_5_gon_V','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3027','RT38_25_gon_V','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3028','RT38_0_gon','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3029','RT38_25_gon_O','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3030','RT38_5_gon_O','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3031','WGS_1984_Antarctic_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3032','WGS_1984_Australian_Antarctic_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3033','WGS_1984_Australian_Antarctic_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3034','ETRS_1989_LCC','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3035','ETRS_1989_LAEA','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3036','Moznet_UTM_Zone_36S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3037','Moznet_UTM_Zone_37S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3038','ETRS_1989_ETRS-TM26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3039','ETRS_1989_ETRS-TM27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3040','ETRS_1989_ETRS-TM28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3041','ETRS_1989_ETRS-TM29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3042','ETRS_1989_ETRS-TM30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3043','ETRS_1989_ETRS-TM31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3044','ETRS_1989_ETRS-TM32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3045','ETRS_1989_ETRS-TM33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3046','ETRS_1989_ETRS-TM34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3047','ETRS_1989_ETRS-TM35','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3048','ETRS_1989_ETRS-TM36','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3049','ETRS_1989_ETRS-TM37','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3050','ETRS_1989_ETRS-TM38','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3051','ETRS_1989_ETRS-TM39','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3054','Hjorsey_1955_UTM_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3055','Hjorsey_1955_UTM_Zone_27N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3056','Hjorsey_1955_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3057','ISN_1993_Lambert_1993','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3058','Helle_1954_Jan_Mayen_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3059','LKS_1992_Latvia_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3060','IGN72_Grande_Terre_UTM_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3061','Porto_Santo_1995_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3062','Azores_Oriental_1995_UTM_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3063','Azores_Central_1995_UTM_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3064','IGM_1995_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3065','IGM_1995_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3066','ED_1950_Jordan_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3067','EUREF_FIN_TM35FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3068','DHDN_Soldner_Berlin','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3069','NAD_1927_Wisconsin_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3070','NAD_1983_Wisconsin_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3071','NAD_1983_HARN_Wisconsin_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3072','NAD_1983_Maine_2000_East_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3073','NAD_1983_Maine_2000_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3074','NAD_1983_Maine_2000_West_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3075','NAD_1983_HARN_Maine_2000_East_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3076','NAD_1983_HARN_Maine_2000_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3077','NAD_1983_HARN_Maine_2000_West_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3078','NAD_1983_Michigan_GeoRef_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3079','NAD_1983_HARN_Michigan_GeoRef_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3080','NAD_1927_Texas_Statewide_Mapping_System','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3081','NAD_1983_Texas_Statewide_Mapping_System','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3082','NAD_1983_Texas_Centric_Mapping_System_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3083','NAD_1983_Texas_Centric_Mapping_System_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3084','NAD_1983_HARN_Texas_Centric_Mapping_System_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3085','NAD_1983_HARN_Texas_Centric_Mapping_System_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3086','NAD_1983_Florida_GDL_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3087','NAD_1983_HARN_Florida_GDL_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3088','NAD_1983_StatePlane_Kentucky_FIPS_1600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3089','NAD_1983_StatePlane_Kentucky_FIPS_1600_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3090','NAD_1983_HARN_StatePlane_Kentucky_FIPS_1600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3091','NAD_1983_HARN_StatePlane_Kentucky_FIPS_1600_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3092','Tokyo_UTM_Zone_51N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3093','Tokyo_UTM_Zone_52N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3094','Tokyo_UTM_Zone_53N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3095','Tokyo_UTM_Zone_54N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3096','Tokyo_UTM_Zone_55N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3097','JGD_2000_UTM_Zone_51N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3098','JGD_2000_UTM_Zone_52N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3099','JGD_2000_UTM_Zone_53N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3100','JGD_2000_UTM_Zone_54N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3101','JGD_2000_UTM_Zone_55N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3102','Samoa_1962_Samoa_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3106','Gulshan_303_Bangladesh_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3107','GDA_1994_South_Australia_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3108','ETRS_1989_Guernsey_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3109','ETRS_1989_Jersey_Transverse_Mercator','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3110','AGD_1966_VICGRID','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3111','GDA_1994_VICGRID94','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3112','GDA_1994_Geoscience_Australia_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3113','GDA_1994_BCSG02','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3114','MAGNA_Colombia_Oeste_Oeste','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3115','MAGNA_Colombia_Oeste','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3116','MAGNA_Colombia_Bogota','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3117','MAGNA_Colombia_Este','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3118','MAGNA_Colombia_Este_Este','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3119','Douala_1948_AEF_West','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3120','Pulkovo_1942_Adj_1958_Poland_Zone_I','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3121','PRS_1992_Philippines_Zone_I','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3122','PRS_1992_Philippines_Zone_II','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3123','PRS_1992_Philippines_Zone_III','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3124','PRS_1992_Philippines_Zone_IV','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3125','PRS_1992_Philippines_Zone_V','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3126','ETRS_1989_ETRS-GK19FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3127','ETRS_1989_ETRS-GK20FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3128','ETRS_1989_ETRS-GK21FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3129','ETRS_1989_ETRS-GK22FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3130','ETRS_1989_ETRS-GK23FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3131','ETRS_1989_ETRS-GK24FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3132','ETRS_1989_ETRS-GK25FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3133','ETRS_1989_ETRS-GK26FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3134','ETRS_1989_ETRS-GK27FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3135','ETRS_1989_ETRS-GK28FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3136','ETRS_1989_ETRS-GK29FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3137','ETRS_1989_ETRS-GK30FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3138','ETRS_1989_ETRS-GK31FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3141','Fiji_1956_UTM_Zone_60S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3142','Fiji_1956_UTM_Zone_1S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3146','Pulkovo_1942_3_Degree_GK_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3147','Pulkovo_1942_3_Degree_GK_CM_18E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3148','Indian_1960_UTM_Zone_48N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3149','Indian_1960_UTM_Zone_49N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3150','Pulkovo_1995_3_Degree_GK_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3151','Pulkovo_1995_3_Degree_GK_CM_18E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3153','NAD_1983_CSRS_BC_Environment_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3154','NAD_1983_CSRS_UTM_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3155','NAD_1983_CSRS_UTM_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3156','NAD_1983_CSRS_UTM_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3157','NAD_1983_CSRS_UTM_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3158','NAD_1983_CSRS_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3159','NAD_1983_CSRS_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3160','NAD_1983_CSRS_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3161','NAD_1983_Ontario_MNR_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3162','NAD_1983_CSRS_Ontario_MNR_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3163','RGNC_1991_93_Lambert_New_Caledonia','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3164','ST87_Ouvea_UTM_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3165','NEA74_Noumea_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3166','NEA74_Noumea_Lambert_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3167','Kertau_RSO_RSO_Malaya_ChSears1922trunc','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3168','Kertau_RSO_RSO_Malaya','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3169','RGNC_1991-93_UTM_Zone_57S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3170','RGNC_1991-93_UTM_Zone_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3171','RGNC_1991-93_UTM_Zone_59S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3172','IGN53_Mare_UTM_Zone_59S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3174','NAD_1983_Great_Lakes_Basin_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3175','NAD_1983_Great_Lakes_and_St_Lawrence_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3176','Indian_1960_TM_106NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3177','LGD2006_Libya_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3178','Greenland_1996_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3179','Greenland_1996_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3180','Greenland_1996_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3181','Greenland_1996_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3182','Greenland_1996_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3183','Greenland_1996_UTM_Zone_23N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3184','Greenland_1996_UTM_Zone_24N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3185','Greenland_1996_UTM_Zone_25N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3186','Greenland_1996_UTM_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3187','Greenland_1996_UTM_Zone_27N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3188','Greenland_1996_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3189','Greenland_1996_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3190','LGD2006_Libya_TM_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3191','LGD2006_Libya_TM_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3192','LGD2006_Libya_TM_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3193','LGD2006_Libya_TM_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3194','LGD2006_Libya_TM_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3195','LGD2006_Libya_TM_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3196','LGD2006_Libya_TM_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3197','LGD2006_Libya_TM_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3198','LGD2006_Libya_TM_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3199','LGD2006_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3200','FD_1958_Iraq','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3201','LGD2006_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3202','LGD2006_UTM_Zone_34N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3203','LGD2006_UTM_Zone_35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3294','WGS_1984_USGS_Transantarctic_Mountains','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3295','Guam_1963_Yap_Islands','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3296','RGPF_UTM_Zone_5S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3297','RGPF_UTM_Zone_6S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3298','RGPF_UTM_Zone_7S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3299','RGPF_UTM_Zone_8S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3300','Estonian_Coordinate_System_of_1992','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3301','Estonia_1997_Estonia_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3302','IGN63_Hiva_Oa_UTM_Zone_7S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3303','Fatu_Iva_1972_UTM_Zone_7S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3304','Tahiti_1979_UTM_Zone_6S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3305','Moorea_1987_UTM_Zone_6S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3306','Maupiti_1983_UTM_Zone_5S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3307','Nakhl-e_Ghanem_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3308','GDA_1994_NSW_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3309','NAD_1927_California_Teale_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3310','NAD_1983_California_Teale_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3311','NAD_1983_HARN_California_Teale_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3312','CSG_1967_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3313','RGFG_1995_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3315','Katanga_1955_Katanga_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3316','Kasai_1953_Congo_TM_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3317','Kasai_1953_Congo_TM_Zone_24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3318','IGC_1962_Congo_TM_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3319','IGC_1962_Congo_TM_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3320','IGC_1962_Congo_TM_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3321','IGC_1962_Congo_TM_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3322','IGC_1962_Congo_TM_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3323','IGC_1962_Congo_TM_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3324','IGC_1962_Congo_TM_Zone_24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3325','IGC_1962_Congo_TM_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3326','IGC_1962_Congo_TM_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3327','IGC_1962_Congo_TM_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3328','Pulkovo_1942_Adj_1958_GUGiK-80','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3329','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3330','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3331','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3332','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3333','Pulkovo_1942_Adj_1958_GK_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3334','Pulkovo_1942_Adj_1958_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3335','Pulkovo_1942_Adj_1958_GK_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3336','Kerguelen_Island_1949_UTM_42S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3337','Le_Pouce_1934_Mauritius_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3338','NAD_1983_Alaska_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3339','IGCB_1955_Congo_TM_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3340','IGCB_1955_Congo_TM_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3341','IGCB_1955_Congo_TM_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3342','IGCB_1955_UTM_Zone_33S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3343','Mauritania_1999_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3344','Mauritania_1999_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3345','Mauritania_1999_UTM_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3346','LKS_1994_Lithuania_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3347','NAD_1983_Statistics_Canada_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3348','NAD_1983_CSRS_Statistics_Canada_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3350','Pulkovo_1942_CS63_Zone_C0','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3351','Pulkovo_1942_CS63_Zone_C1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3352','Pulkovo_1942_CS63_Zone_C2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3353','Mhast_Onshore_UTM_Zone_32S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3354','Mhast_Offshore_UTM_Zone_32S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3355','Egypt_Gulf_of_Suez_S-650_TL_Red_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3356','Grand_Cayman_1959_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3357','Little_Cayman_1961_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3358','NAD_1983_HARN_StatePlane_North_Carolina_FIPS_3200','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3359','NAD_1983_HARN_StatePlane_North_Carolina_FIPS_3200_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3360','NAD_1983_HARN_StatePlane_South_Carolina_FIPS_3900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3361','NAD_1983_HARN_StatePlane_South_Carolina_FIPS_3900_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3362','NAD_1983_HARN_StatePlane_Pennsylvania_North_FIPS_3701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3363','NAD_1983_HARN_StatePlane_Pennsylvania_North_FIPS_3701_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3364','NAD_1983_HARN_StatePlane_Pennsylvania_South_FIPS_3702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3365','NAD_1983_HARN_StatePlane_Pennsylvania_South_FIPS_3702_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3366','Hong_Kong_1963_Grid_System','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3367','IGN_Astro_1960_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3368','IGN_Astro_1960_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3369','IGN_Astro_1960_UTM_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3370','NAD_1927_UTM_Zone_59N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3371','NAD_1927_UTM_Zone_60N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3372','NAD_1983_UTM_Zone_59N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3373','NAD_1983_UTM_Zone_60N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3374','FD_1954_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3375','GDM_2000_MRSO_Peninsular_Malaysia','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3376','GDM_2000_BRSO_East_Malaysia','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3377','GDM_2000_State_Cassini_Johor','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3378','GDM_2000_State_Cassini_Negeri_Sembilan_and_Melaka','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3379','GDM_2000_State_Cassini_Pahang','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3380','GDM_2000_State_Cassini_Selangor','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3381','GDM_2000_State_Cassini_Terengganu','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3382','GDM_2000_State_Cassini_Pulau_Pinang_and_Seberang_Perai','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3383','GDM_2000_State_Cassini_Perlis','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3384','GDM_2000_State_Cassini_Perak','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3385','GDM_2000_State_Cassini_Kelantan','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3386','KKJ_Finland_Zone_0','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3387','KKJ_Finland_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3388','Pulkovo_1942_Caspian_Sea_Mercator','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3389','Pulkovo_1942_3_Degree_GK_Zone_60','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3390','Pulkovo_1995_3_Degree_GK_Zone_60','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3391','Karbala_1979_Polservice_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3392','Karbala_1979_Polservice_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3393','Karbala_1979_Polservice_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3394','Nahrwan_1934_Iraq_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3395','WGS_1984_World_Mercator','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3396','PD/83_GK_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3397','PD/83_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3398','RD/83_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3399','RD/83_GK_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3400','NAD_1983_10TM_AEP_Forest','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3401','NAD_1983_10TM_AEP_Resource','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3402','NAD_1983_CSRS_10TM_AEP_Forest','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3403','NAD_1983_CSRS_10TM_AEP_Resource','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3404','NAD_1983_HARN_StatePlane_North_Carolina_FIPS_3200_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3405','VN_2000_UTM_Zone_48N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3406','VN_2000_UTM_Zone_49N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3407','Hong_Kong_1963_Grid_System','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3408','NSIDC_EASE_Grid_North','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3409','NSIDC_EASE_Grid_South','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3410','NSIDC_EASE_Grid_Global','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3411','NSIDC_Sea_Ice_Polar_Stereographic_North','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3412','NSIDC_Sea_Ice_Polar_Stereographic_South','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3413','WGS_1984_NSIDC_Sea_Ice_Polar_Stereographic_North','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3414','SVY21_Singapore_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3415','WGS_1972_BE_South_China_Sea_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3416','ETRS_1989_Austria_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3417','NAD_1983_StatePlane_Iowa_North_FIPS_1401_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3418','NAD_1983_StatePlane_Iowa_South_FIPS_1402_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3419','NAD_1983_StatePlane_Kansas_North_FIPS_1501_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3420','NAD_1983_StatePlane_Kansas_South_FIPS_1502_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3421','NAD_1983_StatePlane_Nevada_East_FIPS_2701_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3422','NAD_1983_StatePlane_Nevada_Central_FIPS_2702_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3423','NAD_1983_StatePlane_Nevada_West_FIPS_2703_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3424','NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3425','NAD_1983_HARN_StatePlane_Iowa_North_FIPS_1401_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3426','NAD_1983_HARN_StatePlane_Iowa_South_FIPS_1402_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3427','NAD_1983_HARN_StatePlane_Kansas_North_FIPS_1501_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3428','NAD_1983_HARN_StatePlane_Kansas_South_FIPS_1502_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3429','NAD_1983_HARN_StatePlane_Nevada_East_FIPS_2701_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3430','NAD_1983_HARN_StatePlane_Nevada_Central_FIPS_2702_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3431','NAD_1983_HARN_StatePlane_Nevada_West_FIPS_2703_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3432','NAD_1983_HARN_StatePlane_New_Jersey_FIPS_2900_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3433','NAD_1983_StatePlane_Arkansas_North_FIPS_0301_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3434','NAD_1983_StatePlane_Arkansas_South_FIPS_0302_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3435','NAD_1983_StatePlane_Illinois_East_FIPS_1201_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3436','NAD_1983_StatePlane_Illinois_West_FIPS_1202_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3437','NAD_1983_StatePlane_New_Hampshire_FIPS_2800_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3438','NAD_1983_StatePlane_Rhode_Island_FIPS_3800_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3439','PDO_1993_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3440','PDO_1993_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3441','NAD_1983_HARN_StatePlane_Arkansas_North_FIPS_0301_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3442','NAD_1983_HARN_StatePlane_Arkansas_South_FIPS_0302_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3443','NAD_1983_HARN_StatePlane_Illinois_East_FIPS_1201_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3444','NAD_1983_HARN_StatePlane_Illinois_West_FIPS_1202_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3445','NAD_1983_HARN_StatePlane_New_Hampshire_FIPS_2800_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3446','NAD_1983_HARN_StatePlane_Rhode_Island_FIPS_3800_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3447','Belge_Lambert_2005','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3448','JAD_2001_Jamaica_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3449','JAD_2001_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3450','JAD_2001_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3451','NAD_1983_StatePlane_Louisiana_North_FIPS_1701_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3452','NAD_1983_StatePlane_Louisiana_South_FIPS_1702_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3453','NAD_1983_StatePlane_Louisiana_Offshore_FIPS_1703_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3454','NAD_1983_StatePlane_South_Dakota_North_FIPS_4001_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3455','NAD_1983_StatePlane_South_Dakota_South_FIPS_4002_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3456','NAD_1983_HARN_StatePlane_Louisiana_North_FIPS_1701_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3457','NAD_1983_HARN_StatePlane_Louisiana_South_FIPS_1702_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3458','NAD_1983_HARN_StatePlane_South_Dakota_North_FIPS_4001_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3459','NAD_1983_HARN_StatePlane_South_Dakota_South_FIPS_4002_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3460','Fiji_1986_Fiji_Map_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3461','Dabola_1981_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3462','Dabola_1981_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3463','NAD_1983_Maine_2000_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3464','NAD_1983_HARN_Maine_2000_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3465','NAD_1983_NSRS2007_StatePlane_Alabama_East_FIPS_0101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3466','NAD_1983_NSRS2007_StatePlane_Alabama_West_FIPS_0102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3467','NAD_1983_NSRS2007_Alaska_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3468','NAD_1983_NSRS2007_StatePlane_Alaska_1_FIPS_5001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3469','NAD_1983_NSRS2007_StatePlane_Alaska_2_FIPS_5002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3470','NAD_1983_NSRS2007_StatePlane_Alaska_3_FIPS_5003','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3471','NAD_1983_NSRS2007_StatePlane_Alaska_4_FIPS_5004','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3472','NAD_1983_NSRS2007_StatePlane_Alaska_5_FIPS_5005','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3473','NAD_1983_NSRS2007_StatePlane_Alaska_6_FIPS_5006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3474','NAD_1983_NSRS2007_StatePlane_Alaska_7_FIPS_5007','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3475','NAD_1983_NSRS2007_StatePlane_Alaska_8_FIPS_5008','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3476','NAD_1983_NSRS2007_StatePlane_Alaska_9_FIPS_5009','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3477','NAD_1983_NSRS2007_StatePlane_Alaska_10_FIPS_5010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3478','NAD_1983_NSRS2007_StatePlane_Arizona_Central_FIPS_0202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3479','NAD_1983_NSRS2007_StatePlane_Arizona_Central_FIPS_0202_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3480','NAD_1983_NSRS2007_StatePlane_Arizona_East_FIPS_0201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3481','NAD_1983_NSRS2007_StatePlane_Arizona_East_FIPS_0201_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3482','NAD_1983_NSRS2007_StatePlane_Arizona_West_FIPS_0203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3483','NAD_1983_NSRS2007_StatePlane_Arizona_West_FIPS_0203_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3484','NAD_1983_NSRS2007_StatePlane_Arkansas_North_FIPS_0301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3485','NAD_1983_NSRS2007_StatePlane_Arkansas_North_FIPS_0301_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3486','NAD_1983_NSRS2007_StatePlane_Arkansas_South_FIPS_0302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3487','NAD_1983_NSRS2007_StatePlane_Arkansas_South_FIPS_0302_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3488','NAD_1983_NSRS2007_California_Teale_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3489','NAD_1983_NSRS2007_StatePlane_California_I_FIPS_0401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3490','NAD_1983_NSRS2007_StatePlane_California_I_FIPS_0401_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3491','NAD_1983_NSRS2007_StatePlane_California_II_FIPS_0402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3492','NAD_1983_NSRS2007_StatePlane_California_II_FIPS_0402_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3493','NAD_1983_NSRS2007_StatePlane_California_III_FIPS_0403','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3494','NAD_1983_NSRS2007_StatePlane_California_III_FIPS_0403_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3495','NAD_1983_NSRS2007_StatePlane_California_IV_FIPS_0404','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3496','NAD_1983_NSRS2007_StatePlane_California_IV_FIPS_0404_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3497','NAD_1983_NSRS2007_StatePlane_California_V_FIPS_0405','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3498','NAD_1983_NSRS2007_StatePlane_California_V_FIPS_0405_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3499','NAD_1983_NSRS2007_StatePlane_California_VI_FIPS_0406','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3500','NAD_1983_NSRS2007_StatePlane_California_VI_FIPS_0406_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3501','NAD_1983_NSRS2007_StatePlane_Colorado_Central_FIPS_0502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3502','NAD_1983_NSRS2007_StatePlane_Colorado_Central_FIPS_0502_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3503','NAD_1983_NSRS2007_StatePlane_Colorado_North_FIPS_0501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3504','NAD_1983_NSRS2007_StatePlane_Colorado_North_FIPS_0501_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3505','NAD_1983_NSRS2007_StatePlane_Colorado_South_FIPS_0503','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3506','NAD_1983_NSRS2007_StatePlane_Colorado_South_FIPS_0503_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3507','NAD_1983_NSRS2007_StatePlane_Connecticut_FIPS_0600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3508','NAD_1983_NSRS2007_StatePlane_Connecticut_FIPS_0600_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3509','NAD_1983_NSRS2007_StatePlane_Delaware_FIPS_0700','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3510','NAD_1983_NSRS2007_StatePlane_Delaware_FIPS_0700_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3511','NAD_1983_NSRS2007_StatePlane_Florida_East_FIPS_0901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3512','NAD_1983_NSRS2007_StatePlane_Florida_East_FIPS_0901_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3513','NAD_1983_NSRS2007_Florida_GDL_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3514','NAD_1983_NSRS2007_StatePlane_Florida_North_FIPS_0903','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3515','NAD_1983_NSRS2007_StatePlane_Florida_North_FIPS_0903_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3516','NAD_1983_NSRS2007_StatePlane_Florida_West_FIPS_0902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3517','NAD_1983_NSRS2007_StatePlane_Florida_West_FIPS_0902_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3518','NAD_1983_NSRS2007_StatePlane_Georgia_East_FIPS_1001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3519','NAD_1983_NSRS2007_StatePlane_Georgia_East_FIPS_1001_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3520','NAD_1983_NSRS2007_StatePlane_Georgia_West_FIPS_1002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3521','NAD_1983_NSRS2007_StatePlane_Georgia_West_FIPS_1002_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3522','NAD_1983_NSRS2007_StatePlane_Idaho_Central_FIPS_1102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3523','NAD_1983_NSRS2007_StatePlane_Idaho_Central_FIPS_1102_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3524','NAD_1983_NSRS2007_StatePlane_Idaho_East_FIPS_1101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3525','NAD_1983_NSRS2007_StatePlane_Idaho_East_FIPS_1101_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3526','NAD_1983_NSRS2007_StatePlane_Idaho_West_FIPS_1103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3527','NAD_1983_NSRS2007_StatePlane_Idaho_West_FIPS_1103_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3528','NAD_1983_NSRS2007_StatePlane_Illinois_East_FIPS_1201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3529','NAD_1983_NSRS2007_StatePlane_Illinois_East_FIPS_1201_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3530','NAD_1983_NSRS2007_StatePlane_Illinois_West_FIPS_1202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3531','NAD_1983_NSRS2007_StatePlane_Illinois_West_FIPS_1202_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3532','NAD_1983_NSRS2007_StatePlane_Indiana_East_FIPS_1301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3533','NAD_1983_NSRS2007_StatePlane_Indiana_East_FIPS_1301_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3534','NAD_1983_NSRS2007_StatePlane_Indiana_West_FIPS_1302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3535','NAD_1983_NSRS2007_StatePlane_Indiana_West_FIPS_1302_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3536','NAD_1983_NSRS2007_StatePlane_Iowa_North_FIPS_1401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3537','NAD_1983_NSRS2007_StatePlane_Iowa_North_FIPS_1401_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3538','NAD_1983_NSRS2007_StatePlane_Iowa_South_FIPS_1402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3539','NAD_1983_NSRS2007_StatePlane_Iowa_South_FIPS_1402_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3540','NAD_1983_NSRS2007_StatePlane_Kansas_North_FIPS_1501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3541','NAD_1983_NSRS2007_StatePlane_Kansas_North_FIPS_1501_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3542','NAD_1983_NSRS2007_StatePlane_Kansas_South_FIPS_1502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3543','NAD_1983_NSRS2007_StatePlane_Kansas_South_FIPS_1502_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3544','NAD_1983_NSRS2007_StatePlane_Kentucky_North_FIPS_1601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3545','NAD_1983_NSRS2007_StatePlane_Kentucky_North_FIPS_1601_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3546','NAD_1983_NSRS2007_StatePlane_Kentucky_FIPS_1600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3547','NAD_1983_NSRS2007_StatePlane_Kentucky_FIPS_1600_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3548','NAD_1983_NSRS2007_StatePlane_Kentucky_South_FIPS_1602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3549','NAD_1983_NSRS2007_StatePlane_Kentucky_South_FIPS_1602_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3550','NAD_1983_NSRS2007_StatePlane_Louisiana_North_FIPS_1701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3551','NAD_1983_NSRS2007_StatePlane_Louisiana_North_FIPS_1701_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3552','NAD_1983_NSRS2007_StatePlane_Louisiana_South_FIPS_1702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3553','NAD_1983_NSRS2007_StatePlane_Louisiana_South_FIPS_1702_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3554','NAD_1983_NSRS2007_Maine_2000_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3555','NAD_1983_NSRS2007_Maine_2000_East_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3556','NAD_1983_NSRS2007_Maine_2000_West_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3557','NAD_1983_NSRS2007_StatePlane_Maine_East_FIPS_1801','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3558','NAD_1983_NSRS2007_StatePlane_Maine_West_FIPS_1802','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3559','NAD_1983_NSRS2007_StatePlane_Maryland_FIPS_1900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3560','NAD_1983_StatePlane_Utah_North_FIPS_4301_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3561','Old_Hawaiian_StatePlane_Hawaii_1_FIPS_5101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3562','Old_Hawaiian_StatePlane_Hawaii_2_FIPS_5102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3563','Old_Hawaiian_StatePlane_Hawaii_3_FIPS_5103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3564','Old_Hawaiian_StatePlane_Hawaii_4_FIPS_5104','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3565','Old_Hawaiian_StatePlane_Hawaii_5_FIPS_5105','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3566','NAD_1983_StatePlane_Utah_Central_FIPS_4302_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3567','NAD_1983_StatePlane_Utah_South_FIPS_4303_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3568','NAD_1983_HARN_StatePlane_Utah_North_FIPS_4301_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3569','NAD_1983_HARN_StatePlane_Utah_Central_FIPS_4302_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3570','NAD_1983_HARN_StatePlane_Utah_South_FIPS_4303_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3571','WGS_1984_North_Pole_LAEA_Bering_Sea','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3572','WGS_1984_North_Pole_LAEA_Alaska','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3573','WGS_1984_North_Pole_LAEA_Canada','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3574','WGS_1984_North_Pole_LAEA_Atlantic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3575','WGS_1984_North_Pole_LAEA_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3576','WGS_1984_North_Pole_LAEA_Russia','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3577','GDA_1994_Australia_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3578','NAD_1983_Yukon_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3579','NAD_1983_CSRS_Yukon_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3580','NAD_1983_Northwest_Territories_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3581','NAD_1983_CSRS_Northwest_Territories_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3582','NAD_1983_NSRS2007_StatePlane_Maryland_FIPS_1900_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3583','NAD_1983_NSRS2007_StatePlane_Massachusetts_Island_FIPS_2002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3584','NAD_1983_NSRS2007_StatePlane_Massachusetts_Isl_FIPS_2002_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3585','NAD_1983_NSRS2007_StatePlane_Massachusetts_Mainland_FIPS_2001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3586','NAD_1983_NSRS2007_StatePlane_Massachusetts_Mnld_FIPS_2001_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3587','NAD_1983_NSRS2007_StatePlane_Michigan_Central_FIPS_2112','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3588','NAD_1983_NSRS2007_StatePlane_Michigan_Central_FIPS_2112_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3589','NAD_1983_NSRS2007_StatePlane_Michigan_North_FIPS_2111','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3590','NAD_1983_NSRS2007_StatePlane_Michigan_North_FIPS_2111_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3591','NAD_1983_NSRS2007_Michigan_GeoRef_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3592','NAD_1983_NSRS2007_StatePlane_Michigan_South_FIPS_2113','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3593','NAD_1983_NSRS2007_StatePlane_Michigan_South_FIPS_2113_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3594','NAD_1983_NSRS2007_StatePlane_Minnesota_Central_FIPS_2202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3595','NAD_1983_NSRS2007_StatePlane_Minnesota_North_FIPS_2201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3596','NAD_1983_NSRS2007_StatePlane_Minnesota_South_FIPS_2203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3597','NAD_1983_NSRS2007_StatePlane_Mississippi_East_FIPS_2301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3598','NAD_1983_NSRS2007_StatePlane_Mississippi_East_FIPS_2301_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3599','NAD_1983_NSRS2007_StatePlane_Mississippi_West_FIPS_2302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3600','NAD_1983_NSRS2007_StatePlane_Mississippi_West_FIPS_2302_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3601','NAD_1983_NSRS2007_StatePlane_Missouri_Central_FIPS_2402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3602','NAD_1983_NSRS2007_StatePlane_Missouri_East_FIPS_2401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3603','NAD_1983_NSRS2007_StatePlane_Missouri_West_FIPS_2403','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3604','NAD_1983_NSRS2007_StatePlane_Montana_FIPS_2500','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3605','NAD_1983_NSRS2007_StatePlane_Montana_FIPS_2500_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3606','NAD_1983_NSRS2007_StatePlane_Nebraska_FIPS_2600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3607','NAD_1983_NSRS2007_StatePlane_Nevada_Central_FIPS_2702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3608','NAD_1983_NSRS2007_StatePlane_Nevada_Central_FIPS_2702_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3609','NAD_1983_NSRS2007_StatePlane_Nevada_East_FIPS_2701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3610','NAD_1983_NSRS2007_StatePlane_Nevada_East_FIPS_2701_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3611','NAD_1983_NSRS2007_StatePlane_Nevada_West_FIPS_2703','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3612','NAD_1983_NSRS2007_StatePlane_Nevada_West_FIPS_2703_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3613','NAD_1983_NSRS2007_StatePlane_New_Hampshire_FIPS_2800','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3614','NAD_1983_NSRS2007_StatePlane_New_Hampshire_FIPS_2800_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3615','NAD_1983_NSRS2007_StatePlane_New_Jersey_FIPS_2900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3616','NAD_1983_NSRS2007_StatePlane_New_Jersey_FIPS_2900_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3617','NAD_1983_NSRS2007_StatePlane_New_Mexico_Central_FIPS_3002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3618','NAD_1983_NSRS2007_StatePlane_New_Mexico_Central_FIPS_3002_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3619','NAD_1983_NSRS2007_StatePlane_New_Mexico_East_FIPS_3001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3620','NAD_1983_NSRS2007_StatePlane_New_Mexico_East_FIPS_3001_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3621','NAD_1983_NSRS2007_StatePlane_New_Mexico_West_FIPS_3003','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3622','NAD_1983_NSRS2007_StatePlane_New_Mexico_West_FIPS_3003_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3623','NAD_1983_NSRS2007_StatePlane_New_York_Central_FIPS_3102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3624','NAD_1983_NSRS2007_StatePlane_New_York_Central_FIPS_3102_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3625','NAD_1983_NSRS2007_StatePlane_New_York_East_FIPS_3101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3626','NAD_1983_NSRS2007_StatePlane_New_York_East_FIPS_3101_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3627','NAD_1983_NSRS2007_StatePlane_New_York_Long_Island_FIPS_3104','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3628','NAD_1983_NSRS2007_StatePlane_New_York_Long_Isl_FIPS_3104_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3629','NAD_1983_NSRS2007_StatePlane_New_York_West_FIPS_3103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3630','NAD_1983_NSRS2007_StatePlane_New_York_West_FIPS_3103_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3631','NAD_1983_NSRS2007_StatePlane_North_Carolina_FIPS_3200','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3632','NAD_1983_NSRS2007_StatePlane_North_Carolina_FIPS_3200_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3633','NAD_1983_NSRS2007_StatePlane_North_Dakota_North_FIPS_3301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3634','NAD_1983_NSRS2007_StatePlane_North_Dakota_North_FIPS_3301_FtI','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3635','NAD_1983_NSRS2007_StatePlane_North_Dakota_South_FIPS_3302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3636','NAD_1983_NSRS2007_StatePlane_North_Dakota_South_FIPS_3302_FtI','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3637','NAD_1983_NSRS2007_StatePlane_Ohio_North_FIPS_3401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3638','NAD_1983_NSRS2007_StatePlane_Ohio_South_FIPS_3402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3639','NAD_1983_NSRS2007_StatePlane_Oklahoma_North_FIPS_3501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3640','NAD_1983_NSRS2007_StatePlane_Oklahoma_North_FIPS_3501_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3641','NAD_1983_NSRS2007_StatePlane_Oklahoma_South_FIPS_3502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3642','NAD_1983_NSRS2007_StatePlane_Oklahoma_South_FIPS_3502_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3643','NAD_1983_NSRS2007_Oregon_Statewide_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3644','NAD_1983_NSRS2007_Oregon_Statewide_Lambert_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3645','NAD_1983_NSRS2007_StatePlane_Oregon_North_FIPS_3601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3646','NAD_1983_NSRS2007_StatePlane_Oregon_North_FIPS_3601_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3647','NAD_1983_NSRS2007_StatePlane_Oregon_South_FIPS_3602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3648','NAD_1983_NSRS2007_StatePlane_Oregon_South_FIPS_3602_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3649','NAD_1983_NSRS2007_StatePlane_Pennsylvania_North_FIPS_3701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3650','NAD_1983_NSRS2007_StatePlane_Pennsylvania_North_FIPS_3701_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3651','NAD_1983_NSRS2007_StatePlane_Pennsylvania_South_FIPS_3702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3652','NAD_1983_NSRS2007_StatePlane_Pennsylvania_South_FIPS_3702_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3653','NAD_1983_NSRS2007_StatePlane_Rhode_Island_FIPS_3800','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3654','NAD_1983_NSRS2007_StatePlane_Rhode_Island_FIPS_3800_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3655','NAD_1983_NSRS2007_StatePlane_South_Carolina_FIPS_3900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3656','NAD_1983_NSRS2007_StatePlane_South_Carolina_FIPS_3900_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3657','NAD_1983_NSRS2007_StatePlane_South_Dakota_North_FIPS_4001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3658','NAD_1983_NSRS2007_StatePlane_South_Dakota_North_FIPS_4001_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3659','NAD_1983_NSRS2007_StatePlane_South_Dakota_South_FIPS_4002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3660','NAD_1983_NSRS2007_StatePlane_South_Dakota_South_FIPS_4002_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3661','NAD_1983_NSRS2007_StatePlane_Tennessee_FIPS_4100','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3662','NAD_1983_NSRS2007_StatePlane_Tennessee_FIPS_4100_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3663','NAD_1983_NSRS2007_StatePlane_Texas_Central_FIPS_4203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3664','NAD_1983_NSRS2007_StatePlane_Texas_Central_FIPS_4203_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3665','NAD_1983_NSRS2007_Texas_Centric_Mapping_System_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3666','NAD_1983_NSRS2007_Texas_Centric_Mapping_System_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3667','NAD_1983_NSRS2007_StatePlane_Texas_North_FIPS_4201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3668','NAD_1983_NSRS2007_StatePlane_Texas_North_FIPS_4201_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3669','NAD_1983_NSRS2007_StatePlane_Texas_North_Central_FIPS_4202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3670','NAD_1983_NSRS2007_StatePlane_Texas_North_Central_FIPS_4202_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3671','NAD_1983_NSRS2007_StatePlane_Texas_South_FIPS_4205','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3672','NAD_1983_NSRS2007_StatePlane_Texas_South_FIPS_4205_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3673','NAD_1983_NSRS2007_StatePlane_Texas_South_Central_FIPS_4204','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3674','NAD_1983_NSRS2007_StatePlane_Texas_South_Central_FIPS_4204_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3675','NAD_1983_NSRS2007_StatePlane_Utah_Central_FIPS_4302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3676','NAD_1983_NSRS2007_StatePlane_Utah_Central_FIPS_4302_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3677','NAD_1983_NSRS2007_StatePlane_Utah_Central_FIPS_4302_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3678','NAD_1983_NSRS2007_StatePlane_Utah_North_FIPS_4301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3679','NAD_1983_NSRS2007_StatePlane_Utah_North_FIPS_4301_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3680','NAD_1983_NSRS2007_StatePlane_Utah_North_FIPS_4301_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3681','NAD_1983_NSRS2007_StatePlane_Utah_South_FIPS_4303','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3682','NAD_1983_NSRS2007_StatePlane_Utah_South_FIPS_4303_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3683','NAD_1983_NSRS2007_StatePlane_Utah_South_FIPS_4303_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3684','NAD_1983_NSRS2007_StatePlane_Vermont_FIPS_4400','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3685','NAD_1983_NSRS2007_StatePlane_Virginia_North_FIPS_4501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3686','NAD_1983_NSRS2007_StatePlane_Virginia_North_FIPS_4501_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3687','NAD_1983_NSRS2007_StatePlane_Virginia_South_FIPS_4502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3688','NAD_1983_NSRS2007_StatePlane_Virginia_South_FIPS_4502_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3689','NAD_1983_NSRS2007_StatePlane_Washington_North_FIPS_4601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3690','NAD_1983_NSRS2007_StatePlane_Washington_North_FIPS_4601_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3691','NAD_1983_NSRS2007_StatePlane_Washington_South_FIPS_4602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3692','NAD_1983_NSRS2007_StatePlane_Washington_South_FIPS_4602_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3693','NAD_1983_NSRS2007_StatePlane_West_Virginia_North_FIPS_4701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3694','NAD_1983_NSRS2007_StatePlane_West_Virginia_South_FIPS_4702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3695','NAD_1983_NSRS2007_StatePlane_Wisconsin_Central_FIPS_4802','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3696','NAD_1983_NSRS2007_StatePlane_Wisconsin_Central_FIPS_4802_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3697','NAD_1983_NSRS2007_StatePlane_Wisconsin_North_FIPS_4801','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3698','NAD_1983_NSRS2007_StatePlane_Wisconsin_North_FIPS_4801_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3699','NAD_1983_NSRS2007_StatePlane_Wisconsin_South_FIPS_4803','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3700','NAD_1983_NSRS2007_StatePlane_Wisconsin_South_FIPS_4803_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3701','NAD_1983_NSRS2007_Wisconsin_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3702','NAD_1983_NSRS2007_StatePlane_Wyoming_East_FIPS_4901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3703','NAD_1983_NSRS2007_StatePlane_Wyoming_East_Central_FIPS_4902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3704','NAD_1983_NSRS2007_StatePlane_Wyoming_West_Central_FIPS_4903','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3705','NAD_1983_NSRS2007_StatePlane_Wyoming_West_FIPS_4904','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3706','NAD_1983_NSRS2007_UTM_Zone_59N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3707','NAD_1983_NSRS2007_UTM_Zone_60N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3708','NAD_1983_NSRS2007_UTM_Zone_1N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3709','NAD_1983_NSRS2007_UTM_Zone_2N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3710','NAD_1983_NSRS2007_UTM_Zone_3N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3711','NAD_1983_NSRS2007_UTM_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3712','NAD_1983_NSRS2007_UTM_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3713','NAD_1983_NSRS2007_UTM_Zone_6N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3714','NAD_1983_NSRS2007_UTM_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3715','NAD_1983_NSRS2007_UTM_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3716','NAD_1983_NSRS2007_UTM_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3717','NAD_1983_NSRS2007_UTM_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3718','NAD_1983_NSRS2007_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3719','NAD_1983_NSRS2007_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3720','NAD_1983_NSRS2007_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3721','NAD_1983_NSRS2007_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3722','NAD_1983_NSRS2007_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3723','NAD_1983_NSRS2007_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3724','NAD_1983_NSRS2007_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3725','NAD_1983_NSRS2007_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3726','NAD_1983_NSRS2007_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3727','Reunion_1947_TM_Reunion','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3728','NAD_1983_NSRS2007_StatePlane_Ohio_North_FIPS_3401_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3729','NAD_1983_NSRS2007_StatePlane_Ohio_South_FIPS_3402_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3730','NAD_1983_NSRS2007_StatePlane_Wyoming_East_FIPS_4901_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3731','NAD_1983_NSRS2007_StatePlane_Wyoming_E_Central_FIPS_4902_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3732','NAD_1983_NSRS2007_StatePlane_Wyoming_W_Central_FIPS_4903_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3733','NAD_1983_NSRS2007_StatePlane_Wyoming_West_FIPS_4904_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3734','NAD_1983_StatePlane_Ohio_North_FIPS_3401_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3735','NAD_1983_StatePlane_Ohio_South_FIPS_3402_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3736','NAD_1983_StatePlane_Wyoming_East_FIPS_4901_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3737','NAD_1983_StatePlane_Wyoming_East_Central_FIPS_4902_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3738','NAD_1983_StatePlane_Wyoming_West_Central_FIPS_4903_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3739','NAD_1983_StatePlane_Wyoming_West_FIPS_4904_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3740','NAD_1983_HARN_UTM_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3741','NAD_1983_HARN_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3742','NAD_1983_HARN_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3743','NAD_1983_HARN_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3744','NAD_1983_HARN_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3745','NAD_1983_HARN_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3746','NAD_1983_HARN_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3747','NAD_1983_HARN_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3748','NAD_1983_HARN_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3749','NAD_1983_HARN_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3750','NAD_1983_HARN_UTM_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3751','NAD_1983_HARN_UTM_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3753','NAD_1983_HARN_StatePlane_Ohio_North_FIPS_3401_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3754','NAD_1983_HARN_StatePlane_Ohio_South_FIPS_3402_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3755','NAD_1983_HARN_StatePlane_Wyoming_East_FIPS_4901_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3756','NAD_1983_HARN_StatePlane_Wyoming_East_Central_FIPS_4902_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3757','NAD_1983_HARN_StatePlane_Wyoming_West_Central_FIPS_4903_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3758','NAD_1983_HARN_StatePlane_Wyoming_West_FIPS_4904_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3759','NAD_1983_StatePlane_Hawaii_3_FIPS_5103_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3760','NAD_1983_HARN_StatePlane_Hawaii_3_FIPS_5103_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3761','NAD_1983_CSRS_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3762','WGS_1984_South_Georgia_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3763','ETRS_1989_Portugal_TM06','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3764','NZGD_2000_Chatham_Island_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3765','HTRS96_Croatia_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3766','HTRS96_Croatia_LCC','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3767','HTRS96_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3768','HTRS96_UTM_Zone_34N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3769','Bermuda_1957_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3770','Bermuda_2000_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3771','NAD_1927_3TM_111','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3772','NAD_1927_3TM_114','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3773','NAD_1927_3TM_117','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3775','NAD_1983_3TM_111','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3776','NAD_1983_3TM_114','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3777','NAD_1983_3TM_117','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3779','NAD_1983_CSRS_3TM_111','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3780','NAD_1983_CSRS_3TM_114','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3781','NAD_1983_CSRS_3TM_117','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3783','Pitcairn_2006_Pitcairn_TM_2006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3784','Pitcairn_1967_UTM_Zone_9S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3785','WGS_1984_Web_Mercator','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3788','NZGD_2000_Auckland_Islands_TM_2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3789','NZGD_2000_Campbell_Island_TM_2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3790','NZGD_2000_Antipodes_Islands_TM_2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3791','NZGD_2000_Raoul_Island_TM_2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3793','NZGD_2000_Chatham_Islands_TM_2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3794','Slovenia_1996_Slovene_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3797','NAD_1927_MTQ_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3798','NAD_1983_MTQ_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3799','NAD_1983_CSRS_MTQ_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3800','NAD_1927_3TM_120','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3801','NAD_1983_3TM_120','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3802','NAD_1983_CSRS_3TM_120','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3812','Belge_Lambert_2008','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3814','NAD_1983_Mississippi_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3815','NAD_1983_HARN_Mississippi_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3816','NAD_1983_NSRS2007_Mississippi_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3825','TWD_1997_TM_Penghu','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3826','TWD_1997_TM_Taiwan','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3827','TWD_1967_TM_Penghu','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3828','TWD_1967_TM_Taiwan','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3829','Hu_Tzu_Shan_UTM_Zone_51N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3832','WGS_1984_PDC_Mercator','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3833','Pulkovo_1942_Adj_1958_GK_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3834','Pulkovo_1942_Adj_1983_GK_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3835','Pulkovo_1942_Adj_1983_GK_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3836','Pulkovo_1942_Adj_1983_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3837','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3838','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3839','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3840','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3841','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3844','Pulkovo_1942_Adj_58_Stereo_70','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3845','SWEREF99_RT90_7.5_gon_V_emulation','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3846','SWEREF99_RT90_5_gon_V_emulation','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3847','SWEREF99_RT90_2.5_gon_V_emulation','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3848','SWEREF99_RT90_0_gon_emulation','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3849','SWEREF99_RT90_2.5_gon_O_emulation','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3850','SWEREF99_RT90_5_gon_O_emulation','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3851','NZGD_2000_NZ_Continental_Shelf_2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3852','RSRGD2000_DGLC2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3854','SWEREF99_County_ST74','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3857','WGS_1984_Web_Mercator_Auxiliary_Sphere','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3873','ETRS_1989_GK19FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3874','ETRS_1989_GK20FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3875','ETRS_1989_GK21FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3876','ETRS_1989_GK22FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3877','ETRS_1989_GK23FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3878','ETRS_1989_GK24FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3879','ETRS_1989_GK25FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3880','ETRS_1989_GK26FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3881','ETRS_1989_GK27FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3882','ETRS_1989_GK28FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3883','ETRS_1989_GK29FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3884','ETRS_1989_GK30FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3885','ETRS_1989_GK31FIN','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3890','IGRS_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3891','IGRS_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3892','IGRS_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3893','ED_1950_Iraq_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3907','MGI_1901_Balkans_5_NE_deprecated','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3908','MGI_1901_Balkans_6_NE_deprecated','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3909','MGI_1901_Balkans_7_NE_deprecated','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3910','MGI_1901_Balkans_8_NE_deprecated','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3911','MGI_1901_Slovenia_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3912','MGI_1901_Slovene_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3920','Puerto_Rico_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3942','RGF_1993_CC42','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3943','RGF_1993_CC43','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3944','RGF_1993_CC44','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3945','RGF_1993_CC45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3946','RGF_1993_CC46','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3947','RGF_1993_CC47','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3948','RGF_1993_CC48','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3949','RGF_1993_CC49','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3950','RGF_1993_CC50','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3968','NAD_1983_Virginia_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3969','NAD_1983_HARN_Virginia_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3970','NAD_1983_NSRS2007_Virginia_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3973','WGS_1984_EASE_Grid_North','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3974','WGS_1984_EASE_Grid_South','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3975','WGS_1984_EASE_Grid_Global','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3976','WGS_1984_NSIDC_Sea_Ice_Polar_Stereographic_South','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3978','NAD_1983_Canada_Atlas_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3979','NAD_1983_CSRS_Canada_Atlas_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3986','Katanga_1955_Katanga_Gauss_Zone_A','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3987','Katanga_1955_Katanga_Gauss_Zone_B','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3988','Katanga_1955_Katanga_Gauss_Zone_C','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3989','Katanga_1955_Katanga_Gauss_Zone_D','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3991','Puerto_Rico_StatePlane_Puerto_Rico_FIPS_5201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3992','Puerto_Rico_StatePlane_Virgin_Islands_St_Croix_FIPS_5202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3994','WGS_1984_Mercator_41','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3995','WGS_1984_Arctic_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3996','WGS_1984_IBCAO_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','3997','WGS_1984_Dubai_Local_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4026','MOLDREF99_Moldova_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4037','WGS_1984_TMzn35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4038','WGS_1984_TMzn36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4048','RGRDC_2005_Congo_TM_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4049','RGRDC_2005_Congo_TM_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4050','RGRDC_2005_Congo_TM_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4051','RGRDC_2005_Congo_TM_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4056','RGRDC_2005_Congo_TM_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4057','RGRDC_2005_Congo_TM_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4058','RGRDC_2005_Congo_TM_Zone_24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4059','RGRDC_2005_Congo_TM_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4060','RGRDC_2005_Congo_TM_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4061','RGRDC_2005_UTM_Zone_33S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4062','RGRDC_2005_UTM_Zone_34S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4063','RGRDC_2005_UTM_Zone_35S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4071','Chua_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4082','REGCAN95_UTM_Zone_27N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4083','REGCAN95_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4087','WGS_1984_World_Equidistant_Cylindrical','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4088','World_Equidistant_Cylindrical_(Sphere)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4093','ETRS_1989_DKTM1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4094','ETRS_1989_DKTM2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4095','ETRS_1989_DKTM3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4096','ETRS_1989_DKTM4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4217','NAD_1983_BLM_Zone_59N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4390','Kertau_1968_Johor_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4391','Kertau_1968_Sembilan_and_Melaka_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4392','Kertau_1968_Pahang_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4393','Kertau_1968_Selangor_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4394','Kertau_1968_Terengganu_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4395','Kertau_1968_Pinang_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4396','Kertau_1968_Kedah_and_Perlis_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4397','Kertau_1968_Perak_Revised_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4398','Kertau_1968_Kelantan_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4399','NAD_1927_BLM_Zone_59N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4400','NAD_1927_BLM_Zone_60N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4401','NAD_1927_BLM_Zone_1N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4402','NAD_1927_BLM_Zone_2N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4403','NAD_1927_BLM_Zone_3N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4404','NAD_1927_BLM_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4405','NAD_1927_BLM_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4406','NAD_1927_BLM_Zone_6N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4407','NAD_1927_BLM_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4408','NAD_1927_BLM_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4409','NAD_1927_BLM_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4410','NAD_1927_BLM_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4411','NAD_1927_BLM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4412','NAD_1927_BLM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4413','NAD_1927_BLM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4414','NAD_1983_HARN_Guam_Map_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4415','Katanga_1955_Katanga_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4417','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4418','NAD_1927_BLM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4419','NAD_1927_BLM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4420','NAD_1983_BLM_Zone_60N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4421','NAD_1983_BLM_Zone_1N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4422','NAD_1983_BLM_Zone_2N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4423','NAD_1983_BLM_Zone_3N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4424','NAD_1983_BLM_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4425','NAD_1983_BLM_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4426','NAD_1983_BLM_Zone_6N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4427','NAD_1983_BLM_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4428','NAD_1983_BLM_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4429','NAD_1983_BLM_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4430','NAD_1983_BLM_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4431','NAD_1983_BLM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4432','NAD_1983_BLM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4433','NAD_1983_BLM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4434','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4437','NAD_1983_NSRS2007_StatePlane_Puerto_Rico_Virgin_Isls_FIPS_5200','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4438','NAD_1983_BLM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4439','NAD_1983_BLM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4455','NAD_1927_StatePlane_Pennsylvania_South_FIPS_3702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4456','NAD_1927_StatePlane_New_York_Long_Island_FIPS_3104','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4457','NAD_1983_StatePlane_South_Dakota_North_FIPS_4001_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4462','WGS_1984_Australian_Centre_for_Remote_Sensing_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4467','RGSPM_2006_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4471','RGM_2004_UTM_Zone_38S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4474','Cadastre_1997_UTM_Zone_38S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4484','Mexican_Datum_1993_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4485','Mexican_Datum_1993_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4486','Mexican_Datum_1993_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4487','Mexican_Datum_1993_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4488','Mexican_Datum_1993_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4489','Mexican_Datum_1993_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4491','CGCS2000_GK_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4492','CGCS2000_GK_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4493','CGCS2000_GK_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4494','CGCS2000_GK_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4495','CGCS2000_GK_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4496','CGCS2000_GK_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4497','CGCS2000_GK_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4498','CGCS2000_GK_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4499','CGCS2000_GK_Zone_21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4500','CGCS2000_GK_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4501','CGCS2000_GK_Zone_23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4502','CGCS2000_GK_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4503','CGCS2000_GK_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4504','CGCS2000_GK_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4505','CGCS2000_GK_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4506','CGCS2000_GK_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4507','CGCS2000_GK_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4508','CGCS2000_GK_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4509','CGCS2000_GK_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4510','CGCS2000_GK_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4511','CGCS2000_GK_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4512','CGCS2000_GK_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4513','CGCS2000_3_Degree_GK_Zone_25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4514','CGCS2000_3_Degree_GK_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4515','CGCS2000_3_Degree_GK_Zone_27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4516','CGCS2000_3_Degree_GK_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4517','CGCS2000_3_Degree_GK_Zone_29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4518','CGCS2000_3_Degree_GK_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4519','CGCS2000_3_Degree_GK_Zone_31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4520','CGCS2000_3_Degree_GK_Zone_32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4521','CGCS2000_3_Degree_GK_Zone_33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4522','CGCS2000_3_Degree_GK_Zone_34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4523','CGCS2000_3_Degree_GK_Zone_35','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4524','CGCS2000_3_Degree_GK_Zone_36','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4525','CGCS2000_3_Degree_GK_Zone_37','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4526','CGCS2000_3_Degree_GK_Zone_38','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4527','CGCS2000_3_Degree_GK_Zone_39','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4528','CGCS2000_3_Degree_GK_Zone_40','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4529','CGCS2000_3_Degree_GK_Zone_41','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4530','CGCS2000_3_Degree_GK_Zone_42','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4531','CGCS2000_3_Degree_GK_Zone_43','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4532','CGCS2000_3_Degree_GK_Zone_44','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4533','CGCS2000_3_Degree_GK_Zone_45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4534','CGCS2000_3_Degree_GK_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4535','CGCS2000_3_Degree_GK_CM_78E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4536','CGCS2000_3_Degree_GK_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4537','CGCS2000_3_Degree_GK_CM_84E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4538','CGCS2000_3_Degree_GK_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4539','CGCS2000_3_Degree_GK_CM_90E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4540','CGCS2000_3_Degree_GK_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4541','CGCS2000_3_Degree_GK_CM_96E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4542','CGCS2000_3_Degree_GK_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4543','CGCS2000_3_Degree_GK_CM_102E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4544','CGCS2000_3_Degree_GK_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4545','CGCS2000_3_Degree_GK_CM_108E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4546','CGCS2000_3_Degree_GK_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4547','CGCS2000_3_Degree_GK_CM_114E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4548','CGCS2000_3_Degree_GK_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4549','CGCS2000_3_Degree_GK_CM_120E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4550','CGCS2000_3_Degree_GK_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4551','CGCS2000_3_Degree_GK_CM_126E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4552','CGCS2000_3_Degree_GK_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4553','CGCS2000_3_Degree_GK_CM_132E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4554','CGCS2000_3_Degree_GK_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4559','RRAF_1991_UTM_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4568','New_Beijing_Gauss_Kruger_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4569','New_Beijing_Gauss_Kruger_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4570','New_Beijing_Gauss_Kruger_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4571','New_Beijing_Gauss_Kruger_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4572','New_Beijing_Gauss_Kruger_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4573','New_Beijing_Gauss_Kruger_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4574','New_Beijing_Gauss_Kruger_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4575','New_Beijing_Gauss_Kruger_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4576','New_Beijing_Gauss_Kruger_Zone_21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4577','New_Beijing_Gauss_Kruger_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4578','New_Beijing_Gauss_Kruger_Zone_23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4579','New_Beijing_Gauss_Kruger_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4580','New_Beijing_Gauss_Kruger_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4581','New_Beijing_Gauss_Kruger_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4582','New_Beijing_Gauss_Kruger_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4583','New_Beijing_Gauss_Kruger_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4584','New_Beijing_Gauss_Kruger_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4585','New_Beijing_Gauss_Kruger_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4586','New_Beijing_Gauss_Kruger_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4587','New_Beijing_Gauss_Kruger_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4588','New_Beijing_Gauss_Kruger_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4589','New_Beijing_Gauss_Kruger_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4647','ETRS_1989_UTM_Zone_N32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4652','New_Beijing_3_Degree_Gauss_Kruger_Zone_25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4653','New_Beijing_3_Degree_Gauss_Kruger_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4654','New_Beijing_3_Degree_Gauss_Kruger_Zone_27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4655','New_Beijing_3_Degree_Gauss_Kruger_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4656','New_Beijing_3_Degree_Gauss_Kruger_Zone_29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4766','New_Beijing_3_Degree_Gauss_Kruger_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4767','New_Beijing_3_Degree_Gauss_Kruger_Zone_31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4768','New_Beijing_3_Degree_Gauss_Kruger_Zone_32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4769','New_Beijing_3_Degree_Gauss_Kruger_Zone_33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4770','New_Beijing_3_Degree_Gauss_Kruger_Zone_34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4771','New_Beijing_3_Degree_Gauss_Kruger_Zone_35','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4772','New_Beijing_3_Degree_Gauss_Kruger_Zone_36','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4773','New_Beijing_3_Degree_Gauss_Kruger_Zone_37','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4774','New_Beijing_3_Degree_Gauss_Kruger_Zone_38','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4775','New_Beijing_3_Degree_Gauss_Kruger_Zone_39','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4776','New_Beijing_3_Degree_Gauss_Kruger_Zone_40','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4777','New_Beijing_3_Degree_Gauss_Kruger_Zone_41','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4778','New_Beijing_3_Degree_Gauss_Kruger_Zone_42','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4779','New_Beijing_3_Degree_Gauss_Kruger_Zone_43','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4780','New_Beijing_3_Degree_Gauss_Kruger_Zone_44','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4781','New_Beijing_3_Degree_Gauss_Kruger_Zone_45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4782','New_Beijing_3_Degree_Gauss_Kruger_CM_75E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4783','New_Beijing_3_Degree_Gauss_Kruger_CM_78E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4784','New_Beijing_3_Degree_Gauss_Kruger_CM_81E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4785','New_Beijing_3_Degree_Gauss_Kruger_CM_84E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4786','New_Beijing_3_Degree_Gauss_Kruger_CM_87E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4787','New_Beijing_3_Degree_Gauss_Kruger_CM_90E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4788','New_Beijing_3_Degree_Gauss_Kruger_CM_93E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4789','New_Beijing_3_Degree_Gauss_Kruger_CM_96E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4790','New_Beijing_3_Degree_Gauss_Kruger_CM_99E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4791','New_Beijing_3_Degree_Gauss_Kruger_CM_102E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4792','New_Beijing_3_Degree_Gauss_Kruger_CM_105E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4793','New_Beijing_3_Degree_Gauss_Kruger_CM_108E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4794','New_Beijing_3_Degree_Gauss_Kruger_CM_111E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4795','New_Beijing_3_Degree_Gauss_Kruger_CM_114E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4796','New_Beijing_3_Degree_Gauss_Kruger_CM_117E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4797','New_Beijing_3_Degree_Gauss_Kruger_CM_120E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4798','New_Beijing_3_Degree_Gauss_Kruger_CM_123E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4799','New_Beijing_3_Degree_Gauss_Kruger_CM_126E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4800','New_Beijing_3_Degree_Gauss_Kruger_CM_129E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4822','New_Beijing_3_Degree_Gauss_Kruger_CM_135E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4826','WGS_1984_Cape_Verde_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','4839','ETRS_1989_LCC_Germany_N-E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5014','PTRA08_UTM_Zone_25N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5015','PTRA08_UTM_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5016','PTRA08_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5018','Lisbon_Portuguese_Grid_New','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5048','ETRS_1989_TM35FIN_NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5069','NAD_1927_Contiguous_USA_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5070','NAD_1983_Contiguous_USA_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5071','NAD_1983_HARN_Contiguous_USA_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5072','NAD_1983_NSRS2007_Contiguous_USA_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5105','ETRS_1989_NTM_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5106','ETRS_1989_NTM_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5107','ETRS_1989_NTM_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5108','ETRS_1989_NTM_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5109','ETRS_1989_NTM_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5110','ETRS_1989_NTM_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5111','ETRS_1989_NTM_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5112','ETRS_1989_NTM_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5113','ETRS_1989_NTM_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5114','ETRS_1989_NTM_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5115','ETRS_1989_NTM_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5116','ETRS_1989_NTM_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5117','ETRS_1989_NTM_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5118','ETRS_1989_NTM_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5119','ETRS_1989_NTM_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5120','ETRS_1989_NTM_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5121','ETRS_1989_NTM_Zone_21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5122','ETRS_1989_NTM_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5123','ETRS_1989_NTM_Zone_23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5124','ETRS_1989_NTM_Zone_24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5125','ETRS_1989_NTM_Zone_25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5126','ETRS_1989_NTM_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5127','ETRS_1989_NTM_Zone_27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5128','ETRS_1989_NTM_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5129','ETRS_1989_NTM_Zone_29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5130','ETRS_1989_NTM_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5167','Korean_1985_Korea_East_Sea_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5168','Korean_1985_Korea_Central_Belt_Jeju','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5173','Korean_1985_Modified_Korea_West_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5174','Korean_1985_Modified_Korea_Central_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5175','Korean_1985_Modified_Korea_Central_Belt_Jeju','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5176','Korean_1985_Modified_Korea_East_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5177','Korean_1985_Modified_Korea_East_Sea_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5178','Korean_1985_Korea_Unified_Coordinate_System','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5179','Korea_2000_Korea_Unified_Coordinate_System','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5180','Korea_2000_Korea_West_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5181','Korea_2000_Korea_Central_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5182','Korea_2000_Korea_Central_Belt_Jeju','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5183','Korea_2000_Korea_East_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5184','Korea_2000_Korea_East_Sea_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5185','Korea_2000_Korea_West_Belt_2010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5186','Korea_2000_Korea_Central_Belt_2010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5187','Korea_2000_Korea_East_Belt_2010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5188','Korea_2000_Korea_East_Sea_Belt_2010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5221','S-JTSK_Ferro_Krovak_East_North','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5223','WGS_1984_UTM_Gabon_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5234','Kandawala_Sri_Lanka_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5235','SLD99_Sri_Lanka_Grid_1999','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5243','ETRS_1989_LCC_Germany_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5247','GDBD2009_GEORSO','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5253','TUREF_TM27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5254','TUREF_TM30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5255','TUREF_TM33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5256','TUREF_TM36','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5257','TUREF_TM39','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5258','TUREF_TM42','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5259','TUREF_TM45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5266','DRUKREF_03_Bhutan_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5269','TUREF_3_Degree_GK_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5270','TUREF_3_Degree_GK_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5271','TUREF_3_Degree_GK_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5272','TUREF_3_Degree_GK_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5273','TUREF_3_Degree_GK_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5274','TUREF_3_Degree_GK_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5275','TUREF_3_Degree_GK_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5292','DRUKREF_03_Bumthang_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5293','DRUKREF_03_Chhukha_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5294','DRUKREF_03_Dagana_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5295','DRUKREF_03_Gasa_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5296','DRUKREF_03_Ha_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5297','DRUKREF_03_Lhuentse_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5298','DRUKREF_03_Mongar_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5299','DRUKREF_03_Paro_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5300','DRUKREF_03_Pemagatshel_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5301','DRUKREF_03_Punakha_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5302','DRUKREF_03_Samdrup_Jongkhar_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5303','DRUKREF_03_Samtse_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5304','DRUKREF_03_Sarpang_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5305','DRUKREF_03_Thimphu_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5306','DRUKREF_03_Trashigang_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5307','DRUKREF_03_Trongsa_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5308','DRUKREF_03_Tsirang_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5309','DRUKREF_03_Wangdue_Phodrang_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5310','DRUKREF_03_Yangtse_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5311','DRUKREF_03_Zhemgang_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5316','ETRS_1989_FAROE_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5320','NAD_1983_Teranet_Ontario_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5321','NAD_1983_CSRS_Teranet_Ontario_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5325','ISN_2004_Lambert_2004','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5329','Gunung_Segara_Jakarta_NEIEZ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5330','Batavia_Jakarta_NEIEZ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5331','Makassar_Jakarta_NEIEZ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5337','Aratu_UTM_Zone_25S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5343','POSGAR_2007_Argentina_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5344','POSGAR_2007_Argentina_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5345','POSGAR_2007_Argentina_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5346','POSGAR_2007_Argentina_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5347','POSGAR_2007_Argentina_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5348','POSGAR_2007_Argentina_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5349','POSGAR_2007_Argentina_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5355','MARGEN_UTM_Zone_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5356','MARGEN_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5357','MARGEN_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5361','SIRGAS-Chile_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5362','SIRGAS-Chile_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5367','CRTM05','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5382','SIRGAS-ROU98_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5383','SIRGAS-ROU98_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5387','Peru96_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5388','Peru96_UTM_Zone_17S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5389','Peru96_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5396','SIRGAS_2000_UTM_Zone_26S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5456','Ocotepeque_1935_Costa_Rica_Norte','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5457','Ocotepeque_1935_Costa_Rica_Sur','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5459','Ocotepeque_1935_Guatemala_Sur','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5460','Ocotepeque_1935_El_Salvador_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5461','Ocotepeque_1935_Nicaragua_Norte','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5462','Ocotepeque_1935_Nicaragua_Sur','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5463','SAD_1969_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5469','Panama-Colon_1911_Panama_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5472','Panama-Colon_1911_Panama_Polyconic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5479','RSRGD2000_MSLC2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5480','RSRGD2000_BCLC2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5481','RSRGD2000_PCLC2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5482','RSRGD2000_RSPS2000','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5490','RGAF09_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5513','S-JTSK_Krovak','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5514','S-JTSK_Krovak_East_North','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5518','Chatham_Island_1971_Map_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5519','Chatham_Islands_1979_Map_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5520','DHDN_3_Degree_Gauss_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5523','WGS_1984_UTM_Gabon_TM_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5530','SAD_1969_96_Brazil_Polyconic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5531','SAD_1969_96_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5532','SAD_1969_96_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5533','SAD_1969_96_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5534','SAD_1969_96_UTM_Zone_24S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5535','SAD_1969_96_UTM_Zone_25S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5536','Corrego_Alegre_1961_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5537','Corrego_Alegre_1961_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5538','Corrego_Alegre_1961_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5539','Corrego_Alegre_1961_UTM_Zone_24S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5550','PNG94_PNGMG94_Zone_54','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5551','PNG94_PNGMG94_Zone_55','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5552','PNG94_PNGMG94_Zone_56','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5559','Ocotepeque_1935_Guatemala_Norte','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5562','Ukraine_2000_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5563','Ukraine_2000_GK_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5564','Ukraine_2000_GK_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5565','Ukraine_2000_GK_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5566','Ukraine_2000_GK_CM_21E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5567','Ukraine_2000_GK_CM_27E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5568','Ukraine_2000_GK_CM_33E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5569','Ukraine_2000_GK_CM_39E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5570','Ukraine_2000_3_Degree_GK_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5571','Ukraine_2000_3_Degree_GK_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5572','Ukraine_2000_3_Degree_GK_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5573','Ukraine_2000_3_Degree_GK_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5574','Ukraine_2000_3_Degree_GK_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5575','Ukraine_2000_3_Degree_GK_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5576','Ukraine_2000_3_Degree_GK_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5577','Ukraine_2000_3_Degree_GK_CM_21E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5578','Ukraine_2000_3_Degree_GK_CM_24E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5579','Ukraine_2000_3_Degree_GK_CM_27E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5580','Ukraine_2000_3_Degree_GK_CM_30E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5581','Ukraine_2000_3_Degree_GK_CM_33E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5582','Ukraine_2000_3_Degree_GK_CM_36E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5583','Ukraine_2000_3_Degree_GK_CM_39E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5588','NAD_1927_New_Brunswick_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5589','Sibun_Gorge_1922_Colony_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5596','FEH2010_Fehmarnbelt_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5623','NAD_1927_StatePlane_Michigan_East_Old_FIPS_2101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5624','NAD_1927_StatePlane_Michigan_Central_Old_FIPS_2102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5625','NAD_1927_StatePlane_Michigan_West_Old_FIPS_2103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5627','ED_1950_TM_6_NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5629','Moznet_UTM_Zone_38S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5631','Pulkovo_1942_Adj_1958_GK_Zone_2_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5632','PTRA08_LCC_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5633','PTRA08_LAEA_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5634','REGCAN95_LCC_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5635','REGCAN95_LAEA_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5636','TUREF_LAEA_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5637','TUREF_LCC_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5638','ISN_2004_LAEA_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5639','ISN_2004_LCC_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5641','SIRGAS_2000_Brazil_Mercator','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5643','ED_1950_Southern_Permian_Basin_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5644','RGR_1992_UTM_39S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5646','NAD_1983_StatePlane_Vermont_FIPS_4400_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5649','ETRS_1989_UTM_Zone_31N_zE-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5650','ETRS_1989_UTM_Zone_33N_zE-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5651','ETRS_1989_UTM_Zone_31N_N-zE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5652','ETRS_1989_UTM_Zone_32N_N-zE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5653','ETRS_1989_UTM_Zone_33N_N-zE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5654','NAD_1983_HARN_StatePlane_Vermont_FIPS_4400_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5655','NAD_1983_NSRS2007_StatePlane_Vermont_FIPS_4400_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5659','Monte_Mario_TM_Emilia-Romagna','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5663','Pulkovo_1942_Adj_1958_GK_Zone_3_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5664','Pulkovo_1942_Adj_1983_GK_Zone_2_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5665','Pulkovo_1942_Adj_1983_GK_Zone_3_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5666','PD/83_3_Degree_GK_Zone_3_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5667','PD/83_3_Degree_GK_Zone_4_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5668','RD/83_3_Degree_GK_Zone_4_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5669','RD/83_3_Degree_GK_Zone_5_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5670','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_3_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5671','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_4_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5672','Pulkovo_1942_Adj_1958_3_Degree_GK_Zone_5_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5673','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_3_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5674','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_4_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5675','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_5_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5676','DHDN_3_Degree_GK_Zone_2_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5677','DHDN_3_Degree_GK_Zone_3_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5678','DHDN_3_Degree_GK_Zone_4_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5679','DHDN_3_Degree_GK_Zone_5_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5680','DHDN_3_Degree_GK_Zone_1_E-N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5682','DB_REF_3-Degree_GK_Zone_2_(E-N)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5683','DB_REF_3-Degree_GK_Zone_3_(E-N)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5684','DB_REF_3-Degree_GK_Zone_4_(E-N)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5685','DB_REF_3-Degree_GK_Zone_5_(E-N)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5700','NZGD_2000_UTM_Zone_1S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5825','AGD_1966_ACT_Standard_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5836','Yemen_NGN_1996_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5837','Yemen_NGN_1996_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5839','Peru96_UTM_Zone_17S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5842','WGS_1984_TM_12_SE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5844','RGRDC_2005_Congo_TM_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5858','SAD_1969_96_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5875','SAD_1969_96_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5876','SAD_1969_96_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5877','SAD_1969_96_UTM_Zone_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5879','Cadastre_1997_UTM_Zone_38S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5880','SIRGAS_2000_Brazil_Polyconic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5887','TGD2005_Tonga_Map_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5890','JAXA_Snow_Depth_Polar_Stereographic_North','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5896','VN_2000_TM-3_zone_481','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5897','VN_2000_TM-3_zone_482','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5898','VN_2000_TM-3_zone_491','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5899','VN_2000_TM-3_107-45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5921','WGS_1984_EPSG_Arctic_Regional_zone_A1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5922','WGS_1984_EPSG_Arctic_Regional_zone_A2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5923','WGS_1984_EPSG_Arctic_Regional_zone_A3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5924','WGS_1984_EPSG_Arctic_Regional_zone_A4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5925','WGS_1984_EPSG_Arctic_Regional_zone_A5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5926','WGS_1984_EPSG_Arctic_Regional_zone_B1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5927','WGS_1984_EPSG_Arctic_Regional_zone_B2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5928','WGS_1984_EPSG_Arctic_Regional_zone_B3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5929','WGS_1984_EPSG_Arctic_Regional_zone_B4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5930','WGS_1984_EPSG_Arctic_Regional_zone_B5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5931','WGS_1984_EPSG_Arctic_Regional_zone_C1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5932','WGS_1984_EPSG_Arctic_Regional_zone_C2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5933','WGS_1984_EPSG_Arctic_Regional_zone_C3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5934','WGS_1984_EPSG_Arctic_Regional_zone_C4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5935','WGS_1984_EPSG_Arctic_Regional_zone_C5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5936','WGS_1984_EPSG_Alaska_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5937','WGS_1984_EPSG_Canada_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5938','WGS_1984_EPSG_Greenland_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5939','WGS_1984_EPSG_Norway_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','5940','WGS_1984_EPSG_Russia_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6050','GR96_EPSG_Arctic_zone_1-25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6051','GR96_EPSG_Arctic_zone_2-18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6052','GR96_EPSG_Arctic_zone_2-20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6053','GR96_EPSG_Arctic_zone_3-29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6054','GR96_EPSG_Arctic_zone_3-31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6055','GR96_EPSG_Arctic_zone_3-33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6056','GR96_EPSG_Arctic_zone_4-20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6057','GR96_EPSG_Arctic_zone_4-22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6058','GR96_EPSG_Arctic_zone_4-24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6059','GR96_EPSG_Arctic_zone_5-41','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6060','GR96_EPSG_Arctic_zone_5-43','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6061','GR96_EPSG_Arctic_zone_5-45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6062','GR96_EPSG_Arctic_zone_6-26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6063','GR96_EPSG_Arctic_zone_6-28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6064','GR96_EPSG_Arctic_zone_6-30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6065','GR96_EPSG_Arctic_zone_7-11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6066','GR96_EPSG_Arctic_zone_7-13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6067','GR96_EPSG_Arctic_zone_8-20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6068','GR96_EPSG_Arctic_zone_8-22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6069','ETRS_1989_EPSG_Arctic_zone_2-22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6070','ETRS_1989_EPSG_Arctic_zone_3-11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6071','ETRS_1989_EPSG_Arctic_zone_4-26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6072','ETRS_1989_EPSG_Arctic_zone_4-28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6073','ETRS_1989_EPSG_Arctic_zone_5-11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6074','ETRS_1989_EPSG_Arctic_zone_5-13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6075','WGS_1984_EPSG_Arctic_zone_2-24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6076','WGS_1984_EPSG_Arctic_zone_2-26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6077','WGS_1984_EPSG_Arctic_zone_3-13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6078','WGS_1984_EPSG_Arctic_zone_3-15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6079','WGS_1984_EPSG_Arctic_zone_3-17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6080','WGS_1984_EPSG_Arctic_zone_3-19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6081','WGS_1984_EPSG_Arctic_zone_4-30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6082','WGS_1984_EPSG_Arctic_zone_4-32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6083','WGS_1984_EPSG_Arctic_zone_4-34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6084','WGS_1984_EPSG_Arctic_zone_4-36','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6085','WGS_1984_EPSG_Arctic_zone_4-38','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6086','WGS_1984_EPSG_Arctic_zone_4-40','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6087','WGS_1984_EPSG_Arctic_zone_5-15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6088','WGS_1984_EPSG_Arctic_zone_5-17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6089','WGS_1984_EPSG_Arctic_zone_5-19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6090','WGS_1984_EPSG_Arctic_zone_5-21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6091','WGS_1984_EPSG_Arctic_zone_5-23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6092','WGS_1984_EPSG_Arctic_zone_5-25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6093','WGS_1984_EPSG_Arctic_zone_5-27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6094','NAD_1983_NSRS2007_EPSG_Arctic_zone_5-29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6095','NAD_1983_NSRS2007_EPSG_Arctic_zone_5-31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6096','NAD_1983_NSRS2007_EPSG_Arctic_zone_6-14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6097','NAD_1983_NSRS2007_EPSG_Arctic_zone_6-16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6098','NAD_1983_CSRS_EPSG_Arctic_zone_1-23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6099','NAD_1983_CSRS_EPSG_Arctic_zone_2-14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6100','NAD_1983_CSRS_EPSG_Arctic_zone_2-16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6101','NAD_1983_CSRS_EPSG_Arctic_zone_3-25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6102','NAD_1983_CSRS_EPSG_Arctic_zone_3-27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6103','NAD_1983_CSRS_EPSG_Arctic_zone_3-29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6104','NAD_1983_CSRS_EPSG_Arctic_zone_4-14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6105','NAD_1983_CSRS_EPSG_Arctic_zone_4-16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6106','NAD_1983_CSRS_EPSG_Arctic_zone_4-18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6107','NAD_1983_CSRS_EPSG_Arctic_zone_5-33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6108','NAD_1983_CSRS_EPSG_Arctic_zone_5-35','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6109','NAD_1983_CSRS_EPSG_Arctic_zone_5-37','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6110','NAD_1983_CSRS_EPSG_Arctic_zone_5-39','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6111','NAD_1983_CSRS_EPSG_Arctic_zone_6-18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6112','NAD_1983_CSRS_EPSG_Arctic_zone_6-20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6113','NAD_1983_CSRS_EPSG_Arctic_zone_6-22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6114','NAD_1983_CSRS_EPSG_Arctic_zone_6-24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6115','WGS_1984_EPSG_Arctic_zone_1-27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6116','WGS_1984_EPSG_Arctic_zone_1-29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6117','WGS_1984_EPSG_Arctic_zone_1-31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6118','WGS_1984_EPSG_Arctic_zone_1-21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6119','WGS_1984_EPSG_Arctic_zone_2-28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6120','WGS_1984_EPSG_Arctic_zone_2-10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6121','WGS_1984_EPSG_Arctic_zone_2-12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6122','WGS_1984_EPSG_Arctic_zone_3-21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6123','WGS_1984_EPSG_Arctic_zone_3-23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6124','WGS_1984_EPSG_Arctic_zone_4-12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6125','ETRS_1989_EPSG_Arctic_zone_5-47','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6128','Grand_Cayman_National_Grid_1959','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6129','Sister_Islands_National_Grid_1961','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6141','Cayman_Islands_National_Grid_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6204','Macedonian_State_Coordinate_System','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6210','SIRGAS_2000_UTM_Zone_23N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6211','SIRGAS_2000_UTM_Zone_24N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6244','MAGNA_Arauca_2007','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6245','MAGNA_Armenia_Quindio_2006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6246','MAGNA_Barranquilla_Atlantico_1997','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6247','MAGNA_Bogota_DC_2005','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6248','MAGNA_Bucaramanga_Santander_2008','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6249','MAGNA_Cali_Valle_del_Cauca_2009','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6250','MAGNA_Cartagena_Bolivar_2005','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6251','MAGNA_Cucuta_Norte_de_Santander_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6252','MAGNA_Florencia_Caqueta_2007','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6253','MAGNA_Ibague_Tolima_2007','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6254','MAGNA_Inirida_Guainia_2008','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6255','MAGNA_Leticia_Amazonas_1994','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6256','MAGNA_Manizales_Caldas_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6257','MAGNA_Medellin_Antioquia_2010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6258','MAGNA_Mitu_Vaupes_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6259','MAGNA_Mocoa_Putumayo_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6260','MAGNA_Monteria_Cordoba_2006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6261','MAGNA_Neiva_Huila_2006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6262','MAGNA_Pasto_Narino_2008','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6263','MAGNA_Pereira_Risaralda_2007','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6264','MAGNA_Popayan_Cauca_2006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6265','MAGNA_Puerto_Carreno_Vichada_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6266','MAGNA_Quibdo_Choco_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6267','MAGNA_Riohacha_La_Guajira_2006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6268','MAGNA_San_Andres_2007','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6269','MAGNA_San_Jose_del_Guaviare_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6270','MAGNA_Santa_Marta_Magdalena_2007','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6271','MAGNA_Sucre_2006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6272','MAGNA_Tunja_Boyaca_1997','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6273','MAGNA_Valledupar_Cesar_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6274','MAGNA_Villavicencio_Meta_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6275','MAGNA_Yopal_Casanare_2006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6307','NAD_1983_CORS96_SPCS_Puerto_Rico_and_Virgin_Islands','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6312','CGRS_1993_Cyprus_Local_Transverse_Mercator','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6316','MGI_1901_Balkans_zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6328','NAD_1983_2011_UTM_Zone_59N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6329','NAD_1983_2011_UTM_Zone_60N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6330','NAD_1983_2011_UTM_Zone_1N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6331','NAD_1983_2011_UTM_Zone_2N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6332','NAD_1983_2011_UTM_Zone_3N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6333','NAD_1983_2011_UTM_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6334','NAD_1983_2011_UTM_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6335','NAD_1983_2011_UTM_Zone_6N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6336','NAD_1983_2011_UTM_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6337','NAD_1983_2011_UTM_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6338','NAD_1983_2011_UTM_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6339','NAD_1983_2011_UTM_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6340','NAD_1983_2011_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6341','NAD_1983_2011_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6342','NAD_1983_2011_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6343','NAD_1983_2011_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6344','NAD_1983_2011_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6345','NAD_1983_2011_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6346','NAD_1983_2011_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6347','NAD_1983_2011_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6348','NAD_1983_2011_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6350','NAD_1983_2011_Contiguous_USA_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6351','NAD_1983_2011_EPSG_Arctic_zone_5-29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6352','NAD_1983_2011_EPSG_Arctic_zone_5-31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6353','NAD_1983_2011_EPSG_Arctic_zone_6-14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6354','NAD_1983_2011_EPSG_Arctic_zone_6-16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6355','NAD_1983_2011_StatePlane_Alabama_East_FIPS_0101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6356','NAD_1983_2011_StatePlane_Alabama_West_FIPS_0102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6362','Mexico_ITRF92_LCC','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6366','Mexico_ITRF2008_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6367','Mexico_ITRF2008_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6368','Mexico_ITRF2008_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6369','Mexico_ITRF2008_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6370','Mexico_ITRF2008_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6371','Mexico_ITRF2008_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6372','Mexico_ITRF2008_LCC','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6381','Ukraine_2000_TM_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6382','Ukraine_2000_TM_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6383','Ukraine_2000_TM_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6384','Ukraine_2000_TM_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6385','Ukraine_2000_TM_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6386','Ukraine_2000_TM_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6387','Ukraine_2000_TM_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6391','Cayman_Islands_National_Grid_2011','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6393','NAD_1983_2011_Alaska_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6394','NAD_1983_2011_StatePlane_Alaska_1_FIPS_5001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6395','NAD_1983_2011_StatePlane_Alaska_2_FIPS_5002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6396','NAD_1983_2011_StatePlane_Alaska_3_FIPS_5003','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6397','NAD_1983_2011_StatePlane_Alaska_4_FIPS_5004','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6398','NAD_1983_2011_StatePlane_Alaska_5_FIPS_5005','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6399','NAD_1983_2011_StatePlane_Alaska_6_FIPS_5006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6400','NAD_1983_2011_StatePlane_Alaska_7_FIPS_5007','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6401','NAD_1983_2011_StatePlane_Alaska_8_FIPS_5008','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6402','NAD_1983_2011_StatePlane_Alaska_9_FIPS_5009','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6403','NAD_1983_2011_StatePlane_Alaska_10_FIPS_5010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6404','NAD_1983_2011_StatePlane_Arizona_Central_FIPS_0202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6405','NAD_1983_2011_StatePlane_Arizona_Central_FIPS_0202_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6406','NAD_1983_2011_StatePlane_Arizona_East_FIPS_0201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6407','NAD_1983_2011_StatePlane_Arizona_East_FIPS_0201_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6408','NAD_1983_2011_StatePlane_Arizona_West_FIPS_0203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6409','NAD_1983_2011_StatePlane_Arizona_West_FIPS_0203_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6410','NAD_1983_2011_StatePlane_Arkansas_North_FIPS_0301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6411','NAD_1983_2011_StatePlane_Arkansas_North_FIPS_0301_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6412','NAD_1983_2011_StatePlane_Arkansas_South_FIPS_0302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6413','NAD_1983_2011_StatePlane_Arkansas_South_FIPS_0302_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6414','NAD_1983_2011_California_Teale_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6415','NAD_1983_2011_StatePlane_California_I_FIPS_0401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6416','NAD_1983_2011_StatePlane_California_I_FIPS_0401_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6417','NAD_1983_2011_StatePlane_California_II_FIPS_0402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6418','NAD_1983_2011_StatePlane_California_II_FIPS_0402_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6419','NAD_1983_2011_StatePlane_California_III_FIPS_0403','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6420','NAD_1983_2011_StatePlane_California_III_FIPS_0403_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6421','NAD_1983_2011_StatePlane_California_IV_FIPS_0404','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6422','NAD_1983_2011_StatePlane_California_IV_FIPS_0404_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6423','NAD_1983_2011_StatePlane_California_V_FIPS_0405','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6424','NAD_1983_2011_StatePlane_California_V_FIPS_0405_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6425','NAD_1983_2011_StatePlane_California_VI_FIPS_0406','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6426','NAD_1983_2011_StatePlane_California_VI_FIPS_0406_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6427','NAD_1983_2011_StatePlane_Colorado_Central_FIPS_0502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6428','NAD_1983_2011_StatePlane_Colorado_Central_FIPS_0502_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6429','NAD_1983_2011_StatePlane_Colorado_North_FIPS_0501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6430','NAD_1983_2011_StatePlane_Colorado_North_FIPS_0501_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6431','NAD_1983_2011_StatePlane_Colorado_South_FIPS_0503','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6432','NAD_1983_2011_StatePlane_Colorado_South_FIPS_0503_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6433','NAD_1983_2011_StatePlane_Connecticut_FIPS_0600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6434','NAD_1983_2011_StatePlane_Connecticut_FIPS_0600_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6435','NAD_1983_2011_StatePlane_Delaware_FIPS_0700','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6436','NAD_1983_2011_StatePlane_Delaware_FIPS_0700_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6437','NAD_1983_2011_StatePlane_Florida_East_FIPS_0901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6438','NAD_1983_2011_StatePlane_Florida_East_FIPS_0901_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6439','NAD_1983_2011_Florida_GDL_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6440','NAD_1983_2011_StatePlane_Florida_North_FIPS_0903','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6441','NAD_1983_2011_StatePlane_Florida_North_FIPS_0903_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6442','NAD_1983_2011_StatePlane_Florida_West_FIPS_0902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6443','NAD_1983_2011_StatePlane_Florida_West_FIPS_0902_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6444','NAD_1983_2011_StatePlane_Georgia_East_FIPS_1001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6445','NAD_1983_2011_StatePlane_Georgia_East_FIPS_1001_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6446','NAD_1983_2011_StatePlane_Georgia_West_FIPS_1002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6447','NAD_1983_2011_StatePlane_Georgia_West_FIPS_1002_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6448','NAD_1983_2011_StatePlane_Idaho_Central_FIPS_1102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6449','NAD_1983_2011_StatePlane_Idaho_Central_FIPS_1102_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6450','NAD_1983_2011_StatePlane_Idaho_East_FIPS_1101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6451','NAD_1983_2011_StatePlane_Idaho_East_FIPS_1101_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6452','NAD_1983_2011_StatePlane_Idaho_West_FIPS_1103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6453','NAD_1983_2011_StatePlane_Idaho_West_FIPS_1103_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6454','NAD_1983_2011_StatePlane_Illinois_East_FIPS_1201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6455','NAD_1983_2011_StatePlane_Illinois_East_FIPS_1201_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6456','NAD_1983_2011_StatePlane_Illinois_West_FIPS_1202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6457','NAD_1983_2011_StatePlane_Illinois_West_FIPS_1202_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6458','NAD_1983_2011_StatePlane_Indiana_East_FIPS_1301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6459','NAD_1983_2011_StatePlane_Indiana_East_FIPS_1301_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6460','NAD_1983_2011_StatePlane_Indiana_West_FIPS_1302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6461','NAD_1983_2011_StatePlane_Indiana_West_FIPS_1302_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6462','NAD_1983_2011_StatePlane_Iowa_North_FIPS_1401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6463','NAD_1983_2011_StatePlane_Iowa_North_FIPS_1401_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6464','NAD_1983_2011_StatePlane_Iowa_South_FIPS_1402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6465','NAD_1983_2011_StatePlane_Iowa_South_FIPS_1402_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6466','NAD_1983_2011_StatePlane_Kansas_North_FIPS_1501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6467','NAD_1983_2011_StatePlane_Kansas_North_FIPS_1501_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6468','NAD_1983_2011_StatePlane_Kansas_South_FIPS_1502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6469','NAD_1983_2011_StatePlane_Kansas_South_FIPS_1502_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6470','NAD_1983_2011_StatePlane_Kentucky_North_FIPS_1601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6471','NAD_1983_2011_StatePlane_Kentucky_North_FIPS_1601_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6472','NAD_1983_2011_StatePlane_Kentucky_FIPS_1600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6473','NAD_1983_2011_StatePlane_Kentucky_FIPS_1600_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6474','NAD_1983_2011_StatePlane_Kentucky_South_FIPS_1602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6475','NAD_1983_2011_StatePlane_Kentucky_South_FIPS_1602_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6476','NAD_1983_2011_StatePlane_Louisiana_North_FIPS_1701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6477','NAD_1983_2011_StatePlane_Louisiana_North_FIPS_1701_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6478','NAD_1983_2011_StatePlane_Louisiana_South_FIPS_1702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6479','NAD_1983_2011_StatePlane_Louisiana_South_FIPS_1702_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6480','NAD_1983_2011_Maine_2000_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6481','NAD_1983_2011_Maine_2000_East_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6482','NAD_1983_2011_Maine_2000_West_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6483','NAD_1983_2011_StatePlane_Maine_East_FIPS_1801','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6484','NAD_1983_2011_StatePlane_Maine_East_FIPS_1801_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6485','NAD_1983_2011_StatePlane_Maine_West_FIPS_1802','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6486','NAD_1983_2011_StatePlane_Maine_West_FIPS_1802_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6487','NAD_1983_2011_StatePlane_Maryland_FIPS_1900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6488','NAD_1983_2011_StatePlane_Maryland_FIPS_1900_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6489','NAD_1983_2011_StatePlane_Massachusetts_Island_FIPS_2002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6490','NAD_1983_2011_StatePlane_Massachusetts_Isl_FIPS_2002_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6491','NAD_1983_2011_StatePlane_Massachusetts_Mainland_FIPS_2001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6492','NAD_1983_2011_StatePlane_Massachusetts_Mnld_FIPS_2001_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6493','NAD_1983_2011_StatePlane_Michigan_Central_FIPS_2112','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6494','NAD_1983_2011_StatePlane_Michigan_Central_FIPS_2112_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6495','NAD_1983_2011_StatePlane_Michigan_North_FIPS_2111','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6496','NAD_1983_2011_StatePlane_Michigan_North_FIPS_2111_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6497','NAD_1983_2011_Michigan_GeoRef_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6498','NAD_1983_2011_StatePlane_Michigan_South_FIPS_2113','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6499','NAD_1983_2011_StatePlane_Michigan_South_FIPS_2113_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6500','NAD_1983_2011_StatePlane_Minnesota_Central_FIPS_2202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6501','NAD_1983_2011_StatePlane_Minnesota_Central_FIPS_2202_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6502','NAD_1983_2011_StatePlane_Minnesota_North_FIPS_2201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6503','NAD_1983_2011_StatePlane_Minnesota_North_FIPS_2201_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6504','NAD_1983_2011_StatePlane_Minnesota_South_FIPS_2203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6505','NAD_1983_2011_StatePlane_Minnesota_South_FIPS_2203_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6506','NAD_1983_2011_StatePlane_Mississippi_East_FIPS_2301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6507','NAD_1983_2011_StatePlane_Mississippi_East_FIPS_2301_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6508','NAD_1983_2011_Mississippi_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6509','NAD_1983_2011_StatePlane_Mississippi_West_FIPS_2302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6510','NAD_1983_2011_StatePlane_Mississippi_West_FIPS_2302_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6511','NAD_1983_2011_StatePlane_Missouri_Central_FIPS_2402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6512','NAD_1983_2011_StatePlane_Missouri_East_FIPS_2401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6513','NAD_1983_2011_StatePlane_Missouri_West_FIPS_2403','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6514','NAD_1983_2011_StatePlane_Montana_FIPS_2500','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6515','NAD_1983_2011_StatePlane_Montana_FIPS_2500_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6516','NAD_1983_2011_StatePlane_Nebraska_FIPS_2600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6518','NAD_1983_2011_StatePlane_Nevada_Central_FIPS_2702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6519','NAD_1983_2011_StatePlane_Nevada_Central_FIPS_2702_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6520','NAD_1983_2011_StatePlane_Nevada_East_FIPS_2701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6521','NAD_1983_2011_StatePlane_Nevada_East_FIPS_2701_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6522','NAD_1983_2011_StatePlane_Nevada_West_FIPS_2703','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6523','NAD_1983_2011_StatePlane_Nevada_West_FIPS_2703_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6524','NAD_1983_2011_StatePlane_New_Hampshire_FIPS_2800','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6525','NAD_1983_2011_StatePlane_New_Hampshire_FIPS_2800_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6526','NAD_1983_2011_StatePlane_New_Jersey_FIPS_2900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6527','NAD_1983_2011_StatePlane_New_Jersey_FIPS_2900_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6528','NAD_1983_2011_StatePlane_New_Mexico_Central_FIPS_3002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6529','NAD_1983_2011_StatePlane_New_Mexico_Central_FIPS_3002_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6530','NAD_1983_2011_StatePlane_New_Mexico_East_FIPS_3001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6531','NAD_1983_2011_StatePlane_New_Mexico_East_FIPS_3001_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6532','NAD_1983_2011_StatePlane_New_Mexico_West_FIPS_3003','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6533','NAD_1983_2011_StatePlane_New_Mexico_West_FIPS_3003_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6534','NAD_1983_2011_StatePlane_New_York_Central_FIPS_3102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6535','NAD_1983_2011_StatePlane_New_York_Central_FIPS_3102_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6536','NAD_1983_2011_StatePlane_New_York_East_FIPS_3101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6537','NAD_1983_2011_StatePlane_New_York_East_FIPS_3101_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6538','NAD_1983_2011_StatePlane_New_York_Long_Island_FIPS_3104','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6539','NAD_1983_2011_StatePlane_New_York_Long_Isl_FIPS_3104_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6540','NAD_1983_2011_StatePlane_New_York_West_FIPS_3103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6541','NAD_1983_2011_StatePlane_New_York_West_FIPS_3103_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6542','NAD_1983_2011_StatePlane_North_Carolina_FIPS_3200','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6543','NAD_1983_2011_StatePlane_North_Carolina_FIPS_3200_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6544','NAD_1983_2011_StatePlane_North_Dakota_North_FIPS_3301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6545','NAD_1983_2011_StatePlane_North_Dakota_North_FIPS_3301_FtI','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6546','NAD_1983_2011_StatePlane_North_Dakota_South_FIPS_3302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6547','NAD_1983_2011_StatePlane_North_Dakota_South_FIPS_3302_FtI','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6548','NAD_1983_2011_StatePlane_Ohio_North_FIPS_3401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6549','NAD_1983_2011_StatePlane_Ohio_North_FIPS_3401_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6550','NAD_1983_2011_StatePlane_Ohio_South_FIPS_3402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6551','NAD_1983_2011_StatePlane_Ohio_South_FIPS_3402_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6552','NAD_1983_2011_StatePlane_Oklahoma_North_FIPS_3501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6553','NAD_1983_2011_StatePlane_Oklahoma_North_FIPS_3501_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6554','NAD_1983_2011_StatePlane_Oklahoma_South_FIPS_3502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6555','NAD_1983_2011_StatePlane_Oklahoma_South_FIPS_3502_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6556','NAD_1983_2011_Oregon_Statewide_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6557','NAD_1983_2011_Oregon_Statewide_Lambert_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6558','NAD_1983_2011_StatePlane_Oregon_North_FIPS_3601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6559','NAD_1983_2011_StatePlane_Oregon_North_FIPS_3601_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6560','NAD_1983_2011_StatePlane_Oregon_South_FIPS_3602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6561','NAD_1983_2011_StatePlane_Oregon_South_FIPS_3602_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6562','NAD_1983_2011_StatePlane_Pennsylvania_North_FIPS_3701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6563','NAD_1983_2011_StatePlane_Pennsylvania_North_FIPS_3701_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6564','NAD_1983_2011_StatePlane_Pennsylvania_South_FIPS_3702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6565','NAD_1983_2011_StatePlane_Pennsylvania_South_FIPS_3702_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6566','NAD_1983_2011_StatePlane_Puerto_Rico_Virgin_Isls_FIPS_5200','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6567','NAD_1983_2011_StatePlane_Rhode_Island_FIPS_3800','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6568','NAD_1983_2011_StatePlane_Rhode_Island_FIPS_3800_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6569','NAD_1983_2011_StatePlane_South_Carolina_FIPS_3900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6570','NAD_1983_2011_StatePlane_South_Carolina_FIPS_3900_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6571','NAD_1983_2011_StatePlane_South_Dakota_North_FIPS_4001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6572','NAD_1983_2011_StatePlane_South_Dakota_North_FIPS_4001_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6573','NAD_1983_2011_StatePlane_South_Dakota_South_FIPS_4002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6574','NAD_1983_2011_StatePlane_South_Dakota_South_FIPS_4002_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6575','NAD_1983_2011_StatePlane_Tennessee_FIPS_4100','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6576','NAD_1983_2011_StatePlane_Tennessee_FIPS_4100_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6577','NAD_1983_2011_StatePlane_Texas_Central_FIPS_4203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6578','NAD_1983_2011_StatePlane_Texas_Central_FIPS_4203_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6579','NAD_1983_2011_Texas_Centric_Mapping_System_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6580','NAD_1983_2011_Texas_Centric_Mapping_System_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6581','NAD_1983_2011_StatePlane_Texas_North_FIPS_4201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6582','NAD_1983_2011_StatePlane_Texas_North_FIPS_4201_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6583','NAD_1983_2011_StatePlane_Texas_North_Central_FIPS_4202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6584','NAD_1983_2011_StatePlane_Texas_North_Central_FIPS_4202_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6585','NAD_1983_2011_StatePlane_Texas_South_FIPS_4205','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6586','NAD_1983_2011_StatePlane_Texas_South_FIPS_4205_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6587','NAD_1983_2011_StatePlane_Texas_South_Central_FIPS_4204','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6588','NAD_1983_2011_StatePlane_Texas_South_Central_FIPS_4204_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6589','NAD_1983_2011_StatePlane_Vermont_FIPS_4400','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6590','NAD_1983_2011_StatePlane_Vermont_FIPS_4400_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6591','NAD_1983_2011_Virginia_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6592','NAD_1983_2011_StatePlane_Virginia_North_FIPS_4501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6593','NAD_1983_2011_StatePlane_Virginia_North_FIPS_4501_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6594','NAD_1983_2011_StatePlane_Virginia_South_FIPS_4502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6595','NAD_1983_2011_StatePlane_Virginia_South_FIPS_4502_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6596','NAD_1983_2011_StatePlane_Washington_North_FIPS_4601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6597','NAD_1983_2011_StatePlane_Washington_North_FIPS_4601_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6598','NAD_1983_2011_StatePlane_Washington_South_FIPS_4602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6599','NAD_1983_2011_StatePlane_Washington_South_FIPS_4602_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6600','NAD_1983_2011_StatePlane_West_Virginia_North_FIPS_4701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6601','NAD_1983_2011_StatePlane_West_Virginia_North_FIPS_4701_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6602','NAD_1983_2011_StatePlane_West_Virginia_South_FIPS_4702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6603','NAD_1983_2011_StatePlane_West_Virginia_South_FIPS_4702_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6605','NAD_1983_2011_StatePlane_Wisconsin_Central_FIPS_4802_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6606','NAD_1983_2011_StatePlane_Wisconsin_North_FIPS_4801','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6607','NAD_1983_2011_StatePlane_Wisconsin_North_FIPS_4801_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6608','NAD_1983_2011_StatePlane_Wisconsin_South_FIPS_4803','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6609','NAD_1983_2011_StatePlane_Wisconsin_South_FIPS_4803_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6610','NAD_1983_2011_Wisconsin_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6611','NAD_1983_2011_StatePlane_Wyoming_East_FIPS_4901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6612','NAD_1983_2011_StatePlane_Wyoming_East_FIPS_4901_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6613','NAD_1983_2011_StatePlane_Wyoming_East_Central_FIPS_4902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6614','NAD_1983_2011_StatePlane_Wyoming_E_Central_FIPS_4902_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6615','NAD_1983_2011_StatePlane_Wyoming_West_FIPS_4904','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6616','NAD_1983_2011_StatePlane_Wyoming_West_FIPS_4904_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6617','NAD_1983_2011_StatePlane_Wyoming_West_Central_FIPS_4903','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6618','NAD_1983_2011_StatePlane_Wyoming_W_Central_FIPS_4903_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6619','NAD_1983_2011_StatePlane_Utah_Central_FIPS_4302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6620','NAD_1983_2011_StatePlane_Utah_North_FIPS_4301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6621','NAD_1983_2011_StatePlane_Utah_South_FIPS_4303','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6622','NAD_1983_CSRS_Quebec_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6623','NAD_1983_Quebec_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6624','NAD_1983_CSRS_Quebec_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6625','NAD_1983_2011_StatePlane_Utah_Central_FIPS_4302_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6626','NAD_1983_2011_StatePlane_Utah_North_FIPS_4301_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6627','NAD_1983_2011_StatePlane_Utah_South_FIPS_4303_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6628','NAD_1983_PA11_StatePlane_Hawaii_1_FIPS_5101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6629','NAD_1983_PA11_StatePlane_Hawaii_2_FIPS_5102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6630','NAD_1983_PA11_StatePlane_Hawaii_3_FIPS_5103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6631','NAD_1983_PA11_StatePlane_Hawaii_4_FIPS_5104','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6632','NAD_1983_PA11_StatePlane_Hawaii_5_FIPS_5105','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6633','NAD_1983_PA11_StatePlane_Hawaii_3_FIPS_5103_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6634','NAD_1983_PA11_UTM_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6635','NAD_1983_PA11_UTM_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6636','NAD_1983_PA11_UTM_Zone_2S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6637','NAD_1983_MA11_Guam_Map_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6646','Karbala_1979_Iraq_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6669','JGD_2011_Japan_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6670','JGD_2011_Japan_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6671','JGD_2011_Japan_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6672','JGD_2011_Japan_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6673','JGD_2011_Japan_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6674','JGD_2011_Japan_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6675','JGD_2011_Japan_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6676','JGD_2011_Japan_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6677','JGD_2011_Japan_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6678','JGD_2011_Japan_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6679','JGD_2011_Japan_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6680','JGD_2011_Japan_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6681','JGD_2011_Japan_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6682','JGD_2011_Japan_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6683','JGD_2011_Japan_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6684','JGD_2011_Japan_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6685','JGD_2011_Japan_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6686','JGD_2011_Japan_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6687','JGD_2011_Japan_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6688','JGD_2011_UTM_Zone_51N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6689','JGD_2011_UTM_Zone_52N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6690','JGD_2011_UTM_Zone_53N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6691','JGD_2011_UTM_Zone_54N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6692','JGD_2011_UTM_Zone_55N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6703','WGS_1984_TM_60_SW','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6707','RDN2008_TM32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6708','RDN2008_TM33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6709','RDN2008_TM34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6720','WGS_1984_CIG92','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6721','GDA_1994_CIG94','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6722','WGS_1984_CKIG92','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6723','GDA_1994_CKIG94','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6732','GDA_1994_MGA_zone_41','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6733','GDA_1994_MGA_zone_42','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6734','GDA_1994_MGA_zone_43','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6735','GDA_1994_MGA_zone_44','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6736','GDA_1994_MGA_Zone_46','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6737','GDA_1994_MGA_Zone_47','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6738','GDA_1994_MGA_Zone_59','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6784','OCRS_Baker_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6785','OCRS_Baker_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6786','OCRS_Baker_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6787','OCRS_Baker_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6788','OCRS_Bend-Klamath_Falls_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6789','OCRS_Bend-Klamath_Falls_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6790','OCRS_Bend-Klamath_Falls_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6791','OCRS_Bend-Klamath_Falls_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6792','OCRS_Bend-Redmond-Prineville_NAD_1983_CORS96_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6793','OCRS_Bend-Redmond-Prineville_NAD_1983_CORS96_LCC_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6794','OCRS_Bend-Redmond-Prineville_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6795','OCRS_Bend-Redmond-Prineville_NAD_1983_2011_LCC_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6796','OCRS_Bend-Burns_NAD_1983_CORS96_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6797','OCRS_Bend-Burns_NAD_1983_CORS96_LCC_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6798','OCRS_Bend-Burns_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6799','OCRS_Bend-Burns_NAD_1983_2011_LCC_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6800','OCRS_Canyonville-Grants_Pass_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6801','OCRS_Canyonville-Grants_Pass_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6802','OCRS_Canyonville-Grants_Pass_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6803','OCRS_Canyonville-Grants_Pass_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6804','OCRS_Columbia_River_East_NAD_1983_CORS96_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6805','OCRS_Columbia_River_East_NAD_1983_CORS96_LCC_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6806','OCRS_Columbia_River_East_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6807','OCRS_Columbia_River_East_NAD_1983_2011_LCC_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6808','OCRS_Columbia_River_West_NAD_1983_CORS96_OM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6809','OCRS_Columbia_River_West_NAD_1983_CORS96_OM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6810','OCRS_Columbia_River_West_NAD_1983_2011_OM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6811','OCRS_Columbia_River_West_NAD_1983_2011_OM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6812','OCRS_Cottage_Grove-Canyonville_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6813','OCRS_Cottage_Grove-Canyonville_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6814','OCRS_Cottage_Grove-Canyonville_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6815','OCRS_Cottage_Grove-Canyonville_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6816','OCRS_Dufur-Madras_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6817','OCRS_Dufur-Madras_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6818','OCRS_Dufur-Madras_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6819','OCRS_Dufur-Madras_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6820','OCRS_Eugene_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6821','OCRS_Eugene_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6822','OCRS_Eugene_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6823','OCRS_Eugene_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6824','OCRS_Grants_Pass-Ashland_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6825','OCRS_Grants_Pass-Ashland_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6826','OCRS_Grants_Pass-Ashland_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6827','OCRS_Grants_Pass-Ashland_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6828','OCRS_Gresham-Warm_Springs_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6829','OCRS_Gresham-Warm_Springs_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6830','OCRS_Gresham-Warm_Springs_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6831','OCRS_Gresham-Warm_Springs_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6832','OCRS_La_Grande_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6833','OCRS_La_Grande_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6834','OCRS_La_Grande_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6835','OCRS_La_Grande_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6836','OCRS_Ontario_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6837','OCRS_Ontario_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6838','OCRS_Ontario_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6839','OCRS_Ontario_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6840','OCRS_Oregon_Coast_NAD_1983_CORS96_OM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6841','OCRS_Oregon_Coast_NAD_1983_CORS96_OM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6842','OCRS_Oregon_Coast_NAD_1983_2011_OM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6843','OCRS_Oregon_Coast_NAD_1983_2011_OM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6844','OCRS_Pendleton_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6845','OCRS_Pendleton_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6846','OCRS_Pendleton_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6847','OCRS_Pendleton_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6848','OCRS_Pendleton-La_Grande_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6849','OCRS_Pendleton-La_Grande_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6850','OCRS_Pendleton-La_Grande_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6851','OCRS_Pendleton-La_Grande_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6852','OCRS_Portland_NAD_1983_CORS96_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6853','OCRS_Portland_NAD_1983_CORS96_LCC_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6854','OCRS_Portland_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6855','OCRS_Portland_NAD_1983_2011_LCC_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6856','OCRS_Salem_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6857','OCRS_Salem_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6858','OCRS_Salem_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6859','OCRS_Salem_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6860','OCRS_Santiam_Pass_NAD_1983_CORS96_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6861','OCRS_Santiam_Pass_NAD_1983_CORS96_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6862','OCRS_Santiam_Pass_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6863','OCRS_Santiam_Pass_NAD_1983_2011_TM_Feet_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6867','NAD_1983_CORS96_Oregon_Statewide_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6868','NAD_1983_CORS96_Oregon_Statewide_Lambert_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6870','ETRS_1989_Albania_2010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6875','RDN2008_Italy_zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6876','RDN2008_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6879','NAD_1983_2011_StatePlane_Wisconsin_Central_FIPS_4802','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6880','NAD_1983_2011_StatePlane_Nebraska_FIPS_2600_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6884','NAD_1983_CORS96_StatePlane_Oregon_North_FIPS_3601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6885','NAD_1983_CORS96_StatePlane_Oregon_North_FIPS_3601_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6886','NAD_1983_CORS96_StatePlane_Oregon_South_FIPS_3602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6887','NAD_1983_CORS96_StatePlane_Oregon_South_FIPS_3602_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6915','South_East_Island_1943_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6922','NAD_1983_Kansas_LCC','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6923','NAD_1983_Kansas_LCC_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6924','NAD_1983_2011_Kansas_LCC','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6925','NAD_1983_2011_Kansas_LCC_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6931','WGS_1984_EASE-Grid_2.0_North','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6932','WGS_1984_EASE-Grid_2.0_South','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6933','WGS_1984_EASE-Grid_2.0_Global','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6962','ETRS_1989_Albania_LCC_2010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6984','Israeli_Grid_05','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','6991','Israeli_Grid_05-12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7005','Nahrwan_1934_UTM_zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7006','Nahrwan_1934_UTM_zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7007','Nahrwan_1934_UTM_zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7057','NAD_1983_(2011)_IaRCS_zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7058','NAD_1983_(2011)_IaRCS_zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7059','NAD_1983_(2011)_IaRCS_zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7060','NAD_1983_(2011)_IaRCS_zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7061','NAD_1983_(2011)_IaRCS_zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7062','NAD_1983_(2011)_IaRCS_zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7063','NAD_1983_(2011)_IaRCS_zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7064','NAD_1983_(2011)_IaRCS_zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7065','NAD_1983_(2011)_IaRCS_zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7066','NAD_1983_(2011)_IaRCS_zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7067','NAD_1983_(2011)_IaRCS_zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7068','NAD_1983_(2011)_IaRCS_zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7069','NAD_1983_(2011)_IaRCS_zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7070','NAD_1983_(2011)_IaRCS_zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7074','RGTAAF07_UTM_zone_37S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7075','RGTAAF07_UTM_zone_38S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7076','RGTAAF07_UTM_zone_39S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7077','RGTAAF07_UTM_zone_40S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7078','RGTAAF07_UTM_zone_41S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7079','RGTAAF07_UTM_zone_42S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7080','RGTAAF07_UTM_zone_43S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7081','RGTAAF07_UTM_zone_44S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7082','RGTAAF07_Terre_Adelie_Polar_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7109','NAD_1983_2011_RMTCRS_St_Mary_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7110','NAD_1983_2011_RMTCRS_Blackfeet_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7111','NAD_1983_2011_RMTCRS_Milk_River_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7112','NAD_1983_2011_RMTCRS_Fort_Belknap_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7113','NAD_1983_2011_RMTCRS_Fort_Peck_Assiniboine_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7114','NAD_1983_2011_RMTCRS_Fort_Peck_Sioux_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7115','NAD_1983_2011_RMTCRS_Crow_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7116','NAD_1983_2011_RMTCRS_Bobcat_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7117','NAD_1983_2011_RMTCRS_Billings_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7118','NAD_1983_2011_RMTCRS_Wind_River_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7119','NAD_1983_2011_RMTCRS_St_Mary_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7120','NAD_1983_2011_RMTCRS_Blackfeet_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7121','NAD_1983_2011_RMTCRS_Milk_River_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7122','NAD_1983_2011_RMTCRS_Fort_Belknap_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7123','NAD_1983_2011_RMTCRS_Fort_Peck_Assiniboine_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7124','NAD_1983_2011_RMTCRS_Fort_Peck_Sioux_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7125','NAD_1983_2011_RMTCRS_Crow_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7126','NAD_1983_2011_RMTCRS_Bobcat_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7127','NAD_1983_2011_RMTCRS_Billings_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7128','NAD_1983_2011_RMTCRS_Wind_River_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7131','NAD_1983_2011_San_Francisco_CS13_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7132','NAD_1983_2011_San_Francisco_CS13_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7142','Palestine_1923_Palestine_Grid_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7257','NAD_1983_2011_InGCS_Adams_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7258','NAD_1983_2011_InGCS_Adams_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7259','NAD_1983_2011_InGCS_Allen_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7260','NAD_1983_2011_InGCS_Allen_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7261','NAD_1983_2011_InGCS_Bartholomew_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7262','NAD_1983_2011_InGCS_Bartholomew_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7263','NAD_1983_2011_InGCS_Benton_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7264','NAD_1983_2011_InGCS_Benton_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7265','NAD_1983_2011_InGCS_Blackford-Delaware_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7266','NAD_1983_2011_InGCS_Blackford-Delaware_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7267','NAD_1983_2011_InGCS_Boone-Hendricks_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7268','NAD_1983_2011_InGCS_Boone-Hendricks_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7269','NAD_1983_2011_InGCS_Brown_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7270','NAD_1983_2011_InGCS_Brown_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7271','NAD_1983_2011_InGCS_Carroll_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7272','NAD_1983_2011_InGCS_Carroll_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7273','NAD_1983_2011_InGCS_Cass_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7274','NAD_1983_2011_InGCS_Cass_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7275','NAD_1983_2011_InGCS_Clark-Floyd-Scott_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7276','NAD_1983_2011_InGCS_Clark-Floyd-Scott_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7277','NAD_1983_2011_InGCS_Clay_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7278','NAD_1983_2011_InGCS_Clay_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7279','NAD_1983_2011_InGCS_Clinton_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7280','NAD_1983_2011_InGCS_Clinton_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7281','NAD_1983_2011_InGCS_Crawford-Lawrence-Orange_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7282','NAD_1983_2011_InGCS_Crawford-Lawrence-Orange_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7283','NAD_1983_2011_InGCS_Daviess-Greene_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7284','NAD_1983_2011_InGCS_Daviess-Greene_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7285','NAD_1983_2011_InGCS_Dearborn-Ohio-Switzerland_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7286','NAD_1983_2011_InGCS_Dearborn-Ohio-Switzerland_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7287','NAD_1983_2011_InGCS_Decatur-Rush_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7288','NAD_1983_2011_InGCS_Decatur-Rush_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7289','NAD_1983_2011_InGCS_DeKalb_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7290','NAD_1983_2011_InGCS_DeKalb_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7291','NAD_1983_2011_InGCS_Dubois-Martin_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7292','NAD_1983_2011_InGCS_Dubois-Martin_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7293','NAD_1983_2011_InGCS_Elkhart-Kosciusko-Wabash_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7294','NAD_1983_2011_InGCS_Elkhart-Kosciusko-Wabash_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7295','NAD_1983_2011_InGCS_Fayette-Franklin-Union_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7296','NAD_1983_2011_InGCS_Fayette-Franklin-Union_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7297','NAD_1983_2011_InGCS_Fountain-Warren_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7298','NAD_1983_2011_InGCS_Fountain-Warren_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7299','NAD_1983_2011_InGCS_Fulton-Marshall-St_Joseph_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7300','NAD_1983_2011_InGCS_Fulton-Marshall-St_Joseph_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7301','NAD_1983_2011_InGCS_Gibson_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7302','NAD_1983_2011_InGCS_Gibson_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7303','NAD_1983_2011_InGCS_Grant_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7304','NAD_1983_2011_InGCS_Grant_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7305','NAD_1983_2011_InGCS_Hamilton-Tipton_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7306','NAD_1983_2011_InGCS_Hamilton-Tipton_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7307','NAD_1983_2011_InGCS_Hancock-Madison_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7308','NAD_1983_2011_InGCS_Hancock-Madison_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7309','NAD_1983_2011_InGCS_Harrison-Washington_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7310','NAD_1983_2011_InGCS_Harrison-Washington_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7311','NAD_1983_2011_InGCS_Henry_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7312','NAD_1983_2011_InGCS_Henry_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7313','NAD_1983_2011_InGCS_Howard-Miami_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7314','NAD_1983_2011_InGCS_Howard-Miami_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7315','NAD_1983_2011_InGCS_Huntington-Whitley_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7316','NAD_1983_2011_InGCS_Huntington-Whitley_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7317','NAD_1983_2011_InGCS_Jackson_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7318','NAD_1983_2011_InGCS_Jackson_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7319','NAD_1983_2011_InGCS_Jasper-Porter_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7320','NAD_1983_2011_InGCS_Jasper-Porter_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7321','NAD_1983_2011_InGCS_Jay_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7322','NAD_1983_2011_InGCS_Jay_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7323','NAD_1983_2011_InGCS_Jefferson_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7324','NAD_1983_2011_InGCS_Jefferson_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7325','NAD_1983_2011_InGCS_Jennings_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7326','NAD_1983_2011_InGCS_Jennings_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7327','NAD_1983_2011_InGCS_Johnson-Marion_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7328','NAD_1983_2011_InGCS_Johnson-Marion_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7329','NAD_1983_2011_InGCS_Knox_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7330','NAD_1983_2011_InGCS_Knox_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7331','NAD_1983_2011_InGCS_LaGrange-Noble_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7332','NAD_1983_2011_InGCS_LaGrange-Noble_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7333','NAD_1983_2011_InGCS_Lake-Newton_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7334','NAD_1983_2011_InGCS_Lake-Newton_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7335','NAD_1983_2011_InGCS_LaPorte-Pulaski-Starke_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7336','NAD_1983_2011_InGCS_LaPorte-Pulaski-Starke_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7337','NAD_1983_2011_InGCS_Monroe-Morgan_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7338','NAD_1983_2011_InGCS_Monroe-Morgan_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7339','NAD_1983_2011_InGCS_Montgomery-Putnam_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7340','NAD_1983_2011_InGCS_Montgomery-Putnam_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7341','NAD_1983_2011_InGCS_Owen_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7342','NAD_1983_2011_InGCS_Owen_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7343','NAD_1983_2011_InGCS_Parke-Vermillion_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7344','NAD_1983_2011_InGCS_Parke-Vermillion_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7345','NAD_1983_2011_InGCS_Perry_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7346','NAD_1983_2011_InGCS_Perry_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7347','NAD_1983_2011_InGCS_Pike-Warrick_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7348','NAD_1983_2011_InGCS_Pike-Warrick_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7349','NAD_1983_2011_InGCS_Posey_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7350','NAD_1983_2011_InGCS_Posey_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7351','NAD_1983_2011_InGCS_Randolph-Wayne_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7352','NAD_1983_2011_InGCS_Randolph-Wayne_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7353','NAD_1983_2011_InGCS_Ripley_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7354','NAD_1983_2011_InGCS_Ripley_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7355','NAD_1983_2011_InGCS_Shelby_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7356','NAD_1983_2011_InGCS_Shelby_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7357','NAD_1983_2011_InGCS_Spencer_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7358','NAD_1983_2011_InGCS_Spencer_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7359','NAD_1983_2011_InGCS_Steuben_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7360','NAD_1983_2011_InGCS_Steuben_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7361','NAD_1983_2011_InGCS_Sullivan_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7362','NAD_1983_2011_InGCS_Sullivan_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7363','NAD_1983_2011_InGCS_Tippecanoe-White_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7364','NAD_1983_2011_InGCS_Tippecanoe-White_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7365','NAD_1983_2011_InGCS_Vanderburgh_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7366','NAD_1983_2011_InGCS_Vanderburgh_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7367','NAD_1983_2011_InGCS_Vigo_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7368','NAD_1983_2011_InGCS_Vigo_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7369','NAD_1983_2011_InGCS_Wells_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7370','NAD_1983_2011_InGCS_Wells_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7374','ONGD14_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7375','ONGD14_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7376','ONGD14_UTM_Zone_41N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7528','NAD_1983_2011_WISCRS_Adams_and_Juneau_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7529','NAD_1983_2011_WISCRS_Ashland_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7530','NAD_1983_2011_WISCRS_Barron_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7531','NAD_1983_2011_WISCRS_Bayfield_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7532','NAD_1983_2011_WISCRS_Brown_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7533','NAD_1983_2011_WISCRS_Buffalo_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7534','NAD_1983_2011_WISCRS_Burnett_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7535','NAD_1983_2011_WISCRS_Calumet_Fond_du_Lac_Outagamie_Winnebago_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7536','NAD_1983_2011_WISCRS_Chippewa_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7537','NAD_1983_2011_WISCRS_Clark_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7538','NAD_1983_2011_WISCRS_Columbia_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7539','NAD_1983_2011_WISCRS_Crawford_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7540','NAD_1983_2011_WISCRS_Dane_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7541','NAD_1983_2011_WISCRS_Dodge_and_Jefferson_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7542','NAD_1983_2011_WISCRS_Door_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7543','NAD_1983_2011_WISCRS_Douglas_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7544','NAD_1983_2011_WISCRS_Dunn_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7545','NAD_1983_2011_WISCRS_EauClaire_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7546','NAD_1983_2011_WISCRS_Florence_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7547','NAD_1983_2011_WISCRS_Forest_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7548','NAD_1983_2011_WISCRS_Grant_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7549','NAD_1983_2011_WISCRS_Green_and_Lafayette_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7550','NAD_1983_2011_WISCRS_Green_Lake_and_Marquette_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7551','NAD_1983_2011_WISCRS_Iowa_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7552','NAD_1983_2011_WISCRS_Iron_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7553','NAD_1983_2011_WISCRS_Jackson_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7554','NAD_1983_2011_WISCRS_Kenosha_Milwaukee_Ozaukee_Racine_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7555','NAD_1983_2011_WISCRS_Kewaunee_Manitowoc_Sheboygan_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7556','NAD_1983_2011_WISCRS_La_Crosse_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7557','NAD_1983_2011_WISCRS_Langlade_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7558','NAD_1983_2011_WISCRS_Lincoln_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7559','NAD_1983_2011_WISCRS_Marathon_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7560','NAD_1983_2011_WISCRS_Marinette_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7561','NAD_1983_2011_WISCRS_Menominee_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7562','NAD_1983_2011_WISCRS_Monroe_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7563','NAD_1983_2011_WISCRS_Oconto_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7564','NAD_1983_2011_WISCRS_Oneida_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7565','NAD_1983_2011_WISCRS_Pepin_and_Pierce_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7566','NAD_1983_2011_WISCRS_Polk_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7567','NAD_1983_2011_WISCRS_Portage_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7568','NAD_1983_2011_WISCRS_Price_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7569','NAD_1983_2011_WISCRS_Richland_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7570','NAD_1983_2011_WISCRS_Rock_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7571','NAD_1983_2011_WISCRS_Rusk_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7572','NAD_1983_2011_WISCRS_Sauk_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7573','NAD_1983_2011_WISCRS_Sawyer_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7574','NAD_1983_2011_WISCRS_Shawano_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7575','NAD_1983_2011_WISCRS_St_Croix_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7576','NAD_1983_2011_WISCRS_Taylor_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7577','NAD_1983_2011_WISCRS_Trempealeau_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7578','NAD_1983_2011_WISCRS_Vernon_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7579','NAD_1983_2011_WISCRS_Vilas_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7580','NAD_1983_2011_WISCRS_Walworth_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7581','NAD_1983_2011_WISCRS_Washburn_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7582','NAD_1983_2011_WISCRS_Washington_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7583','NAD_1983_2011_WISCRS_Waukesha_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7584','NAD_1983_2011_WISCRS_Waupaca_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7585','NAD_1983_2011_WISCRS_Waushara_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7586','NAD_1983_2011_WISCRS_Wood_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7587','NAD_1983_2011_WISCRS_Adams_and_Juneau_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7588','NAD_1983_2011_WISCRS_Ashland_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7589','NAD_1983_2011_WISCRS_Barron_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7590','NAD_1983_2011_WISCRS_Bayfield_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7591','NAD_1983_2011_WISCRS_Brown_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7592','NAD_1983_2011_WISCRS_Buffalo_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7593','NAD_1983_2011_WISCRS_Burnett_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7594','NAD_1983_2011_WISCRS_Calumet_Fond_du_Lac_Outagamie_Winnebago_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7595','NAD_1983_2011_WISCRS_Chippewa_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7596','NAD_1983_2011_WISCRS_Clark_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7597','NAD_1983_2011_WISCRS_Columbia_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7598','NAD_1983_2011_WISCRS_Crawford_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7599','NAD_1983_2011_WISCRS_Dane_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7600','NAD_1983_2011_WISCRS_Dodge_and_Jefferson_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7601','NAD_1983_2011_WISCRS_Door_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7602','NAD_1983_2011_WISCRS_Douglas_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7603','NAD_1983_2011_WISCRS_Dunn_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7604','NAD_1983_2011_WISCRS_Eau_Claire_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7605','NAD_1983_2011_WISCRS_Florence_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7606','NAD_1983_2011_WISCRS_Forest_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7607','NAD_1983_2011_WISCRS_Grant_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7608','NAD_1983_2011_WISCRS_Green_and_Lafayette_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7609','NAD_1983_2011_WISCRS_Green_Lake_and_Marquette_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7610','NAD_1983_2011_WISCRS_Iowa_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7611','NAD_1983_2011_WISCRS_Iron_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7612','NAD_1983_2011_WISCRS_Jackson_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7613','NAD_1983_2011_WISCRS_Kenosha_Milwaukee_Ozaukee_Racine_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7614','NAD_1983_2011_WISCRS_Kewaunee_Manitowoc_Sheboygan_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7615','NAD_1983_2011_WISCRS_La_Crosse_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7616','NAD_1983_2011_WISCRS_Langlade_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7617','NAD_1983_2011_WISCRS_Lincoln_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7618','NAD_1983_2011_WISCRS_Marathon_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7619','NAD_1983_2011_WISCRS_Marinette_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7620','NAD_1983_2011_WISCRS_Menominee_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7621','NAD_1983_2011_WISCRS_Monroe_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7622','NAD_1983_2011_WISCRS_Oconto_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7623','NAD_1983_2011_WISCRS_Oneida_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7624','NAD_1983_2011_WISCRS_Pepin_and_Pierce_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7625','NAD_1983_2011_WISCRS_Polk_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7626','NAD_1983_2011_WISCRS_Portage_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7627','NAD_1983_2011_WISCRS_Price_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7628','NAD_1983_2011_WISCRS_Richland_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7629','NAD_1983_2011_WISCRS_Rock_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7630','NAD_1983_2011_WISCRS_Rusk_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7631','NAD_1983_2011_WISCRS_Sauk_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7632','NAD_1983_2011_WISCRS_Sawyer_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7633','NAD_1983_2011_WISCRS_Shawano_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7634','NAD_1983_2011_WISCRS_St_Croix_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7635','NAD_1983_2011_WISCRS_Taylor_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7636','NAD_1983_2011_WISCRS_Trempealeau_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7637','NAD_1983_2011_WISCRS_Vernon_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7638','NAD_1983_2011_WISCRS_Vilas_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7639','NAD_1983_2011_WISCRS_Walworth_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7640','NAD_1983_2011_WISCRS_Washburn_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7641','NAD_1983_2011_WISCRS_Washington_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7642','NAD_1983_2011_WISCRS_Waukesha_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7643','NAD_1983_2011_WISCRS_Waupaca_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7644','NAD_1983_2011_WISCRS_Waushara_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7645','NAD_1983_2011_WISCRS_Wood_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7692','Kyrg-06_TM_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7693','Kyrg-06_TM_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7694','Kyrg-06_TM_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7695','Kyrg-06_TM_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7696','Kyrg-06_TM_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7755','WGS_1984_India_NSF_LCC','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7756','WGS_1984_Andhra_Pradesh','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7757','WGS_1984_Arunachal_Pradesh','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7758','WGS_1984_Assam','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7759','WGS_1984_Bihar','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7760','WGS_1984_Delhi','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7761','WGS_1984_Gujarat','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7762','WGS_1984_Haryana','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7763','WGS_1984_Himachal_Pradesh','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7764','WGS_1984_Jammu_and_Kashmir','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7765','WGS_1984_Jharkhand','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7766','WGS_1984_Madhya_Pradesh','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7767','WGS_1984_Maharashtra','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7768','WGS_1984_Manipur','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7769','WGS_1984_Meghalaya','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7770','WGS_1984_Nagaland','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7771','WGS_1984_India_Northeast','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7772','WGS_1984_Orissa','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7773','WGS_1984_Punjab','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7774','WGS_1984_Rajasthan','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7775','WGS_1984_Uttar_Pradesh','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7776','WGS_1984_Uttaranchal','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7777','WGS_1984_Andaman_and_Nicobar_Islands','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7778','WGS_1984_Chhattisgarh','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7779','WGS_1984_Goa','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7780','WGS_1984_Karnataka','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7781','WGS_1984_Kerala','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7782','WGS_1984_Lakshadweep','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7783','WGS_1984_Mizoram','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7784','WGS_1984_Sikkim','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7785','WGS_1984_Tamil_Nadu','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7786','WGS_1984_Tripura','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7787','WGS_1984_West_Bengal','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7791','RDN2008_UTM_zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7792','RDN2008_UTM_zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7793','RDN2008_UTM_zone_34N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7794','RDN2008_Italy_zone_(E-N)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7795','RDN2008_Zone_12_(E-N)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7799','BGS2005_UTM_zone_34N_(N-E)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7800','BGS2005_UTM_zone_35N_(N-E)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7801','BGS2005_CCS2005','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7803','BGS2005_UTM_zone_34N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7804','BGS2005_UTM_zone_35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7805','BGS2005_UTM_zone_36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7825','Pulkovo_1942_CS63_zone_X1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7826','Pulkovo_1942_CS63_zone_X2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7827','Pulkovo_1942_CS63_zone_X3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7828','Pulkovo_1942_CS63_zone_X4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7829','Pulkovo_1942_CS63_zone_X5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7830','Pulkovo_1942_CS63_zone_X6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7831','Pulkovo_1942_CS63_zone_X7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7845','GDA2020_GA_LCC','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7846','GDA2020_MGA_Zone_46','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7847','GDA2020_MGA_Zone_47','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7848','GDA2020_MGA_Zone_48','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7849','GDA2020_MGA_Zone_49','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7850','GDA2020_MGA_Zone_50','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7851','GDA2020_MGA_Zone_51','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7852','GDA2020_MGA_Zone_52','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7853','GDA2020_MGA_Zone_53','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7854','GDA2020_MGA_Zone_54','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7855','GDA2020_MGA_Zone_55','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7856','GDA2020_MGA_Zone_56','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7857','GDA2020_MGA_Zone_57','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7858','GDA2020_MGA_Zone_58','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7859','GDA2020_MGA_Zone_59','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7877','Astro_DOS_71_4_SHLG71','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7878','Astro_DOS_71_4_UTM_zone_30S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7882','St_Helena_Tritan_SHLG(Tritan)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7883','St_Helena_Tritan_UTM_zone_30S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7899','GDA2020_Vicgrid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7991','NAD27_MTM_zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','7992','Malongo_1987_UTM_zone_33S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8013','GDA2020_ALB2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8014','GDA2020_BIO2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8015','GDA2020_BRO2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8016','GDA2020_BCG2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8017','GDA2020_CARN2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8018','GDA2020_CIG2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8019','GDA2020_CKIG2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8020','GDA2020_COL2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8021','GDA2020_ESP2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8022','GDA2020_EXM2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8023','GDA2020_GCG2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8024','GDA2020_GOLD2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8025','GDA2020_JCG2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8026','GDA2020_KALB2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8027','GDA2020_KAR2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8028','GDA2020_KUN2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8029','GDA2020_LCG2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8030','GDA2020_MRCG2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8031','GDA2020_PCG2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8032','GDA2020_PHG2020','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8035','WGS_1984_TM_Zone_20N_(US_Feet)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8036','WGS_1984_TM_Zone_21N_(US_Feet)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8058','GDA2020_NSW_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8059','GDA2020_South_Australia_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8065','NAD_1983_(2011)_PCCS_zone_1_(ft)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8066','NAD_1983_(2011)_PCCS_zone_2_(ft)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8067','NAD_1983_(2011)_PCCS_zone_3_(ft)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8068','NAD_1983_(2011)_PCCS_zone_4_(ft)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8082','NAD_1983_(CSRS)_v6_MTM_Nova_Scotia_zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8083','NAD_1983_(CSRS)_v6_MTM_Nova_Scotia_zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8088','ISN2016_Lambert_2016','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8090','NAD_1983_HARN_WISCRS_Florence_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8091','NAD_1983_HARN_WISCRS_Florence_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8092','NAD_1983_HARN_WISCRS_EauClaire_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8093','NAD_1983_HARN_WISCRS_EauClaire_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8095','NAD_1983_HARN_WISCRS_Wood_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8096','NAD_1983_HARN_WISCRS_Wood_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8097','NAD_1983_HARN_WISCRS_Waushara_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8098','NAD_1983_HARN_WISCRS_Waushara_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8099','NAD_1983_HARN_WISCRS_Waupaca_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8100','NAD_1983_HARN_WISCRS_Waupaca_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8101','NAD_1983_HARN_WISCRS_Waukesha_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8102','NAD_1983_HARN_WISCRS_Waukesha_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8103','NAD_1983_HARN_WISCRS_Washington_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8104','NAD_1983_HARN_WISCRS_Washington_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8105','NAD_1983_HARN_WISCRS_Washburn_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8106','NAD_1983_HARN_WISCRS_Washburn_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8107','NAD_1983_HARN_WISCRS_Walworth_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8108','NAD_1983_HARN_WISCRS_Walworth_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8109','NAD_1983_HARN_WISCRS_Vilas_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8110','NAD_1983_HARN_WISCRS_Vilas_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8111','NAD_1983_HARN_WISCRS_Vernon_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8112','NAD_1983_HARN_WISCRS_Vernon_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8113','NAD_1983_HARN_WISCRS_Trempealeau_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8114','NAD_1983_HARN_WISCRS_Trempealeau_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8115','NAD_1983_HARN_WISCRS_Taylor_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8116','NAD_1983_HARN_WISCRS_Taylor_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8117','NAD_1983_HARN_WISCRS_St_Croix_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8118','NAD_1983_HARN_WISCRS_St_Croix_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8119','NAD_1983_HARN_WISCRS_Shawano_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8120','NAD_1983_HARN_WISCRS_Shawano_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8121','NAD_1983_HARN_WISCRS_Sawyer_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8122','NAD_1983_HARN_WISCRS_Sawyer_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8123','NAD_1983_HARN_WISCRS_Sauk_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8124','NAD_1983_HARN_WISCRS_Sauk_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8125','NAD_1983_HARN_WISCRS_Rusk_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8126','NAD_1983_HARN_WISCRS_Rusk_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8127','NAD_1983_HARN_WISCRS_Rock_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8128','NAD_1983_HARN_WISCRS_Rock_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8129','NAD_1983_HARN_WISCRS_Richland_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8130','NAD_1983_HARN_WISCRS_Richland_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8131','NAD_1983_HARN_WISCRS_Price_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8132','NAD_1983_HARN_WISCRS_Price_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8133','NAD_1983_HARN_WISCRS_Portage_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8134','NAD_1983_HARN_WISCRS_Portage_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8135','NAD_1983_HARN_WISCRS_Polk_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8136','NAD_1983_HARN_WISCRS_Polk_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8137','NAD_1983_HARN_WISCRS_Pepin_and_Pierce_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8138','NAD_1983_HARN_WISCRS_Pepin_and_Pierce_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8139','NAD_1983_HARN_WISCRS_Oneida_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8140','NAD_1983_HARN_WISCRS_Oneida_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8141','NAD_1983_HARN_WISCRS_Oconto_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8142','NAD_1983_HARN_WISCRS_Oconto_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8143','NAD_1983_HARN_WISCRS_Monroe_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8144','NAD_1983_HARN_WISCRS_Monroe_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8145','NAD_1983_HARN_WISCRS_Menominee_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8146','NAD_1983_HARN_WISCRS_Menominee_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8147','NAD_1983_HARN_WISCRS_Marinette_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8148','NAD_1983_HARN_WISCRS_Marinette_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8149','NAD_1983_HARN_WISCRS_Marathon_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8150','NAD_1983_HARN_WISCRS_Marathon_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8151','NAD_1983_HARN_WISCRS_Lincoln_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8152','NAD_1983_HARN_WISCRS_Lincoln_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8153','NAD_1983_HARN_WISCRS_Langlade_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8154','NAD_1983_HARN_WISCRS_Langlade_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8155','NAD_1983_HARN_WISCRS_LaCrosse_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8156','NAD_1983_HARN_WISCRS_LaCrosse_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8157','NAD_1983_HARN_WISCRS_Kewaunee_Manitowoc_and_Sheboygan_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8158','NAD_1983_HARN_WISCRS_Kewaunee_Manitowoc_and_Sheboygan_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8159','NAD_1983_HARN_WISCRS_Kenosha_Milwaukee_Ozaukee_and_Racine_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8160','NAD_1983_HARN_WISCRS_Kenosha_Milwaukee_Ozaukee_and_Racine_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8161','NAD_1983_HARN_WISCRS_Jackson_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8162','NAD_1983_HARN_WISCRS_Jackson_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8163','NAD_1983_HARN_WISCRS_Iron_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8164','NAD_1983_HARN_WISCRS_Iron_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8165','NAD_1983_HARN_WISCRS_Iowa_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8166','NAD_1983_HARN_WISCRS_Iowa_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8167','NAD_1983_HARN_WISCRS_Green_Lake_and_Marquette_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8168','NAD_1983_HARN_WISCRS_Green_Lake_and_Marquette_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8169','NAD_1983_HARN_WISCRS_Green_and_Lafayette_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8170','NAD_1983_HARN_WISCRS_Green_and_Lafayette_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8171','NAD_1983_HARN_WISCRS_Grant_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8172','NAD_1983_HARN_WISCRS_Grant_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8173','NAD_1983_HARN_WISCRS_Forest_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8177','NAD_1983_HARN_WISCRS_Forest_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8179','NAD_1983_HARN_WISCRS_Dunn_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8180','NAD_1983_HARN_WISCRS_Dunn_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8181','NAD_1983_HARN_WISCRS_Douglas_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8182','NAD_1983_HARN_WISCRS_Douglas_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8184','NAD_1983_HARN_WISCRS_Door_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8185','NAD_1983_HARN_WISCRS_Door_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8187','NAD_1983_HARN_WISCRS_Dodge_and_Jefferson_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8189','NAD_1983_HARN_WISCRS_Dodge_and_Jefferson_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8191','NAD_1983_HARN_WISCRS_Dane_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8193','NAD_1983_HARN_WISCRS_Dane_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8196','NAD_1983_HARN_WISCRS_Crawford_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8197','NAD_1983_HARN_WISCRS_Crawford_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8198','NAD_1983_HARN_WISCRS_Columbia_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8200','NAD_1983_HARN_WISCRS_Columbia_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8201','NAD_1983_HARN_WISCRS_Clark_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8202','NAD_1983_HARN_WISCRS_Clark_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8203','NAD_1983_HARN_WISCRS_Chippewa_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8204','NAD_1983_HARN_WISCRS_Chippewa_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8205','NAD_1983_HARN_WISCRS_Calumet_Fond_du_Lac_Outagamie_and_Winnebago_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8206','NAD_1983_HARN_WISCRS_Calumet_Fond_du_Lac_Outagamie_and_Winnebago_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8207','NAD_1983_HARN_WISCRS_Burnett_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8208','NAD_1983_HARN_WISCRS_Burnett_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8209','NAD_1983_HARN_WISCRS_Buffalo_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8210','NAD_1983_HARN_WISCRS_Buffalo_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8212','NAD_1983_HARN_WISCRS_Brown_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8213','NAD_1983_HARN_WISCRS_Brown_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8214','NAD_1983_HARN_WISCRS_Bayfield_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8216','NAD_1983_HARN_WISCRS_Bayfield_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8218','NAD_1983_HARN_WISCRS_Barron_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8220','NAD_1983_HARN_WISCRS_Barron_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8222','NAD_1983_HARN_WISCRS_Ashland_County_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8224','NAD_1983_HARN_WISCRS_Ashland_County_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8225','NAD_1983_HARN_WISCRS_Adams_and_Juneau_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8226','NAD_1983_HARN_WISCRS_Adams_and_Juneau_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8311','OCRS_Burns-Harper_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8312','OCRS_Burns-Harper_NAD_1983_2011_TM_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8313','OCRS_Canyon_City-Burns_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8314','OCRS_Canyon_City-Burns_NAD_1983_2011_TM_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8315','OCRS_Coast_Range_North_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8316','OCRS_Coast_Range_North_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8317','OCRS_Dayville-Prairie_City_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8318','OCRS_Dayville-Prairie_City_NAD_1983_2011_TM_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8319','OCRS_Denio-Burns_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8320','OCRS_Denio-Burns_NAD_1983_2011_TM_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8321','OCRS_Halfway_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8322','OCRS_Halfway_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8323','OCRS_Medford-Diamond_Lake_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8324','OCRS_Medford-Diamond_Lake_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8325','OCRS_Mitchell_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8326','OCRS_Mitchell_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8327','OCRS_North_Central_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8328','OCRS_North_Central_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8329','OCRS_Ochoco_Summit_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8330','OCRS_Ochoco_Summit_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8331','OCRS_Owyhee_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8332','OCRS_Owyhee_NAD_1983_2011_TM_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8333','OCRS_Pilot_Rock-Ukiah_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8334','OCRS_Pilot_Rock-Ukiah_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8335','OCRS_Prairie_City-Brogan_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8336','OCRS_Prairie_City-Brogan_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8337','OCRS_Riley-Lakeview_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8338','OCRS_Riley-Lakeview_NAD_1983_2011_TM_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8339','OCRS_Siskiyou_Pass_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8340','OCRS_Siskiyou_Pass_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8341','OCRS_Ukiah-Fox_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8342','OCRS_Ukiah-Fox_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8343','OCRS_Wallowa_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8344','OCRS_Wallowa_NAD_1983_2011_TM_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8345','OCRS_Warner_Highway_NAD_1983_2011_LCC_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8346','OCRS_Warner_Highway_NAD_1983_2011_LCC_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8347','OCRS_Willamette_Pass_NAD_1983_2011_TM_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8348','OCRS_Willamette_Pass_NAD_1983_2011_TM_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8352','S-JTSK_[JTSK03]_Krovak','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8353','S-JTSK_[JTSK03]_Krovak_East_North','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8379','NAD_1983_NCRS_Las_Vegas_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8380','NAD_1983_NCRS_Las_Vegas_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8381','NAD_1983_NCRS_Las_Vegas_high_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8382','NAD_1983_NCRS_Las_Vegas_high_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8383','NAD_1983_(2011)_NCRS_Las_Vegas_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8384','NAD_1983_(2011)_NCRS_Las_Vegas_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8385','NAD_1983_(2011)_NCRS_Las_Vegas_high_(m)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8387','NAD_1983_(2011)_NCRS_Las_Vegas_high_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8391','GDA_1994_WEIPA94','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8395','ETRS_1989_GK_CM_9E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8433','Macao_1920_Macao_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8441','Tananarive_1925_Laborde_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8455','RGTAAF07_UTM_Zone_53S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8456','RGTAAF07_UTM_Zone_54S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8518','NAD_1983_2011_KS_RCS_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8519','NAD_1983_2011_KS_RCS_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8520','NAD_1983_2011_KS_RCS_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8521','NAD_1983_2011_KS_RCS_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8522','NAD_1983_2011_KS_RCS_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8523','NAD_1983_2011_KS_RCS_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8524','NAD_1983_2011_KS_RCS_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8525','NAD_1983_2011_KS_RCS_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8526','NAD_1983_2011_KS_RCS_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8527','NAD_1983_2011_KS_RCS_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8528','NAD_1983_2011_KS_RCS_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8529','NAD_1983_2011_KS_RCS_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8531','NAD_1983_2011_KS_RCS_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8533','NAD_1983_2011_KS_RCS_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8534','NAD_1983_2011_KS_RCS_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8535','NAD_1983_2011_KS_RCS_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8536','NAD_1983_2011_KS_RCS_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8538','NAD_1983_2011_KS_RCS_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8539','NAD_1983_2011_KS_RCS_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8540','NAD_1983_2011_KS_RCS_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8677','MGI_1901_Balkans_zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8678','MGI_1901_Balkans_zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8679','MGI_1901_Balkans_zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8682','SRB_ETRS89_UTM_zone_34N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8687','Slovenia_1996_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8692','NAD_1983_MA11_UTM_Zone_54N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8693','NAD_1983_MA11_UTM_Zone_55N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8826','NAD_1983_Idaho_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8836','MTRF-2000_UTM_zone_36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8837','MTRF-2000_UTM_zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8838','MTRF-2000_UTM_zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8839','MTRF-2000_UTM_zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8840','MTRF-2000_UTM_zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8857','WGS_1984_Equal_Earth_Greenwich','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8858','WGS_1984_Equal_Earth_Americas','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8859','WGS_1984_Equal_Earth_Asia_Pacific','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8903','RGWF96_UTM_Zone_1S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8908','CR-SIRGAS_CRTM05','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8909','CR-SIRGAS_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8910','CR-SIRGAS_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8950','SIRGAS-Chile_2010_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','8951','SIRGAS-Chile_2010_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9039','ISN2016_LAEA_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9040','ISN2016_LCC_Europe','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9141','KOSOVAREF01_Balkans_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9149','SIRGAS-Chile_2013_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9150','SIRGAS-Chile_2013_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9154','SIRGAS-Chile_2016_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9155','SIRGAS-Chile_2016_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9156','RSAO13_UTM_Zone_32S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9157','RSAO13_UTM_Zone_33S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9158','RSAO13_UTM_Zone_34S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9159','RSAO13_TM_12_SE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9191','WGS_1984_NIWA_Albers','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9205','VN-2000_TM-3_103-00','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9206','VN-2000_TM-3_104-00','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9207','VN-2000_TM-3_104-30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9208','VN-2000_TM-3_104-45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9209','VN-2000_TM-3_105-30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9210','VN-2000_TM-3_105-45','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9211','VN-2000_TM-3_106-00','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9212','VN-2000_TM-3_106-15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9213','VN-2000_TM-3_106-30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9214','VN-2000_TM-3_107-00','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9215','VN-2000_TM-3_107-15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9216','VN-2000_TM-3_107-30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9217','VN-2000_TM-3_108-15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9218','VN-2000_TM-3_108-30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9221','Hartebeesthoek94_ZAF_BSU_Albers_25E','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','9222','Hartebeesthoek94_ZAF_BSU_Albers_44E','ESRI'); INSERT INTO "projected_crs" VALUES('ESRI','20002','Pulkovo_1995_GK_Zone_2',NULL,NULL,'EPSG','4400','EPSG','4200','EPSG','16202','EPSG','1805',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','20003','Pulkovo_1995_GK_Zone_3',NULL,NULL,'EPSG','4400','EPSG','4200','EPSG','16203','EPSG','1792',NULL,0); INSERT INTO alias_name VALUES('projected_crs','EPSG','20004','Pulkovo_1995_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20005','Pulkovo_1995_GK_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20006','Pulkovo_1995_GK_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20007','Pulkovo_1995_GK_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20008','Pulkovo_1995_GK_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20009','Pulkovo_1995_GK_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20010','Pulkovo_1995_GK_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20011','Pulkovo_1995_GK_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20012','Pulkovo_1995_GK_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20013','Pulkovo_1995_GK_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20014','Pulkovo_1995_GK_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20015','Pulkovo_1995_GK_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20016','Pulkovo_1995_GK_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20017','Pulkovo_1995_GK_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20018','Pulkovo_1995_GK_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20019','Pulkovo_1995_GK_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20020','Pulkovo_1995_GK_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20021','Pulkovo_1995_GK_Zone_21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20022','Pulkovo_1995_GK_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20023','Pulkovo_1995_GK_Zone_23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20024','Pulkovo_1995_GK_Zone_24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20025','Pulkovo_1995_GK_Zone_25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20026','Pulkovo_1995_GK_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20027','Pulkovo_1995_GK_Zone_27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20028','Pulkovo_1995_GK_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20029','Pulkovo_1995_GK_Zone_29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20030','Pulkovo_1995_GK_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20031','Pulkovo_1995_GK_Zone_31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20032','Pulkovo_1995_GK_Zone_32','ESRI'); INSERT INTO "projected_crs" VALUES('ESRI','20062','Pulkovo_1995_GK_Zone_2N',NULL,NULL,'EPSG','4400','EPSG','4200','EPSG','16302','EPSG','1805',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','20063','Pulkovo_1995_GK_Zone_3N',NULL,NULL,'EPSG','4400','EPSG','4200','EPSG','16303','EPSG','1792',NULL,0); INSERT INTO alias_name VALUES('projected_crs','EPSG','20064','Pulkovo_1995_GK_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20065','Pulkovo_1995_GK_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20066','Pulkovo_1995_GK_Zone_6N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20067','Pulkovo_1995_GK_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20068','Pulkovo_1995_GK_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20069','Pulkovo_1995_GK_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20070','Pulkovo_1995_GK_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20071','Pulkovo_1995_GK_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20072','Pulkovo_1995_GK_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20073','Pulkovo_1995_GK_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20074','Pulkovo_1995_GK_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20075','Pulkovo_1995_GK_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20076','Pulkovo_1995_GK_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20077','Pulkovo_1995_GK_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20078','Pulkovo_1995_GK_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20079','Pulkovo_1995_GK_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20080','Pulkovo_1995_GK_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20081','Pulkovo_1995_GK_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20082','Pulkovo_1995_GK_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20083','Pulkovo_1995_GK_Zone_23N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20084','Pulkovo_1995_GK_Zone_24N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20085','Pulkovo_1995_GK_Zone_25N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20086','Pulkovo_1995_GK_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20087','Pulkovo_1995_GK_Zone_27N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20088','Pulkovo_1995_GK_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20089','Pulkovo_1995_GK_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20090','Pulkovo_1995_GK_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20091','Pulkovo_1995_GK_Zone_31N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20092','Pulkovo_1995_GK_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20135','Adindan_UTM_Zone_35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20136','Adindan_UTM_Zone_36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20137','Adindan_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20138','Adindan_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20248','AGD_1966_AMG_Zone_48','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20249','AGD_1966_AMG_Zone_49','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20250','AGD_1966_AMG_Zone_50','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20251','AGD_1966_AMG_Zone_51','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20252','AGD_1966_AMG_Zone_52','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20253','AGD_1966_AMG_Zone_53','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20254','AGD_1966_AMG_Zone_54','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20255','AGD_1966_AMG_Zone_55','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20256','AGD_1966_AMG_Zone_56','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20257','AGD_1966_AMG_Zone_57','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20258','AGD_1966_AMG_Zone_58','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20348','AGD_1984_AMG_Zone_48','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20349','AGD_1984_AMG_Zone_49','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20350','AGD_1984_AMG_Zone_50','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20351','AGD_1984_AMG_Zone_51','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20352','AGD_1984_AMG_Zone_52','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20353','AGD_1984_AMG_Zone_53','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20354','AGD_1984_AMG_Zone_54','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20355','AGD_1984_AMG_Zone_55','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20356','AGD_1984_AMG_Zone_56','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20357','AGD_1984_AMG_Zone_57','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20358','AGD_1984_AMG_Zone_58','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20436','Ain_el_Abd_UTM_Zone_36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20437','Ain_el_Abd_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20438','Ain_el_Abd_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20439','Ain_el_Abd_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20440','Ain_el_Abd_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20499','Bahrain_State_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20538','Afgooye_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20539','Afgooye_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20790','Portuguese_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20791','Lisbon_Lisbon_Portuguese_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20822','Aratu_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20823','Aratu_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20824','Aratu_UTM_Zone_24S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20934','Arc_1950_UTM_Zone_34S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20935','Arc_1950_UTM_Zone_35S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','20936','Arc_1950_UTM_Zone_36S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21035','Arc_1960_UTM_Zone_35S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21036','Arc_1960_UTM_Zone_36S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21037','Arc_1960_UTM_Zone_37S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21095','Arc_1960_UTM_Zone_35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21096','Arc_1960_UTM_Zone_36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21097','Arc_1960_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21148','Batavia_UTM_Zone_48S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21149','Batavia_UTM_Zone_49S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21150','Batavia_UTM_Zone_50S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21291','Barbados_1938_British_West_Indies_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21292','Barbados_1938_Barbados_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21413','Beijing_1954_GK_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21414','Beijing_1954_GK_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21415','Beijing_1954_GK_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21416','Beijing_1954_GK_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21417','Beijing_1954_GK_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21418','Beijing_1954_GK_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21419','Beijing_1954_GK_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21420','Beijing_1954_GK_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21421','Beijing_1954_GK_Zone_21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21422','Beijing_1954_GK_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21423','Beijing_1954_GK_Zone_23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21473','Beijing_1954_GK_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21474','Beijing_1954_GK_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21475','Beijing_1954_GK_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21476','Beijing_1954_GK_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21477','Beijing_1954_GK_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21478','Beijing_1954_GK_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21479','Beijing_1954_GK_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21480','Beijing_1954_GK_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21481','Beijing_1954_GK_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21482','Beijing_1954_GK_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21483','Beijing_1954_GK_Zone_23N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21500','Belge_Lambert_1950','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21780','Bern_1898_Bern_LV03C','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21781','CH1903_LV03','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21782','CH1903_LV03C-G','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21817','Bogota_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21818','Bogota_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21891','Colombia_West_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21892','Colombia_Bogota_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21893','Colombia_East_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21894','Colombia_East_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21896','Colombia_West_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21897','Colombia_Bogota_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21898','Colombia_East_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','21899','Colombia_East_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22032','Camacupa_UTM_Zone_32S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22033','Camacupa_UTM_Zone_33S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22091','Camacupa_TM_11_30_SE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22092','Camacupa_TM_12_SE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22171','POSGAR_1998_Argentina_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22172','POSGAR_1998_Argentina_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22173','POSGAR_1998_Argentina_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22174','POSGAR_1998_Argentina_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22175','POSGAR_1998_Argentina_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22176','POSGAR_1998_Argentina_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22177','POSGAR_1998_Argentina_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22181','POSGAR_1994_Argentina_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22182','POSGAR_1994_Argentina_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22183','POSGAR_1994_Argentina_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22184','POSGAR_1994_Argentina_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22185','POSGAR_1994_Argentina_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22186','POSGAR_1994_Argentina_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22187','POSGAR_1994_Argentina_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22191','Argentina_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22192','Argentina_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22193','Argentina_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22194','Argentina_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22195','Argentina_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22196','Argentina_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22197','Argentina_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22234','Cape_UTM_Zone_34S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22235','Cape_UTM_Zone_35S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22236','Cape_UTM_Zone_36S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22332','Carthage_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22391','Nord_Tunisie','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22392','Sud_Tunisie','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22521','Corrego_Alegre_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22522','Corrego_Alegre_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22523','Corrego_Alegre_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22524','Corrego_Alegre_UTM_Zone_24S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22525','Corrego_Alegre_UTM_Zone_25S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22700','Deir_ez_Zor_Levant_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22770','Deir_ez_Zor_Syria_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22780','Deir_ez_Zor_Levant_Stereographic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22832','Douala_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22991','Egypt_Blue_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22992','Egypt_Red_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22993','Egypt_Purple_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','22994','Egypt_Extended_Purple_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23028','ED_1950_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23029','ED_1950_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23030','ED_1950_UTM_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23031','ED_1950_UTM_Zone_31N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23032','ED_1950_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23033','ED_1950_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23034','ED_1950_UTM_Zone_34N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23035','ED_1950_UTM_Zone_35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23036','ED_1950_UTM_Zone_36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23037','ED_1950_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23038','ED_1950_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23090','ED_1950_TM_0_N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23095','ED_1950_TM_5_NE','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23239','Fahud_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23240','Fahud_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23433','Garoua_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23700','Hungarian_1972_Egyseges_Orszagos_Vetuleti','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23830','DGN_1995_Indonesia_TM-3_Zone_46.2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23831','DGN_1995_Indonesia_TM-3_Zone_47.1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23832','DGN_1995_Indonesia_TM-3_Zone_47.2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23833','DGN_1995_Indonesia_TM-3_Zone_48.1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23834','DGN_1995_Indonesia_TM-3_Zone_48.2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23835','DGN_1995_Indonesia_TM-3_Zone_49.1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23836','DGN_1995_Indonesia_TM-3_Zone_49.2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23837','DGN_1995_Indonesia_TM-3_Zone_50.1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23838','DGN_1995_Indonesia_TM-3_Zone_50.2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23839','DGN_1995_Indonesia_TM-3_Zone_51.1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23840','DGN_1995_Indonesia_TM-3_Zone_51.2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23841','DGN_1995_Indonesia_TM-3_Zone_52.1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23842','DGN_1995_Indonesia_TM-3_Zone_52.2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23843','DGN_1995_Indonesia_TM-3_Zone_53.1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23844','DGN_1995_Indonesia_TM-3_Zone_53.2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23845','DGN_1995_Indonesia_TM-3_Zone_54.1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23846','Indonesian_1974_UTM_Zone_46N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23847','Indonesian_1974_UTM_Zone_47N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23848','Indonesian_1974_UTM_Zone_48N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23849','Indonesian_1974_UTM_Zone_49N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23850','Indonesian_1974_UTM_Zone_50N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23851','Indonesian_1974_UTM_Zone_51N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23852','Indonesian_1974_UTM_Zone_52N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23853','Indonesian_1974_UTM_Zone_53N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23866','DGN_1995_UTM_Zone_46N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23867','DGN_1995_UTM_Zone_47N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23868','DGN_1995_UTM_Zone_48N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23869','DGN_1995_UTM_Zone_49N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23870','DGN_1995_UTM_Zone_50N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23871','DGN_1995_UTM_Zone_51N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23872','DGN_1995_UTM_Zone_52N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23877','DGN_1995_UTM_Zone_47S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23878','DGN_1995_UTM_Zone_48S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23879','DGN_1995_UTM_Zone_49S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23880','DGN_1995_UTM_Zone_50S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23881','DGN_1995_UTM_Zone_51S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23882','DGN_1995_UTM_Zone_52S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23883','DGN_1995_UTM_Zone_53S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23884','DGN_1995_UTM_Zone_54S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23886','Indonesian_1974_UTM_Zone_46S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23887','Indonesian_1974_UTM_Zone_47S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23888','Indonesian_1974_UTM_Zone_48S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23889','Indonesian_1974_UTM_Zone_49S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23890','Indonesian_1974_UTM_Zone_50S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23891','Indonesian_1974_UTM_Zone_51S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23892','Indonesian_1974_UTM_Zone_52S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23893','Indonesian_1974_UTM_Zone_53S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23894','Indonesian_1974_UTM_Zone_54S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23946','Indian_1954_UTM_Zone_46N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23947','Indian_1954_UTM_Zone_47N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','23948','Indian_1954_UTM_Zone_48N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24047','Indian_1975_UTM_Zone_47N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24048','Indian_1975_UTM_Zone_48N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24100','Jamaica_1875_Old_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24200','Jamaica_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24305','Kalianpur_1937_UTM_Zone_45N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24306','Kalianpur_1937_UTM_Zone_46N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24311','Kalianpur_1962_UTM_Zone_41N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24312','Kalianpur_1962_UTM_Zone_42N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24313','Kalianpur_1962_UTM_Zone_43N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24342','Kalianpur_1975_UTM_Zone_42N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24343','Kalianpur_1975_UTM_Zone_43N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24344','Kalianpur_1975_UTM_Zone_44N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24345','Kalianpur_1975_UTM_Zone_45N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24346','Kalianpur_1975_UTM_Zone_46N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24347','Kalianpur_1975_UTM_Zone_47N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24370','Kalianpur_1880_India_Zone_0','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24371','Kalianpur_1880_India_Zone_I','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24372','Kalianpur_1880_India_Zone_IIa','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24373','Kalianpur_1880_India_Zone_III','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24374','Kalianpur_1880_India_Zone_IV','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24375','Kalianpur_1937_India_Zone_IIb','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24376','Kalianpur_1962_India_Zone_I','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24377','Kalianpur_1962_India_Zone_IIa','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24378','Kalianpur_1975_India_Zone_I','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24379','Kalianpur_1975_India_Zone_IIa','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24380','Kalianpur_1975_India_Zone_IIb','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24381','Kalianpur_1975_India_Zone_III','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24382','Kalianpur_1880_India_Zone_IIb','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24383','Kalianpur_1975_India_Zone_IV','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24500','Kertau_Singapore_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24547','Kertau_UTM_Zone_47N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24548','Kertau_UTM_Zone_48N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24571','Kertau_RSO_Malaya_Chains','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24600','KOC_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24718','La_Canoa_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24719','La_Canoa_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24720','La_Canoa_UTM_Zone_20N','ESRI'); INSERT INTO "area" VALUES('ESRI','3','Venezuela - east of 60~W, N hemisphere','Venezuela - east of 60~W, N hemisphere',7.6,10.0,-61.0,-58.0,0); INSERT INTO "projected_crs" VALUES('ESRI','24721','La_Canoa_UTM_Zone_21N',NULL,NULL,'EPSG','4400','EPSG','4247','EPSG','16021','ESRI','3',NULL,0); INSERT INTO alias_name VALUES('projected_crs','EPSG','24817','PSAD_1956_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24818','PSAD_1956_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24819','PSAD_1956_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24820','PSAD_1956_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24821','PSAD_1956_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24877','PSAD_1956_UTM_Zone_17S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24878','PSAD_1956_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24879','PSAD_1956_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24880','PSAD_1956_UTM_Zone_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24881','PSAD_1956_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24882','PSAD_1956_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24891','Peru_West_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24892','Peru_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','24893','Peru_East_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25000','Ghana_Metre_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25231','Lome_UTM_Zone_31N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25391','Philippines_Zone_I','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25392','Philippines_Zone_II','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25393','Philippines_Zone_III','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25394','Philippines_Zone_IV','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25395','Philippines_Zone_V','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25828','ETRS_1989_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25829','ETRS_1989_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25830','ETRS_1989_UTM_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25831','ETRS_1989_UTM_Zone_31N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25832','ETRS_1989_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25833','ETRS_1989_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25834','ETRS_1989_UTM_Zone_34N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25835','ETRS_1989_UTM_Zone_35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25836','ETRS_1989_UTM_Zone_36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25837','ETRS_1989_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25838','ETRS_1989_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25884','ETRS_1989_TM_Baltic_1993','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','25932','Malongo_1987_UTM_Zone_32S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26191','Nord_Maroc','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26192','Sud_Maroc','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26193','Sahara','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26194','Merchich_Sahara_Nord','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26195','Merchich_Sahara_Sud','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26237','Massawa_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26331','Minna_UTM_Zone_31N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26332','Minna_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26391','Nigeria_West_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26392','Nigeria_Mid_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26393','Nigeria_East_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26432','Mhast_UTM_Zone_32S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26591','Monte_Mario_Rome_Italy_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26592','Monte_Mario_Rome_Italy_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26632','Mporaloko_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26692','Mporaloko_UTM_Zone_32S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26701','NAD_1927_UTM_Zone_1N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26702','NAD_1927_UTM_Zone_2N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26703','NAD_1927_UTM_Zone_3N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26704','NAD_1927_UTM_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26705','NAD_1927_UTM_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26706','NAD_1927_UTM_Zone_6N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26707','NAD_1927_UTM_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26708','NAD_1927_UTM_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26709','NAD_1927_UTM_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26710','NAD_1927_UTM_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26711','NAD_1927_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26712','NAD_1927_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26713','NAD_1927_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26714','NAD_1927_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26715','NAD_1927_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26716','NAD_1927_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26717','NAD_1927_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26718','NAD_1927_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26719','NAD_1927_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26720','NAD_1927_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26721','NAD_1927_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26722','NAD_1927_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26729','NAD_1927_StatePlane_Alabama_East_FIPS_0101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26730','NAD_1927_StatePlane_Alabama_West_FIPS_0102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26731','NAD_1927_StatePlane_Alaska_1_FIPS_5001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26732','NAD_1927_StatePlane_Alaska_2_FIPS_5002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26733','NAD_1927_StatePlane_Alaska_3_FIPS_5003','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26734','NAD_1927_StatePlane_Alaska_4_FIPS_5004','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26735','NAD_1927_StatePlane_Alaska_5_FIPS_5005','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26736','NAD_1927_StatePlane_Alaska_6_FIPS_5006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26737','NAD_1927_StatePlane_Alaska_7_FIPS_5007','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26738','NAD_1927_StatePlane_Alaska_8_FIPS_5008','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26739','NAD_1927_StatePlane_Alaska_9_FIPS_5009','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26740','NAD_1927_StatePlane_Alaska_10_FIPS_5010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26741','NAD_1927_StatePlane_California_I_FIPS_0401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26742','NAD_1927_StatePlane_California_II_FIPS_0402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26743','NAD_1927_StatePlane_California_III_FIPS_0403','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26744','NAD_1927_StatePlane_California_IV_FIPS_0404','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26745','NAD_1927_StatePlane_California_V_FIPS_0405','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26746','NAD_1927_StatePlane_California_VI_FIPS_0406','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26747','NAD_1927_StatePlane_California_VII_FIPS_0407','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26748','NAD_1927_StatePlane_Arizona_East_FIPS_0201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26749','NAD_1927_StatePlane_Arizona_Central_FIPS_0202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26750','NAD_1927_StatePlane_Arizona_West_FIPS_0203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26751','NAD_1927_StatePlane_Arkansas_North_FIPS_0301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26752','NAD_1927_StatePlane_Arkansas_South_FIPS_0302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26753','NAD_1927_StatePlane_Colorado_North_FIPS_0501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26754','NAD_1927_StatePlane_Colorado_Central_FIPS_0502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26755','NAD_1927_StatePlane_Colorado_South_FIPS_0503','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26756','NAD_1927_StatePlane_Connecticut_FIPS_0600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26757','NAD_1927_StatePlane_Delaware_FIPS_0700','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26758','NAD_1927_StatePlane_Florida_East_FIPS_0901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26759','NAD_1927_StatePlane_Florida_West_FIPS_0902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26760','NAD_1927_StatePlane_Florida_North_FIPS_0903','ESRI'); INSERT INTO "coordinate_system" VALUES('ESRI','Foot_US','Cartesian',2); INSERT INTO "axis" VALUES('ESRI','1','Easting','E','east','ESRI','Foot_US',1,'EPSG','9003'); INSERT INTO "axis" VALUES('ESRI','2','Northing','N','north','ESRI','Foot_US',2,'EPSG','9003'); INSERT INTO "conversion" VALUES('ESRI','26761','unnamed',NULL,NULL,'EPSG','1546','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',18.83333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-155.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','26761','NAD_1927_StatePlane_Hawaii_1_FIPS_5101',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','26761','EPSG','1546',NULL,1); INSERT INTO "conversion" VALUES('ESRI','26762','unnamed',NULL,NULL,'EPSG','1547','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',20.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-156.6666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','26762','NAD_1927_StatePlane_Hawaii_2_FIPS_5102',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','26762','EPSG','1547',NULL,1); INSERT INTO "conversion" VALUES('ESRI','26763','unnamed',NULL,NULL,'EPSG','1548','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.16666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-158.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','26763','NAD_1927_StatePlane_Hawaii_3_FIPS_5103',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','26763','EPSG','1548',NULL,1); INSERT INTO "conversion" VALUES('ESRI','26764','unnamed',NULL,NULL,'EPSG','1549','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.83333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-159.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','26764','NAD_1927_StatePlane_Hawaii_4_FIPS_5104',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','26764','EPSG','1549',NULL,1); INSERT INTO "conversion" VALUES('ESRI','26765','unnamed',NULL,NULL,'EPSG','1550','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.66666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-160.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','26765','NAD_1927_StatePlane_Hawaii_5_FIPS_5105',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','26765','EPSG','1550',NULL,1); INSERT INTO alias_name VALUES('projected_crs','EPSG','26766','NAD_1927_StatePlane_Georgia_East_FIPS_1001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26767','NAD_1927_StatePlane_Georgia_West_FIPS_1002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26768','NAD_1927_StatePlane_Idaho_East_FIPS_1101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26769','NAD_1927_StatePlane_Idaho_Central_FIPS_1102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26770','NAD_1927_StatePlane_Idaho_West_FIPS_1103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26771','NAD_1927_StatePlane_Illinois_East_FIPS_1201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26772','NAD_1927_StatePlane_Illinois_West_FIPS_1202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26773','NAD_1927_StatePlane_Indiana_East_FIPS_1301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26774','NAD_1927_StatePlane_Indiana_West_FIPS_1302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26775','NAD_1927_StatePlane_Iowa_North_FIPS_1401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26776','NAD_1927_StatePlane_Iowa_South_FIPS_1402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26777','NAD_1927_StatePlane_Kansas_North_FIPS_1501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26778','NAD_1927_StatePlane_Kansas_South_FIPS_1502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26779','NAD_1927_StatePlane_Kentucky_North_FIPS_1601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26780','NAD_1927_StatePlane_Kentucky_South_FIPS_1602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26781','NAD_1927_StatePlane_Louisiana_North_FIPS_1701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26782','NAD_1927_StatePlane_Louisiana_South_FIPS_1702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26783','NAD_1927_StatePlane_Maine_East_FIPS_1801','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26784','NAD_1927_StatePlane_Maine_West_FIPS_1802','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26785','NAD_1927_StatePlane_Maryland_FIPS_1900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26786','NAD_1927_StatePlane_Massachusetts_Mainland_FIPS_2001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26787','NAD_1927_StatePlane_Massachusetts_Island_FIPS_2002','ESRI'); INSERT INTO "conversion" VALUES('ESRI','26788','unnamed',NULL,NULL,'EPSG','1723','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.78333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.48333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','26788','NAD_1927_StatePlane_Michigan_North_FIPS_2111',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','26788','EPSG','1723',NULL,0); INSERT INTO "conversion" VALUES('ESRI','26789','unnamed',NULL,NULL,'EPSG','1724','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.31666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.33333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.7,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','26789','NAD_1927_StatePlane_Michigan_Central_FIPS_2112',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','26789','EPSG','1724',NULL,0); INSERT INTO "conversion" VALUES('ESRI','26790','unnamed',NULL,NULL,'EPSG','1725','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.33333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.1,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','26790','NAD_1927_StatePlane_Michigan_South_FIPS_2113',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','26790','EPSG','1725',NULL,0); INSERT INTO alias_name VALUES('projected_crs','EPSG','26791','NAD_1927_StatePlane_Minnesota_North_FIPS_2201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26792','NAD_1927_StatePlane_Minnesota_Central_FIPS_2202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26793','NAD_1927_StatePlane_Minnesota_South_FIPS_2203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26794','NAD_1927_StatePlane_Mississippi_East_FIPS_2301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26795','NAD_1927_StatePlane_Mississippi_West_FIPS_2302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26796','NAD_1927_StatePlane_Missouri_East_FIPS_2401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26797','NAD_1927_StatePlane_Missouri_Central_FIPS_2402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26798','NAD_1927_StatePlane_Missouri_West_FIPS_2403','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26799','NAD_1927_StatePlane_California_VII_FIPS_0407','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26801','NAD_Michigan_StatePlane_Michigan_East_Old_FIPS_2101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26802','NAD_Michigan_StatePlane_Michigan_Central_Old_FIPS_2102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26803','NAD_Michigan_StatePlane_Michigan_West_Old_FIPS_2103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26811','NAD_Michigan_StatePlane_Michigan_North_FIPS_2111','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26812','NAD_Michigan_StatePlane_Michigan_Central_FIPS_2112','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26813','NAD_Michigan_StatePlane_Michigan_South_FIPS_2113','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26847','NAD_1983_StatePlane_Maine_East_FIPS_1801_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26848','NAD_1983_StatePlane_Maine_West_FIPS_1802_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26849','NAD_1983_StatePlane_Minnesota_North_FIPS_2201_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26850','NAD_1983_StatePlane_Minnesota_Central_FIPS_2202_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26851','NAD_1983_StatePlane_Minnesota_South_FIPS_2203_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26852','NAD_1983_StatePlane_Nebraska_FIPS_2600_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26853','NAD_1983_StatePlane_West_Virginia_North_FIPS_4701_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26854','NAD_1983_StatePlane_West_Virginia_South_FIPS_4702_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26855','NAD_1983_HARN_StatePlane_Maine_East_FIPS_1801_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26856','NAD_1983_HARN_StatePlane_Maine_West_FIPS_1802_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26857','NAD_1983_HARN_StatePlane_Minnesota_North_FIPS_2201_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26858','NAD_1983_HARN_StatePlane_Minnesota_Central_FIPS_2202_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26859','NAD_1983_HARN_StatePlane_Minnesota_South_FIPS_2203_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26860','NAD_1983_HARN_StatePlane_Nebraska_FIPS_2600_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26861','NAD_1983_HARN_StatePlane_West_Virginia_North_FIPS_4701_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26862','NAD_1983_HARN_StatePlane_West_Virginia_South_FIPS_4702_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26863','NAD_1983_NSRS2007_StatePlane_Maine_East_FIPS_1801_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26864','NAD_1983_NSRS2007_StatePlane_Maine_West_FIPS_1802_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26865','NAD_1983_NSRS2007_StatePlane_Minnesota_North_FIPS_2201_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26866','NAD_1983_NSRS2007_StatePlane_Minnesota_Central_FIPS_2202_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26867','NAD_1983_NSRS2007_StatePlane_Minnesota_South_FIPS_2203_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26868','NAD_1983_NSRS2007_StatePlane_Nebraska_FIPS_2600_Ft_US','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26869','NAD_1983_NSRS2007_StatePlane_West_Virginia_North_FIPS_4701_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26870','NAD_1983_NSRS2007_StatePlane_West_Virginia_South_FIPS_4702_FtUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26891','NAD_1983_CSRS_MTM_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26892','NAD_1983_CSRS_MTM_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26893','NAD_1983_CSRS_MTM_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26894','NAD_1983_CSRS_MTM_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26895','NAD_1983_CSRS_MTM_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26896','NAD_1983_CSRS_MTM_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26897','NAD_1983_CSRS_MTM_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26898','NAD_1983_CSRS_MTM_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26899','NAD_1983_CSRS_MTM_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26901','NAD_1983_UTM_Zone_1N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26902','NAD_1983_UTM_Zone_2N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26903','NAD_1983_UTM_Zone_3N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26904','NAD_1983_UTM_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26905','NAD_1983_UTM_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26906','NAD_1983_UTM_Zone_6N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26907','NAD_1983_UTM_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26908','NAD_1983_UTM_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26909','NAD_1983_UTM_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26910','NAD_1983_UTM_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26911','NAD_1983_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26912','NAD_1983_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26913','NAD_1983_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26914','NAD_1983_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26915','NAD_1983_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26916','NAD_1983_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26917','NAD_1983_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26918','NAD_1983_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26919','NAD_1983_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26920','NAD_1983_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26921','NAD_1983_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26922','NAD_1983_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26923','NAD_1983_UTM_Zone_23N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26929','NAD_1983_StatePlane_Alabama_East_FIPS_0101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26930','NAD_1983_StatePlane_Alabama_West_FIPS_0102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26931','NAD_1983_StatePlane_Alaska_1_FIPS_5001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26932','NAD_1983_StatePlane_Alaska_2_FIPS_5002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26933','NAD_1983_StatePlane_Alaska_3_FIPS_5003','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26934','NAD_1983_StatePlane_Alaska_4_FIPS_5004','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26935','NAD_1983_StatePlane_Alaska_5_FIPS_5005','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26936','NAD_1983_StatePlane_Alaska_6_FIPS_5006','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26937','NAD_1983_StatePlane_Alaska_7_FIPS_5007','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26938','NAD_1983_StatePlane_Alaska_8_FIPS_5008','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26939','NAD_1983_StatePlane_Alaska_9_FIPS_5009','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26940','NAD_1983_StatePlane_Alaska_10_FIPS_5010','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26941','NAD_1983_StatePlane_California_I_FIPS_0401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26942','NAD_1983_StatePlane_California_II_FIPS_0402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26943','NAD_1983_StatePlane_California_III_FIPS_0403','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26944','NAD_1983_StatePlane_California_IV_FIPS_0404','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26945','NAD_1983_StatePlane_California_V_FIPS_0405','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26946','NAD_1983_StatePlane_California_VI_FIPS_0406','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26948','NAD_1983_StatePlane_Arizona_East_FIPS_0201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26949','NAD_1983_StatePlane_Arizona_Central_FIPS_0202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26950','NAD_1983_StatePlane_Arizona_West_FIPS_0203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26951','NAD_1983_StatePlane_Arkansas_North_FIPS_0301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26952','NAD_1983_StatePlane_Arkansas_South_FIPS_0302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26953','NAD_1983_StatePlane_Colorado_North_FIPS_0501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26954','NAD_1983_StatePlane_Colorado_Central_FIPS_0502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26955','NAD_1983_StatePlane_Colorado_South_FIPS_0503','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26956','NAD_1983_StatePlane_Connecticut_FIPS_0600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26957','NAD_1983_StatePlane_Delaware_FIPS_0700','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26958','NAD_1983_StatePlane_Florida_East_FIPS_0901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26959','NAD_1983_StatePlane_Florida_West_FIPS_0902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26960','NAD_1983_StatePlane_Florida_North_FIPS_0903','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26961','NAD_1983_StatePlane_Hawaii_1_FIPS_5101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26962','NAD_1983_StatePlane_Hawaii_2_FIPS_5102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26963','NAD_1983_StatePlane_Hawaii_3_FIPS_5103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26964','NAD_1983_StatePlane_Hawaii_4_FIPS_5104','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26965','NAD_1983_StatePlane_Hawaii_5_FIPS_5105','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26966','NAD_1983_StatePlane_Georgia_East_FIPS_1001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26967','NAD_1983_StatePlane_Georgia_West_FIPS_1002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26968','NAD_1983_StatePlane_Idaho_East_FIPS_1101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26969','NAD_1983_StatePlane_Idaho_Central_FIPS_1102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26970','NAD_1983_StatePlane_Idaho_West_FIPS_1103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26971','NAD_1983_StatePlane_Illinois_East_FIPS_1201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26972','NAD_1983_StatePlane_Illinois_West_FIPS_1202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26973','NAD_1983_StatePlane_Indiana_East_FIPS_1301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26974','NAD_1983_StatePlane_Indiana_West_FIPS_1302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26975','NAD_1983_StatePlane_Iowa_North_FIPS_1401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26976','NAD_1983_StatePlane_Iowa_South_FIPS_1402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26977','NAD_1983_StatePlane_Kansas_North_FIPS_1501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26978','NAD_1983_StatePlane_Kansas_South_FIPS_1502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26979','NAD_1983_StatePlane_Kentucky_North_FIPS_1601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26980','NAD_1983_StatePlane_Kentucky_South_FIPS_1602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26981','NAD_1983_StatePlane_Louisiana_North_FIPS_1701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26982','NAD_1983_StatePlane_Louisiana_South_FIPS_1702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26983','NAD_1983_StatePlane_Maine_East_FIPS_1801','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26984','NAD_1983_StatePlane_Maine_West_FIPS_1802','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26985','NAD_1983_StatePlane_Maryland_FIPS_1900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26986','NAD_1983_StatePlane_Massachusetts_Mainland_FIPS_2001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26987','NAD_1983_StatePlane_Massachusetts_Island_FIPS_2002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26988','NAD_1983_StatePlane_Michigan_North_FIPS_2111','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26989','NAD_1983_StatePlane_Michigan_Central_FIPS_2112','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26990','NAD_1983_StatePlane_Michigan_South_FIPS_2113','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26991','NAD_1983_StatePlane_Minnesota_North_FIPS_2201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26992','NAD_1983_StatePlane_Minnesota_Central_FIPS_2202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26993','NAD_1983_StatePlane_Minnesota_South_FIPS_2203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26994','NAD_1983_StatePlane_Mississippi_East_FIPS_2301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26995','NAD_1983_StatePlane_Mississippi_West_FIPS_2302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26996','NAD_1983_StatePlane_Missouri_East_FIPS_2401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26997','NAD_1983_StatePlane_Missouri_Central_FIPS_2402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','26998','NAD_1983_StatePlane_Missouri_West_FIPS_2403','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27037','Nahrwan_1967_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27038','Nahrwan_1967_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27039','Nahrwan_1967_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27040','Nahrwan_1967_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27120','Naparima_1972_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27200','GD_1949_New_Zealand_Map_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27205','NZGD_1949_Mount_Eden_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27206','NZGD_1949_Bay_of_Plenty_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27207','NZGD_1949_Poverty_Bay_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27208','NZGD_1949_Hawkes_Bay_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27209','NZGD_1949_Taranaki_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27210','NZGD_1949_Tuhirangi_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27211','NZGD_1949_Wanganui_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27212','NZGD_1949_Wairarapa_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27213','NZGD_1949_Wellington_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27214','NZGD_1949_Collingwood_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27215','NZGD_1949_Nelson_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27216','NZGD_1949_Karamea_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27217','NZGD_1949_Buller_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27218','NZGD_1949_Grey_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27219','NZGD_1949_Amuri_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27220','NZGD_1949_Marlborough_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27221','NZGD_1949_Hokitika_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27222','NZGD_1949_Okarito_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27223','NZGD_1949_Jacksons_Bay_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27224','NZGD_1949_Mount_Pleasant_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27225','NZGD_1949_Gawler_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27226','NZGD_1949_Timaru_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27227','NZGD_1949_Lindis_Peak_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27228','NZGD_1949_Mount_Nicholas_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27229','NZGD_1949_Mount_York_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27230','NZGD_1949_Observation_Point_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27231','NZGD_1949_North_Taieri_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27232','NZGD_1949_Bluff_Circuit','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27258','NZGD_1949_UTM_Zone_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27259','NZGD_1949_UTM_Zone_59S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27260','NZGD_1949_UTM_Zone_60S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27291','New_Zealand_North_Island','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27292','New_Zealand_South_Island','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27391','NGO_1948_Oslo_Norway_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27392','NGO_1948_Oslo_Norway_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27393','NGO_1948_Oslo_Norway_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27394','NGO_1948_Oslo_Norway_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27395','NGO_1948_Oslo_Norway_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27396','NGO_1948_Oslo_Norway_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27397','NGO_1948_Oslo_Norway_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27398','NGO_1948_Oslo_Norway_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27429','Datum_73_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27492','Datum_73_Modified_Portuguese_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27493','Datum_73_Modified_Portuguese_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27500','Nord_de_Guerre','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27561','NTF_Paris_Lambert_Nord_France','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27562','NTF_Paris_Lambert_Centre_France','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27563','NTF_Paris_Lambert_Sud_France','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27564','NTF_Paris_Lambert_Corse','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27571','NTF_Paris_Lambert_Zone_I','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27572','NTF_Paris_Lambert_Zone_II','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27573','NTF_Paris_Lambert_Zone_III','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27574','NTF_Paris_Lambert_Zone_IV','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27581','NTF_Paris_France_I','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27582','NTF_Paris_France_II','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27583','NTF_Paris_France_III','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27584','NTF_Paris_France_IV','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27591','NTF_Paris_Nord_France','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27592','NTF_Paris_Centre_France','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27593','NTF_Paris_Sud_France','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27594','NTF_Paris_Corse','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','27700','British_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28191','Palestine_1923_Palestine_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28192','Palestine_1923_Palestine_Belt','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28193','Palestine_1923_Israel_CS_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28232','Pointe_Noire_UTM_Zone_32S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28348','GDA_1994_MGA_Zone_48','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28349','GDA_1994_MGA_Zone_49','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28350','GDA_1994_MGA_Zone_50','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28351','GDA_1994_MGA_Zone_51','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28352','GDA_1994_MGA_Zone_52','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28353','GDA_1994_MGA_Zone_53','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28354','GDA_1994_MGA_Zone_54','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28355','GDA_1994_MGA_Zone_55','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28356','GDA_1994_MGA_Zone_56','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28357','GDA_1994_MGA_Zone_57','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28358','GDA_1994_MGA_Zone_58','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28402','Pulkovo_1942_GK_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28403','Pulkovo_1942_GK_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28404','Pulkovo_1942_GK_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28405','Pulkovo_1942_GK_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28406','Pulkovo_1942_GK_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28407','Pulkovo_1942_GK_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28408','Pulkovo_1942_GK_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28409','Pulkovo_1942_GK_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28410','Pulkovo_1942_GK_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28411','Pulkovo_1942_GK_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28412','Pulkovo_1942_GK_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28413','Pulkovo_1942_GK_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28414','Pulkovo_1942_GK_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28415','Pulkovo_1942_GK_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28416','Pulkovo_1942_GK_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28417','Pulkovo_1942_GK_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28418','Pulkovo_1942_GK_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28419','Pulkovo_1942_GK_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28420','Pulkovo_1942_GK_Zone_20','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28421','Pulkovo_1942_GK_Zone_21','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28422','Pulkovo_1942_GK_Zone_22','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28423','Pulkovo_1942_GK_Zone_23','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28424','Pulkovo_1942_GK_Zone_24','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28425','Pulkovo_1942_GK_Zone_25','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28426','Pulkovo_1942_GK_Zone_26','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28427','Pulkovo_1942_GK_Zone_27','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28428','Pulkovo_1942_GK_Zone_28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28429','Pulkovo_1942_GK_Zone_29','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28430','Pulkovo_1942_GK_Zone_30','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28431','Pulkovo_1942_GK_Zone_31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28432','Pulkovo_1942_GK_Zone_32','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28462','Pulkovo_1942_GK_Zone_2N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28463','Pulkovo_1942_GK_Zone_3N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28464','Pulkovo_1942_GK_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28465','Pulkovo_1942_GK_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28466','Pulkovo_1942_GK_Zone_6N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28467','Pulkovo_1942_GK_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28468','Pulkovo_1942_GK_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28469','Pulkovo_1942_GK_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28470','Pulkovo_1942_GK_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28471','Pulkovo_1942_GK_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28472','Pulkovo_1942_GK_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28473','Pulkovo_1942_GK_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28474','Pulkovo_1942_GK_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28475','Pulkovo_1942_GK_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28476','Pulkovo_1942_GK_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28477','Pulkovo_1942_GK_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28478','Pulkovo_1942_GK_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28479','Pulkovo_1942_GK_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28480','Pulkovo_1942_GK_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28481','Pulkovo_1942_GK_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28482','Pulkovo_1942_GK_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28483','Pulkovo_1942_GK_Zone_23N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28484','Pulkovo_1942_GK_Zone_24N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28485','Pulkovo_1942_GK_Zone_25N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28486','Pulkovo_1942_GK_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28487','Pulkovo_1942_GK_Zone_27N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28488','Pulkovo_1942_GK_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28489','Pulkovo_1942_GK_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28490','Pulkovo_1942_GK_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28491','Pulkovo_1942_GK_Zone_31N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28492','Pulkovo_1942_GK_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28600','Qatar_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28991','RD_Old','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','28992','RD_New','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29100','SAD_1969_Brazil_Polyconic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29101','SAD_1969_Brazil_Polyconic','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29118','SAD_1969_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29119','SAD_1969_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29120','SAD_1969_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29121','SAD_1969_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29122','SAD_1969_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29168','SAD_1969_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29169','SAD_1969_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29170','SAD_1969_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29171','SAD_1969_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29172','SAD_1969_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29177','SAD_1969_UTM_Zone_17S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29178','SAD_1969_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29179','SAD_1969_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29180','SAD_1969_UTM_Zone_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29181','SAD_1969_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29182','SAD_1969_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29183','SAD_1969_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29184','SAD_1969_UTM_Zone_24S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29185','SAD_1969_UTM_Zone_25S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29187','SAD_1969_UTM_Zone_17S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29188','SAD_1969_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29189','SAD_1969_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29190','SAD_1969_UTM_Zone_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29191','SAD_1969_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29192','SAD_1969_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29193','SAD_1969_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29194','SAD_1969_UTM_Zone_24S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29195','SAD_1969_UTM_Zone_25S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29220','Sapper_Hill_1943_UTM_Zone_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29221','Sapper_Hill_1943_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29333','Schwarzeck_UTM_Zone_33S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29635','Sudan_UTM_Zone_35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29636','Sudan_UTM_Zone_36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29701','Tananarive_1925_Paris_Laborde_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29738','Tananarive_1925_UTM_Zone_38S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29739','Tananarive_1925_UTM_Zone_39S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29849','Timbalai_1948_UTM_Zone_49N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29850','Timbalai_1948_UTM_Zone_50N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29871','Timbalai_1948_RSO_Borneo_Chains','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29872','Timbalai_1948_RSO_Borneo_Feet','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29873','Timbalai_1948_RSO_Borneo_Meters','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29900','TM65_Irish_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29901','OSNI_1952_Irish_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29902','TM65_Irish_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','29903','TM75_Irish_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30161','Japan_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30162','Japan_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30163','Japan_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30164','Japan_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30165','Japan_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30166','Japan_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30167','Japan_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30168','Japan_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30169','Japan_Zone_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30170','Japan_Zone_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30171','Japan_Zone_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30172','Japan_Zone_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30173','Japan_Zone_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30174','Japan_Zone_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30175','Japan_Zone_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30176','Japan_Zone_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30177','Japan_Zone_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30178','Japan_Zone_18','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30179','Japan_Zone_19','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30200','Trinidad_1903_Trinidad_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30339','TC_1948_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30340','TC_1948_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30491','Nord_Algerie_Ancienne','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30492','Sud_Algerie_Ancienne','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30493','Voirol_1879_Nord_Algerie_Ancienne','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30494','Voirol_1879_Sud_Algerie_Ancienne','ESRI'); INSERT INTO "conversion" VALUES('ESRI','30591','unnamed',NULL,NULL,'EPSG','1728','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999625544,'EPSG','9201','EPSG','8806','False easting',500135.0,'EPSG','9001','EPSG','8807','False northing',300090.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','30591','Nord_Algerie',NULL,NULL,'EPSG','4400','ESRI','4305','ESRI','30591','EPSG','1728',NULL,1); INSERT INTO "conversion" VALUES('ESRI','30592','unnamed',NULL,NULL,'EPSG','1729','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',37.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.999625769,'EPSG','9201','EPSG','8806','False easting',500135.0,'EPSG','9001','EPSG','8807','False northing',300090.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','30592','Sud_Algerie',NULL,NULL,'EPSG','4400','ESRI','4305','ESRI','30592','EPSG','1729',NULL,1); INSERT INTO alias_name VALUES('projected_crs','EPSG','30729','Nord_Sahara_1959_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30730','Nord_Sahara_1959_UTM_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30731','Nord_Sahara_1959_UTM_Zone_31N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30732','Nord_Sahara_1959_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30791','Nord_Sahara_1959_Voirol_Unifie_Nord','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30792','Nord_Sahara_1959_Voirol_Unifie_Sud','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','30800','Swedish_National_Grid','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31028','Yoff_1972_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31121','Zanderij_1972_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31154','Zanderij_TM_54_NW','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31170','Zanderij_Suriname_Old_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31171','Zanderij_Suriname_TM','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31251','MGI_Ferro_Austria_GK_West','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31252','MGI_Ferro_Austria_GK_Central','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31253','MGI_Ferro_Austria_GK_East','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31254','MGI_Austria_GK_West','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31255','MGI_Austria_GK_Central','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31256','MGI_Austria_GK_East','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31257','MGI_Austria_GK_M28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31258','MGI_Austria_GK_M31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31259','MGI_Austria_GK_M34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31265','MGI_3_Degree_Gauss_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31266','MGI_3_Degree_Gauss_Zone_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31267','MGI_3_Degree_Gauss_Zone_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31268','MGI_3_Degree_Gauss_Zone_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31275','MGI_Balkans_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31276','MGI_Balkans_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31277','MGI_Balkans_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31278','MGI_Balkans_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31279','MGI_Balkans_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31281','Austria_West_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31282','Austria_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31283','Austria_East_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31284','MGI_M28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31285','MGI_M31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31286','MGI_M34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31287','MGI_Austria_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31288','MGI_Ferro_M28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31289','MGI_Ferro_M31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31290','MGI_Ferro_M34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31291','Austria_West_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31292','Austria_Central_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31293','Austria_East_Zone','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31294','MGI_M28','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31295','MGI_M31','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31296','MGI_M34','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31297','MGI_Austria_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31370','Belge_Lambert_1972','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31461','DHDN_3_Degree_Gauss_Zone_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31462','DHDN_3_Degree_Gauss_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31463','DHDN_3_Degree_Gauss_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31464','DHDN_3_Degree_Gauss_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31465','DHDN_3_Degree_Gauss_Zone_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31466','DHDN_3_Degree_Gauss_Zone_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31467','DHDN_3_Degree_Gauss_Zone_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31468','DHDN_3_Degree_Gauss_Zone_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31469','DHDN_3_Degree_Gauss_Zone_5','ESRI'); INSERT INTO "projected_crs" VALUES('ESRI','31491','Germany_Zone_1',NULL,NULL,'EPSG','4400','EPSG','4314','EPSG','16201','EPSG','3892',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','31492','Germany_Zone_2',NULL,NULL,'EPSG','4400','EPSG','4314','EPSG','16262','EPSG','1624',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','31493','Germany_Zone_3',NULL,NULL,'EPSG','4400','EPSG','4314','EPSG','16263','EPSG','1625',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','31494','Germany_Zone_4',NULL,NULL,'EPSG','4400','EPSG','4314','EPSG','16264','EPSG','1626',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','31495','Germany_Zone_5',NULL,NULL,'EPSG','4400','EPSG','4314','EPSG','16265','EPSG','1627',NULL,0); INSERT INTO alias_name VALUES('projected_crs','EPSG','31528','Conakry_1905_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31529','Conakry_1905_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31600','Stereo_33','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31700','Stereo_70','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31838','NGN_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31839','NGN_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31901','KUDAMS_KTM','ESRI'); INSERT INTO "projected_crs" VALUES('ESRI','31917','SIRGAS_UTM_Zone_17N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16017','EPSG','1823',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','31918','SIRGAS_UTM_Zone_18N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16018','EPSG','1825',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','31919','SIRGAS_UTM_Zone_19N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16019','EPSG','1827',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','31920','SIRGAS_UTM_Zone_20N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16020','EPSG','1829',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','31921','SIRGAS_UTM_Zone_21N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16021','EPSG','1831',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','31922','SIRGAS_UTM_Zone_22N',NULL,NULL,'EPSG','4400','EPSG','4170','EPSG','16022','EPSG','1833',NULL,1); INSERT INTO alias_name VALUES('projected_crs','EPSG','31965','SIRGAS_2000_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31966','SIRGAS_2000_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31967','SIRGAS_2000_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31968','SIRGAS_2000_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31969','SIRGAS_2000_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31970','SIRGAS_2000_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31971','SIRGAS_2000_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31972','SIRGAS_2000_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31973','SIRGAS_2000_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31974','SIRGAS_2000_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31975','SIRGAS_2000_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31976','SIRGAS_2000_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31977','SIRGAS_2000_UTM_Zone_17S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31978','SIRGAS_2000_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31979','SIRGAS_2000_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31980','SIRGAS_2000_UTM_Zone_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31981','SIRGAS_2000_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31982','SIRGAS_2000_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31983','SIRGAS_2000_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31984','SIRGAS_2000_UTM_Zone_24S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31985','SIRGAS_2000_UTM_Zone_25S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31986','SIRGAS_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31987','SIRGAS_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31988','SIRGAS_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31989','SIRGAS_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31990','SIRGAS_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31991','SIRGAS_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31992','SIRGAS_UTM_Zone_17S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31993','SIRGAS_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31994','SIRGAS_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31995','SIRGAS_UTM_Zone_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31996','SIRGAS_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31997','SIRGAS_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31998','SIRGAS_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','31999','SIRGAS_UTM_Zone_24S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32000','SIRGAS_UTM_Zone_25S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32001','NAD_1927_StatePlane_Montana_North_FIPS_2501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32002','NAD_1927_StatePlane_Montana_Central_FIPS_2502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32003','NAD_1927_StatePlane_Montana_South_FIPS_2503','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32005','NAD_1927_StatePlane_Nebraska_North_FIPS_2601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32006','NAD_1927_StatePlane_Nebraska_South_FIPS_2602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32007','NAD_1927_StatePlane_Nevada_East_FIPS_2701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32008','NAD_1927_StatePlane_Nevada_Central_FIPS_2702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32009','NAD_1927_StatePlane_Nevada_West_FIPS_2703','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32010','NAD_1927_StatePlane_New_Hampshire_FIPS_2800','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32011','NAD_1927_StatePlane_New_Jersey_FIPS_2900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32012','NAD_1927_StatePlane_New_Mexico_East_FIPS_3001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32013','NAD_1927_StatePlane_New_Mexico_Central_FIPS_3002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32014','NAD_1927_StatePlane_New_Mexico_West_FIPS_3003','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32015','NAD_1927_StatePlane_New_York_East_FIPS_3101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32016','NAD_1927_StatePlane_New_York_Central_FIPS_3102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32017','NAD_1927_StatePlane_New_York_West_FIPS_3103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32018','NAD_1927_StatePlane_New_York_Long_Island_FIPS_3104','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32019','NAD_1927_StatePlane_North_Carolina_FIPS_3200','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32020','NAD_1927_StatePlane_North_Dakota_North_FIPS_3301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32021','NAD_1927_StatePlane_North_Dakota_South_FIPS_3302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32022','NAD_1927_StatePlane_Ohio_North_FIPS_3401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32023','NAD_1927_StatePlane_Ohio_South_FIPS_3402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32024','NAD_1927_StatePlane_Oklahoma_North_FIPS_3501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32025','NAD_1927_StatePlane_Oklahoma_South_FIPS_3502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32026','NAD_1927_StatePlane_Oregon_North_FIPS_3601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32027','NAD_1927_StatePlane_Oregon_South_FIPS_3602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32028','NAD_1927_StatePlane_Pennsylvania_North_FIPS_3701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32029','NAD_1927_StatePlane_Pennsylvania_South_FIPS_3702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32030','NAD_1927_StatePlane_Rhode_Island_FIPS_3800','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32031','NAD_1927_StatePlane_South_Carolina_North_FIPS_3901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32033','NAD_1927_StatePlane_South_Carolina_South_FIPS_3902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32034','NAD_1927_StatePlane_South_Dakota_North_FIPS_4001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32035','NAD_1927_StatePlane_South_Dakota_South_FIPS_4002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32036','NAD_1927_StatePlane_Tennessee_FIPS_4100','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32037','NAD_1927_StatePlane_Texas_North_FIPS_4201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32038','NAD_1927_StatePlane_Texas_North_Central_FIPS_4202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32039','NAD_1927_StatePlane_Texas_Central_FIPS_4203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32040','NAD_1927_StatePlane_Texas_South_Central_FIPS_4204','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32041','NAD_1927_StatePlane_Texas_South_FIPS_4205','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32042','NAD_1927_StatePlane_Utah_North_FIPS_4301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32043','NAD_1927_StatePlane_Utah_Central_FIPS_4302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32044','NAD_1927_StatePlane_Utah_South_FIPS_4303','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32045','NAD_1927_StatePlane_Vermont_FIPS_4400','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32046','NAD_1927_StatePlane_Virginia_North_FIPS_4501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32047','NAD_1927_StatePlane_Virginia_South_FIPS_4502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32048','NAD_1927_StatePlane_Washington_North_FIPS_4601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32049','NAD_1927_StatePlane_Washington_South_FIPS_4602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32050','NAD_1927_StatePlane_West_Virginia_North_FIPS_4701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32051','NAD_1927_StatePlane_West_Virginia_South_FIPS_4702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32052','NAD_1927_StatePlane_Wisconsin_North_FIPS_4801','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32053','NAD_1927_StatePlane_Wisconsin_Central_FIPS_4802','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32054','NAD_1927_StatePlane_Wisconsin_South_FIPS_4803','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32055','NAD_1927_StatePlane_Wyoming_East_FIPS_4901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32056','NAD_1927_StatePlane_Wyoming_East_Central_FIPS_4902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32057','NAD_1927_StatePlane_Wyoming_West_Central_FIPS_4903','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32058','NAD_1927_StatePlane_Wyoming_West_FIPS_4904','ESRI'); INSERT INTO "conversion" VALUES('ESRI','32059','unnamed',NULL,NULL,'EPSG','1194','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',17.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-66.43333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',18.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',18.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','32059','NAD_1927_StatePlane_Puerto_Rico_FIPS_5201',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','32059','EPSG','1194',NULL,0); INSERT INTO "conversion" VALUES('ESRI','32060','unnamed',NULL,NULL,'EPSG','1254','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',17.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-66.43333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',18.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',18.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','32060','NAD_1927_StatePlane_Virgin_Islands_St_Croix_FIPS_5202',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','32060','EPSG','1254',NULL,0); INSERT INTO alias_name VALUES('projected_crs','EPSG','32061','NAD_1927_Guatemala_Norte','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32062','NAD_1927_Guatemala_Sur','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32064','NAD_1927_BLM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32065','NAD_1927_BLM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32066','NAD_1927_BLM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32067','NAD_1927_BLM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32074','NAD_1927_BLM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32075','NAD_1927_BLM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32076','NAD_1927_BLM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32077','NAD_1927_BLM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32081','NAD_1927_MTM_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32082','NAD_1927_MTM_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32083','NAD_1927_MTM_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32084','NAD_1927_MTM_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32085','NAD_1927_MTM_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32086','NAD_1927_MTM_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32098','NAD_1927_Quebec_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32099','NAD_1927_StatePlane_Louisiana_Offshore_FIPS_1703','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32100','NAD_1983_StatePlane_Montana_FIPS_2500','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32104','NAD_1983_StatePlane_Nebraska_FIPS_2600','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32107','NAD_1983_StatePlane_Nevada_East_FIPS_2701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32108','NAD_1983_StatePlane_Nevada_Central_FIPS_2702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32109','NAD_1983_StatePlane_Nevada_West_FIPS_2703','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32110','NAD_1983_StatePlane_New_Hampshire_FIPS_2800','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32111','NAD_1983_StatePlane_New_Jersey_FIPS_2900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32112','NAD_1983_StatePlane_New_Mexico_East_FIPS_3001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32113','NAD_1983_StatePlane_New_Mexico_Central_FIPS_3002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32114','NAD_1983_StatePlane_New_Mexico_West_FIPS_3003','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32115','NAD_1983_StatePlane_New_York_East_FIPS_3101','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32116','NAD_1983_StatePlane_New_York_Central_FIPS_3102','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32117','NAD_1983_StatePlane_New_York_West_FIPS_3103','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32118','NAD_1983_StatePlane_New_York_Long_Island_FIPS_3104','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32119','NAD_1983_StatePlane_North_Carolina_FIPS_3200','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32120','NAD_1983_StatePlane_North_Dakota_North_FIPS_3301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32121','NAD_1983_StatePlane_North_Dakota_South_FIPS_3302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32122','NAD_1983_StatePlane_Ohio_North_FIPS_3401','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32123','NAD_1983_StatePlane_Ohio_South_FIPS_3402','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32124','NAD_1983_StatePlane_Oklahoma_North_FIPS_3501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32125','NAD_1983_StatePlane_Oklahoma_South_FIPS_3502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32126','NAD_1983_StatePlane_Oregon_North_FIPS_3601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32127','NAD_1983_StatePlane_Oregon_South_FIPS_3602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32128','NAD_1983_StatePlane_Pennsylvania_North_FIPS_3701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32129','NAD_1983_StatePlane_Pennsylvania_South_FIPS_3702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32130','NAD_1983_StatePlane_Rhode_Island_FIPS_3800','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32133','NAD_1983_StatePlane_South_Carolina_FIPS_3900','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32134','NAD_1983_StatePlane_South_Dakota_North_FIPS_4001','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32135','NAD_1983_StatePlane_South_Dakota_South_FIPS_4002','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32136','NAD_1983_StatePlane_Tennessee_FIPS_4100','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32137','NAD_1983_StatePlane_Texas_North_FIPS_4201','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32138','NAD_1983_StatePlane_Texas_North_Central_FIPS_4202','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32139','NAD_1983_StatePlane_Texas_Central_FIPS_4203','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32140','NAD_1983_StatePlane_Texas_South_Central_FIPS_4204','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32141','NAD_1983_StatePlane_Texas_South_FIPS_4205','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32142','NAD_1983_StatePlane_Utah_North_FIPS_4301','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32143','NAD_1983_StatePlane_Utah_Central_FIPS_4302','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32144','NAD_1983_StatePlane_Utah_South_FIPS_4303','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32145','NAD_1983_StatePlane_Vermont_FIPS_4400','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32146','NAD_1983_StatePlane_Virginia_North_FIPS_4501','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32147','NAD_1983_StatePlane_Virginia_South_FIPS_4502','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32148','NAD_1983_StatePlane_Washington_North_FIPS_4601','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32149','NAD_1983_StatePlane_Washington_South_FIPS_4602','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32150','NAD_1983_StatePlane_West_Virginia_North_FIPS_4701','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32151','NAD_1983_StatePlane_West_Virginia_South_FIPS_4702','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32152','NAD_1983_StatePlane_Wisconsin_North_FIPS_4801','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32153','NAD_1983_StatePlane_Wisconsin_Central_FIPS_4802','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32154','NAD_1983_StatePlane_Wisconsin_South_FIPS_4803','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32155','NAD_1983_StatePlane_Wyoming_East_FIPS_4901','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32156','NAD_1983_StatePlane_Wyoming_East_Central_FIPS_4902','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32157','NAD_1983_StatePlane_Wyoming_West_Central_FIPS_4903','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32158','NAD_1983_StatePlane_Wyoming_West_FIPS_4904','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32161','NAD_1983_StatePlane_Puerto_Rico_Virgin_Islands_FIPS_5200','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32164','NAD_1983_BLM_Zone_14N_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32165','NAD_1983_BLM_Zone_15N_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32166','NAD_1983_BLM_Zone_16N_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32167','NAD_1983_BLM_Zone_17N_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32180','NAD_1983_MTM_2_SCoPQ','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32181','NAD_1983_MTM_1','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32182','NAD_1983_MTM_2','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32183','NAD_1983_MTM_3','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32184','NAD_1983_MTM_4','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32185','NAD_1983_MTM_5','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32186','NAD_1983_MTM_6','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32187','NAD_1983_MTM_7','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32188','NAD_1983_MTM_8','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32189','NAD_1983_MTM_9','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32190','NAD_1983_MTM_10','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32191','NAD_1983_MTM_11','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32192','NAD_1983_MTM_12','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32193','NAD_1983_MTM_13','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32194','NAD_1983_MTM_14','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32195','NAD_1983_MTM_15','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32196','NAD_1983_MTM_16','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32197','NAD_1983_MTM_17','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32198','NAD_1983_Quebec_Lambert','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32199','NAD_1983_StatePlane_Louisiana_Offshore_FIPS_1703','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32201','WGS_1972_UTM_Zone_1N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32202','WGS_1972_UTM_Zone_2N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32203','WGS_1972_UTM_Zone_3N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32204','WGS_1972_UTM_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32205','WGS_1972_UTM_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32206','WGS_1972_UTM_Zone_6N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32207','WGS_1972_UTM_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32208','WGS_1972_UTM_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32209','WGS_1972_UTM_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32210','WGS_1972_UTM_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32211','WGS_1972_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32212','WGS_1972_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32213','WGS_1972_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32214','WGS_1972_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32215','WGS_1972_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32216','WGS_1972_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32217','WGS_1972_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32218','WGS_1972_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32219','WGS_1972_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32220','WGS_1972_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32221','WGS_1972_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32222','WGS_1972_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32223','WGS_1972_UTM_Zone_23N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32224','WGS_1972_UTM_Zone_24N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32225','WGS_1972_UTM_Zone_25N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32226','WGS_1972_UTM_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32227','WGS_1972_UTM_Zone_27N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32228','WGS_1972_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32229','WGS_1972_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32230','WGS_1972_UTM_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32231','WGS_1972_UTM_Zone_31N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32232','WGS_1972_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32233','WGS_1972_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32234','WGS_1972_UTM_Zone_34N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32235','WGS_1972_UTM_Zone_35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32236','WGS_1972_UTM_Zone_36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32237','WGS_1972_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32238','WGS_1972_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32239','WGS_1972_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32240','WGS_1972_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32241','WGS_1972_UTM_Zone_41N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32242','WGS_1972_UTM_Zone_42N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32243','WGS_1972_UTM_Zone_43N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32244','WGS_1972_UTM_Zone_44N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32245','WGS_1972_UTM_Zone_45N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32246','WGS_1972_UTM_Zone_46N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32247','WGS_1972_UTM_Zone_47N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32248','WGS_1972_UTM_Zone_48N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32249','WGS_1972_UTM_Zone_49N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32250','WGS_1972_UTM_Zone_50N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32251','WGS_1972_UTM_Zone_51N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32252','WGS_1972_UTM_Zone_52N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32253','WGS_1972_UTM_Zone_53N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32254','WGS_1972_UTM_Zone_54N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32255','WGS_1972_UTM_Zone_55N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32256','WGS_1972_UTM_Zone_56N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32257','WGS_1972_UTM_Zone_57N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32258','WGS_1972_UTM_Zone_58N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32259','WGS_1972_UTM_Zone_59N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32260','WGS_1972_UTM_Zone_60N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32301','WGS_1972_UTM_Zone_1S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32302','WGS_1972_UTM_Zone_2S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32303','WGS_1972_UTM_Zone_3S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32304','WGS_1972_UTM_Zone_4S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32305','WGS_1972_UTM_Zone_5S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32306','WGS_1972_UTM_Zone_6S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32307','WGS_1972_UTM_Zone_7S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32308','WGS_1972_UTM_Zone_8S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32309','WGS_1972_UTM_Zone_9S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32310','WGS_1972_UTM_Zone_10S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32311','WGS_1972_UTM_Zone_11S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32312','WGS_1972_UTM_Zone_12S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32313','WGS_1972_UTM_Zone_13S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32314','WGS_1972_UTM_Zone_14S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32315','WGS_1972_UTM_Zone_15S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32316','WGS_1972_UTM_Zone_16S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32317','WGS_1972_UTM_Zone_17S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32318','WGS_1972_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32319','WGS_1972_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32320','WGS_1972_UTM_Zone_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32321','WGS_1972_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32322','WGS_1972_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32323','WGS_1972_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32324','WGS_1972_UTM_Zone_24S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32325','WGS_1972_UTM_Zone_25S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32326','WGS_1972_UTM_Zone_26S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32327','WGS_1972_UTM_Zone_27S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32328','WGS_1972_UTM_Zone_28S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32329','WGS_1972_UTM_Zone_29S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32330','WGS_1972_UTM_Zone_30S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32331','WGS_1972_UTM_Zone_31S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32332','WGS_1972_UTM_Zone_32S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32333','WGS_1972_UTM_Zone_33S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32334','WGS_1972_UTM_Zone_34S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32335','WGS_1972_UTM_Zone_35S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32336','WGS_1972_UTM_Zone_36S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32337','WGS_1972_UTM_Zone_37S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32338','WGS_1972_UTM_Zone_38S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32339','WGS_1972_UTM_Zone_39S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32340','WGS_1972_UTM_Zone_40S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32341','WGS_1972_UTM_Zone_41S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32342','WGS_1972_UTM_Zone_42S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32343','WGS_1972_UTM_Zone_43S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32344','WGS_1972_UTM_Zone_44S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32345','WGS_1972_UTM_Zone_45S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32346','WGS_1972_UTM_Zone_46S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32347','WGS_1972_UTM_Zone_47S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32348','WGS_1972_UTM_Zone_48S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32349','WGS_1972_UTM_Zone_49S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32350','WGS_1972_UTM_Zone_50S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32351','WGS_1972_UTM_Zone_51S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32352','WGS_1972_UTM_Zone_52S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32353','WGS_1972_UTM_Zone_53S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32354','WGS_1972_UTM_Zone_54S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32355','WGS_1972_UTM_Zone_55S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32356','WGS_1972_UTM_Zone_56S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32357','WGS_1972_UTM_Zone_57S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32358','WGS_1972_UTM_Zone_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32359','WGS_1972_UTM_Zone_59S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32360','WGS_1972_UTM_Zone_60S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32601','WGS_1984_UTM_Zone_1N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32602','WGS_1984_UTM_Zone_2N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32603','WGS_1984_UTM_Zone_3N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32604','WGS_1984_UTM_Zone_4N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32605','WGS_1984_UTM_Zone_5N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32606','WGS_1984_UTM_Zone_6N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32607','WGS_1984_UTM_Zone_7N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32608','WGS_1984_UTM_Zone_8N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32609','WGS_1984_UTM_Zone_9N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32610','WGS_1984_UTM_Zone_10N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32611','WGS_1984_UTM_Zone_11N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32612','WGS_1984_UTM_Zone_12N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32613','WGS_1984_UTM_Zone_13N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32614','WGS_1984_UTM_Zone_14N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32615','WGS_1984_UTM_Zone_15N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32616','WGS_1984_UTM_Zone_16N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32617','WGS_1984_UTM_Zone_17N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32618','WGS_1984_UTM_Zone_18N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32619','WGS_1984_UTM_Zone_19N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32620','WGS_1984_UTM_Zone_20N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32621','WGS_1984_UTM_Zone_21N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32622','WGS_1984_UTM_Zone_22N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32623','WGS_1984_UTM_Zone_23N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32624','WGS_1984_UTM_Zone_24N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32625','WGS_1984_UTM_Zone_25N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32626','WGS_1984_UTM_Zone_26N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32627','WGS_1984_UTM_Zone_27N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32628','WGS_1984_UTM_Zone_28N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32629','WGS_1984_UTM_Zone_29N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32630','WGS_1984_UTM_Zone_30N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32631','WGS_1984_UTM_Zone_31N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32632','WGS_1984_UTM_Zone_32N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32633','WGS_1984_UTM_Zone_33N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32634','WGS_1984_UTM_Zone_34N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32635','WGS_1984_UTM_Zone_35N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32636','WGS_1984_UTM_Zone_36N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32637','WGS_1984_UTM_Zone_37N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32638','WGS_1984_UTM_Zone_38N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32639','WGS_1984_UTM_Zone_39N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32640','WGS_1984_UTM_Zone_40N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32641','WGS_1984_UTM_Zone_41N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32642','WGS_1984_UTM_Zone_42N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32643','WGS_1984_UTM_Zone_43N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32644','WGS_1984_UTM_Zone_44N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32645','WGS_1984_UTM_Zone_45N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32646','WGS_1984_UTM_Zone_46N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32647','WGS_1984_UTM_Zone_47N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32648','WGS_1984_UTM_Zone_48N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32649','WGS_1984_UTM_Zone_49N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32650','WGS_1984_UTM_Zone_50N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32651','WGS_1984_UTM_Zone_51N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32652','WGS_1984_UTM_Zone_52N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32653','WGS_1984_UTM_Zone_53N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32654','WGS_1984_UTM_Zone_54N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32655','WGS_1984_UTM_Zone_55N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32656','WGS_1984_UTM_Zone_56N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32657','WGS_1984_UTM_Zone_57N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32658','WGS_1984_UTM_Zone_58N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32659','WGS_1984_UTM_Zone_59N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32660','WGS_1984_UTM_Zone_60N','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32661','UPS_North','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32662','WGS_1984_Plate_Carree','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32664','WGS_1984_BLM_Zone_14N_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32665','WGS_1984_BLM_Zone_15N_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32666','WGS_1984_BLM_Zone_16N_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32667','WGS_1984_BLM_Zone_17N_ftUS','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32701','WGS_1984_UTM_Zone_1S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32702','WGS_1984_UTM_Zone_2S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32703','WGS_1984_UTM_Zone_3S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32704','WGS_1984_UTM_Zone_4S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32705','WGS_1984_UTM_Zone_5S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32706','WGS_1984_UTM_Zone_6S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32707','WGS_1984_UTM_Zone_7S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32708','WGS_1984_UTM_Zone_8S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32709','WGS_1984_UTM_Zone_9S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32710','WGS_1984_UTM_Zone_10S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32711','WGS_1984_UTM_Zone_11S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32712','WGS_1984_UTM_Zone_12S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32713','WGS_1984_UTM_Zone_13S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32714','WGS_1984_UTM_Zone_14S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32715','WGS_1984_UTM_Zone_15S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32716','WGS_1984_UTM_Zone_16S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32717','WGS_1984_UTM_Zone_17S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32718','WGS_1984_UTM_Zone_18S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32719','WGS_1984_UTM_Zone_19S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32720','WGS_1984_UTM_Zone_20S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32721','WGS_1984_UTM_Zone_21S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32722','WGS_1984_UTM_Zone_22S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32723','WGS_1984_UTM_Zone_23S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32724','WGS_1984_UTM_Zone_24S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32725','WGS_1984_UTM_Zone_25S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32726','WGS_1984_UTM_Zone_26S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32727','WGS_1984_UTM_Zone_27S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32728','WGS_1984_UTM_Zone_28S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32729','WGS_1984_UTM_Zone_29S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32730','WGS_1984_UTM_Zone_30S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32731','WGS_1984_UTM_Zone_31S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32732','WGS_1984_UTM_Zone_32S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32733','WGS_1984_UTM_Zone_33S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32734','WGS_1984_UTM_Zone_34S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32735','WGS_1984_UTM_Zone_35S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32736','WGS_1984_UTM_Zone_36S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32737','WGS_1984_UTM_Zone_37S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32738','WGS_1984_UTM_Zone_38S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32739','WGS_1984_UTM_Zone_39S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32740','WGS_1984_UTM_Zone_40S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32741','WGS_1984_UTM_Zone_41S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32742','WGS_1984_UTM_Zone_42S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32743','WGS_1984_UTM_Zone_43S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32744','WGS_1984_UTM_Zone_44S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32745','WGS_1984_UTM_Zone_45S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32746','WGS_1984_UTM_Zone_46S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32747','WGS_1984_UTM_Zone_47S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32748','WGS_1984_UTM_Zone_48S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32749','WGS_1984_UTM_Zone_49S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32750','WGS_1984_UTM_Zone_50S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32751','WGS_1984_UTM_Zone_51S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32752','WGS_1984_UTM_Zone_52S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32753','WGS_1984_UTM_Zone_53S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32754','WGS_1984_UTM_Zone_54S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32755','WGS_1984_UTM_Zone_55S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32756','WGS_1984_UTM_Zone_56S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32757','WGS_1984_UTM_Zone_57S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32758','WGS_1984_UTM_Zone_58S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32759','WGS_1984_UTM_Zone_59S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32760','WGS_1984_UTM_Zone_60S','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32761','UPS_South','ESRI'); INSERT INTO alias_name VALUES('projected_crs','EPSG','32766','WGS_1984_TM_36_SE','ESRI'); INSERT INTO "projected_crs" VALUES('ESRI','53001','Sphere_Plate_Carree',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Plate_Carree",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Plate_Carree"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53002','Sphere_Equidistant_Cylindrical',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Equidistant_Cylindrical",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",60.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53003','Sphere_Miller_Cylindrical',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Miller_Cylindrical",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Miller_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53004','Sphere_Mercator',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Mercator",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mercator"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53008','Sphere_Sinusoidal',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Sinusoidal",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Sinusoidal"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53009','Sphere_Mollweide',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Mollweide",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mollweide"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53010','Sphere_Eckert_VI',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Eckert_VI",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_VI"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53011','Sphere_Eckert_V',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Eckert_V",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_V"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53012','Sphere_Eckert_IV',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Eckert_IV",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_IV"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53013','Sphere_Eckert_III',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Eckert_III",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_III"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53014','Sphere_Eckert_II',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Eckert_II",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_II"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53015','Sphere_Eckert_I',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Eckert_I",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_I"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53016','Sphere_Gall_Stereographic',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Gall_Stereographic",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Gall_Stereographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53017','Sphere_Behrmann',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Behrmann",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Behrmann"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53018','Sphere_Winkel_I',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Winkel_I",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Winkel_I"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",50.45977625218981],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53019','Sphere_Winkel_II',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Winkel_II",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Winkel_II"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",50.45977625218981],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53021','Sphere_Polyconic',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Polyconic",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Polyconic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53022','Sphere_Quartic_Authalic',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Quartic_Authalic",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Quartic_Authalic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53023','Sphere_Loximuthal',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Loximuthal",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Loximuthal"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Central_Parallel",40.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53024','Sphere_Bonne',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Bonne",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Bonne"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",60.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53025','Sphere_Hotine',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Hotine",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Hotine_Oblique_Mercator_Two_Point_Natural_Origin"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Latitude_Of_1st_Point",0.0],PARAMETER["Latitude_Of_2nd_Point",60.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Longitude_Of_1st_Point",0.0],PARAMETER["Longitude_Of_2nd_Point",60.0],PARAMETER["Latitude_Of_Center",40.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53026','Sphere_Stereographic',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Stereographic",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Stereographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53027','Sphere_Equidistant_Conic',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Equidistant_Conic",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",60.0],PARAMETER["Standard_Parallel_2",60.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53028','Sphere_Cassini',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Cassini",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Cassini"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53029','Sphere_Van_der_Grinten_I',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Van_der_Grinten_I",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Van_der_Grinten_I"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53030','Sphere_Robinson',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Robinson",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Robinson"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53031','Sphere_Two_Point_Equidistant',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Two_Point_Equidistant",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Two_Point_Equidistant"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Latitude_Of_1st_Point",0.0],PARAMETER["Latitude_Of_2nd_Point",60.0],PARAMETER["Longitude_Of_1st_Point",0.0],PARAMETER["Longitude_Of_2nd_Point",60.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53032','Sphere_Azimuthal_Equidistant',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Azimuthal_Equidistant",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53034','Sphere_Cylindrical_Equal_Area',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Cylindrical_Equal_Area",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Cylindrical_Equal_Area"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53035','Sphere_Equal_Earth_Greenwich',NULL,NULL,NULL,NULL,'ESRI','104047',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Equal_Earth_Greenwich",GEOGCS["GCS_Sphere_GRS_1980_Mean_Radius",DATUM["D_Sphere_GRS_1980_Mean_Radius",SPHEROID["Sphere_GRS_1980_Mean_Radius",6371008.7714,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equal_Earth"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53036','Sphere_Equal_Earth_Americas',NULL,NULL,NULL,NULL,'ESRI','104047',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Equal_Earth_Americas",GEOGCS["GCS_Sphere_GRS_1980_Mean_Radius",DATUM["D_Sphere_GRS_1980_Mean_Radius",SPHEROID["Sphere_GRS_1980_Mean_Radius",6371008.7714,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equal_Earth"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53037','Sphere_Equal_Earth_Asia_Pacific',NULL,NULL,NULL,NULL,'ESRI','104047',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Equal_Earth_Asia_Pacific",GEOGCS["GCS_Sphere_GRS_1980_Mean_Radius",DATUM["D_Sphere_GRS_1980_Mean_Radius",SPHEROID["Sphere_GRS_1980_Mean_Radius",6371008.7714,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equal_Earth"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",150.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53042','Sphere_Winkel_Tripel_NGS',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Winkel_Tripel_NGS",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Winkel_Tripel"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",50.467],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53043','Sphere_Aitoff',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Aitoff",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Aitoff"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53044','Sphere_Hammer_Aitoff',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Hammer_Aitoff",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Hammer_Aitoff"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53045','Sphere_Flat_Polar_Quartic',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Flat_Polar_Quartic",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Flat_Polar_Quartic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53046','Sphere_Craster_Parabolic',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Craster_Parabolic",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Craster_Parabolic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53048','Sphere_Times',NULL,NULL,NULL,NULL,'EPSG','4035',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Times",GEOGCS["GCS_Sphere",DATUM["D_Sphere",SPHEROID["Sphere",6371000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Times"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53049','Sphere_Vertical_Perspective',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Vertical_Perspective",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Vertical_Near_Side_Perspective"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",0.0],PARAMETER["Latitude_Of_Center",0.0],PARAMETER["Height",35800000.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53074','Sphere_Wagner_IV',NULL,NULL,NULL,NULL,'EPSG','4047',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Wagner_IV",GEOGCS["GCS_Sphere_GRS_1980_Authalic",DATUM["D_Sphere_GRS_1980_Authalic",SPHEROID["Sphere_GRS_1980_Authalic",6371007.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Wagner_IV"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53075','Sphere_Wagner_V',NULL,NULL,NULL,NULL,'ESRI','104047',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Wagner_V",GEOGCS["GCS_Sphere_GRS_1980_Mean_Radius",DATUM["D_Sphere_GRS_1980_Mean_Radius",SPHEROID["Sphere_GRS_1980_Mean_Radius",6371008.7714,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Wagner_V"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53076','Sphere_Wagner_VII',NULL,NULL,NULL,NULL,'EPSG','4047',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Wagner_VII",GEOGCS["GCS_Sphere_GRS_1980_Authalic",DATUM["D_Sphere_GRS_1980_Authalic",SPHEROID["Sphere_GRS_1980_Authalic",6371007.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Wagner_VII"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53077','Sphere_Natural_Earth',NULL,NULL,NULL,NULL,'ESRI','104047',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Natural_Earth",GEOGCS["GCS_Sphere_GRS_1980_Mean_Radius",DATUM["D_Sphere_GRS_1980_Mean_Radius",SPHEROID["Sphere_GRS_1980_Mean_Radius",6371008.7714,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Natural_Earth"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53078','Sphere_Natural_Earth_II',NULL,NULL,NULL,NULL,'ESRI','104047',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Natural_Earth_II",GEOGCS["GCS_Sphere_GRS_1980_Mean_Radius",DATUM["D_Sphere_GRS_1980_Mean_Radius",SPHEROID["Sphere_GRS_1980_Mean_Radius",6371008.7714,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Natural_Earth_II"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53079','Sphere_Patterson',NULL,NULL,NULL,NULL,'ESRI','104047',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Patterson",GEOGCS["GCS_Sphere_GRS_1980_Mean_Radius",DATUM["D_Sphere_GRS_1980_Mean_Radius",SPHEROID["Sphere_GRS_1980_Mean_Radius",6371008.7714,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Patterson"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','53080','Sphere_Compact_Miller',NULL,NULL,NULL,NULL,'ESRI','104047',NULL,NULL,'EPSG','1262','PROJCS["Sphere_Compact_Miller",GEOGCS["GCS_Sphere_GRS_1980_Mean_Radius",DATUM["D_Sphere_GRS_1980_Mean_Radius",SPHEROID["Sphere_GRS_1980_Mean_Radius",6371008.7714,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Compact_Miller"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54001','World_Plate_Carree',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Plate_Carree",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Plate_Carree"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54002','World_Equidistant_Cylindrical',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Equidistant_Cylindrical",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",60.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54003','World_Miller_Cylindrical',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Miller_Cylindrical",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Miller_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54004','World_Mercator',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Mercator",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mercator"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54008','World_Sinusoidal',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Sinusoidal",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Sinusoidal"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54009','World_Mollweide',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Mollweide",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mollweide"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54010','World_Eckert_VI',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Eckert_VI",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_VI"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54011','World_Eckert_V',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Eckert_V",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_V"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54012','World_Eckert_IV',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Eckert_IV",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_IV"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54013','World_Eckert_III',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Eckert_III",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_III"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54014','World_Eckert_II',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Eckert_II",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_II"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54015','World_Eckert_I',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Eckert_I",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Eckert_I"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54016','World_Gall_Stereographic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Gall_Stereographic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Gall_Stereographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54017','World_Behrmann',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Behrmann",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Behrmann"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54018','World_Winkel_I',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Winkel_I",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Winkel_I"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",50.45977625218981],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54019','World_Winkel_II',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Winkel_II",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Winkel_II"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",50.45977625218981],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54021','World_Polyconic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Polyconic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Polyconic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54022','World_Quartic_Authalic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Quartic_Authalic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Quartic_Authalic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54023','World_Loximuthal',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Loximuthal",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Loximuthal"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Central_Parallel",40.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54024','World_Bonne',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Bonne",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Bonne"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",60.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54025','World_Hotine',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Hotine",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Hotine_Oblique_Mercator_Two_Point_Natural_Origin"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Latitude_Of_1st_Point",0.0],PARAMETER["Latitude_Of_2nd_Point",60.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Longitude_Of_1st_Point",0.0],PARAMETER["Longitude_Of_2nd_Point",60.0],PARAMETER["Latitude_Of_Center",40.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54026','World_Stereographic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Stereographic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Stereographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54027','World_Equidistant_Conic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Equidistant_Conic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",60.0],PARAMETER["Standard_Parallel_2",60.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54028','World_Cassini',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Cassini",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Cassini"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54029','World_Van_der_Grinten_I',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Van_der_Grinten_I",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Van_der_Grinten_I"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54030','World_Robinson',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Robinson",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Robinson"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54031','World_Two_Point_Equidistant',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Two_Point_Equidistant",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Two_Point_Equidistant"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Latitude_Of_1st_Point",0.0],PARAMETER["Latitude_Of_2nd_Point",60.0],PARAMETER["Longitude_Of_1st_Point",0.0],PARAMETER["Longitude_Of_2nd_Point",60.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54032','World_Azimuthal_Equidistant',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Azimuthal_Equidistant",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54034','World_Cylindrical_Equal_Area',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Cylindrical_Equal_Area",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Cylindrical_Equal_Area"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54035','WGS_1984_Equal_Earth_Greenwich',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["WGS_1984_Equal_Earth_Greenwich",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equal_Earth"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','54036','WGS_1984_Equal_Earth_Americas',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["WGS_1984_Equal_Earth_Americas",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equal_Earth"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-90.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','54037','WGS_1984_Equal_Earth_Asia_Pacific',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["WGS_1984_Equal_Earth_Asia_Pacific",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equal_Earth"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",150.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','54042','World_Winkel_Tripel_NGS',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Winkel_Tripel_NGS",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Winkel_Tripel"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",50.467],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54043','World_Aitoff',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Aitoff",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Aitoff"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54044','World_Hammer_Aitoff',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Hammer_Aitoff",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Hammer_Aitoff"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54045','World_Flat_Polar_Quartic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Flat_Polar_Quartic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Flat_Polar_Quartic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54046','World_Craster_Parabolic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Craster_Parabolic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Craster_Parabolic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54048','World_Times',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Times",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Times"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54049','World_Vertical_Perspective',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Vertical_Perspective",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Vertical_Near_Side_Perspective"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",0.0],PARAMETER["Latitude_Of_Center",0.0],PARAMETER["Height",35800000.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54050','World_Fuller',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Fuller",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Fuller"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Option",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54051','World_Cube',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Cube",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Cube"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Option",1.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54052','World_Goode_Homolosine_Land',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Goode_Homolosine_Land",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Goode_Homolosine"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Option",1.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54053','World_Goode_Homolosine_Ocean',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Goode_Homolosine_Ocean",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Goode_Homolosine"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-160.0],PARAMETER["Option",2.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54074','World_Wagner_IV',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Wagner_IV",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Wagner_IV"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54075','World_Wagner_V',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Wagner_V",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Wagner_V"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54076','World_Wagner_VII',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Wagner_VII",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Wagner_VII"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54077','World_Natural_Earth',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Natural_Earth",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Natural_Earth"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54078','World_Natural_Earth_II',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Natural_Earth_II",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Natural_Earth_II"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54079','World_Patterson',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Patterson",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Patterson"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54080','World_Compact_Miller',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["World_Compact_Miller",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Compact_Miller"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54090','WGS_1984_Peirce_quincuncial_North_Pole_square',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["WGS_1984_Peirce_quincuncial_North_Pole_square",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Peirce_Quincuncial"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",90.0],PARAMETER["Option",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54091','WGS_1984_Peirce_quincuncial_North_Pole_diamond',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["WGS_1984_Peirce_quincuncial_North_Pole_diamond",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Peirce_Quincuncial"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",90.0],PARAMETER["Option",1.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54098','WGS_1984_Adams_Square_II',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["WGS_1984_Adams_Square_II",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Adams_Square_II"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Azimuth",0.0],PARAMETER["Longitude_Of_Center",0.0],PARAMETER["Latitude_Of_Center",0.0],PARAMETER["XY_Plane_Rotation",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54099','WGS_1984_Spilhaus_Ocean_Map_in_Square',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["WGS_1984_Spilhaus_Ocean_Map_in_Square",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Adams_Square_II"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Azimuth",40.17823482],PARAMETER["Longitude_Of_Center",66.94970198],PARAMETER["Latitude_Of_Center",-49.56371678],PARAMETER["XY_Plane_Rotation",45.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54100','WGS_1984_Tobler_Cylindrical_I',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["WGS_1984_Tobler_Cylindrical_I",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Tobler_Cylindrical_I"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','54101','WGS_1984_Tobler_Cylindrical_II',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["WGS_1984_Tobler_Cylindrical_II",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Tobler_Cylindrical_II"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','65061','NAD_1927_StatePlane_Guam_FIPS_5400',NULL,NULL,NULL,NULL,'EPSG','4267',NULL,NULL,'EPSG','1110','PROJCS["NAD_1927_StatePlane_Guam_FIPS_5400",GEOGCS["GCS_North_American_1927",DATUM["D_North_American_1927",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Polyconic"],PARAMETER["False_Easting",164041.6666666667],PARAMETER["False_Northing",164041.6666666667],PARAMETER["Central_Meridian",144.7487507055556],PARAMETER["Latitude_Of_Origin",13.47246635277778],UNIT["Foot_US",0.3048006096012192]]',0); INSERT INTO "conversion" VALUES('ESRI','65062','unnamed',NULL,NULL,'EPSG','1027','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',-14.26666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-170.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9003','EPSG','8807','False northing',312234.65,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','65062','American_Samoa_1962_StatePlane_American_Samoa_FIPS_5300',NULL,NULL,'ESRI','Foot_US','EPSG','4169','ESRI','65062','EPSG','1027',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','65161','NAD_1983_StatePlane_Guam_FIPS_5400',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1110','PROJCS["NAD_1983_StatePlane_Guam_FIPS_5400",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Polyconic"],PARAMETER["False_Easting",50000.0],PARAMETER["False_Northing",50000.0],PARAMETER["Central_Meridian",144.7487507055556],PARAMETER["Latitude_Of_Origin",13.47246635277778],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','65163','unnamed',NULL,NULL,'EPSG','1386','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-85.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.08333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','65163','NAD_1983_StatePlane_Kentucky_FIPS_1600',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','65163','EPSG','1386',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102001','Canada_Albers_Equal_Area_Conic',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1061','PROJCS["Canada_Albers_Equal_Area_Conic",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-96.0],PARAMETER["Standard_Parallel_1",50.0],PARAMETER["Standard_Parallel_2",70.0],PARAMETER["Latitude_Of_Origin",40.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102002','unnamed',NULL,NULL,'EPSG','1061','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',50.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',70.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102002','Canada_Lambert_Conformal_Conic',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102002','EPSG','1061',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102003','USA_Contiguous_Albers_Equal_Area_Conic',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1323','PROJCS["USA_Contiguous_Albers_Equal_Area_Conic",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-96.0],PARAMETER["Standard_Parallel_1",29.5],PARAMETER["Standard_Parallel_2",45.5],PARAMETER["Latitude_Of_Origin",37.5],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102004','unnamed',NULL,NULL,'EPSG','1323','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',33.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102004','USA_Contiguous_Lambert_Conformal_Conic',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102004','EPSG','1323',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102005','USA_Contiguous_Equidistant_Conic',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1323','PROJCS["USA_Contiguous_Equidistant_Conic",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-96.0],PARAMETER["Standard_Parallel_1",33.0],PARAMETER["Standard_Parallel_2",45.0],PARAMETER["Latitude_Of_Origin",39.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102006','NAD_1983_Alaska_Albers',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1330','PROJCS["NAD_1983_Alaska_Albers",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-154.0],PARAMETER["Standard_Parallel_1",55.0],PARAMETER["Standard_Parallel_2",65.0],PARAMETER["Latitude_Of_Origin",50.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102007','Hawaii_Albers_Equal_Area_Conic',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1334','PROJCS["Hawaii_Albers_Equal_Area_Conic",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-157.0],PARAMETER["Standard_Parallel_1",8.0],PARAMETER["Standard_Parallel_2",18.0],PARAMETER["Latitude_Of_Origin",13.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102008','North_America_Albers_Equal_Area_Conic',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1325','PROJCS["North_America_Albers_Equal_Area_Conic",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-96.0],PARAMETER["Standard_Parallel_1",20.0],PARAMETER["Standard_Parallel_2",60.0],PARAMETER["Latitude_Of_Origin",40.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102009','unnamed',NULL,NULL,'EPSG','1325','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',20.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',60.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102009','North_America_Lambert_Conformal_Conic',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102009','EPSG','1325',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102010','North_America_Equidistant_Conic',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1325','PROJCS["North_America_Equidistant_Conic",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-96.0],PARAMETER["Standard_Parallel_1",20.0],PARAMETER["Standard_Parallel_2",60.0],PARAMETER["Latitude_Of_Origin",40.0],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','4','Africa','Africa',-35.0,39.0,-25.0,55.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102011','Africa_Sinusoidal',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','4','PROJCS["Africa_Sinusoidal",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Sinusoidal"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",15.0],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','5','Asia','Asia',-10.0,85.0,25.0,-175.0,0); INSERT INTO "conversion" VALUES('ESRI','102012','unnamed',NULL,NULL,'ESRI','5','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',105.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',30.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',62.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102012','Asia_Lambert_Conformal_Conic',NULL,NULL,'EPSG','4400','EPSG','4326','ESRI','102012','ESRI','5',NULL,0); INSERT INTO "area" VALUES('ESRI','6','Europe','Europe',34.0,85.0,-30.0,50.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102013','Europe_Albers_Equal_Area_Conic',NULL,NULL,NULL,NULL,'EPSG','4230',NULL,NULL,'ESRI','6','PROJCS["Europe_Albers_Equal_Area_Conic",GEOGCS["GCS_European_1950",DATUM["D_European_1950",SPHEROID["International_1924",6378388.0,297.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",10.0],PARAMETER["Standard_Parallel_1",43.0],PARAMETER["Standard_Parallel_2",62.0],PARAMETER["Latitude_Of_Origin",30.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102014','unnamed',NULL,NULL,'ESRI','6','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',30.0,'EPSG','9102','EPSG','8822','Longitude of false origin',10.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',62.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102014','Europe_Lambert_Conformal_Conic',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','102014','ESRI','6',NULL,0); INSERT INTO "area" VALUES('ESRI','7','South America','South America',-60.0,15.0,-90.0,-30.0,0); INSERT INTO "conversion" VALUES('ESRI','102015','unnamed',NULL,NULL,'ESRI','7','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-32.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-60.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-5.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-42.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102015','South_America_Lambert_Conformal_Conic',NULL,NULL,'EPSG','4400','EPSG','4618','ESRI','102015','ESRI','7',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102016','North_Pole_Azimuthal_Equidistant',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3475','PROJCS["North_Pole_Azimuthal_Equidistant",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102017','North_Pole_Lambert_Azimuthal_Equal_Area',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3475','PROJCS["North_Pole_Lambert_Azimuthal_Equal_Area",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102018','North_Pole_Stereographic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3475','PROJCS["North_Pole_Stereographic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Stereographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102019','South_Pole_Azimuthal_Equidistant',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3474','PROJCS["South_Pole_Azimuthal_Equidistant",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",-90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102020','South_Pole_Lambert_Azimuthal_Equal_Area',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3474','PROJCS["South_Pole_Lambert_Azimuthal_Equal_Area",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",-90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102021','South_Pole_Stereographic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3474','PROJCS["South_Pole_Stereographic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Stereographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",-90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102022','Africa_Albers_Equal_Area_Conic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','4','PROJCS["Africa_Albers_Equal_Area_Conic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",25.0],PARAMETER["Standard_Parallel_1",20.0],PARAMETER["Standard_Parallel_2",-23.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102023','Africa_Equidistant_Conic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','4','PROJCS["Africa_Equidistant_Conic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",25.0],PARAMETER["Standard_Parallel_1",20.0],PARAMETER["Standard_Parallel_2",-23.0],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102024','unnamed',NULL,NULL,'ESRI','4','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',25.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',20.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-23.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102024','Africa_Lambert_Conformal_Conic',NULL,NULL,'EPSG','4400','EPSG','4326','ESRI','102024','ESRI','4',NULL,0); INSERT INTO "area" VALUES('ESRI','8','Asia - North','Asia - North',10.0,85.0,25.0,-175.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102025','Asia_North_Albers_Equal_Area_Conic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','8','PROJCS["Asia_North_Albers_Equal_Area_Conic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",95.0],PARAMETER["Standard_Parallel_1",15.0],PARAMETER["Standard_Parallel_2",65.0],PARAMETER["Latitude_Of_Origin",30.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102026','Asia_North_Equidistant_Conic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','8','PROJCS["Asia_North_Equidistant_Conic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",95.0],PARAMETER["Standard_Parallel_1",15.0],PARAMETER["Standard_Parallel_2",65.0],PARAMETER["Latitude_Of_Origin",30.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102027','unnamed',NULL,NULL,'ESRI','8','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',30.0,'EPSG','9102','EPSG','8822','Longitude of false origin',95.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',15.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',65.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102027','Asia_North_Lambert_Conformal_Conic',NULL,NULL,'EPSG','4400','EPSG','4326','ESRI','102027','ESRI','8',NULL,0); INSERT INTO "area" VALUES('ESRI','9','Asia - South','Asia - South',-10.0,30.0,25.0,165.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102028','Asia_South_Albers_Equal_Area_Conic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','9','PROJCS["Asia_South_Albers_Equal_Area_Conic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",125.0],PARAMETER["Standard_Parallel_1",7.0],PARAMETER["Standard_Parallel_2",-32.0],PARAMETER["Latitude_Of_Origin",-15.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102029','Asia_South_Equidistant_Conic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','9','PROJCS["Asia_South_Equidistant_Conic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",125.0],PARAMETER["Standard_Parallel_1",7.0],PARAMETER["Standard_Parallel_2",-32.0],PARAMETER["Latitude_Of_Origin",-15.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102030','unnamed',NULL,NULL,'ESRI','9','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-15.0,'EPSG','9102','EPSG','8822','Longitude of false origin',125.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',7.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-32.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102030','Asia_South_Lambert_Conformal_Conic',NULL,NULL,'EPSG','4400','EPSG','4326','ESRI','102030','ESRI','9',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102031','Europe_Equidistant_Conic',NULL,NULL,NULL,NULL,'EPSG','4230',NULL,NULL,'ESRI','6','PROJCS["Europe_Equidistant_Conic",GEOGCS["GCS_European_1950",DATUM["D_European_1950",SPHEROID["International_1924",6378388.0,297.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",10.0],PARAMETER["Standard_Parallel_1",43.0],PARAMETER["Standard_Parallel_2",62.0],PARAMETER["Latitude_Of_Origin",30.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102032','South_America_Equidistant_Conic',NULL,NULL,NULL,NULL,'EPSG','4618',NULL,NULL,'ESRI','7','PROJCS["South_America_Equidistant_Conic",GEOGCS["GCS_South_American_1969",DATUM["D_South_American_1969",SPHEROID["GRS_1967_Truncated",6378160.0,298.25]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-60.0],PARAMETER["Standard_Parallel_1",-5.0],PARAMETER["Standard_Parallel_2",-42.0],PARAMETER["Latitude_Of_Origin",-32.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102033','South_America_Albers_Equal_Area_Conic',NULL,NULL,NULL,NULL,'EPSG','4618',NULL,NULL,'ESRI','7','PROJCS["South_America_Albers_Equal_Area_Conic",GEOGCS["GCS_South_American_1969",DATUM["D_South_American_1969",SPHEROID["GRS_1967_Truncated",6378160.0,298.25]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-60.0],PARAMETER["Standard_Parallel_1",-5.0],PARAMETER["Standard_Parallel_2",-42.0],PARAMETER["Latitude_Of_Origin",-32.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102034','North_Pole_Gnomonic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3475','PROJCS["North_Pole_Gnomonic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Gnomonic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",0.0],PARAMETER["Latitude_Of_Center",90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102035','North_Pole_Orthographic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3475','PROJCS["North_Pole_Orthographic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Orthographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",0.0],PARAMETER["Latitude_Of_Center",90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102036','South_Pole_Gnomonic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3474','PROJCS["South_Pole_Gnomonic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Gnomonic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",0.0],PARAMETER["Latitude_Of_Center",-90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102037','South_Pole_Orthographic',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3474','PROJCS["South_Pole_Orthographic",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Orthographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",0.0],PARAMETER["Latitude_Of_Center",-90.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102038','The_World_From_Space',NULL,NULL,NULL,NULL,'ESRI','37008',NULL,NULL,'EPSG','1262','PROJCS["The_World_From_Space",GEOGCS["GCS_Sphere_ARC_INFO",DATUM["D_Sphere_ARC_INFO",SPHEROID["Sphere_ARC_INFO",6370997.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Orthographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",-72.5333333334],PARAMETER["Latitude_Of_Center",42.5333333333],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102039','USA_Contiguous_Albers_Equal_Area_Conic_USGS_version',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1323','PROJCS["USA_Contiguous_Albers_Equal_Area_Conic_USGS_version",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-96.0],PARAMETER["Standard_Parallel_1",29.5],PARAMETER["Standard_Parallel_2",45.5],PARAMETER["Latitude_Of_Origin",23.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102040','unnamed',NULL,NULL,'EPSG','3266','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102040','Korean_1985_Korea_Unified_Coordinate_System',NULL,NULL,'EPSG','4400','EPSG','4162','ESRI','102040','EPSG','3266',NULL,1); INSERT INTO "area" VALUES('ESRI','10','USA - Washington - Bellevue','USA - Washington - Bellevue',47.5,47.69,-122.26,-122.06,0); INSERT INTO "conversion" VALUES('ESRI','102041','unnamed',NULL,NULL,'ESRI','10','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.8333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.896666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.24,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102041','COB_NAD83_2007',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','102041','ESRI','10',NULL,0); INSERT INTO "area" VALUES('ESRI','11','USA - USFS - Eastern Region','USA - USFS - Eastern Region',35.9,49.5,-97.3,-66.8,0); INSERT INTO "projected_crs" VALUES('ESRI','102042','NAD_1983_USFS_R9_Albers',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'ESRI','11','PROJCS["NAD_1983_USFS_R9_Albers",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-82.25],PARAMETER["Standard_Parallel_1",38.25],PARAMETER["Standard_Parallel_2",47.25],PARAMETER["Latitude_Of_Origin",35.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102043','NAD_1983_CORS96_UTM_Zone_20N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16020','EPSG','2251',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102044','NAD_1983_NSRS2007_UTM_Zone_20N',NULL,NULL,'EPSG','4400','EPSG','4759','EPSG','16020','EPSG','2251',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102045','NAD_1983_2011_UTM_Zone_20N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16020','EPSG','2251',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102046','NAD_1983_2011_UTM_Zone_59N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16059','EPSG','3372',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102047','NAD_1983_2011_UTM_Zone_60N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16060','EPSG','3373',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102048','NAD_1983_2011_UTM_Zone_1N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16001','EPSG','3374',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102049','NAD_1983_2011_UTM_Zone_2N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16002','EPSG','3375',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102050','NAD_1983_2011_UTM_Zone_3N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16003','EPSG','2133',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102051','NAD_1983_2011_UTM_Zone_4N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16004','EPSG','2134',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102052','NAD_1983_2011_UTM_Zone_5N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16005','EPSG','2135',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102053','NAD_1983_2011_UTM_Zone_6N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16006','EPSG','2136',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102054','NAD_1983_2011_UTM_Zone_7N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16007','EPSG','3494',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102055','NAD_1983_2011_UTM_Zone_8N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16008','EPSG','3495',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102056','NAD_1983_2011_UTM_Zone_9N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16009','EPSG','3496',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102057','NAD_1983_2011_UTM_Zone_10N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16010','EPSG','3497',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102058','NAD_1983_2011_UTM_Zone_11N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16011','EPSG','3498',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102059','NAD_1983_2011_UTM_Zone_12N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16012','EPSG','3499',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102060','D48_Slovenia_TM',NULL,NULL,'EPSG','4400','ESRI','104131','EPSG','19845','EPSG','1212',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102061','Everest_Modified_1969_RSO_Malaya_Meters',NULL,NULL,NULL,NULL,'ESRI','37006',NULL,NULL,'EPSG','1690','PROJCS["Everest_Modified_1969_RSO_Malaya_Meters",GEOGCS["GCS_Everest_Modified_1969",DATUM["D_Everest_Modified_1969",SPHEROID["Everest_Modified_1969",6377295.664,300.8017]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],PARAMETER["False_Easting",804670.24],PARAMETER["False_Northing",0.0],PARAMETER["Scale_Factor",0.99984],PARAMETER["Azimuth",-36.97420943711801],PARAMETER["Longitude_Of_Center",102.25],PARAMETER["Latitude_Of_Center",4.0],PARAMETER["XY_Plane_Rotation",-36.86989764584402],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102062','Kertau_RSO_Malaya_Meters',NULL,NULL,NULL,NULL,'EPSG','4245',NULL,NULL,'EPSG','1690','PROJCS["Kertau_RSO_Malaya_Meters",GEOGCS["GCS_Kertau",DATUM["D_Kertau",SPHEROID["Everest_1830_Modified",6377304.063,300.8017]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],PARAMETER["False_Easting",804671.299775],PARAMETER["False_Northing",0.0],PARAMETER["Scale_Factor",0.99984],PARAMETER["Azimuth",-36.97420943711801],PARAMETER["Longitude_Of_Center",102.25],PARAMETER["Latitude_Of_Center",4.0],PARAMETER["XY_Plane_Rotation",-36.86989764584402],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102063','unnamed',NULL,NULL,'EPSG','1218','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',7.000480277777778,'EPSG','9102','EPSG','8802','Longitude of natural origin',80.77171111111112,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',160933.56048,'EPSG','9001','EPSG','8807','False northing',160933.56048,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102063','Kandawala_Ceylon_Belt_Meters',NULL,NULL,'EPSG','4400','EPSG','4244','ESRI','102063','EPSG','1218',NULL,0); INSERT INTO "coordinate_system" VALUES('ESRI','Yard_Indian_1937','Cartesian',2); INSERT INTO "axis" VALUES('ESRI','3','Easting','E','east','ESRI','Yard_Indian_1937',1,'EPSG','9085'); INSERT INTO "axis" VALUES('ESRI','4','Northing','N','north','ESRI','Yard_Indian_1937',2,'EPSG','9085'); INSERT INTO "conversion" VALUES('ESRI','102064','unnamed',NULL,NULL,'EPSG','1218','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',7.000480277777778,'EPSG','9102','EPSG','8802','Longitude of natural origin',80.77171111111112,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',176000.0,'EPSG','9085','EPSG','8807','False northing',176000.0,'EPSG','9085',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102064','Kandawala_Ceylon_Belt_Indian_Yards_1937',NULL,NULL,'ESRI','Yard_Indian_1937','EPSG','4244','ESRI','102064','EPSG','1218',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102065','S-JTSK_Krovak',NULL,NULL,NULL,NULL,'EPSG','4156',NULL,NULL,'EPSG','1306','PROJCS["S-JTSK_Krovak",GEOGCS["GCS_S_JTSK",DATUM["D_S_JTSK",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Krovak"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Pseudo_Standard_Parallel_1",78.5],PARAMETER["Scale_Factor",0.9999],PARAMETER["Azimuth",30.28813975277778],PARAMETER["Longitude_Of_Center",24.83333333333333],PARAMETER["Latitude_Of_Center",49.5],PARAMETER["X_Scale",1.0],PARAMETER["Y_Scale",1.0],PARAMETER["XY_Plane_Rotation",0.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102066','S-JTSK_Ferro_Krovak_East_North',NULL,NULL,NULL,NULL,'EPSG','4818',NULL,NULL,'EPSG','1306','PROJCS["S-JTSK_Ferro_Krovak_East_North",GEOGCS["GCS_S_JTSK_Ferro",DATUM["D_S_JTSK",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Ferro",-17.66666666666667],UNIT["Degree",0.0174532925199433]],PROJECTION["Krovak"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Pseudo_Standard_Parallel_1",78.5],PARAMETER["Scale_Factor",0.9999],PARAMETER["Azimuth",30.28813975277778],PARAMETER["Longitude_Of_Center",42.5],PARAMETER["Latitude_Of_Center",49.5],PARAMETER["X_Scale",-1.0],PARAMETER["Y_Scale",1.0],PARAMETER["XY_Plane_Rotation",90.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102067','S-JTSK_Krovak_East_North',NULL,NULL,NULL,NULL,'EPSG','4156',NULL,NULL,'EPSG','1306','PROJCS["S-JTSK_Krovak_East_North",GEOGCS["GCS_S_JTSK",DATUM["D_S_JTSK",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Krovak"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Pseudo_Standard_Parallel_1",78.5],PARAMETER["Scale_Factor",0.9999],PARAMETER["Azimuth",30.28813975277778],PARAMETER["Longitude_Of_Center",24.83333333333333],PARAMETER["Latitude_Of_Center",49.5],PARAMETER["X_Scale",-1.0],PARAMETER["Y_Scale",1.0],PARAMETER["XY_Plane_Rotation",90.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102068','EMEP_50_Kilometer_Grid',NULL,NULL,NULL,NULL,'ESRI','104128',NULL,NULL,'ESRI','6','PROJCS["EMEP_50_Kilometer_Grid",GEOGCS["GCS_Sphere_EMEP",DATUM["D_Sphere_EMEP",SPHEROID["Sphere_EMEP",6370000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Stereographic_North_Pole"],PARAMETER["False_Easting",8.0],PARAMETER["False_Northing",110.0],PARAMETER["Central_Meridian",-32.0],PARAMETER["Standard_Parallel_1",60.0],UNIT["50_Kilometers",50000.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102069','EMEP_150_Kilometer_Grid',NULL,NULL,NULL,NULL,'ESRI','104128',NULL,NULL,'ESRI','6','PROJCS["EMEP_150_Kilometer_Grid",GEOGCS["GCS_Sphere_EMEP",DATUM["D_Sphere_EMEP",SPHEROID["Sphere_EMEP",6370000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Stereographic_North_Pole"],PARAMETER["False_Easting",3.0],PARAMETER["False_Northing",37.0],PARAMETER["Central_Meridian",-32.0],PARAMETER["Standard_Parallel_1",60.0],UNIT["150_Kilometers",150000.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102070','unnamed',NULL,NULL,'EPSG','2989','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.416666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',47000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102070','Guernsey_Grid',NULL,NULL,'EPSG','4400','EPSG','4326','ESRI','102070','EPSG','2989',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102071','unnamed',NULL,NULL,'EPSG','2283','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',149.0092948333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000086,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',4510193.4939,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102071','AGD_1966_ACT_Grid_AGC_Zone',NULL,NULL,'EPSG','4400','EPSG','4202','ESRI','102071','EPSG','2283',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102072','unnamed',NULL,NULL,'EPSG','1562','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99994,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102072','AGD_1966_ISG_54_2',NULL,NULL,'EPSG','4400','EPSG','4202','ESRI','102072','EPSG','1562',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102073','unnamed',NULL,NULL,'EPSG','1562','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',143.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99994,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102073','AGD_1966_ISG_54_3',NULL,NULL,'EPSG','4400','EPSG','4202','ESRI','102073','EPSG','1562',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102074','unnamed',NULL,NULL,'EPSG','1563','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',145.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99994,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102074','AGD_1966_ISG_55_1',NULL,NULL,'EPSG','4400','EPSG','4202','ESRI','102074','EPSG','1563',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102075','unnamed',NULL,NULL,'EPSG','1563','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99994,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102075','AGD_1966_ISG_55_2',NULL,NULL,'EPSG','4400','EPSG','4202','ESRI','102075','EPSG','1563',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102076','unnamed',NULL,NULL,'EPSG','1563','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',149.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99994,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102076','AGD_1966_ISG_55_3',NULL,NULL,'EPSG','4400','EPSG','4202','ESRI','102076','EPSG','1563',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102077','unnamed',NULL,NULL,'EPSG','1564','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',151.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99994,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102077','AGD_1966_ISG_56_1',NULL,NULL,'EPSG','4400','EPSG','4202','ESRI','102077','EPSG','1564',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102078','unnamed',NULL,NULL,'EPSG','1564','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99994,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102078','AGD_1966_ISG_56_2',NULL,NULL,'EPSG','4400','EPSG','4202','ESRI','102078','EPSG','1564',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102079','unnamed',NULL,NULL,'EPSG','1564','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',155.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99994,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102079','AGD_1966_ISG_56_3',NULL,NULL,'EPSG','4400','EPSG','4202','ESRI','102079','EPSG','1564',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102080','unnamed',NULL,NULL,'EPSG','1135','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102080','Korea_2000_Korea_Unified_Coordinate_System',NULL,NULL,'EPSG','4400','EPSG','4737','ESRI','102080','EPSG','1135',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102081','Korea_2000_Korea_West_Belt_2010',NULL,NULL,'EPSG','4400','EPSG','4737','EPSG','5101','EPSG','1498',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102082','Korea_2000_Korea_Central_Belt_2010',NULL,NULL,'EPSG','4400','EPSG','4737','EPSG','5102','EPSG','1497',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102083','Korea_2000_Korea_East_Belt_2010',NULL,NULL,'EPSG','4400','EPSG','4737','EPSG','5103','EPSG','1496',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102084','Korea_2000_Korea_East_Sea_Belt_2010',NULL,NULL,'EPSG','4400','EPSG','4737','EPSG','5104','EPSG','3720',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102085','unnamed',NULL,NULL,'EPSG','1498','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',125.0028902777778,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102085','Korean_1985_Modified_Korea_West_Belt',NULL,NULL,'EPSG','4400','EPSG','4162','ESRI','102085','EPSG','1498',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102086','unnamed',NULL,NULL,'EPSG','3730','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.0028902777778,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102086','Korean_1985_Modified_Korea_Central_Belt',NULL,NULL,'EPSG','4400','EPSG','4162','ESRI','102086','EPSG','3730',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102087','unnamed',NULL,NULL,'EPSG','3721','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.0028902777778,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',550000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102087','Korean_1985_Modified_Korea_Central_Belt_Jeju',NULL,NULL,'EPSG','4400','EPSG','4162','ESRI','102087','EPSG','3721',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102088','unnamed',NULL,NULL,'EPSG','1496','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.0028902777778,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102088','Korean_1985_Modified_Korea_East_Belt',NULL,NULL,'EPSG','4400','EPSG','4162','ESRI','102088','EPSG','1496',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102089','unnamed',NULL,NULL,'EPSG','3720','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',131.0028902777778,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102089','Korean_1985_Modified_Korea_East_Sea_Belt',NULL,NULL,'EPSG','4400','EPSG','4162','ESRI','102089','EPSG','3720',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102090','unnamed',NULL,NULL,'EPSG','1047','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',32.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-64.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',550000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102090','Bermuda_2000_National_Grid',NULL,NULL,'EPSG','4400','EPSG','4762','ESRI','102090','EPSG','1047',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102091','Monte_Mario_Italy_1',NULL,NULL,'EPSG','4400','EPSG','4265','EPSG','18121','EPSG','1718',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102092','Monte_Mario_Italy_2',NULL,NULL,'EPSG','4400','EPSG','4265','EPSG','18122','EPSG','1719',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102093','Roma_1940_Gauss_Boaga_Est',NULL,NULL,'EPSG','4400','ESRI','104127','EPSG','18122','EPSG','1719',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102094','Roma_1940_Gauss_Boaga_Ovest',NULL,NULL,'EPSG','4400','ESRI','104127','EPSG','18121','EPSG','1718',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102095','unnamed',NULL,NULL,'EPSG','3342','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',18.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-77.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',750000.0,'EPSG','9001','EPSG','8807','False northing',650000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102095','JAD_2001_Jamaica_Grid',NULL,NULL,'EPSG','4400','EPSG','4758','ESRI','102095','EPSG','3342',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102096','Bab_South_Palau_Azimuthal_Equidistant',NULL,NULL,NULL,NULL,'ESRI','104112',NULL,NULL,'EPSG','1185','PROJCS["Bab_South_Palau_Azimuthal_Equidistant",GEOGCS["GCS_Bab_South",DATUM["D_Bab_South",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",50000.0],PARAMETER["False_Northing",150000.0],PARAMETER["Central_Meridian",134.4504448611111],PARAMETER["Latitude_Of_Origin",7.35122211111111],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102097','ETRS_1989_UTM_Zone_26N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16026','EPSG','2855',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102098','ETRS_1989_UTM_Zone_27N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16027','EPSG','2856',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102099','ETRS_1989_UTM_Zone_39N',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','16039','EPSG','2868',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102100','WGS_1984_Web_Mercator_Auxiliary_Sphere',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','3544','PROJCS["WGS_1984_Web_Mercator_Auxiliary_Sphere",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mercator_Auxiliary_Sphere"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],PARAMETER["Auxiliary_Sphere_Type",0.0],UNIT["Meter",1.0]]',1); INSERT INTO "conversion" VALUES('ESRI','102101','unnamed',NULL,NULL,'EPSG','1741','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',6.05625,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102101','NGO_1948_Norway_Zone_1',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102101','EPSG','1741',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102102','unnamed',NULL,NULL,'EPSG','1742','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',8.389583333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102102','NGO_1948_Norway_Zone_2',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102102','EPSG','1742',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102103','unnamed',NULL,NULL,'EPSG','1743','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',10.72291666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102103','NGO_1948_Norway_Zone_3',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102103','EPSG','1743',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102104','unnamed',NULL,NULL,'EPSG','1744','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',13.22291666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102104','NGO_1948_Norway_Zone_4',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102104','EPSG','1744',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102105','unnamed',NULL,NULL,'EPSG','1745','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',16.88958333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102105','NGO_1948_Norway_Zone_5',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102105','EPSG','1745',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102106','unnamed',NULL,NULL,'EPSG','1746','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',20.88958333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102106','NGO_1948_Norway_Zone_6',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102106','EPSG','1746',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102107','unnamed',NULL,NULL,'EPSG','1747','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.88958333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102107','NGO_1948_Norway_Zone_7',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102107','EPSG','1747',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102108','unnamed',NULL,NULL,'EPSG','1748','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',29.05625,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102108','NGO_1948_Norway_Zone_8',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102108','EPSG','1748',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102109','ETRS_1989_Slovenia_TM',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','19845','EPSG','1212',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102110','unnamed',NULL,NULL,'EPSG','1096','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.5,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.0,'EPSG','9102','EPSG','8826','Easting at false origin',700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102110','RGF_1993_Lambert_93',NULL,NULL,'EPSG','4400','EPSG','4171','ESRI','102110','EPSG','1096',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102111','unnamed',NULL,NULL,'EPSG','2889','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-44.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-176.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',350000.0,'EPSG','9001','EPSG','8807','False northing',650000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102111','Chatham_Islands_1979_Map_Grid',NULL,NULL,'EPSG','4400','EPSG','4673','ESRI','102111','EPSG','2889',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102112','unnamed',NULL,NULL,'EPSG','2889','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',-44.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-176.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102112','NZGD_2000_Chatham_Island_Circuit',NULL,NULL,'EPSG','4400','EPSG','4167','ESRI','102112','EPSG','2889',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102113','WGS_1984_Web_Mercator',NULL,NULL,NULL,NULL,'EPSG','4055',NULL,NULL,'EPSG','3544','PROJCS["WGS_1984_Web_Mercator",GEOGCS["GCS_WGS_1984_Major_Auxiliary_Sphere",DATUM["D_WGS_1984_Major_Auxiliary_Sphere",SPHEROID["WGS_1984_Major_Auxiliary_Sphere",6378137.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mercator"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102114','Old_Hawaiian_UTM_Zone_4N',NULL,NULL,'EPSG','4400','EPSG','4135','EPSG','16004','EPSG','3488',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102115','Old_Hawaiian_UTM_Zone_5N',NULL,NULL,'EPSG','4400','EPSG','4135','EPSG','16005','EPSG','3491',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102116','American_Samoa_1962_UTM_Zone_2S',NULL,NULL,'EPSG','4400','EPSG','4169','EPSG','16102','EPSG','1027',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102117','NAD_1927_Alaska_Albers_Meters',NULL,NULL,NULL,NULL,'EPSG','4267',NULL,NULL,'EPSG','1330','PROJCS["NAD_1927_Alaska_Albers_Meters",GEOGCS["GCS_North_American_1927",DATUM["D_North_American_1927",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-154.0],PARAMETER["Standard_Parallel_1",55.0],PARAMETER["Standard_Parallel_2",65.0],PARAMETER["Latitude_Of_Origin",50.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102118','NAD_1927_Georgia_Statewide_Albers',NULL,NULL,NULL,NULL,'EPSG','4267',NULL,NULL,'EPSG','1380','PROJCS["NAD_1927_Georgia_Statewide_Albers",GEOGCS["GCS_North_American_1927",DATUM["D_North_American_1927",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-83.5],PARAMETER["Standard_Parallel_1",29.5],PARAMETER["Standard_Parallel_2",45.5],PARAMETER["Latitude_Of_Origin",23.0],UNIT["Foot_US",0.3048006096012192]]',0); INSERT INTO "coordinate_system" VALUES('ESRI','Foot','Cartesian',2); INSERT INTO "axis" VALUES('ESRI','5','Easting','E','east','ESRI','Foot',1,'EPSG','9002'); INSERT INTO "axis" VALUES('ESRI','6','Northing','N','north','ESRI','Foot',2,'EPSG','9002'); INSERT INTO "conversion" VALUES('ESRI','102119','unnamed',NULL,NULL,'EPSG','1412','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.16666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',27.41666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.91666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',3000000.0,'EPSG','9002','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102119','NAD_1927_Texas_Statewide_Mapping_System',NULL,NULL,'ESRI','Foot','EPSG','4267','ESRI','102119','EPSG','1412',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102120','unnamed',NULL,NULL,'EPSG','1391','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',45.30916666666666,'EPSG','9102','EPSG','8812','Longitude of projection centre',-86.0,'EPSG','9102','EPSG','8813','Azimuth of initial line',337.25556,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',337.25556,'EPSG','9102','EPSG','8815','Scale factor on initial line',0.9996,'EPSG','9201','EPSG','8806','False easting',8355401.583,'EPSG','9003','EPSG','8807','False northing',-14284780.538,'EPSG','9003',0); INSERT INTO "projected_crs" VALUES('ESRI','102120','NAD_1927_Michigan_GeoRef_Feet_US',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','102120','EPSG','1391',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102121','NAD_1983_Michigan_GeoRef_Feet_US',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102120','EPSG','1391',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102122','unnamed',NULL,NULL,'EPSG','1391','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',45.30916666666666,'EPSG','9102','EPSG','8812','Longitude of projection centre',-86.0,'EPSG','9102','EPSG','8813','Azimuth of initial line',337.25556,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',337.25556,'EPSG','9102','EPSG','8815','Scale factor on initial line',0.9996,'EPSG','9201','EPSG','8806','False easting',2546731.496,'EPSG','9001','EPSG','8807','False northing',-4354009.816,'EPSG','9001',0); INSERT INTO "projected_crs" VALUES('ESRI','102122','NAD_1927_Michigan_GeoRef_Meters',NULL,NULL,'EPSG','4400','EPSG','4267','ESRI','102122','EPSG','1391',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102123','unnamed',NULL,NULL,'EPSG','1391','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',45.30916666666666,'EPSG','9102','EPSG','8812','Longitude of projection centre',-86.0,'EPSG','9102','EPSG','8813','Azimuth of initial line',337.25556,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',337.25556,'EPSG','9102','EPSG','8815','Scale factor on initial line',0.9996,'EPSG','9201','EPSG','8806','False easting',2546731.496,'EPSG','9001','EPSG','8807','False northing',-4354009.816,'EPSG','9001',1); INSERT INTO "projected_crs" VALUES('ESRI','102123','NAD_1983_Michigan_GeoRef_Meters',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102123','EPSG','1391',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102124','NAD_1927_UTM_Zone_1N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16001','EPSG','3374',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102125','NAD_1927_UTM_Zone_2N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16002','EPSG','3375',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102126','NAD_1927_UTM_Zone_59N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16059','EPSG','3372',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102127','NAD_1927_UTM_Zone_60N',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','16060','EPSG','3373',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102128','NAD_1983_UTM_Zone_1N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16001','EPSG','3374',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102129','NAD_1983_UTM_Zone_2N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16002','EPSG','3375',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102130','NAD_1983_UTM_Zone_59N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16059','EPSG','3372',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102131','NAD_1983_UTM_Zone_60N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16060','EPSG','3373',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102132','NGO_1948_UTM_Zone_32N',NULL,NULL,'EPSG','4400','EPSG','4273','EPSG','16032','EPSG','2062',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102133','NGO_1948_UTM_Zone_33N',NULL,NULL,'EPSG','4400','EPSG','4273','EPSG','16033','EPSG','2064',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102134','NGO_1948_UTM_Zone_34N',NULL,NULL,'EPSG','4400','EPSG','4273','EPSG','16034','EPSG','2066',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102135','NGO_1948_UTM_Zone_35N',NULL,NULL,'EPSG','4400','EPSG','4273','EPSG','16035','EPSG','2068',NULL,0); INSERT INTO "area" VALUES('ESRI','12','Norway - Baerum Kommune','Norway - Baerum Kommune',59.8254,60.0366,10.3371,10.6725,0); INSERT INTO "conversion" VALUES('ESRI','102136','unnamed',NULL,NULL,'ESRI','12','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',10.72291666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',19999.32,'EPSG','9001','EPSG','8807','False northing',-202977.79,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102136','NGO_1948_Baerum_Kommune',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102136','ESRI','12',NULL,0); INSERT INTO "area" VALUES('ESRI','13','Norway - Bergenhalvoen Kommune','Norway - Bergenhalvoen Kommune',60.1651,60.5437,5.1374,5.6993,0); INSERT INTO "conversion" VALUES('ESRI','102137','unnamed',NULL,NULL,'ESRI','13','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',6.05625,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',-200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102137','NGO_1948_Bergenhalvoen',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102137','ESRI','13',NULL,0); INSERT INTO "area" VALUES('ESRI','14','Norway - Oslo Kommune','Norway - Oslo Kommune',59.81,60.14,10.48,10.97,0); INSERT INTO "conversion" VALUES('ESRI','102138','unnamed',NULL,NULL,'ESRI','14','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',10.72291666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',-212979.18,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102138','NGO_1948_Oslo_Kommune',NULL,NULL,'EPSG','4400','EPSG','4273','ESRI','102138','ESRI','14',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102139','EUREF_FIN_TM35FIN',NULL,NULL,'EPSG','4400','ESRI','104129','EPSG','16035','EPSG','1095',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102140','unnamed',NULL,NULL,'EPSG','1118','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',22.31213333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',114.1785555555556,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',836694.05,'EPSG','9001','EPSG','8807','False northing',819069.8,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102140','Hong_Kong_1980_Grid',NULL,NULL,'EPSG','4400','EPSG','4611','ESRI','102140','EPSG','1118',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102141','Hong_Kong_1980_UTM_Zone_49N',NULL,NULL,'EPSG','4400','EPSG','4611','EPSG','16049','EPSG','1118',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102142','Hong_Kong_1980_UTM_Zone_50N',NULL,NULL,'EPSG','4400','EPSG','4611','EPSG','16050','EPSG','1118',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102143','QND_1995_UTM_39N',NULL,NULL,'EPSG','4400','EPSG','4614','EPSG','16039','EPSG','1195',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102144','Merchich_Degree_UTM_Zone_28N',NULL,NULL,'EPSG','4400','ESRI','104261','EPSG','16028','EPSG','1256',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102145','JGD_2000_UTM_Zone_51N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16051','EPSG','3959',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102146','JGD_2000_UTM_Zone_52N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16052','EPSG','3960',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102147','JGD_2000_UTM_Zone_53N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16053','EPSG','3961',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102148','JGD_2000_UTM_Zone_54N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16054','EPSG','3962',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102149','JGD_2000_UTM_Zone_55N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16055','EPSG','3963',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102150','JGD_2000_UTM_Zone_56N',NULL,NULL,'EPSG','4400','EPSG','4612','EPSG','16056','EPSG','1983',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102151','Tokyo_UTM_Zone_51N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16051','EPSG','2951',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102152','Tokyo_UTM_Zone_52N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16052','EPSG','2952',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102153','Tokyo_UTM_Zone_53N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16053','EPSG','2953',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102154','Tokyo_UTM_Zone_54N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16054','EPSG','2954',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102155','Tokyo_UTM_Zone_55N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16055','EPSG','2955',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102156','Tokyo_UTM_Zone_56N',NULL,NULL,'EPSG','4400','EPSG','4301','EPSG','16056','EPSG','1983',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102157','ETRS_1989_Kosovo_Grid (Gauss Kruger)',NULL,NULL,'EPSG','3534','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',7500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102157','ETRS_1989_Kosovo_Grid',NULL,NULL,'EPSG','4400','EPSG','4258','ESRI','102157','EPSG','3534',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102158','Jordan_JTM',NULL,NULL,'EPSG','4400','ESRI','104130','EPSG','19995','EPSG','1130',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102159','unnamed',NULL,NULL,'EPSG','1147','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',22.21239722222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',113.5364694444444,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',20000.0,'EPSG','9001','EPSG','8807','False northing',20000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102159','Observatorio_Meteorologico_1965_Macau_Grid',NULL,NULL,'EPSG','4400','ESRI','104126','ESRI','102159','EPSG','1147',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102160','unnamed',NULL,NULL,'EPSG','1193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-8.131906111111112,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200180.598,'EPSG','9001','EPSG','8807','False northing',299913.01,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102160','Datum_73_Hayford_Gauss_IGeoE',NULL,NULL,'EPSG','4400','EPSG','4274','ESRI','102160','EPSG','1193',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102161','unnamed',NULL,NULL,'EPSG','1193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-8.131906111111112,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',180.598,'EPSG','9001','EPSG','8807','False northing',-86.99,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102161','Datum_73_Hayford_Gauss_IPCC',NULL,NULL,'EPSG','4400','EPSG','4274','ESRI','102161','EPSG','1193',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102162','Graciosa_Base_SW_1948_UTM_Zone_26N',NULL,NULL,'EPSG','4400','ESRI','37241','EPSG','16026','EPSG','1301',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102163','Lisboa_Bessel_Bonne',NULL,NULL,NULL,NULL,'ESRI','104105',NULL,NULL,'EPSG','1193','PROJCS["Lisboa_Bessel_Bonne",GEOGCS["GCS_Datum_Lisboa_Bessel",DATUM["D_Datum_Lisboa_Bessel",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Bonne"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-8.131906111111112],PARAMETER["Standard_Parallel_1",39.66666666666666],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102164','unnamed',NULL,NULL,'EPSG','1193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-8.131906111111112,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102164','Lisboa_Hayford_Gauss_IGeoE',NULL,NULL,'EPSG','4400','ESRI','104106','ESRI','102164','EPSG','1193',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102165','unnamed',NULL,NULL,'EPSG','1193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',39.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-8.131906111111112,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102165','Lisboa_Hayford_Gauss_IPCC',NULL,NULL,'EPSG','4400','ESRI','104106','ESRI','102165','EPSG','1193',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102166','Observatorio_Meteorologico_1939_UTM_Zone_25N',NULL,NULL,'EPSG','4400','ESRI','37245','EPSG','16025','EPSG','1344',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102167','Porto_Santo_1936_UTM_Zone_28N',NULL,NULL,'EPSG','4400','EPSG','4615','EPSG','16028','EPSG','1314',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102168','Sao_Braz_UTM_Zone_26N',NULL,NULL,'EPSG','4400','ESRI','37249','EPSG','16026','EPSG','1345',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102169','Selvagem_Grande_1938_UTM_Zone_28N',NULL,NULL,'EPSG','4400','EPSG','4616','EPSG','16028','EPSG','2779',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102170','unnamed',NULL,NULL,'EPSG','2285','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-37.0,'EPSG','9102','EPSG','8822','Longitude of false origin',145.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-36.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-38.0,'EPSG','9102','EPSG','8826','Easting at false origin',2500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102170','AGD_1966_VICGRID',NULL,NULL,'EPSG','4400','EPSG','4202','ESRI','102170','EPSG','2285',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102171','unnamed',NULL,NULL,'EPSG','2285','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-37.0,'EPSG','9102','EPSG','8822','Longitude of false origin',145.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-36.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-38.0,'EPSG','9102','EPSG','8826','Easting at false origin',2500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102171','GDA_1994_VICGRID94',NULL,NULL,'EPSG','4400','EPSG','4283','ESRI','102171','EPSG','2285',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102172','unnamed',NULL,NULL,'EPSG','2986','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-32.0,'EPSG','9102','EPSG','8822','Longitude of false origin',135.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-28.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-36.0,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102172','GDA_1994_South_Australia_Lambert',NULL,NULL,'EPSG','4400','EPSG','4283','ESRI','102172','EPSG','2986',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102173','ETRS_1989_UWPP_1992 (Gauss Kruger)',NULL,NULL,'EPSG','1192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9993,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',-5300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102173','ETRS_1989_UWPP_1992',NULL,NULL,'EPSG','4400','EPSG','4258','ESRI','102173','EPSG','1192',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102174','ETRS_1989_UWPP_2000_PAS_5 (Gauss Kruger)',NULL,NULL,'EPSG','1520','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',5500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102174','ETRS_1989_UWPP_2000_PAS_5',NULL,NULL,'EPSG','4400','EPSG','4258','ESRI','102174','EPSG','1520',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102175','ETRS_1989_UWPP_2000_PAS_6 (Gauss Kruger)',NULL,NULL,'EPSG','1521','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',6500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102175','ETRS_1989_UWPP_2000_PAS_6',NULL,NULL,'EPSG','4400','EPSG','4258','ESRI','102175','EPSG','1521',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102176','ETRS_1989_UWPP_2000_PAS_7 (Gauss Kruger)',NULL,NULL,'EPSG','1522','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',7500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102176','ETRS_1989_UWPP_2000_PAS_7',NULL,NULL,'EPSG','4400','EPSG','4258','ESRI','102176','EPSG','1522',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102177','ETRS_1989_UWPP_2000_PAS_8 (Gauss Kruger)',NULL,NULL,'EPSG','1523','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',8500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102177','ETRS_1989_UWPP_2000_PAS_8',NULL,NULL,'EPSG','4400','EPSG','4258','ESRI','102177','EPSG','1523',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102178','NAD_1927_10TM_AEP_Forest',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','19881','EPSG','2376',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102179','NAD_1927_10TM_AEP_Resource',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','19882','EPSG','2376',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102180','NAD_1927_3TM_111',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17722','EPSG','3543',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102181','NAD_1927_3TM_114',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17723','EPSG','3542',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102182','NAD_1927_3TM_117',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17724','EPSG','3541',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102183','NAD_1927_3TM_120',NULL,NULL,'EPSG','4400','EPSG','4267','EPSG','17726','EPSG','3540',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102184','NAD_1983_10TM_AEP_Forest',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','19881','EPSG','2376',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102185','NAD_1983_10TM_AEP_Resource',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','19882','EPSG','2376',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102186','NAD_1983_3TM_111',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17722','EPSG','3543',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102187','NAD_1983_3TM_114',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17723','EPSG','3542',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102188','NAD_1983_3TM_117',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17724','EPSG','3541',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102189','NAD_1983_3TM_120',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','17726','EPSG','3540',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102190','NAD_1983_BC_Environment_Albers',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','2832','PROJCS["NAD_1983_BC_Environment_Albers",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",1000000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-126.0],PARAMETER["Standard_Parallel_1",50.0],PARAMETER["Standard_Parallel_2",58.5],PARAMETER["Latitude_Of_Origin",45.0],UNIT["Meter",1.0]]',1); INSERT INTO "conversion" VALUES('ESRI','102191','unnamed',NULL,NULL,'EPSG','1703','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',33.3,'EPSG','9102','EPSG','8802','Longitude of natural origin',-5.4,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999625769,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102191','Nord_Maroc_Degree',NULL,NULL,'EPSG','4400','ESRI','104261','ESRI','102191','EPSG','1703',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102192','unnamed',NULL,NULL,'EPSG','2787','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',29.7,'EPSG','9102','EPSG','8802','Longitude of natural origin',-5.4,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999615596,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102192','Sud_Maroc_Degree',NULL,NULL,'EPSG','4400','ESRI','104261','ESRI','102192','EPSG','2787',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102193','unnamed',NULL,NULL,'EPSG','1705','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',26.1,'EPSG','9102','EPSG','8802','Longitude of natural origin',-5.4,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1200000.0,'EPSG','9001','EPSG','8807','False northing',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102193','Sahara_Degree',NULL,NULL,'EPSG','4400','ESRI','104261','ESRI','102193','EPSG','1705',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102194','UWPP_1992 (Gauss Kruger)',NULL,NULL,'EPSG','1192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9993,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',-5300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102194','UWPP_1992',NULL,NULL,'EPSG','4400','EPSG','9059','ESRI','102194','EPSG','1192',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102195','UWPP_2000_PAS_5 (Gauss Kruger)',NULL,NULL,'EPSG','1520','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',5500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102195','UWPP_2000_PAS_5',NULL,NULL,'EPSG','4400','EPSG','9059','ESRI','102195','EPSG','1520',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102196','UWPP_2000_PAS_6 (Gauss Kruger)',NULL,NULL,'EPSG','1521','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',18.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',6500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102196','UWPP_2000_PAS_6',NULL,NULL,'EPSG','4400','EPSG','9059','ESRI','102196','EPSG','1521',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102197','UWPP_2000_PAS_7 (Gauss Kruger)',NULL,NULL,'EPSG','1522','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',7500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102197','UWPP_2000_PAS_7',NULL,NULL,'EPSG','4400','EPSG','9059','ESRI','102197','EPSG','1522',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102198','UWPP_2000_PAS_8 (Gauss Kruger)',NULL,NULL,'EPSG','1523','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',24.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999923,'EPSG','9201','EPSG','8806','False easting',8500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102198','UWPP_2000_PAS_8',NULL,NULL,'EPSG','4400','EPSG','9059','ESRI','102198','EPSG','1523',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102199','unnamed',NULL,NULL,'EPSG','1347','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',50.797815,'EPSG','9102','EPSG','8822','Longitude of false origin',4.359215833333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',49.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',51.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',649328.0,'EPSG','9001','EPSG','8827','Northing at false origin',665262.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102199','Belge_Lambert_2008',NULL,NULL,'EPSG','4400','EPSG','4258','ESRI','102199','EPSG','1347',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102200','NAD_1983_HARN_UTM_Zone_2S',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16102','EPSG','3110',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102201','unnamed',NULL,NULL,'EPSG','3255','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',13.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',144.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102201','NAD_1983_HARN_Guam_Map_Grid',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102201','EPSG','3255',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102202','NAD_1983_HARN_UTM_Zone_4N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16004','EPSG','3488',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102203','NAD_1983_HARN_UTM_Zone_5N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16005','EPSG','3491',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102204','unnamed',NULL,NULL,'EPSG','3303','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',24.0,'EPSG','9102','EPSG','8822','Longitude of false origin',45.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',21.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',27.0,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102204','Ain_el_Abd_1970_Aramco_Lambert_2',NULL,NULL,'EPSG','4400','EPSG','4204','ESRI','102204','EPSG','3303',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102205','NAD_1983_HARN_UTM_Zone_11N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16011','EPSG','3852',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102206','NAD_1983_HARN_UTM_Zone_12N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16012','EPSG','3499',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102207','NAD_1983_HARN_UTM_Zone_13N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16013','EPSG','3500',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102208','unnamed',NULL,NULL,'EPSG','2960','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-67.875,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102208','NAD_1983_HARN_Maine_2000_East_Zone',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102208','EPSG','2960',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102209','unnamed',NULL,NULL,'EPSG','2959','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-69.125,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102209','NAD_1983_HARN_Maine_2000_Central_Zone',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102209','EPSG','2959',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102210','unnamed',NULL,NULL,'EPSG','2958','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-70.375,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102210','NAD_1983_HARN_Maine_2000_West_Zone',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102210','EPSG','2958',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102211','NAD_1983_HARN_UTM_Zone_18N',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','16018','EPSG','3868',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102212','unnamed',NULL,NULL,'EPSG','1419','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-107.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.0,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102212','NAD_1983_WyLAM',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102212','EPSG','1419',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102213','NAD_1983_UTM_Zone_58N',NULL,NULL,'EPSG','4400','EPSG','4269','EPSG','16058','EPSG','2116',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102214','unnamed',NULL,NULL,'EPSG','1062','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',15.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-24.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',15.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',16.66666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',161587.83,'EPSG','9001','EPSG','8827','Northing at false origin',128511.202,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102214','WGS_1984_Cape_Verde_Grid',NULL,NULL,'EPSG','4400','EPSG','4326','ESRI','102214','EPSG','1062',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102215','unnamed',NULL,NULL,'EPSG','1061','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',49.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',77.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',-8000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102215','WGS_1984_Canada_Atlas_LCC',NULL,NULL,'EPSG','4400','EPSG','4326','ESRI','102215','EPSG','1061',NULL,0); INSERT INTO "area" VALUES('ESRI','15','Australia - Perth Coast','Australia - Perth Coast',-33.41666666666666,-31.33333333333333,115.4416666666667,116.0833333333333,0); INSERT INTO "conversion" VALUES('ESRI','102216','unnamed',NULL,NULL,'ESRI','15','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',115.8166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999906,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',3800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102216','GDA_1994_Perth_Coastal_Grid_1994',NULL,NULL,'EPSG','4400','EPSG','4283','ESRI','102216','ESRI','15',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102217','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',1706033.333333333,'EPSG','9003','EPSG','8807','False northing',-14698133.33333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102217','NAD_1983_NSRS2007_Wisconsin_TM_US_Ft',NULL,NULL,'ESRI','Foot_US','EPSG','4759','ESRI','102217','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102218','NAD_1983_USFS_R6_Albers',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','2381','PROJCS["NAD_1983_USFS_R6_Albers",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",600000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-120.0],PARAMETER["Standard_Parallel_1",43.0],PARAMETER["Standard_Parallel_2",48.0],PARAMETER["Latitude_Of_Origin",34.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102219','NAD_1983_Wisconsin_TM_US_Ft',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102217','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102220','NAD_1983_HARN_Wisconsin_TM_US_Ft',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','102217','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102221','unnamed',NULL,NULL,'EPSG','1074','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',10.46666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.33333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',9.933333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',11.0,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',271820.522,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102221','Ocotepeque_1935_Costa_Rica_Lambert_Norte',NULL,NULL,'EPSG','4400','EPSG','5451','ESRI','102221','EPSG','1074',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102222','unnamed',NULL,NULL,'EPSG','1074','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',9.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-83.66666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',8.466666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',9.533333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',327987.436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102222','Ocotepeque_1935_Costa_Rica_Lambert_Sur',NULL,NULL,'EPSG','4400','EPSG','5451','ESRI','102222','EPSG','1074',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102223','unnamed',NULL,NULL,'EPSG','1074','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-84.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102223','WGS_1984_Costa_Rica_TM_90',NULL,NULL,'EPSG','4400','EPSG','4326','ESRI','102223','EPSG','1074',NULL,0); INSERT INTO "area" VALUES('ESRI','16','Mongolia - west of 96~E','Mongolia - west of 96~E',43.01,50.89,87.76,96.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102224','MONREF_1997_UTM_Zone_46N',NULL,NULL,'EPSG','4400','ESRI','104134','EPSG','16046','ESRI','16',NULL,0); INSERT INTO "area" VALUES('ESRI','17','Mongolia - between 96~E and 102~E','Mongolia - between 96~E and 102~E',42.14,52.15,96.0,102.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102225','MONREF_1997_UTM_Zone_47N',NULL,NULL,'EPSG','4400','ESRI','104134','EPSG','16047','ESRI','17',NULL,0); INSERT INTO "area" VALUES('ESRI','18','Mongolia - between 102~E and 108~E','Mongolia - between 102~E and 108~E',41.58,51.42,102.0,108.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102226','MONREF_1997_UTM_Zone_48N',NULL,NULL,'EPSG','4400','ESRI','104134','EPSG','16048','ESRI','18',NULL,0); INSERT INTO "area" VALUES('ESRI','19','Mongolia - between 108~E and 114~E','Mongolia - between 108~E and 114~E',42.35,50.23,108.0,114.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102227','MONREF_1997_UTM_Zone_49N',NULL,NULL,'EPSG','4400','ESRI','104134','EPSG','16049','ESRI','19',NULL,0); INSERT INTO "area" VALUES('ESRI','20','Mongolia - east of 114~E','Mongolia - east of 114~E',44.9,50.32,114.0,119.94,0); INSERT INTO "projected_crs" VALUES('ESRI','102228','MONREF_1997_UTM_Zone_50N',NULL,NULL,'EPSG','4400','ESRI','104134','EPSG','16050','ESRI','20',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102229','unnamed',NULL,NULL,'EPSG','2154','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-85.83333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99996,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102229','NAD_1983_HARN_StatePlane_Alabama_East_FIPS_0101',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102229','EPSG','2154',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102230','unnamed',NULL,NULL,'EPSG','2155','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102230','NAD_1983_HARN_StatePlane_Alabama_West_FIPS_0102',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102230','EPSG','2155',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102231','unnamed',NULL,NULL,'EPSG','3091','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.599047222222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-80.08091666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1000000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102231','Colombia_West_West_Zone',NULL,NULL,'EPSG','4400','EPSG','4218','ESRI','102231','EPSG','3091',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102232','unnamed',NULL,NULL,'EPSG','3089','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.683333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-74.15,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000399787532524,'EPSG','9201','EPSG','8806','False easting',92334.879,'EPSG','9001','EPSG','8807','False northing',109320.965,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102232','Bogota_Ciudad_Bogota',NULL,NULL,'EPSG','4400','EPSG','4218','ESRI','102232','EPSG','3089',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102233','unnamed',NULL,NULL,'EPSG','3089','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',4.680486111111112,'EPSG','9102','EPSG','8802','Longitude of natural origin',-74.14659166666668,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000399803265436,'EPSG','9201','EPSG','8806','False easting',92334.879,'EPSG','9001','EPSG','8807','False northing',109320.965,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102233','MAGNA_Ciudad_Bogota',NULL,NULL,'EPSG','4400','EPSG','4686','ESRI','102233','EPSG','3089',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102234','NAD_1983_CSRS_UTM_Zone_14N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16014','EPSG','3413',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102235','NAD_1983_CSRS_UTM_Zone_15N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16015','EPSG','3414',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102236','NAD_1983_CSRS_UTM_Zone_16N',NULL,NULL,'EPSG','4400','EPSG','4617','EPSG','16016','EPSG','3415',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102237','Pohnpei_Az_Eq_1971',NULL,NULL,NULL,NULL,'ESRI','104109',NULL,NULL,'EPSG','1161','PROJCS["Pohnpei_Az_Eq_1971",GEOGCS["GCS_Pohnpei",DATUM["D_Pohnpei",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",80122.82],PARAMETER["False_Northing",80747.24],PARAMETER["Central_Meridian",158.2092992222222],PARAMETER["Latitude_Of_Origin",6.965075694444445],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102238','Saipan_Az_Eq_1969',NULL,NULL,NULL,NULL,'EPSG','4675',NULL,NULL,'EPSG','1181','PROJCS["Saipan_Az_Eq_1969",GEOGCS["GCS_Guam_1963",DATUM["D_Guam_1963",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",50000.0],PARAMETER["False_Northing",50000.0],PARAMETER["Central_Meridian",145.7112869444444],PARAMETER["Latitude_Of_Origin",15.16755722222222],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102239','Guam_Geodetic_Triangulation_Network_1963',NULL,NULL,NULL,NULL,'EPSG','4675',NULL,NULL,'EPSG','1110','PROJCS["Guam_Geodetic_Triangulation_Network_1963",GEOGCS["GCS_Guam_1963",DATUM["D_Guam_1963",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",50000.0],PARAMETER["False_Northing",50000.0],PARAMETER["Central_Meridian",144.7487507055556],PARAMETER["Latitude_Of_Origin",13.47246635277778],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102240','unnamed',NULL,NULL,'EPSG','1110','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',13.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',144.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102240','Guam_Geodetic_Network_1993',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102240','EPSG','1110',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102241','unnamed',NULL,NULL,'EPSG','2175','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102241','NAD_1983_HARN_StatePlane_California_I_FIPS_0401',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102241','EPSG','2175',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102242','unnamed',NULL,NULL,'EPSG','2176','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102242','NAD_1983_HARN_StatePlane_California_II_FIPS_0402',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102242','EPSG','2176',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102243','unnamed',NULL,NULL,'EPSG','2177','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.06666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102243','NAD_1983_HARN_StatePlane_California_III_FIPS_0403',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102243','EPSG','2177',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102244','unnamed',NULL,NULL,'EPSG','2178','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-119.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.25,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102244','NAD_1983_HARN_StatePlane_California_IV_FIPS_0404',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102244','EPSG','2178',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102245','unnamed',NULL,NULL,'EPSG','2182','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-118.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',35.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102245','NAD_1983_HARN_StatePlane_California_V_FIPS_0405',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102245','EPSG','2182',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102246','unnamed',NULL,NULL,'EPSG','2180','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-116.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',33.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102246','NAD_1983_HARN_StatePlane_California_VI_FIPS_0406',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102246','EPSG','2180',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102247','NAD_1983_CORS96_Alaska_Albers',NULL,NULL,NULL,NULL,'EPSG','6783',NULL,NULL,'EPSG','1330','PROJCS["NAD_1983_CORS96_Alaska_Albers",GEOGCS["GCS_NAD_1983_CORS96",DATUM["D_NAD_1983_CORS96",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-154.0],PARAMETER["Standard_Parallel_1",55.0],PARAMETER["Standard_Parallel_2",65.0],PARAMETER["Latitude_Of_Origin",50.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102248','unnamed',NULL,NULL,'EPSG','2167','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-110.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',213360.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102248','NAD_1983_HARN_StatePlane_Arizona_East_FIPS_0201',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102248','EPSG','2167',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102249','unnamed',NULL,NULL,'EPSG','2166','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.9166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',213360.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102249','NAD_1983_HARN_StatePlane_Arizona_Central_FIPS_0202',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102249','EPSG','2166',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102250','unnamed',NULL,NULL,'EPSG','2168','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-113.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',213360.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102250','NAD_1983_HARN_StatePlane_Arizona_West_FIPS_0203',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102250','EPSG','2168',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102251','unnamed',NULL,NULL,'EPSG','2169','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.23333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102251','NAD_1983_HARN_StatePlane_Arkansas_North_FIPS_0301',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102251','EPSG','2169',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102252','unnamed',NULL,NULL,'EPSG','2170','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',33.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102252','NAD_1983_HARN_StatePlane_Arkansas_South_FIPS_0302',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102252','EPSG','2170',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102253','unnamed',NULL,NULL,'EPSG','2184','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',914401.8289,'EPSG','9001','EPSG','8827','Northing at false origin',304800.6096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102253','NAD_1983_HARN_StatePlane_Colorado_North_FIPS_0501',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102253','EPSG','2184',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102254','unnamed',NULL,NULL,'EPSG','2183','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.45,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.75,'EPSG','9102','EPSG','8826','Easting at false origin',914401.8289,'EPSG','9001','EPSG','8827','Northing at false origin',304800.6096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102254','NAD_1983_HARN_StatePlane_Colorado_Central_FIPS_0502',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102254','EPSG','2183',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102255','unnamed',NULL,NULL,'EPSG','2185','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.23333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',914401.8289,'EPSG','9001','EPSG','8827','Northing at false origin',304800.6096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102255','NAD_1983_HARN_StatePlane_Colorado_South_FIPS_0503',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102255','EPSG','2185',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102256','unnamed',NULL,NULL,'EPSG','1377','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-72.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.2,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.86666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',304800.6096,'EPSG','9001','EPSG','8827','Northing at false origin',152400.3048,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102256','NAD_1983_HARN_StatePlane_Connecticut_FIPS_0600',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102256','EPSG','1377',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102257','unnamed',NULL,NULL,'EPSG','1378','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-75.41666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102257','NAD_1983_HARN_StatePlane_Delaware_FIPS_0700',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102257','EPSG','1378',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102258','unnamed',NULL,NULL,'EPSG','2186','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102258','NAD_1983_HARN_StatePlane_Florida_East_FIPS_0901',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102258','EPSG','2186',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102259','unnamed',NULL,NULL,'EPSG','2188','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-82.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102259','NAD_1983_HARN_StatePlane_Florida_West_FIPS_0902',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102259','EPSG','2188',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102260','unnamed',NULL,NULL,'EPSG','2187','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',29.58333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.75,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102260','NAD_1983_HARN_StatePlane_Florida_North_FIPS_0903',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102260','EPSG','2187',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102261','unnamed',NULL,NULL,'EPSG','1546','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',18.83333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-155.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102261','NAD_1983_HARN_StatePlane_Hawaii_1_FIPS_5101',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102261','EPSG','1546',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102262','unnamed',NULL,NULL,'EPSG','1547','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',20.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-156.6666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102262','NAD_1983_HARN_StatePlane_Hawaii_2_FIPS_5102',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102262','EPSG','1547',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102263','unnamed',NULL,NULL,'EPSG','1548','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.16666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-158.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102263','NAD_1983_HARN_StatePlane_Hawaii_3_FIPS_5103',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102263','EPSG','1548',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102264','unnamed',NULL,NULL,'EPSG','1549','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.83333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-159.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102264','NAD_1983_HARN_StatePlane_Hawaii_4_FIPS_5104',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102264','EPSG','1549',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102265','unnamed',NULL,NULL,'EPSG','1550','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.66666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-160.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102265','NAD_1983_HARN_StatePlane_Hawaii_5_FIPS_5105',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102265','EPSG','1550',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102266','unnamed',NULL,NULL,'EPSG','2189','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-82.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102266','NAD_1983_HARN_StatePlane_Georgia_East_FIPS_1001',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102266','EPSG','2189',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102267','unnamed',NULL,NULL,'EPSG','2190','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-84.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102267','NAD_1983_HARN_StatePlane_Georgia_West_FIPS_1002',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102267','EPSG','2190',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102268','unnamed',NULL,NULL,'EPSG','2192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-112.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999473684210526,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102268','NAD_1983_HARN_StatePlane_Idaho_East_FIPS_1101',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102268','EPSG','2192',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102269','unnamed',NULL,NULL,'EPSG','2191','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-114.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999473684210526,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102269','NAD_1983_HARN_StatePlane_Idaho_Central_FIPS_1102',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102269','EPSG','2191',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102270','unnamed',NULL,NULL,'EPSG','2193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102270','NAD_1983_HARN_StatePlane_Idaho_West_FIPS_1103',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102270','EPSG','2193',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102271','unnamed',NULL,NULL,'EPSG','2194','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.33333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999975,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102271','NAD_1983_HARN_StatePlane_Illinois_East_FIPS_1201',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102271','EPSG','2194',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102272','unnamed',NULL,NULL,'EPSG','2195','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102272','NAD_1983_HARN_StatePlane_Illinois_West_FIPS_1202',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102272','EPSG','2195',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102273','unnamed',NULL,NULL,'EPSG','2196','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-85.66666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',250000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102273','NAD_1983_HARN_StatePlane_Indiana_East_FIPS_1301',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102273','EPSG','2196',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102274','unnamed',NULL,NULL,'EPSG','2197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.08333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',900000.0,'EPSG','9001','EPSG','8807','False northing',250000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102274','NAD_1983_HARN_StatePlane_Indiana_West_FIPS_1302',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102274','EPSG','2197',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102275','unnamed',NULL,NULL,'EPSG','2198','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.06666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.26666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102275','NAD_1983_HARN_StatePlane_Iowa_North_FIPS_1401',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102275','EPSG','2198',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102276','unnamed',NULL,NULL,'EPSG','2199','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.61666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102276','NAD_1983_HARN_StatePlane_Iowa_South_FIPS_1402',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102276','EPSG','2199',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102277','unnamed',NULL,NULL,'EPSG','2200','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102277','NAD_1983_HARN_StatePlane_Kansas_North_FIPS_1501',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102277','EPSG','2200',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102278','unnamed',NULL,NULL,'EPSG','2201','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.26666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.56666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102278','NAD_1983_HARN_StatePlane_Kansas_South_FIPS_1502',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102278','EPSG','2201',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102279','unnamed',NULL,NULL,'EPSG','2202','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.96666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102279','NAD_1983_HARN_StatePlane_Kentucky_North_FIPS_1601',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102279','EPSG','2202',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102280','unnamed',NULL,NULL,'EPSG','2203','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-85.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.93333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102280','NAD_1983_HARN_StatePlane_Kentucky_South_FIPS_1602',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102280','EPSG','2203',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102281','unnamed',NULL,NULL,'EPSG','2204','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',30.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',31.16666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',32.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102281','NAD_1983_HARN_StatePlane_Louisiana_North_FIPS_1701',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102281','EPSG','2204',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102282','unnamed',NULL,NULL,'EPSG','2529','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',28.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.33333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',29.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.7,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102282','NAD_1983_HARN_StatePlane_Louisiana_South_FIPS_1702',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102282','EPSG','2529',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102283','unnamed',NULL,NULL,'EPSG','2206','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-68.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102283','NAD_1983_HARN_StatePlane_Maine_East_FIPS_1801',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102283','EPSG','2206',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102284','unnamed',NULL,NULL,'EPSG','2207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-70.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',900000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102284','NAD_1983_HARN_StatePlane_Maine_West_FIPS_1802',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102284','EPSG','2207',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102285','unnamed',NULL,NULL,'EPSG','1389','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.45,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102285','NAD_1983_HARN_StatePlane_Maryland_FIPS_1900',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102285','EPSG','1389',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102286','unnamed',NULL,NULL,'EPSG','2209','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-71.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',42.68333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',200000.0,'EPSG','9001','EPSG','8827','Northing at false origin',750000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102286','NAD_1983_HARN_StatePlane_Massachusetts_Mainland_FIPS_2001',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102286','EPSG','2209',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102287','unnamed',NULL,NULL,'EPSG','2208','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-70.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.28333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102287','NAD_1983_HARN_StatePlane_Massachusetts_Island_FIPS_2002',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102287','EPSG','2208',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102288','unnamed',NULL,NULL,'EPSG','1723','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.78333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.48333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',8000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102288','NAD_1983_HARN_StatePlane_Michigan_North_FIPS_2111',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102288','EPSG','1723',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102289','unnamed',NULL,NULL,'EPSG','1724','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.31666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.7,'EPSG','9102','EPSG','8826','Easting at false origin',6000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102289','NAD_1983_HARN_StatePlane_Michigan_Central_FIPS_2112',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102289','EPSG','1724',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102290','unnamed',NULL,NULL,'EPSG','1725','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.1,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',4000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102290','NAD_1983_HARN_StatePlane_Michigan_South_FIPS_2113',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102290','EPSG','1725',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102291','unnamed',NULL,NULL,'EPSG','2214','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.1,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.63333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',800000.0,'EPSG','9001','EPSG','8827','Northing at false origin',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102291','NAD_1983_HARN_StatePlane_Minnesota_North_FIPS_2201',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102291','EPSG','2214',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102292','unnamed',NULL,NULL,'EPSG','2213','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.61666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.05,'EPSG','9102','EPSG','8826','Easting at false origin',800000.0,'EPSG','9001','EPSG','8827','Northing at false origin',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102292','NAD_1983_HARN_StatePlane_Minnesota_Central_FIPS_2202',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102292','EPSG','2213',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102293','unnamed',NULL,NULL,'EPSG','2215','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.21666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',800000.0,'EPSG','9001','EPSG','8827','Northing at false origin',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102293','NAD_1983_HARN_StatePlane_Minnesota_South_FIPS_2203',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102293','EPSG','2215',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102294','unnamed',NULL,NULL,'EPSG','2216','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.83333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102294','NAD_1983_HARN_StatePlane_Mississippi_East_FIPS_2301',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102294','EPSG','2216',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102295','unnamed',NULL,NULL,'EPSG','2217','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.33333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102295','NAD_1983_HARN_StatePlane_Mississippi_West_FIPS_2302',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102295','EPSG','2217',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102296','unnamed',NULL,NULL,'EPSG','2219','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',35.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102296','NAD_1983_HARN_StatePlane_Missouri_East_FIPS_2401',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102296','EPSG','2219',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102297','unnamed',NULL,NULL,'EPSG','2218','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',35.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102297','NAD_1983_HARN_StatePlane_Missouri_Central_FIPS_2402',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102297','EPSG','2218',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102298','unnamed',NULL,NULL,'EPSG','2220','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.16666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-94.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',850000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102298','NAD_1983_HARN_StatePlane_Missouri_West_FIPS_2403',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102298','EPSG','2220',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102299','Berghaus_Star_AAG',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1262','PROJCS["Berghaus_Star_AAG",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Berghaus_Star"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-52.0],PARAMETER["Latitude_Of_Origin",90.0],PARAMETER["XY_Plane_Rotation",36.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102300','unnamed',NULL,NULL,'EPSG','1395','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.25,'EPSG','9102','EPSG','8822','Longitude of false origin',-109.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.0,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102300','NAD_1983_HARN_StatePlane_Montana_FIPS_2500',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102300','EPSG','1395',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102304','unnamed',NULL,NULL,'EPSG','1396','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.0,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102304','NAD_1983_HARN_StatePlane_Nebraska_FIPS_2600',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102304','EPSG','1396',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102305','CRTM05',NULL,NULL,'EPSG','4400','EPSG','5365','EPSG','5366','EPSG','3849',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102306','unnamed',NULL,NULL,'EPSG','1171','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',84.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102306','Nepal_Nagarkot_TM',NULL,NULL,'EPSG','4400','EPSG','6207','ESRI','102306','EPSG','1171',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102307','unnamed',NULL,NULL,'EPSG','2224','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.5833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',8000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102307','NAD_1983_HARN_StatePlane_Nevada_East_FIPS_2701',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102307','EPSG','2224',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102308','unnamed',NULL,NULL,'EPSG','2223','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-116.6666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',6000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102308','NAD_1983_HARN_StatePlane_Nevada_Central_FIPS_2702',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102308','EPSG','2223',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102309','unnamed',NULL,NULL,'EPSG','2225','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-118.5833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102309','NAD_1983_HARN_StatePlane_Nevada_West_FIPS_2703',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102309','EPSG','2225',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102310','unnamed',NULL,NULL,'EPSG','1398','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-71.66666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102310','NAD_1983_HARN_StatePlane_New_Hampshire_FIPS_2800',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102310','EPSG','1398',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102311','unnamed',NULL,NULL,'EPSG','1399','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-74.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102311','NAD_1983_HARN_StatePlane_New_Jersey_FIPS_2900',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102311','EPSG','1399',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102312','unnamed',NULL,NULL,'EPSG','2228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-104.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999090909090909,'EPSG','9201','EPSG','8806','False easting',165000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102312','NAD_1983_HARN_StatePlane_New_Mexico_East_FIPS_3001',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102312','EPSG','2228',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102313','unnamed',NULL,NULL,'EPSG','2231','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-106.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102313','NAD_1983_HARN_StatePlane_New_Mexico_Central_FIPS_3002',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102313','EPSG','2231',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102314','unnamed',NULL,NULL,'EPSG','2232','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-107.8333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999166666666667,'EPSG','9201','EPSG','8806','False easting',830000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102314','NAD_1983_HARN_StatePlane_New_Mexico_West_FIPS_3003',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102314','EPSG','2232',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102315','unnamed',NULL,NULL,'EPSG','2234','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-74.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102315','NAD_1983_HARN_StatePlane_New_York_East_FIPS_3101',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102315','EPSG','2234',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102316','unnamed',NULL,NULL,'EPSG','2233','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-76.58333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102316','NAD_1983_HARN_StatePlane_New_York_Central_FIPS_3102',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102316','EPSG','2233',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102317','unnamed',NULL,NULL,'EPSG','2236','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-78.58333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',350000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102317','NAD_1983_HARN_StatePlane_New_York_West_FIPS_3103',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102317','EPSG','2236',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102318','unnamed',NULL,NULL,'EPSG','2235','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-74.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.66666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.03333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',300000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102318','NAD_1983_HARN_StatePlane_New_York_Long_Island_FIPS_3104',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102318','EPSG','2235',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102319','CGRS_1993_LTM',NULL,NULL,'EPSG','4400','EPSG','6311','EPSG','6308','EPSG','3236',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102320','unnamed',NULL,NULL,'EPSG','2237','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.43333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102320','NAD_1983_HARN_StatePlane_North_Dakota_North_FIPS_3301',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102320','EPSG','2237',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102321','unnamed',NULL,NULL,'EPSG','2238','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102321','NAD_1983_HARN_StatePlane_North_Dakota_South_FIPS_3302',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102321','EPSG','2238',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102322','unnamed',NULL,NULL,'EPSG','2239','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-82.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.43333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.7,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102322','NAD_1983_HARN_StatePlane_Ohio_North_FIPS_3401',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102322','EPSG','2239',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102323','unnamed',NULL,NULL,'EPSG','2240','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-82.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.03333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102323','NAD_1983_HARN_StatePlane_Ohio_South_FIPS_3402',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102323','EPSG','2240',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102324','unnamed',NULL,NULL,'EPSG','2241','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',35.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102324','NAD_1983_HARN_StatePlane_Oklahoma_North_FIPS_3501',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102324','EPSG','2241',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102325','unnamed',NULL,NULL,'EPSG','2242','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',33.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',35.23333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102325','NAD_1983_HARN_StatePlane_Oklahoma_South_FIPS_3502',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102325','EPSG','2242',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102326','unnamed',NULL,NULL,'EPSG','2243','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.0,'EPSG','9102','EPSG','8826','Easting at false origin',2500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102326','NAD_1983_HARN_StatePlane_Oregon_North_FIPS_3601',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102326','EPSG','2243',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102327','unnamed',NULL,NULL,'EPSG','2244','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.0,'EPSG','9102','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102327','NAD_1983_HARN_StatePlane_Oregon_South_FIPS_3602',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102327','EPSG','2244',NULL,1); INSERT INTO "area" VALUES('ESRI','21','Germany - west of 12~E','Germany - west of 12~E',47.27,55.9,5.5,12.0,0); INSERT INTO "conversion" VALUES('ESRI','102328','unnamed',NULL,NULL,'ESRI','21','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',2500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102328','ETRS_1989_UTM_Zone_32N_7stellen',NULL,NULL,'EPSG','4400','EPSG','4258','ESRI','102328','ESRI','21',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102329','ETRS_1989_UTM_Zone_32N_8stellen',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4648','EPSG','2862',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102330','unnamed',NULL,NULL,'EPSG','1408','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.08333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-71.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999375,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102330','NAD_1983_HARN_StatePlane_Rhode_Island_FIPS_3800',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102330','EPSG','1408',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102331','PTRA08_UTM_Zone_25N',NULL,NULL,'EPSG','4400','EPSG','5013','EPSG','16025','EPSG','3682',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102332','PTRA08_UTM_Zone_26N',NULL,NULL,'EPSG','4400','EPSG','5013','EPSG','16026','EPSG','3677',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102333','PTRA08_UTM_Zone_28N',NULL,NULL,'EPSG','4400','EPSG','5013','EPSG','16028','EPSG','3678',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102334','unnamed',NULL,NULL,'EPSG','2249','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.41666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.68333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102334','NAD_1983_HARN_StatePlane_South_Dakota_North_FIPS_4001',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102334','EPSG','2249',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102335','unnamed',NULL,NULL,'EPSG','2250','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.3333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.4,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102335','NAD_1983_HARN_StatePlane_South_Dakota_South_FIPS_4002',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102335','EPSG','2250',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102336','unnamed',NULL,NULL,'EPSG','1411','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-86.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',35.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.41666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102336','NAD_1983_HARN_StatePlane_Tennessee_FIPS_4100',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102336','EPSG','1411',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102337','unnamed',NULL,NULL,'EPSG','2253','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-101.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.65,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.18333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',200000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102337','NAD_1983_HARN_StatePlane_Texas_North_FIPS_4201',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102337','EPSG','2253',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102338','unnamed',NULL,NULL,'EPSG','2254','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.13333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',33.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102338','NAD_1983_HARN_StatePlane_Texas_North_Central_FIPS_4202',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102338','EPSG','2254',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102339','unnamed',NULL,NULL,'EPSG','2252','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.3333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',30.11666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',31.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102339','NAD_1983_HARN_StatePlane_Texas_Central_FIPS_4203',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102339','EPSG','2252',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102340','unnamed',NULL,NULL,'EPSG','2527','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',27.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-99.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',28.38333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.28333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102340','NAD_1983_HARN_StatePlane_Texas_South_Central_FIPS_4204',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102340','EPSG','2527',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102341','unnamed',NULL,NULL,'EPSG','2528','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',26.16666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',27.83333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',300000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102341','NAD_1983_HARN_StatePlane_Texas_South_FIPS_4205',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102341','EPSG','2528',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102342','unnamed',NULL,NULL,'EPSG','2258','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102342','NAD_1983_HARN_StatePlane_Utah_North_FIPS_4301',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102342','EPSG','2258',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102343','unnamed',NULL,NULL,'EPSG','2257','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.01666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.65,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102343','NAD_1983_HARN_StatePlane_Utah_Central_FIPS_4302',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102343','EPSG','2257',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102344','unnamed',NULL,NULL,'EPSG','2259','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.21666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.35,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102344','NAD_1983_HARN_StatePlane_Utah_South_FIPS_4303',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102344','EPSG','2259',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102345','unnamed',NULL,NULL,'EPSG','1414','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-72.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999642857142857,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102345','NAD_1983_HARN_StatePlane_Vermont_FIPS_4400',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102345','EPSG','1414',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102346','unnamed',NULL,NULL,'EPSG','2260','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-78.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.2,'EPSG','9102','EPSG','8826','Easting at false origin',3500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102346','NAD_1983_HARN_StatePlane_Virginia_North_FIPS_4501',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102346','EPSG','2260',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102347','unnamed',NULL,NULL,'EPSG','2261','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-78.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.76666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',3500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102347','NAD_1983_HARN_StatePlane_Virginia_South_FIPS_4502',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102347','EPSG','2261',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102348','unnamed',NULL,NULL,'EPSG','2273','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.8333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102348','NAD_1983_HARN_StatePlane_Washington_North_FIPS_4601',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102348','EPSG','2273',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102349','unnamed',NULL,NULL,'EPSG','2274','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.33333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102349','NAD_1983_HARN_StatePlane_Washington_South_FIPS_4602',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102349','EPSG','2274',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102350','unnamed',NULL,NULL,'EPSG','2264','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-79.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.25,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102350','NAD_1983_HARN_StatePlane_West_Virginia_North_FIPS_4701',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102350','EPSG','2264',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102351','unnamed',NULL,NULL,'EPSG','2265','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.48333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102351','NAD_1983_HARN_StatePlane_West_Virginia_South_FIPS_4702',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102351','EPSG','2265',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102352','unnamed',NULL,NULL,'EPSG','2267','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102352','NAD_1983_HARN_StatePlane_Wisconsin_North_FIPS_4801',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102352','EPSG','2267',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102353','unnamed',NULL,NULL,'EPSG','2266','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.5,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102353','NAD_1983_HARN_StatePlane_Wisconsin_Central_FIPS_4802',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102353','EPSG','2266',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102354','unnamed',NULL,NULL,'EPSG','2268','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.06666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102354','NAD_1983_HARN_StatePlane_Wisconsin_South_FIPS_4803',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102354','EPSG','2268',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102355','unnamed',NULL,NULL,'EPSG','2269','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-105.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102355','NAD_1983_HARN_StatePlane_Wyoming_East_FIPS_4901',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102355','EPSG','2269',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102356','unnamed',NULL,NULL,'EPSG','2270','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-107.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102356','NAD_1983_HARN_StatePlane_Wyoming_East_Central_FIPS_4902',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102356','EPSG','2270',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102357','unnamed',NULL,NULL,'EPSG','2272','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-108.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102357','NAD_1983_HARN_StatePlane_Wyoming_West_Central_FIPS_4903',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102357','EPSG','2272',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102358','unnamed',NULL,NULL,'EPSG','2271','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-110.0833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102358','NAD_1983_HARN_StatePlane_Wyoming_West_FIPS_4904',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102358','EPSG','2271',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102359','unnamed',NULL,NULL,'ESRI','21','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',3500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102359','ETRS_1989_UTM_Zone_33N_7stellen',NULL,NULL,'EPSG','4400','EPSG','4258','ESRI','102359','ESRI','21',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102360','ETRS_1989_UTM_Zone_33N_8stellen',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','5648','EPSG','2862',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102361','unnamed',NULL,NULL,'EPSG','3634','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',17.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-66.43333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',18.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',18.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',200000.0,'EPSG','9001','EPSG','8827','Northing at false origin',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102361','NAD_1983_HARN_StatePlane_Puerto_Rico_Virgin_Islands_FIPS_5200',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102361','EPSG','3634',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102362','ETRS_1989_UTM_Zone_N32',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4648','EPSG','2861',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102363','NAD_1983_HARN_StatePlane_Kentucky_FIPS_1600',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','65163','EPSG','1386',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102364','NAD_1983_CORS96_UTM_Zone_59N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16059','EPSG','3372',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102365','NAD_1983_CORS96_UTM_Zone_60N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16060','EPSG','3373',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102366','unnamed',NULL,NULL,'EPSG','2156','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',57.0,'EPSG','9102','EPSG','8812','Longitude of projection centre',-133.6666666666667,'EPSG','9102','EPSG','8813','Azimuth of initial line',-36.86989764583333,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',-36.86989764583333,'EPSG','9102','EPSG','8815','Scale factor on initial line',0.9999,'EPSG','9201','EPSG','8806','False easting',5000000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',0); INSERT INTO "projected_crs" VALUES('ESRI','102366','NAD_1983_CORS96_StatePlane_Alaska_1_FIPS_5001',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102366','EPSG','2156',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102367','NAD_1983_CORS96_StatePlane_Alaska_2_FIPS_5002',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','15032','EPSG','2158',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102368','NAD_1983_CORS96_StatePlane_Alaska_3_FIPS_5003',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','15033','EPSG','2159',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102369','NAD_1983_CORS96_StatePlane_Alaska_4_FIPS_5004',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','15034','EPSG','2160',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102370','NAD_1983_CORS96_StatePlane_Alaska_5_FIPS_5005',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','15035','EPSG','2161',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102371','NAD_1983_CORS96_StatePlane_Alaska_6_FIPS_5006',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','15036','EPSG','2162',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102372','NAD_1983_CORS96_StatePlane_Alaska_7_FIPS_5007',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','15037','EPSG','2163',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102373','NAD_1983_CORS96_StatePlane_Alaska_8_FIPS_5008',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','15038','EPSG','2164',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102374','NAD_1983_CORS96_StatePlane_Alaska_9_FIPS_5009',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','15039','EPSG','2165',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102375','unnamed',NULL,NULL,'EPSG','2157','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',51.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-176.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',51.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',53.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102375','NAD_1983_CORS96_StatePlane_Alaska_10_FIPS_5010',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102375','EPSG','2157',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102376','NAD_1983_CORS96_StatePlane_Oregon_North_FIPS_3601',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102326','EPSG','2243',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102377','NAD_1983_CORS96_StatePlane_Oregon_South_FIPS_3602',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102327','EPSG','2244',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102378','unnamed',NULL,NULL,'EPSG','2243','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.0,'EPSG','9102','EPSG','8826','Easting at false origin',8202099.737532808,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102378','NAD_1983_CORS96_StatePlane_Oregon_North_FIPS_3601_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102378','EPSG','2243',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102379','unnamed',NULL,NULL,'EPSG','2244','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.0,'EPSG','9102','EPSG','8826','Easting at false origin',4921259.842519685,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102379','NAD_1983_CORS96_StatePlane_Oregon_South_FIPS_3602_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102379','EPSG','2244',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102380','unnamed',NULL,NULL,'EPSG','1406','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.75,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.5,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102380','NAD_1983_CORS96_Oregon_Statewide_Lambert',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102380','EPSG','1406',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102381','unnamed',NULL,NULL,'EPSG','1406','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.75,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.5,'EPSG','9102','EPSG','8826','Easting at false origin',1312335.958005249,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102381','NAD_1983_CORS96_Oregon_Statewide_Lambert_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102381','EPSG','1406',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102382','NAD_1983_2011_UTM_Zone_13N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16013','EPSG','3500',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102383','NAD_1983_2011_UTM_Zone_14N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16014','EPSG','3501',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102384','NAD_1983_2011_UTM_Zone_15N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16015','EPSG','3502',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102385','NAD_1983_2011_UTM_Zone_16N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16016','EPSG','3503',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102386','NAD_1983_2011_UTM_Zone_17N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16017','EPSG','3504',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102387','NAD_1983_2011_UTM_Zone_18N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16018','EPSG','3505',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102388','NAD_1983_2011_UTM_Zone_19N',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','16019','EPSG','3506',NULL,1); INSERT INTO "area" VALUES('ESRI','22','USA - North Dakota - Fargo','USA - North Dakota - Fargo',46.7,47.0,-96.93,-96.75,0); INSERT INTO "projected_crs" VALUES('ESRI','102389','NAD_1983_Fargo_Ground_Coordinate_System',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'ESRI','22','PROJCS["NAD_1983_Fargo_Ground_Coordinate_System",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],PARAMETER["False_Easting",2869344.93],PARAMETER["False_Northing",-16657672.6488],PARAMETER["Scale_Factor",1.000038773618],PARAMETER["Azimuth",2.63389226],PARAMETER["Longitude_Of_Center",-96.88886388888889],PARAMETER["Latitude_Of_Center",46.99163611111111],PARAMETER["XY_Plane_Rotation",0.0],UNIT["Foot_US",0.3048006096012192]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102390','NAD_1983_HARN_Fargo_Ground_Coordinate_System',NULL,NULL,NULL,NULL,'EPSG','4152',NULL,NULL,'ESRI','22','PROJCS["NAD_1983_HARN_Fargo_Ground_Coordinate_System",GEOGCS["GCS_North_American_1983_HARN",DATUM["D_North_American_1983_HARN",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],PARAMETER["False_Easting",2869344.93],PARAMETER["False_Northing",-16657672.6488],PARAMETER["Scale_Factor",1.000038773618],PARAMETER["Azimuth",2.63389226],PARAMETER["Longitude_Of_Center",-96.88886388888889],PARAMETER["Latitude_Of_Center",46.99163611111111],PARAMETER["XY_Plane_Rotation",0.0],UNIT["Foot_US",0.3048006096012192]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102391','NAD_1983_2011_Fargo_Ground_Coordinate_System',NULL,NULL,NULL,NULL,'EPSG','6318',NULL,NULL,'ESRI','22','PROJCS["NAD_1983_2011_Fargo_Ground_Coordinate_System",GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],PARAMETER["False_Easting",2869344.93],PARAMETER["False_Northing",-16657672.6488],PARAMETER["Scale_Factor",1.000038773618],PARAMETER["Azimuth",2.63389226],PARAMETER["Longitude_Of_Center",-96.88886388888889],PARAMETER["Latitude_Of_Center",46.99163611111111],PARAMETER["XY_Plane_Rotation",0.0],UNIT["Foot_US",0.3048006096012192]]',0); INSERT INTO "conversion" VALUES('ESRI','102392','unnamed',NULL,NULL,'EPSG','2160','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-150.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102392','NAD_1983_2011_StatePlane_Alaska_4_FIPS_5004_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102392','EPSG','2160',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102393','unnamed',NULL,NULL,'EPSG','2161','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-154.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102393','NAD_1983_2011_StatePlane_Alaska_5_FIPS_5005_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102393','EPSG','2161',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102394','unnamed',NULL,NULL,'EPSG','2162','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-158.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102394','NAD_1983_2011_StatePlane_Alaska_6_FIPS_5006_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102394','EPSG','2162',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102395','unnamed',NULL,NULL,'EPSG','2163','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-162.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102395','NAD_1983_2011_StatePlane_Alaska_7_FIPS_5007_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102395','EPSG','2163',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102396','unnamed',NULL,NULL,'EPSG','2164','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-166.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102396','NAD_1983_2011_StatePlane_Alaska_8_FIPS_5008_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102396','EPSG','2164',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102397','unnamed',NULL,NULL,'EPSG','2165','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-170.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102397','NAD_1983_2011_StatePlane_Alaska_9_FIPS_5009_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102397','EPSG','2165',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102398','unnamed',NULL,NULL,'EPSG','2157','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',51.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-176.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',51.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',53.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',3280833.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102398','NAD_1983_2011_StatePlane_Alaska_10_FIPS_5010_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102398','EPSG','2157',NULL,0); INSERT INTO "area" VALUES('ESRI','23','USA - Montana, North Dakota, and South Dakota','USA - Montana, North Dakota, and South Dakota',44.3,49.1,-116.1,-96.3,0); INSERT INTO "projected_crs" VALUES('ESRI','102399','NAD_1983_Albers_BLM_MT_ND_SD',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'ESRI','23','PROJCS["NAD_1983_Albers_BLM_MT_ND_SD",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-106.0],PARAMETER["Standard_Parallel_1",43.5],PARAMETER["Standard_Parallel_2",48.0],PARAMETER["Latitude_Of_Origin",42.5],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102400','unnamed',NULL,NULL,'ESRI','2','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',51.1666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-0.158333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999999,'EPSG','9201','EPSG','8806','False easting',78250.0,'EPSG','9001','EPSG','8807','False northing',-2800.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102400','London_Survey_Grid',NULL,NULL,'EPSG','4400','ESRI','104050','ESRI','102400','ESRI','2',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102401','NAD_1983_CORS96_UTM_Zone_1N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16001','EPSG','3374',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102402','NAD_1983_CORS96_UTM_Zone_2N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16002','EPSG','3375',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102403','NAD_1983_CORS96_UTM_Zone_3N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16003','EPSG','2133',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102404','NAD_1983_CORS96_UTM_Zone_4N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16004','EPSG','2133',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102405','NAD_1983_CORS96_UTM_Zone_5N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16005','EPSG','2135',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102406','NAD_1983_CORS96_UTM_Zone_6N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16006','EPSG','2136',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102407','NAD_1983_CORS96_UTM_Zone_7N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16007','EPSG','3494',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102408','NAD_1983_CORS96_UTM_Zone_8N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16008','EPSG','3495',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102409','NAD_1983_CORS96_UTM_Zone_9N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16009','EPSG','3496',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102410','NAD_1983_CORS96_UTM_Zone_10N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16010','EPSG','3497',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102411','NAD_1983_CORS96_UTM_Zone_11N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16011','EPSG','3498',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102412','NAD_1983_CORS96_UTM_Zone_12N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16012','EPSG','3499',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102413','NAD_1983_CORS96_UTM_Zone_13N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16013','EPSG','3500',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102414','NAD_1983_CORS96_UTM_Zone_14N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16014','EPSG','3501',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102415','NAD_1983_CORS96_UTM_Zone_15N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16015','EPSG','3502',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102416','NAD_1983_CORS96_UTM_Zone_16N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16016','EPSG','3503',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102417','NAD_1983_CORS96_UTM_Zone_17N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16017','EPSG','3504',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102418','NAD_1983_CORS96_UTM_Zone_18N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16018','EPSG','3505',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102419','NAD_1983_CORS96_UTM_Zone_19N',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','16019','EPSG','3506',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102420','unnamed',NULL,NULL,'EPSG','1120','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',65.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-19.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',64.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',65.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102420','ISN_2004_Lambert_2004',NULL,NULL,'EPSG','4400','EPSG','5324','ESRI','102420','EPSG','1120',NULL,1); INSERT INTO "area" VALUES('ESRI','24','ARC System - Zone 1','ARC System - Zone 1',0.0,32.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102421','WGS_1984_ARC_System_Zone_01',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','24','PROJCS["WGS_1984_ARC_System_Zone_01",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",22.94791772],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','25','ARC System - Zone 2','ARC System - Zone 2',32.0,48.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102422','WGS_1984_ARC_System_Zone_02',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','25','PROJCS["WGS_1984_ARC_System_Zone_02",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",41.12682127],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','26','ARC System - Zone 3','ARC System - Zone 3',48.0,56.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102423','WGS_1984_ARC_System_Zone_03',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','26','PROJCS["WGS_1984_ARC_System_Zone_03",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",52.28859923],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','27','ARC System - Zone 4','ARC System - Zone 4',56.0,64.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102424','WGS_1984_ARC_System_Zone_04',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','27','PROJCS["WGS_1984_ARC_System_Zone_04",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",60.32378942],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','28','ARC System - Zone 5','ARC System - Zone 5',64.0,68.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102425','WGS_1984_ARC_System_Zone_05',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','28','PROJCS["WGS_1984_ARC_System_Zone_05",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",66.09421768],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','29','ARC System - Zone 6','ARC System - Zone 6',68.0,72.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102426','WGS_1984_ARC_System_Zone_06',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','29','PROJCS["WGS_1984_ARC_System_Zone_06",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",70.10896259],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','30','ARC System - Zone 7','ARC System - Zone 7',72.0,76.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102427','WGS_1984_ARC_System_Zone_07',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','30','PROJCS["WGS_1984_ARC_System_Zone_07",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",74.13230145],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','31','ARC System - Zone 8','ARC System - Zone 8',76.0,80.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102428','WGS_1984_ARC_System_Zone_08',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','31','PROJCS["WGS_1984_ARC_System_Zone_08",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",78.1728375],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','32','ARC System - Zone 9','ARC System - Zone 9',80.0,90.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102429','WGS_1984_ARC_System_Zone_09',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','32','PROJCS["WGS_1984_ARC_System_Zone_09",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",90.0],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','33','ARC System - Zone 10','ARC System - Zone 10',-32.0,0.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102430','WGS_1984_ARC_System_Zone_10',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','33','PROJCS["WGS_1984_ARC_System_Zone_10",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",-22.94791772],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','34','ARC System - Zone 11','ARC System - Zone 11',-48.0,-32.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102431','WGS_1984_ARC_System_Zone_11',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','34','PROJCS["WGS_1984_ARC_System_Zone_11",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",-41.12682127],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','35','ARC System - Zone 12','ARC System - Zone 12',-56.0,-48.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102432','WGS_1984_ARC_System_Zone_12',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','35','PROJCS["WGS_1984_ARC_System_Zone_12",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",-52.28859923],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','36','ARC System - Zone 13','ARC System - Zone 13',-64.0,-56.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102433','WGS_1984_ARC_System_Zone_13',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','36','PROJCS["WGS_1984_ARC_System_Zone_13",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",-60.32378942],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','37','ARC System - Zone 14','ARC System - Zone 14',-68.0,-64.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102434','WGS_1984_ARC_System_Zone_14',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','37','PROJCS["WGS_1984_ARC_System_Zone_14",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",-66.09421768],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','38','ARC System - Zone 15','ARC System - Zone 15',-72.0,-68.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102435','WGS_1984_ARC_System_Zone_15',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','38','PROJCS["WGS_1984_ARC_System_Zone_15",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",-70.10896259],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','39','ARC System - Zone 16','ARC System - Zone 16',-76.0,-72.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102436','WGS_1984_ARC_System_Zone_16',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','39','PROJCS["WGS_1984_ARC_System_Zone_16",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",-74.13230145],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','40','ARC System - Zone 17','ARC System - Zone 17',-80.0,-76.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102437','WGS_1984_ARC_System_Zone_17',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','40','PROJCS["WGS_1984_ARC_System_Zone_17",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Equidistant_Cylindrical"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",-78.1728375],UNIT["Meter",1.0]]',0); INSERT INTO "area" VALUES('ESRI','41','ARC System - Zone 18','ARC System - Zone 18',-90.0,-80.0,-180.0,180.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102438','WGS_1984_ARC_System_Zone_18',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'ESRI','41','PROJCS["WGS_1984_ARC_System_Zone_18",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Latitude_Of_Origin",-90.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102439','unnamed',NULL,NULL,'EPSG','2575','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-27.0,'EPSG','9102','EPSG','8822','Longitude of false origin',132.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-18.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-36.0,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102439','WGS_1984_Australian_Centre_for_Remote_Sensing_Lambert',NULL,NULL,'EPSG','4400','EPSG','4326','ESRI','102439','EPSG','2575',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102440','LKS_1992_Latvia_TM_0',NULL,NULL,'EPSG','4400','EPSG','4661','EPSG','19930','EPSG','1139',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102441','TWD_1967_TM_Taiwan',NULL,NULL,'EPSG','4400','EPSG','3821','EPSG','3820','EPSG','3982',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102442','TWD_1967_TM_Penghu',NULL,NULL,'EPSG','4400','EPSG','3821','EPSG','3818','EPSG','3591',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102443','TWD_1997_TM_Taiwan',NULL,NULL,'EPSG','4400','EPSG','3824','EPSG','3820','EPSG','3562',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102444','TWD_1997_TM_Penghu',NULL,NULL,'EPSG','4400','EPSG','3824','EPSG','3818','EPSG','3563',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102445','unnamed',NULL,NULL,'EPSG','2156','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',57.0,'EPSG','9102','EPSG','8812','Longitude of projection centre',-133.6666666666667,'EPSG','9102','EPSG','8813','Azimuth of initial line',-36.86989764583333,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',-36.86989764583333,'EPSG','9102','EPSG','8815','Scale factor on initial line',0.9999,'EPSG','9201','EPSG','8806','False easting',16404166.66666666,'EPSG','9003','EPSG','8807','False northing',-16404166.66666666,'EPSG','9003',0); INSERT INTO "projected_crs" VALUES('ESRI','102445','NAD_1983_2011_StatePlane_Alaska_1_FIPS_5001_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102445','EPSG','2156',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102446','unnamed',NULL,NULL,'EPSG','2158','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-142.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102446','NAD_1983_2011_StatePlane_Alaska_2_FIPS_5002_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102446','EPSG','2158',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102447','unnamed',NULL,NULL,'EPSG','2159','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',54.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-146.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102447','NAD_1983_2011_StatePlane_Alaska_3_FIPS_5003_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102447','EPSG','2159',NULL,0); INSERT INTO "area" VALUES('ESRI','42','Macao','Macao',22.1,22.22,113.52,113.6,0); INSERT INTO "conversion" VALUES('ESRI','102448','unnamed',NULL,NULL,'ESRI','42','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',22.21239722222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',113.5364694444444,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',20000.0,'EPSG','9001','EPSG','8807','False northing',20000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102448','Macao_2008_Macao_Grid',NULL,NULL,'EPSG','4400','EPSG','8431','ESRI','102448','ESRI','42',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102449','NAD_1983_MA11_UTM_Zone_55N',NULL,NULL,'EPSG','4400','EPSG','6325','EPSG','16055','EPSG','4167',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102450','unnamed',NULL,NULL,'ESRI','12','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',19999.32,'EPSG','9001','EPSG','8807','False northing',-202977.79,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102450','NGO_1948_Oslo_Baerum_Kommune',NULL,NULL,'EPSG','4400','EPSG','4817','ESRI','102450','ESRI','12',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102451','unnamed',NULL,NULL,'ESRI','13','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-4.666666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',-200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102451','NGO_1948_Oslo_Bergenhalvoen',NULL,NULL,'EPSG','4400','EPSG','4817','ESRI','102451','ESRI','13',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102452','unnamed',NULL,NULL,'ESRI','14','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',58.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',-212979.18,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102452','NGO_1948_Oslo_Oslo_Kommune',NULL,NULL,'EPSG','4400','EPSG','4817','ESRI','102452','ESRI','14',NULL,0); INSERT INTO "area" VALUES('ESRI','43','Philippines - West of 120~E, N hemisphere','Philippines - West of 120~E, N hemisphere',3.0,22.0,114.0,120.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102453','Luzon_1911_UTM_Zone_50N',NULL,NULL,'EPSG','4400','EPSG','4253','EPSG','16050','ESRI','43',NULL,0); INSERT INTO "area" VALUES('ESRI','44','Philippines - 120~E to 126~E, N hemisphere','Philippines - 120~E to 126~E, N hemisphere',3.0,24.0,120.0,126.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102454','Luzon_1911_UTM_Zone_51N',NULL,NULL,'EPSG','4400','EPSG','4253','EPSG','16051','ESRI','44',NULL,0); INSERT INTO "area" VALUES('ESRI','45','Philippines - East of 126~E, N hemisphere','Philippines - East of 126~E, N hemisphere',4.0,20.0,126.0,132.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102455','Luzon_1911_UTM_Zone_52N',NULL,NULL,'EPSG','4400','EPSG','4253','EPSG','16052','ESRI','45',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102456','PRS_1992_UTM_Zone_50N',NULL,NULL,'EPSG','4400','EPSG','4683','EPSG','16050','ESRI','43',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102457','PRS_1992_UTM_Zone_51N',NULL,NULL,'EPSG','4400','EPSG','4683','EPSG','16051','ESRI','44',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102458','PRS_1992_UTM_Zone_52N',NULL,NULL,'EPSG','4400','EPSG','4683','EPSG','16052','ESRI','45',NULL,0); INSERT INTO "area" VALUES('ESRI','46','Idaho - Ada County','Idaho - Ada County',43.0,43.85,-116.6,-115.94,0); INSERT INTO "conversion" VALUES('ESRI','102459','unnamed',NULL,NULL,'ESRI','46','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00011328,'EPSG','9201','EPSG','8806','False easting',2625138.996430666,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102459','NAD_1983_Idaho-Ada_County',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102459','ESRI','46',NULL,0); INSERT INTO "area" VALUES('ESRI','47','HJAIA - Hartsfield-Jackson Atlanta Intl Airport','HJAIA - Hartsfield-Jackson Atlanta Intl Airport',33.590879,33.68427937,-84.502368,-84.351204,0); INSERT INTO "projected_crs" VALUES('ESRI','102460','HJAIA_AirportGrid_2Mar10',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'ESRI','47','PROJCS["HJAIA_AirportGrid_2Mar10",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Local"],PARAMETER["False_Easting",11233.741],PARAMETER["False_Northing",3076.34],PARAMETER["Scale_Factor",1.000047],PARAMETER["Azimuth",-0.01935],PARAMETER["Longitude_Of_Center",-84.4306922136],PARAMETER["Latitude_Of_Center",33.6340844042],UNIT["Foot_US",0.3048006096012192]]',0); INSERT INTO "conversion" VALUES('ESRI','102461','unnamed',NULL,NULL,'EPSG','1546','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',18.83333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-155.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102461','NAD_1983_HARN_StatePlane_Hawaii_1_FIPS_5101_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','102461','EPSG','1546',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102462','unnamed',NULL,NULL,'EPSG','1547','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',20.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-156.6666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102462','NAD_1983_HARN_StatePlane_Hawaii_2_FIPS_5102_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','102462','EPSG','1547',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102463','unnamed',NULL,NULL,'EPSG','1548','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.16666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-158.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102463','NAD_1983_HARN_StatePlane_Hawaii_3_FIPS_5103_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','102463','EPSG','1548',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102464','unnamed',NULL,NULL,'EPSG','1549','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.83333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-159.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102464','NAD_1983_HARN_StatePlane_Hawaii_4_FIPS_5104_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','102464','EPSG','1549',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102465','unnamed',NULL,NULL,'EPSG','1550','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',21.66666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-160.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102465','NAD_1983_HARN_StatePlane_Hawaii_5_FIPS_5105_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','102465','EPSG','1550',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102466','unnamed',NULL,NULL,'EPSG','2214','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.1,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.63333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',2624666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',328083.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102466','NAD_1983_HARN_StatePlane_Minnesota_North_FIPS_2201_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','102466','EPSG','2214',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102467','unnamed',NULL,NULL,'EPSG','2213','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.61666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.05,'EPSG','9102','EPSG','8826','Easting at false origin',2624666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',328083.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102467','NAD_1983_HARN_StatePlane_Minnesota_Central_FIPS_2202_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','102467','EPSG','2213',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102468','unnamed',NULL,NULL,'EPSG','2215','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.21666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',2624666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',328083.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102468','NAD_1983_HARN_StatePlane_Minnesota_South_FIPS_2203_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','102468','EPSG','2215',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102469','unnamed',NULL,NULL,'EPSG','1393','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',32.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9998335,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',1300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102469','NAD_1983_HARN_Mississippi_TM',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','102469','EPSG','1393',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102470','unnamed',NULL,NULL,'EPSG','1454','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',-1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102470','Cape_Lo15',NULL,NULL,'EPSG','4400','EPSG','4222','ESRI','102470','EPSG','1454',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102471','unnamed',NULL,NULL,'EPSG','1455','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',17.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',-1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102471','Cape_Lo17',NULL,NULL,'EPSG','4400','EPSG','4222','ESRI','102471','EPSG','1455',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102472','unnamed',NULL,NULL,'EPSG','1456','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',-1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102472','Cape_Lo19',NULL,NULL,'EPSG','4400','EPSG','4222','ESRI','102472','EPSG','1456',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102473','unnamed',NULL,NULL,'EPSG','1457','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',-1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102473','Cape_Lo21',NULL,NULL,'EPSG','4400','EPSG','4222','ESRI','102473','EPSG','1457',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102474','unnamed',NULL,NULL,'EPSG','1458','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',23.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',-1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102474','Cape_Lo23',NULL,NULL,'EPSG','4400','EPSG','4222','ESRI','102474','EPSG','1458',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102475','unnamed',NULL,NULL,'EPSG','1459','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',25.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',-1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102475','Cape_Lo25',NULL,NULL,'EPSG','4400','EPSG','4222','ESRI','102475','EPSG','1459',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102476','unnamed',NULL,NULL,'EPSG','1460','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',-1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102476','Cape_Lo27',NULL,NULL,'EPSG','4400','EPSG','4222','ESRI','102476','EPSG','1460',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102477','unnamed',NULL,NULL,'EPSG','1461','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',29.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',-1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102477','Cape_Lo29',NULL,NULL,'EPSG','4400','EPSG','4222','ESRI','102477','EPSG','1461',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102478','unnamed',NULL,NULL,'EPSG','1462','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',31.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',-1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102478','Cape_Lo31',NULL,NULL,'EPSG','4400','EPSG','4222','ESRI','102478','EPSG','1462',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102479','unnamed',NULL,NULL,'EPSG','1463','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',-1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102479','Cape_Lo33',NULL,NULL,'EPSG','4400','EPSG','4222','ESRI','102479','EPSG','1463',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102480','Hartebeesthoek94_Lo15',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102470','EPSG','1454',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102481','Hartebeesthoek94_Lo17',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102471','EPSG','1455',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102482','Hartebeesthoek94_Lo19',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102472','EPSG','1456',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102483','Hartebeesthoek94_Lo21',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102473','EPSG','1457',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102484','Hartebeesthoek94_Lo23',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102474','EPSG','1458',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102485','Hartebeesthoek94_Lo25',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102475','EPSG','1459',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102486','Hartebeesthoek94_Lo27',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102476','EPSG','1460',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102487','Hartebeesthoek94_Lo29',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102477','EPSG','1461',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102488','Hartebeesthoek94_Lo31',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102478','EPSG','1462',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102489','Hartebeesthoek94_Lo33',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102479','EPSG','1463',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102490','GDBD2009_GEORSO',NULL,NULL,NULL,NULL,'EPSG','5246',NULL,NULL,'EPSG','1055','PROJCS["GDBD2009_GEORSO",GEOGCS["GCS_GDBD2009",DATUM["D_GDBD2009",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Scale_Factor",0.99984],PARAMETER["Azimuth",53.31580995],PARAMETER["Longitude_Of_Center",115.0],PARAMETER["Latitude_Of_Center",4.0],PARAMETER["XY_Plane_Rotation",53.13010235415598],UNIT["Meter",1.0]]',1); INSERT INTO "conversion" VALUES('ESRI','102491','unnamed',NULL,NULL,'EPSG','1026','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',2.7,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999625544,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102491','Nord_Algerie_Ancienne_Degree',NULL,NULL,'EPSG','4400','EPSG','4304','ESRI','102491','EPSG','1026',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102492','unnamed',NULL,NULL,'EPSG','1026','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',33.3,'EPSG','9102','EPSG','8802','Longitude of natural origin',2.7,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999625769,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102492','Sud_Algerie_Ancienne_Degree',NULL,NULL,'EPSG','4400','EPSG','4304','ESRI','102492','EPSG','1026',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102493','NAD_1983_PA11_UTM_Zone_4N',NULL,NULL,'EPSG','4400','EPSG','6322','EPSG','16004','EPSG','3488',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102494','NAD_1983_PA11_UTM_Zone_5N',NULL,NULL,'EPSG','4400','EPSG','6322','EPSG','16005','EPSG','3491',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102495','NAD_1983_MA11_Guam_Map_Grid',NULL,NULL,'EPSG','4400','EPSG','6325','ESRI','102201','EPSG','3255',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102496','NAD_1983_PA11_UTM_Zone_2S',NULL,NULL,'EPSG','4400','EPSG','6322','EPSG','16102','EPSG','3110',NULL,1); INSERT INTO "area" VALUES('ESRI','48','GOES-16 East Full disk','GOES-16 East Full disk',-81.3282,81.3282,-156.2995,6.2995,0); INSERT INTO "projected_crs" VALUES('ESRI','102497','GOES-16_East_ABI_Fixed_Grid_ITRF2000_incorrect_GCS',NULL,NULL,NULL,NULL,'EPSG','8997',NULL,NULL,'ESRI','48','PROJCS["GOES-16_East_ABI_Fixed_Grid_ITRF2000_incorrect_GCS",GEOGCS["GCS_ITRF_2000",DATUM["D_ITRF_2000",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Geostationary_Satellite"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",-75.0],PARAMETER["Height",35786023.0],PARAMETER["Option",0.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102498','GOES-16_East_ABI_Fixed_Grid_ITRF2008',NULL,NULL,NULL,NULL,'EPSG','8999',NULL,NULL,'ESRI','48','PROJCS["GOES-16_East_ABI_Fixed_Grid_ITRF2008",GEOGCS["GCS_ITRF_2008",DATUM["D_ITRF_2008",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Geostationary_Satellite"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",-75.0],PARAMETER["Height",35786023.0],PARAMETER["Option",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102499','unnamed',NULL,NULL,'EPSG','1347','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',90.0,'EPSG','9102','EPSG','8822','Longitude of false origin',4.367486666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',49.8333339,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',51.16666723333333,'EPSG','9102','EPSG','8826','Easting at false origin',150000.01256,'EPSG','9001','EPSG','8827','Northing at false origin',5400088.4378,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102499','Belge_Lambert_1972_bad_FE_FN',NULL,NULL,'EPSG','4400','EPSG','4313','ESRI','102499','EPSG','1347',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102500','unnamed',NULL,NULL,'EPSG','4180','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-117.8333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00016,'EPSG','9201','EPSG','8806','False easting',131233.5958005249,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102500','OCRS_Baker_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102500','EPSG','4180',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102501','unnamed',NULL,NULL,'EPSG','4182','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-119.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0002,'EPSG','9201','EPSG','8806','False easting',393700.7874015748,'EPSG','9002','EPSG','8807','False northing',196850.3937007874,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102501','OCRS_Bend-Burns_NAD_1983_CORS96_LCC_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102501','EPSG','4182',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102502','unnamed',NULL,NULL,'EPSG','4192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-121.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0002,'EPSG','9201','EPSG','8806','False easting',262467.1916010499,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102502','OCRS_Bend-Klamath_Falls_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102502','EPSG','4192',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102503','unnamed',NULL,NULL,'EPSG','4195','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-121.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00012,'EPSG','9201','EPSG','8806','False easting',262467.1916010499,'EPSG','9002','EPSG','8807','False northing',426509.186351706,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102503','OCRS_Bend-Redmond-Prineville_NAD_1983_CORS96_LCC_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102503','EPSG','4195',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102504','unnamed',NULL,NULL,'EPSG','4199','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00007,'EPSG','9201','EPSG','8806','False easting',131233.5958005249,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102504','OCRS_Canyonville-Grants_Pass_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102504','EPSG','4199',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102505','unnamed',NULL,NULL,'EPSG','4200','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-120.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000008,'EPSG','9201','EPSG','8806','False easting',492125.9842519685,'EPSG','9002','EPSG','8807','False northing',98425.1968503937,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102505','OCRS_Columbia_River_East_NAD_1983_CORS96_LCC_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102505','EPSG','4200',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102506','unnamed',NULL,NULL,'EPSG','4202','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',45.91666666666666,'EPSG','9102','EPSG','8812','Longitude of projection centre',-123.0,'EPSG','9102','EPSG','8813','Azimuth of initial line',-65.0,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',-65.0,'EPSG','9102','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8806','False easting',22965879.26509186,'EPSG','9002','EPSG','8807','False northing',-9842519.685039369,'EPSG','9002',1); INSERT INTO "projected_crs" VALUES('ESRI','102506','OCRS_Columbia_River_West_NAD_1983_CORS96_OM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102506','EPSG','4202',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102507','unnamed',NULL,NULL,'EPSG','4203','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000023,'EPSG','9201','EPSG','8806','False easting',164041.9947506562,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102507','OCRS_Cottage_Grove-Canyonville_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102507','EPSG','4203',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102508','unnamed',NULL,NULL,'EPSG','4204','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-121.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00011,'EPSG','9201','EPSG','8806','False easting',262467.1916010499,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102508','OCRS_Dufur-Madras_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102508','EPSG','4204',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102509','unnamed',NULL,NULL,'EPSG','4197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000015,'EPSG','9201','EPSG','8806','False easting',164041.9947506562,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102509','OCRS_Eugene_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102509','EPSG','4197',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102510','unnamed',NULL,NULL,'EPSG','4198','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000043,'EPSG','9201','EPSG','8806','False easting',164041.9947506562,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102510','OCRS_Grants_Pass-Ashland_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102510','EPSG','4198',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102511','unnamed',NULL,NULL,'EPSG','4201','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-122.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00005,'EPSG','9201','EPSG','8806','False easting',32808.39895013123,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102511','OCRS_Gresham-Warm_Springs_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102511','EPSG','4201',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102512','unnamed',NULL,NULL,'EPSG','4206','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-118.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00013,'EPSG','9201','EPSG','8806','False easting',131233.5958005249,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102512','OCRS_La_Grande_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102512','EPSG','4206',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102513','unnamed',NULL,NULL,'EPSG','4207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.25,'EPSG','9102','EPSG','8802','Longitude of natural origin',-117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0001,'EPSG','9201','EPSG','8806','False easting',262467.1916010499,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102513','OCRS_Ontario_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102513','EPSG','4207',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102514','unnamed',NULL,NULL,'EPSG','4208','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',44.75,'EPSG','9102','EPSG','8812','Longitude of projection centre',-124.05,'EPSG','9102','EPSG','8813','Azimuth of initial line',5.0,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',5.0,'EPSG','9102','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8806','False easting',-984251.968503937,'EPSG','9002','EPSG','8807','False northing',-15091863.51706037,'EPSG','9002',1); INSERT INTO "projected_crs" VALUES('ESRI','102514','OCRS_Oregon_Coast_NAD_1983_CORS96_OM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102514','EPSG','4208',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102515','unnamed',NULL,NULL,'EPSG','4210','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.08333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-118.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000175,'EPSG','9201','EPSG','8806','False easting',98425.1968503937,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102515','OCRS_Pendleton-La_Grande_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102515','EPSG','4210',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102516','unnamed',NULL,NULL,'EPSG','4209','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.25,'EPSG','9102','EPSG','8802','Longitude of natural origin',-119.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000045,'EPSG','9201','EPSG','8806','False easting',196850.3937007874,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102516','OCRS_Pendleton_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102516','EPSG','4209',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102517','unnamed',NULL,NULL,'EPSG','4211','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-122.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000002,'EPSG','9201','EPSG','8806','False easting',328083.9895013123,'EPSG','9002','EPSG','8807','False northing',164041.9947506562,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102517','OCRS_Portland_NAD_1983_CORS96_LCC_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102517','EPSG','4211',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102518','unnamed',NULL,NULL,'EPSG','4212','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.33333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.0833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00001,'EPSG','9201','EPSG','8806','False easting',164041.9947506562,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102518','OCRS_Salem_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102518','EPSG','4212',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102519','unnamed',NULL,NULL,'EPSG','4213','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.08333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-122.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000155,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102519','OCRS_Santiam_Pass_NAD_1983_CORS96_TM_Feet_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','102519','EPSG','4213',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102520','NAD_1983_PA11_StatePlane_Hawaii_1_FIPS_5101',NULL,NULL,'EPSG','4400','EPSG','6322','ESRI','102261','EPSG','1546',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102521','NAD_1983_PA11_StatePlane_Hawaii_2_FIPS_5102',NULL,NULL,'EPSG','4400','EPSG','6322','ESRI','102262','EPSG','1547',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102522','NAD_1983_PA11_StatePlane_Hawaii_3_FIPS_5103',NULL,NULL,'EPSG','4400','EPSG','6322','ESRI','102263','EPSG','1548',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102523','NAD_1983_PA11_StatePlane_Hawaii_4_FIPS_5104',NULL,NULL,'EPSG','4400','EPSG','6322','ESRI','102264','EPSG','1549',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102524','NAD_1983_PA11_StatePlane_Hawaii_5_FIPS_5105',NULL,NULL,'EPSG','4400','EPSG','6322','ESRI','102265','EPSG','1550',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102525','NAD_1983_PA11_StatePlane_Hawaii_1_FIPS_5101_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6322','ESRI','102461','EPSG','1546',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102526','NAD_1983_PA11_StatePlane_Hawaii_2_FIPS_5102_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6322','ESRI','102462','EPSG','1547',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102527','NAD_1983_PA11_StatePlane_Hawaii_3_FIPS_5103_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6322','ESRI','102463','EPSG','1548',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102528','NAD_1983_PA11_StatePlane_Hawaii_4_FIPS_5104_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6322','ESRI','102464','EPSG','1549',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102529','NAD_1983_PA11_StatePlane_Hawaii_5_FIPS_5105_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6322','ESRI','102465','EPSG','1550',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102530','unnamed',NULL,NULL,'EPSG','4180','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-117.8333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00016,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102530','OCRS_Baker_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102530','EPSG','4180',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102531','unnamed',NULL,NULL,'EPSG','4182','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-119.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0002,'EPSG','9201','EPSG','8806','False easting',120000.0,'EPSG','9001','EPSG','8807','False northing',60000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102531','OCRS_Bend-Burns_NAD_1983_CORS96_LCC_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102531','EPSG','4182',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102532','unnamed',NULL,NULL,'EPSG','4192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-121.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0002,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102532','OCRS_Bend-Klamath_Falls_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102532','EPSG','4192',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102533','unnamed',NULL,NULL,'EPSG','4195','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-121.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00012,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',130000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102533','OCRS_Bend-Redmond-Prineville_NAD_1983_CORS96_LCC_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102533','EPSG','4195',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102534','unnamed',NULL,NULL,'EPSG','4199','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00007,'EPSG','9201','EPSG','8806','False easting',40000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102534','OCRS_Canyonville-Grants_Pass_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102534','EPSG','4199',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102535','unnamed',NULL,NULL,'EPSG','4200','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-120.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000008,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',30000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102535','OCRS_Columbia_River_East_NAD_1983_CORS96_LCC_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102535','EPSG','4200',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102536','unnamed',NULL,NULL,'EPSG','4202','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',45.91666666666666,'EPSG','9102','EPSG','8812','Longitude of projection centre',-123.0,'EPSG','9102','EPSG','8813','Azimuth of initial line',-65.0,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',-65.0,'EPSG','9102','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8806','False easting',7000000.0,'EPSG','9001','EPSG','8807','False northing',-3000000.0,'EPSG','9001',1); INSERT INTO "projected_crs" VALUES('ESRI','102536','OCRS_Columbia_River_West_NAD_1983_CORS96_OM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102536','EPSG','4202',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102537','unnamed',NULL,NULL,'EPSG','4203','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000023,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102537','OCRS_Cottage_Grove-Canyonville_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102537','EPSG','4203',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102538','unnamed',NULL,NULL,'EPSG','4204','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-121.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00011,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102538','OCRS_Dufur-Madras_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102538','EPSG','4204',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102539','unnamed',NULL,NULL,'EPSG','4197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000015,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102539','OCRS_Eugene_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102539','EPSG','4197',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102540','unnamed',NULL,NULL,'EPSG','4198','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000043,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102540','OCRS_Grants_Pass-Ashland_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102540','EPSG','4198',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102541','unnamed',NULL,NULL,'EPSG','4201','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-122.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00005,'EPSG','9201','EPSG','8806','False easting',10000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102541','OCRS_Gresham-Warm_Springs_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102541','EPSG','4201',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102542','OCRS_La_Grande_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','EPSG','6765','EPSG','4206',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102543','unnamed',NULL,NULL,'EPSG','4207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.25,'EPSG','9102','EPSG','8802','Longitude of natural origin',-117.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0001,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102543','OCRS_Ontario_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102543','EPSG','4207',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102544','unnamed',NULL,NULL,'EPSG','4208','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',44.75,'EPSG','9102','EPSG','8812','Longitude of projection centre',-124.05,'EPSG','9102','EPSG','8813','Azimuth of initial line',5.0,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',5.0,'EPSG','9102','EPSG','8815','Scale factor on initial line',1.0,'EPSG','9201','EPSG','8806','False easting',-300000.0,'EPSG','9001','EPSG','8807','False northing',-4600000.0,'EPSG','9001',1); INSERT INTO "projected_crs" VALUES('ESRI','102544','OCRS_Oregon_Coast_NAD_1983_CORS96_OM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102544','EPSG','4208',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102545','unnamed',NULL,NULL,'EPSG','4210','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.08333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-118.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000175,'EPSG','9201','EPSG','8806','False easting',30000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102545','OCRS_Pendleton-La_Grande_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102545','EPSG','4210',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102546','unnamed',NULL,NULL,'EPSG','4209','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.25,'EPSG','9102','EPSG','8802','Longitude of natural origin',-119.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000045,'EPSG','9201','EPSG','8806','False easting',60000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102546','OCRS_Pendleton_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102546','EPSG','4209',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102547','unnamed',NULL,NULL,'EPSG','4211','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-122.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000002,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102547','OCRS_Portland_NAD_1983_CORS96_LCC_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102547','EPSG','4211',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102548','unnamed',NULL,NULL,'EPSG','4212','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.33333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-123.0833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00001,'EPSG','9201','EPSG','8806','False easting',50000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102548','OCRS_Salem_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102548','EPSG','4212',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102549','unnamed',NULL,NULL,'EPSG','4213','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.08333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-122.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000155,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102549','OCRS_Santiam_Pass_NAD_1983_CORS96_TM_Meters',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','102549','EPSG','4213',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102550','unnamed',NULL,NULL,'EPSG','1524','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',9500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102550','ED_1950_Turkey_9',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','102550','EPSG','1524',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102551','unnamed',NULL,NULL,'EPSG','1525','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',30.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',10500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102551','ED_1950_Turkey_10',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','102551','EPSG','1525',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102552','unnamed',NULL,NULL,'EPSG','1526','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',11500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102552','ED_1950_Turkey_11',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','102552','EPSG','1526',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102553','unnamed',NULL,NULL,'EPSG','1527','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',36.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',12500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102553','ED_1950_Turkey_12',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','102553','EPSG','1527',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102554','unnamed',NULL,NULL,'EPSG','1528','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',13500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102554','ED_1950_Turkey_13',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','102554','EPSG','1528',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102555','unnamed',NULL,NULL,'EPSG','1529','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',42.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',14500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102555','ED_1950_Turkey_14',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','102555','EPSG','1529',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102556','unnamed',NULL,NULL,'EPSG','1530','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',15500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102556','ED_1950_Turkey_15',NULL,NULL,'EPSG','4400','EPSG','4230','ESRI','102556','EPSG','1530',NULL,0); INSERT INTO "area" VALUES('ESRI','49','Kyrgyz Republic - 67~01''E to 70~01''E','Kyrgyz Republic - 67~01''E to 70~01''E',39.4,40.3,67.0166667,70.0166667,0); INSERT INTO "conversion" VALUES('ESRI','102557','unnamed',NULL,NULL,'ESRI','49','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',68.51666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',1300000.0,'EPSG','9001','EPSG','8807','False northing',14743.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102557','Kyrg-06_TM_Zone_1',NULL,NULL,'EPSG','4400','ESRI','104009','ESRI','102557','ESRI','49',NULL,1); INSERT INTO "area" VALUES('ESRI','50','Kyrgyz Republic - 70~01''E to 73~01''E','Kyrgyz Republic - 70~01''E to 73~01''E',39.1333333,42.9,70.0166667,73.0166667,0); INSERT INTO "conversion" VALUES('ESRI','102558','unnamed',NULL,NULL,'ESRI','50','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',71.51666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',2300000.0,'EPSG','9001','EPSG','8807','False northing',14743.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102558','Kyrg-06_TM_Zone_2',NULL,NULL,'EPSG','4400','ESRI','104009','ESRI','102558','ESRI','50',NULL,1); INSERT INTO "area" VALUES('ESRI','51','Kyrgyz Republic - 73~01''E to 76~01''E','Kyrgyz Republic - 73~01''E to 76~01''E',39.25,43.3333333,73.0166667,76.0166667,0); INSERT INTO "conversion" VALUES('ESRI','102559','unnamed',NULL,NULL,'ESRI','51','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',74.51666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',3300000.0,'EPSG','9001','EPSG','8807','False northing',14743.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102559','Kyrg-06_TM_Zone_3',NULL,NULL,'EPSG','4400','ESRI','104009','ESRI','102559','ESRI','51',NULL,1); INSERT INTO "area" VALUES('ESRI','52','Kyrgyz Republic - 76~01''E to 79~01''E','Kyrgyz Republic - 76~01''E to 79~01''E',40.1666667,43.0,76.0166667,79.0166667,0); INSERT INTO "conversion" VALUES('ESRI','102560','unnamed',NULL,NULL,'ESRI','52','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',77.51666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',4300000.0,'EPSG','9001','EPSG','8807','False northing',14743.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102560','Kyrg-06_TM_Zone_4',NULL,NULL,'EPSG','4400','ESRI','104009','ESRI','102560','ESRI','52',NULL,1); INSERT INTO "area" VALUES('ESRI','53','Kyrgyz Republic - 79~01''E to 82~01''E','Kyrgyz Republic - 79~01''E to 82~01''E',41.5,43.0,79.0166667,82.0166667,0); INSERT INTO "conversion" VALUES('ESRI','102561','unnamed',NULL,NULL,'ESRI','53','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',80.51666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',5300000.0,'EPSG','9001','EPSG','8807','False northing',14743.5,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102561','Kyrg-06_TM_Zone_5',NULL,NULL,'EPSG','4400','ESRI','104009','ESRI','102561','ESRI','53',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102562','unnamed',NULL,NULL,'EPSG','1456','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',19.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102562','Hartebeesthoek94_Lo19_(E-N)',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102562','EPSG','1456',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102563','unnamed',NULL,NULL,'EPSG','1457','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102563','Hartebeesthoek94_Lo21_(E-N)',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102563','EPSG','1457',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102564','unnamed',NULL,NULL,'EPSG','1458','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',23.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102564','Hartebeesthoek94_Lo23_(E-N)',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102564','EPSG','1458',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102565','unnamed',NULL,NULL,'EPSG','1459','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',25.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102565','Hartebeesthoek94_Lo25_(E-N)',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102565','EPSG','1459',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102566','unnamed',NULL,NULL,'EPSG','1460','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102566','Hartebeesthoek94_Lo27_(E-N)',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102566','EPSG','1460',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102567','unnamed',NULL,NULL,'EPSG','1461','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',29.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102567','Hartebeesthoek94_Lo29_(E-N)',NULL,NULL,'EPSG','4400','EPSG','4148','ESRI','102567','EPSG','1461',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102568','Hartebeesthoek94_Lo31_(E-N)',NULL,NULL,'EPSG','4400','EPSG','4148','EPSG','18042','EPSG','1462',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102569','New_Beijing_3_Degree_Gauss_Kruger_CM_132E',NULL,NULL,'EPSG','4400','EPSG','4555','EPSG','16174','EPSG','2730',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102570','WGS_1984_Complex_UTM_Zone_20N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1911','PROJCS["WGS_1984_Complex_UTM_Zone_20N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-63.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102571','WGS_1984_Complex_UTM_Zone_21N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1913','PROJCS["WGS_1984_Complex_UTM_Zone_21N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-57.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102572','WGS_1984_Complex_UTM_Zone_22N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1915','PROJCS["WGS_1984_Complex_UTM_Zone_22N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-51.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102573','WGS_1984_Complex_UTM_Zone_23N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1917','PROJCS["WGS_1984_Complex_UTM_Zone_23N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-45.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102574','WGS_1984_Complex_UTM_Zone_24N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1919','PROJCS["WGS_1984_Complex_UTM_Zone_24N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-39.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102575','WGS_1984_Complex_UTM_Zone_25N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1921','PROJCS["WGS_1984_Complex_UTM_Zone_25N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-33.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102576','WGS_1984_Complex_UTM_Zone_26N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1923','PROJCS["WGS_1984_Complex_UTM_Zone_26N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-27.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102577','WGS_1984_Complex_UTM_Zone_27N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1925','PROJCS["WGS_1984_Complex_UTM_Zone_27N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-21.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102578','WGS_1984_Complex_UTM_Zone_28N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1927','PROJCS["WGS_1984_Complex_UTM_Zone_28N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-15.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102579','WGS_1984_Complex_UTM_Zone_29N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1929','PROJCS["WGS_1984_Complex_UTM_Zone_29N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-9.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102580','WGS_1984_Complex_UTM_Zone_30N',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1931','PROJCS["WGS_1984_Complex_UTM_Zone_30N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator_Complex"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-3.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',0); INSERT INTO "conversion" VALUES('ESRI','102581','unnamed',NULL,NULL,'EPSG','1731','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',49.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',2.337229166666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999877341,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',1200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102581','NTF_France_I_degrees',NULL,NULL,'EPSG','4400','EPSG','4275','ESRI','102581','EPSG','1731',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102582','unnamed',NULL,NULL,'EPSG','1734','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.8,'EPSG','9102','EPSG','8802','Longitude of natural origin',2.337229166666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99987742,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',2200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102582','NTF_France_II_degrees',NULL,NULL,'EPSG','4400','EPSG','4275','ESRI','102582','EPSG','1734',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102583','unnamed',NULL,NULL,'EPSG','1733','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.1,'EPSG','9102','EPSG','8802','Longitude of natural origin',2.337229166666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999877499,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',3200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102583','NTF_France_III_degrees',NULL,NULL,'EPSG','4400','EPSG','4275','ESRI','102583','EPSG','1733',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102584','unnamed',NULL,NULL,'EPSG','1327','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.165,'EPSG','9102','EPSG','8802','Longitude of natural origin',2.337229166666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99994471,'EPSG','9201','EPSG','8806','False easting',234.358,'EPSG','9001','EPSG','8807','False northing',4185861.369,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102584','NTF_France_IV_degrees',NULL,NULL,'EPSG','4400','EPSG','4275','ESRI','102584','EPSG','1327',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102585','NTF_Lambert_Zone_I',NULL,NULL,'EPSG','4400','EPSG','4275','ESRI','102581','EPSG','1731',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102586','NTF_Lambert_Zone_II',NULL,NULL,'EPSG','4400','EPSG','4275','ESRI','102582','EPSG','1734',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102587','NTF_Lambert_Zone_III',NULL,NULL,'EPSG','4400','EPSG','4275','ESRI','102583','EPSG','1733',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102588','NTF_Lambert_Zone_IV',NULL,NULL,'EPSG','4400','EPSG','4275','ESRI','102584','EPSG','1327',NULL,0); INSERT INTO "area" VALUES('ESRI','54','USA - Contiguous US','USA - Contiguous US',20.0,50.0,-125.0,-65.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102589','Panhandle_Energy_Albers',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'ESRI','54','PROJCS["Panhandle_Energy_Albers",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-86.0],PARAMETER["Standard_Parallel_1",31.0],PARAMETER["Standard_Parallel_2",41.0],PARAMETER["Latitude_Of_Origin",25.0],UNIT["Foot_US",0.3048006096012192]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102590','Tananarive_1925_Laborde_Grid',NULL,NULL,NULL,NULL,'EPSG','4297',NULL,NULL,'EPSG','3273','PROJCS["Tananarive_1925_Laborde_Grid",GEOGCS["GCS_Tananarive_1925",DATUM["D_Tananarive_1925",SPHEROID["International_1924",6378388.0,297.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Laborde_Oblique_Mercator"],PARAMETER["False_Easting",400000.0],PARAMETER["False_Northing",800000.0],PARAMETER["Scale_Factor",0.9995],PARAMETER["Azimuth",18.9],PARAMETER["Longitude_Of_Center",46.43722916666667],PARAMETER["Latitude_Of_Center",-18.9],UNIT["Meter",1.0]]',1); INSERT INTO "conversion" VALUES('ESRI','102591','unnamed',NULL,NULL,'EPSG','1026','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',2.7,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999625544,'EPSG','9201','EPSG','8806','False easting',500135.0,'EPSG','9001','EPSG','8807','False northing',300090.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102591','Nord_Algerie_Degree',NULL,NULL,'EPSG','4400','ESRI','104305','ESRI','102591','EPSG','1026',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102592','unnamed',NULL,NULL,'EPSG','1026','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',33.3,'EPSG','9102','EPSG','8802','Longitude of natural origin',2.7,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999625769,'EPSG','9201','EPSG','8806','False easting',500135.0,'EPSG','9001','EPSG','8807','False northing',300090.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102592','Sud_Algerie_Degree',NULL,NULL,'EPSG','4400','ESRI','104305','ESRI','102592','EPSG','1026',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102593','JGD_2011_UTM_Zone_51N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16051','EPSG','3959',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102594','JGD_2011_UTM_Zone_52N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16052','EPSG','3960',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102595','JGD_2011_UTM_Zone_53N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16053','EPSG','3961',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102596','JGD_2011_UTM_Zone_54N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16054','EPSG','3962',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102597','JGD_2011_UTM_Zone_55N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16055','EPSG','3963',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102598','JGD_2011_UTM_Zone_56N',NULL,NULL,'EPSG','4400','EPSG','6668','EPSG','16056','EPSG','1983',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102599','WGS_1984_California_Teale_Albers_FtUS',NULL,NULL,NULL,NULL,'EPSG','4326',NULL,NULL,'EPSG','1375','PROJCS["WGS_1984_California_Teale_Albers_FtUS",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",-4000000.0],PARAMETER["Central_Meridian",-120.0],PARAMETER["Standard_Parallel_1",34.0],PARAMETER["Standard_Parallel_2",40.5],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Foot_US",0.3048006096012192]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102600','NAD_1983_California_Teale_Albers_FtUS',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1375','PROJCS["NAD_1983_California_Teale_Albers_FtUS",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",-4000000.0],PARAMETER["Central_Meridian",-120.0],PARAMETER["Standard_Parallel_1",34.0],PARAMETER["Standard_Parallel_2",40.5],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Foot_US",0.3048006096012192]]',0); INSERT INTO "projected_crs" VALUES('ESRI','102601','NAD_1983_Texas_Centric_Mapping_System_Albers',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1412','PROJCS["NAD_1983_Texas_Centric_Mapping_System_Albers",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",1500000.0],PARAMETER["False_Northing",6000000.0],PARAMETER["Central_Meridian",-100.0],PARAMETER["Standard_Parallel_1",27.5],PARAMETER["Standard_Parallel_2",35.0],PARAMETER["Latitude_Of_Origin",18.0],UNIT["Meter",1.0]]',1); INSERT INTO "conversion" VALUES('ESRI','102602','unnamed',NULL,NULL,'EPSG','1412','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',18.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',27.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',35.0,'EPSG','9102','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102602','NAD_1983_Texas_Centric_Mapping_System_Lambert',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102602','EPSG','1412',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102603','unnamed',NULL,NULL,'EPSG','1412','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.16666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',27.41666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.91666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102603','NAD_1983_Texas_Statewide_Mapping_System',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102603','EPSG','1412',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102604','unnamed',NULL,NULL,'EPSG','1380','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',0.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-83.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',31.41666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.28333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',0.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102604','NAD_1983_Georgia_Statewide_Lambert',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102604','EPSG','1380',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102605','unnamed',NULL,NULL,'EPSG','1381','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-114.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',2500000.0,'EPSG','9001','EPSG','8807','False northing',1200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102605','NAD_1983_Idaho_TM',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102605','EPSG','1381',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102606','NAD_1983_Maine_2000_East_Zone',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102208','EPSG','2960',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102607','NAD_1983_Maine_2000_Central_Zone',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102209','EPSG','2959',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102608','NAD_1983_Maine_2000_West_Zone',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102210','EPSG','2958',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102609','NAD_1983_Mississippi_TM',NULL,NULL,'EPSG','4400','EPSG','4269','ESRI','102469','EPSG','1393',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102610','unnamed',NULL,NULL,'EPSG','1854','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',33.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',129.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102610','JGD_2011_Japan_Zone_1',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102610','EPSG','1854',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102611','unnamed',NULL,NULL,'EPSG','1855','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',33.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',131.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102611','JGD_2011_Japan_Zone_2',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102611','EPSG','1855',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102612','unnamed',NULL,NULL,'EPSG','1856','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',132.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102612','JGD_2011_Japan_Zone_3',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102612','EPSG','1856',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102613','unnamed',NULL,NULL,'EPSG','1857','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',33.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',133.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102613','JGD_2011_Japan_Zone_4',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102613','EPSG','1857',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102614','unnamed',NULL,NULL,'EPSG','1858','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',134.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102614','JGD_2011_Japan_Zone_5',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102614','EPSG','1858',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102615','unnamed',NULL,NULL,'EPSG','1859','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',136.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102615','JGD_2011_Japan_Zone_6',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102615','EPSG','1859',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102616','unnamed',NULL,NULL,'EPSG','1860','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',137.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102616','JGD_2011_Japan_Zone_7',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102616','EPSG','1860',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102617','unnamed',NULL,NULL,'EPSG','1861','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',138.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102617','JGD_2011_Japan_Zone_8',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102617','EPSG','1861',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102618','unnamed',NULL,NULL,'EPSG','1862','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',139.8333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102618','JGD_2011_Japan_Zone_9',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102618','EPSG','1862',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102619','unnamed',NULL,NULL,'EPSG','1863','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',140.8333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102619','JGD_2011_Japan_Zone_10',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102619','EPSG','1863',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102620','unnamed',NULL,NULL,'EPSG','1864','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',140.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102620','JGD_2011_Japan_Zone_11',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102620','EPSG','1864',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102621','unnamed',NULL,NULL,'EPSG','1865','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',142.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102621','JGD_2011_Japan_Zone_12',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102621','EPSG','1865',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102622','unnamed',NULL,NULL,'EPSG','1866','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',144.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102622','JGD_2011_Japan_Zone_13',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102622','EPSG','1866',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102623','unnamed',NULL,NULL,'EPSG','1867','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',142.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102623','JGD_2011_Japan_Zone_14',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102623','EPSG','1867',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102624','unnamed',NULL,NULL,'EPSG','1868','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',127.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102624','JGD_2011_Japan_Zone_15',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102624','EPSG','1868',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102625','unnamed',NULL,NULL,'EPSG','1869','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',124.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102625','JGD_2011_Japan_Zone_16',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102625','EPSG','1869',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102626','unnamed',NULL,NULL,'EPSG','1870','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',131.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102626','JGD_2011_Japan_Zone_17',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102626','EPSG','1870',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102627','unnamed',NULL,NULL,'EPSG','1871','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',20.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',136.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102627','JGD_2011_Japan_Zone_18',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102627','EPSG','1871',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102628','unnamed',NULL,NULL,'EPSG','1872','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',26.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',154.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102628','JGD_2011_Japan_Zone_19',NULL,NULL,'EPSG','4400','EPSG','6668','ESRI','102628','EPSG','1872',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102629','unnamed',NULL,NULL,'EPSG','2154','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-85.83333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99996,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102629','NAD_1983_StatePlane_Alabama_East_FIPS_0101_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102629','EPSG','2154',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102630','unnamed',NULL,NULL,'EPSG','2155','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',1968500.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102630','NAD_1983_StatePlane_Alabama_West_FIPS_0102_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102630','EPSG','2155',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102631','NAD_1983_StatePlane_Alaska_1_FIPS_5001_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102445','EPSG','2156',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102632','NAD_1983_StatePlane_Alaska_2_FIPS_5002_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102446','EPSG','2158',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102633','NAD_1983_StatePlane_Alaska_3_FIPS_5003_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102447','EPSG','2159',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102634','NAD_1983_StatePlane_Alaska_4_FIPS_5004_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102392','EPSG','2160',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102635','NAD_1983_StatePlane_Alaska_5_FIPS_5005_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102393','EPSG','2161',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102636','NAD_1983_StatePlane_Alaska_6_FIPS_5006_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102394','EPSG','2162',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102637','NAD_1983_StatePlane_Alaska_7_FIPS_5007_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102395','EPSG','2163',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102638','NAD_1983_StatePlane_Alaska_8_FIPS_5008_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102396','EPSG','2164',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102639','NAD_1983_StatePlane_Alaska_9_FIPS_5009_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102397','EPSG','2165',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102640','NAD_1983_StatePlane_Alaska_10_FIPS_5010_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102398','EPSG','2157',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102641','unnamed',NULL,NULL,'EPSG','2175','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102641','NAD_1983_StatePlane_California_I_FIPS_0401_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102641','EPSG','2175',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102642','unnamed',NULL,NULL,'EPSG','2176','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102642','NAD_1983_StatePlane_California_II_FIPS_0402_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102642','EPSG','2176',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102643','unnamed',NULL,NULL,'EPSG','2177','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.06666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102643','NAD_1983_StatePlane_California_III_FIPS_0403_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102643','EPSG','2177',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102644','unnamed',NULL,NULL,'EPSG','2178','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-119.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.25,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102644','NAD_1983_StatePlane_California_IV_FIPS_0404_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102644','EPSG','2178',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102645','unnamed',NULL,NULL,'EPSG','2182','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-118.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',35.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102645','NAD_1983_StatePlane_California_V_FIPS_0405_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102645','EPSG','2182',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102646','unnamed',NULL,NULL,'EPSG','2180','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-116.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',33.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102646','NAD_1983_StatePlane_California_VI_FIPS_0406_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102646','EPSG','2180',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102647','NAD_1983_NSRS2007_StatePlane_Puerto_Rico_Virgin_Isls_FIPS_5200',NULL,NULL,'EPSG','4400','EPSG','4759','ESRI','102361','EPSG','3634',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102648','unnamed',NULL,NULL,'EPSG','2167','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-110.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',699998.6,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102648','NAD_1983_StatePlane_Arizona_East_FIPS_0201_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102648','EPSG','2167',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102649','unnamed',NULL,NULL,'EPSG','2166','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.9166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',699998.6,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102649','NAD_1983_StatePlane_Arizona_Central_FIPS_0202_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102649','EPSG','2166',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102650','unnamed',NULL,NULL,'EPSG','2168','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-113.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',699998.6,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102650','NAD_1983_StatePlane_Arizona_West_FIPS_0203_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102650','EPSG','2168',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102651','unnamed',NULL,NULL,'EPSG','2169','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.23333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1312333.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102651','NAD_1983_StatePlane_Arkansas_North_FIPS_0301_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102651','EPSG','2169',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102652','unnamed',NULL,NULL,'EPSG','2170','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',33.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1312333.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',1312333.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102652','NAD_1983_StatePlane_Arkansas_South_FIPS_0302_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102652','EPSG','2170',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102653','unnamed',NULL,NULL,'EPSG','2184','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',3000000.000316083,'EPSG','9003','EPSG','8827','Northing at false origin',999999.999996,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102653','NAD_1983_StatePlane_Colorado_North_FIPS_0501_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102653','EPSG','2184',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102654','unnamed',NULL,NULL,'EPSG','2183','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.45,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.75,'EPSG','9102','EPSG','8826','Easting at false origin',3000000.000316083,'EPSG','9003','EPSG','8827','Northing at false origin',999999.999996,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102654','NAD_1983_StatePlane_Colorado_Central_FIPS_0502_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102654','EPSG','2183',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102655','unnamed',NULL,NULL,'EPSG','2185','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.23333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',3000000.000316083,'EPSG','9003','EPSG','8827','Northing at false origin',999999.999996,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102655','NAD_1983_StatePlane_Colorado_South_FIPS_0503_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102655','EPSG','2185',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102656','unnamed',NULL,NULL,'EPSG','1377','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-72.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.2,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.86666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',999999.999996,'EPSG','9003','EPSG','8827','Northing at false origin',499999.999998,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102656','NAD_1983_StatePlane_Connecticut_FIPS_0600_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102656','EPSG','1377',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102657','unnamed',NULL,NULL,'EPSG','1378','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-75.41666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102657','NAD_1983_StatePlane_Delaware_FIPS_0700_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102657','EPSG','1378',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102658','unnamed',NULL,NULL,'EPSG','2186','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102658','NAD_1983_StatePlane_Florida_East_FIPS_0901_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102658','EPSG','2186',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102659','unnamed',NULL,NULL,'EPSG','2188','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-82.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102659','NAD_1983_StatePlane_Florida_West_FIPS_0902_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102659','EPSG','2188',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102660','unnamed',NULL,NULL,'EPSG','2187','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',29.58333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.75,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102660','NAD_1983_StatePlane_Florida_North_FIPS_0903_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102660','EPSG','2187',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102661','NAD_1983_StatePlane_Hawaii_1_FIPS_5101_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102461','EPSG','1546',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102662','NAD_1983_StatePlane_Hawaii_2_FIPS_5102_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102462','EPSG','1547',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102663','NAD_1983_StatePlane_Hawaii_3_FIPS_5103_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102463','EPSG','1548',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102664','NAD_1983_StatePlane_Hawaii_4_FIPS_5104_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102464','EPSG','1549',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102665','NAD_1983_StatePlane_Hawaii_5_FIPS_5105_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102465','EPSG','1550',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102666','unnamed',NULL,NULL,'EPSG','2189','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-82.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102666','NAD_1983_StatePlane_Georgia_East_FIPS_1001_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102666','EPSG','2189',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102667','unnamed',NULL,NULL,'EPSG','2190','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-84.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',2296583.333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102667','NAD_1983_StatePlane_Georgia_West_FIPS_1002_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102667','EPSG','2190',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102668','unnamed',NULL,NULL,'EPSG','2192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-112.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999473684210526,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102668','NAD_1983_StatePlane_Idaho_East_FIPS_1101_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102668','EPSG','2192',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102669','unnamed',NULL,NULL,'EPSG','2191','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-114.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999473684210526,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102669','NAD_1983_StatePlane_Idaho_Central_FIPS_1102_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102669','EPSG','2191',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102670','unnamed',NULL,NULL,'EPSG','2193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',2624666.666666666,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102670','NAD_1983_StatePlane_Idaho_West_FIPS_1103_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102670','EPSG','2193',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102671','unnamed',NULL,NULL,'EPSG','2194','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.33333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999975,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102671','NAD_1983_StatePlane_Illinois_East_FIPS_1201_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102671','EPSG','2194',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102672','unnamed',NULL,NULL,'EPSG','2195','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',2296583.333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102672','NAD_1983_StatePlane_Illinois_West_FIPS_1202_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102672','EPSG','2195',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102673','unnamed',NULL,NULL,'EPSG','2196','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-85.66666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',328083.3333333333,'EPSG','9003','EPSG','8807','False northing',820208.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102673','NAD_1983_StatePlane_Indiana_East_FIPS_1301_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102673','EPSG','2196',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102674','unnamed',NULL,NULL,'EPSG','2197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.08333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',2952750.0,'EPSG','9003','EPSG','8807','False northing',820208.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102674','NAD_1983_StatePlane_Indiana_West_FIPS_1302_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102674','EPSG','2197',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102675','unnamed',NULL,NULL,'EPSG','2198','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.06666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.26666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',4921250.0,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102675','NAD_1983_StatePlane_Iowa_North_FIPS_1401_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102675','EPSG','2198',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102676','unnamed',NULL,NULL,'EPSG','2199','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.61666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102676','NAD_1983_StatePlane_Iowa_South_FIPS_1402_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102676','EPSG','2199',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102677','unnamed',NULL,NULL,'EPSG','2200','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1312333.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102677','NAD_1983_StatePlane_Kansas_North_FIPS_1501_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102677','EPSG','2200',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102678','unnamed',NULL,NULL,'EPSG','2201','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.26666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.56666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1312333.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',1312333.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102678','NAD_1983_StatePlane_Kansas_South_FIPS_1502_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102678','EPSG','2201',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102679','unnamed',NULL,NULL,'EPSG','2202','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.96666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102679','NAD_1983_StatePlane_Kentucky_North_FIPS_1601_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102679','EPSG','2202',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102680','unnamed',NULL,NULL,'EPSG','2203','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-85.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.93333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102680','NAD_1983_StatePlane_Kentucky_South_FIPS_1602_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102680','EPSG','2203',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102681','unnamed',NULL,NULL,'EPSG','2204','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',30.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',31.16666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',32.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',3280833.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102681','NAD_1983_StatePlane_Louisiana_North_FIPS_1701_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102681','EPSG','2204',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102682','unnamed',NULL,NULL,'EPSG','2529','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',28.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.33333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',29.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.7,'EPSG','9102','EPSG','8826','Easting at false origin',3280833.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102682','NAD_1983_StatePlane_Louisiana_South_FIPS_1702_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102682','EPSG','2529',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102683','unnamed',NULL,NULL,'EPSG','2206','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-68.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102683','NAD_1983_StatePlane_Maine_East_FIPS_1801_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102683','EPSG','2206',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102684','unnamed',NULL,NULL,'EPSG','2207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-70.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',2952750.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102684','NAD_1983_StatePlane_Maine_West_FIPS_1802_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102684','EPSG','2207',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102685','unnamed',NULL,NULL,'EPSG','1389','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.45,'EPSG','9102','EPSG','8826','Easting at false origin',1312333.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102685','NAD_1983_StatePlane_Maryland_FIPS_1900_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102685','EPSG','1389',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102686','unnamed',NULL,NULL,'EPSG','2209','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-71.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',42.68333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',656166.6666666665,'EPSG','9003','EPSG','8827','Northing at false origin',2460625.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102686','NAD_1983_StatePlane_Massachusetts_Mainland_FIPS_2001_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102686','EPSG','2209',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102687','unnamed',NULL,NULL,'EPSG','2208','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-70.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.28333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102687','NAD_1983_StatePlane_Massachusetts_Island_FIPS_2002_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102687','EPSG','2208',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102688','unnamed',NULL,NULL,'EPSG','1723','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.78333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.48333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',26246666.66666666,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102688','NAD_1983_StatePlane_Michigan_North_FIPS_2111_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102688','EPSG','1723',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102689','unnamed',NULL,NULL,'EPSG','1724','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.31666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.7,'EPSG','9102','EPSG','8826','Easting at false origin',19685000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102689','NAD_1983_StatePlane_Michigan_Central_FIPS_2112_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102689','EPSG','1724',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102690','unnamed',NULL,NULL,'EPSG','1725','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.1,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',13123333.33333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102690','NAD_1983_StatePlane_Michigan_South_FIPS_2113_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102690','EPSG','1725',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102691','NAD_1983_StatePlane_Minnesota_North_FIPS_2201_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102466','EPSG','2214',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102692','NAD_1983_StatePlane_Minnesota_Central_FIPS_2202_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102467','EPSG','2213',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102693','NAD_1983_StatePlane_Minnesota_South_FIPS_2203_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102468','EPSG','2215',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102694','unnamed',NULL,NULL,'EPSG','2216','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.83333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102694','NAD_1983_StatePlane_Mississippi_East_FIPS_2301_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102694','EPSG','2216',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102695','unnamed',NULL,NULL,'EPSG','2217','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.33333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',2296583.333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102695','NAD_1983_StatePlane_Mississippi_West_FIPS_2302_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102695','EPSG','2217',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102696','unnamed',NULL,NULL,'EPSG','2219','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',35.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',820208.3333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102696','NAD_1983_StatePlane_Missouri_East_FIPS_2401_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102696','EPSG','2219',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102697','unnamed',NULL,NULL,'EPSG','2218','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',35.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102697','NAD_1983_StatePlane_Missouri_Central_FIPS_2402_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102697','EPSG','2218',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102698','unnamed',NULL,NULL,'EPSG','2220','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.16666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-94.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',2788708.333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102698','NAD_1983_StatePlane_Missouri_West_FIPS_2403_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102698','EPSG','2220',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102699','unnamed',NULL,NULL,'EPSG','2179','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-118.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',35.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',408000.0,'EPSG','9003','EPSG','8827','Northing at false origin',-266000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102699','NAD_1927_StatePlane_California_V_Ventura',NULL,NULL,'ESRI','Foot_US','EPSG','4267','ESRI','102699','EPSG','2179',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102700','unnamed',NULL,NULL,'EPSG','1395','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.25,'EPSG','9102','EPSG','8822','Longitude of false origin',-109.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.0,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102700','NAD_1983_StatePlane_Montana_FIPS_2500_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102700','EPSG','1395',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102701','NAD_1983_PACP00_UTM_Zone_4N',NULL,NULL,'EPSG','4400','ESRI','104259','EPSG','16004','EPSG','3488',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102702','NAD_1983_PACP00_UTM_Zone_5N',NULL,NULL,'EPSG','4400','ESRI','104259','EPSG','16005','EPSG','3491',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102703','NAD_1983_PACP00_UTM_Zone_2S',NULL,NULL,'EPSG','4400','ESRI','104259','EPSG','16102','EPSG','3110',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102704','unnamed',NULL,NULL,'EPSG','1396','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.0,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102704','NAD_1983_StatePlane_Nebraska_FIPS_2600_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102704','EPSG','1396',NULL,1); INSERT INTO "area" VALUES('ESRI','55','US - Nebraska - Lancaster County','US - Nebraska - Lancaster County',40.5,41.07,-96.93,-96.43,0); INSERT INTO "conversion" VALUES('ESRI','102705','unnamed',NULL,NULL,'ESRI','55','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.25,'EPSG','9102','EPSG','8802','Longitude of natural origin',-96.68805555555556,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000054615,'EPSG','9201','EPSG','8806','False easting',164041.6666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102705','NAD_1983_Nebraska_Lancaster_County_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102705','ESRI','55',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102706','unnamed',NULL,NULL,'EPSG','1356','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.73409694444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',35.21208055555556,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',170251.555,'EPSG','9001','EPSG','8807','False northing',126867.909,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102706','Palestine_1923_Palestine_Grid_TM',NULL,NULL,'EPSG','4400','EPSG','4281','ESRI','102706','EPSG','1356',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102707','unnamed',NULL,NULL,'EPSG','2224','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.5833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',26246666.66666666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102707','NAD_1983_StatePlane_Nevada_East_FIPS_2701_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102707','EPSG','2224',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102708','unnamed',NULL,NULL,'EPSG','2223','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-116.6666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',19685000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102708','NAD_1983_StatePlane_Nevada_Central_FIPS_2702_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102708','EPSG','2223',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102709','unnamed',NULL,NULL,'EPSG','2225','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-118.5833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',2624666.666666666,'EPSG','9003','EPSG','8807','False northing',13123333.33333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102709','NAD_1983_StatePlane_Nevada_West_FIPS_2703_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102709','EPSG','2225',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102710','unnamed',NULL,NULL,'EPSG','1398','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-71.66666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102710','NAD_1983_StatePlane_New_Hampshire_FIPS_2800_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102710','EPSG','1398',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102711','unnamed',NULL,NULL,'EPSG','1399','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-74.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',492125.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102711','NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102711','EPSG','1399',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102712','unnamed',NULL,NULL,'EPSG','2228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-104.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999090909090909,'EPSG','9201','EPSG','8806','False easting',541337.5,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102712','NAD_1983_StatePlane_New_Mexico_East_FIPS_3001_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102712','EPSG','2228',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102713','unnamed',NULL,NULL,'EPSG','2231','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-106.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102713','NAD_1983_StatePlane_New_Mexico_Central_FIPS_3002_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102713','EPSG','2231',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102714','unnamed',NULL,NULL,'EPSG','2232','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-107.8333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999166666666667,'EPSG','9201','EPSG','8806','False easting',2723091.666666666,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102714','NAD_1983_StatePlane_New_Mexico_West_FIPS_3003_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102714','EPSG','2232',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102715','unnamed',NULL,NULL,'EPSG','2234','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-74.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',492125.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102715','NAD_1983_StatePlane_New_York_East_FIPS_3101_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102715','EPSG','2234',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102716','unnamed',NULL,NULL,'EPSG','2233','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-76.58333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',820208.3333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102716','NAD_1983_StatePlane_New_York_Central_FIPS_3102_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102716','EPSG','2233',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102717','unnamed',NULL,NULL,'EPSG','2236','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-78.58333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',1148291.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102717','NAD_1983_StatePlane_New_York_West_FIPS_3103_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102717','EPSG','2236',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102718','unnamed',NULL,NULL,'EPSG','2235','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-74.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.66666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.03333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',984250.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102718','NAD_1983_StatePlane_New_York_Long_Island_FIPS_3104_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102718','EPSG','2235',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102719','unnamed',NULL,NULL,'EPSG','1402','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.75,'EPSG','9102','EPSG','8822','Longitude of false origin',-79.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.002616666,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102719','NAD_1983_StatePlane_North_Carolina_FIPS_3200_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102719','EPSG','1402',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102720','unnamed',NULL,NULL,'EPSG','2237','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.43333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102720','NAD_1983_StatePlane_North_Dakota_North_FIPS_3301_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102720','EPSG','2237',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102721','unnamed',NULL,NULL,'EPSG','2238','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102721','NAD_1983_StatePlane_North_Dakota_South_FIPS_3302_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102721','EPSG','2238',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102722','unnamed',NULL,NULL,'EPSG','2239','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-82.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.43333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.7,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102722','NAD_1983_StatePlane_Ohio_North_FIPS_3401_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102722','EPSG','2239',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102723','unnamed',NULL,NULL,'EPSG','2240','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-82.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.03333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102723','NAD_1983_StatePlane_Ohio_South_FIPS_3402_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102723','EPSG','2240',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102724','unnamed',NULL,NULL,'EPSG','2241','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',35.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102724','NAD_1983_StatePlane_Oklahoma_North_FIPS_3501_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102724','EPSG','2241',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102725','unnamed',NULL,NULL,'EPSG','2242','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',33.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',35.23333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102725','NAD_1983_StatePlane_Oklahoma_South_FIPS_3502_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102725','EPSG','2242',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102726','unnamed',NULL,NULL,'EPSG','2243','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.0,'EPSG','9102','EPSG','8826','Easting at false origin',8202083.333333332,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102726','NAD_1983_StatePlane_Oregon_North_FIPS_3601_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102726','EPSG','2243',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102727','unnamed',NULL,NULL,'EPSG','2244','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.0,'EPSG','9102','EPSG','8826','Easting at false origin',4921250.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102727','NAD_1983_StatePlane_Oregon_South_FIPS_3602_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102727','EPSG','2244',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102728','unnamed',NULL,NULL,'EPSG','2245','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.88333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.95,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102728','NAD_1983_StatePlane_Pennsylvania_North_FIPS_3701_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102728','EPSG','2245',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102729','unnamed',NULL,NULL,'EPSG','2246','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102729','NAD_1983_StatePlane_Pennsylvania_South_FIPS_3702_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102729','EPSG','2246',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102730','unnamed',NULL,NULL,'EPSG','1408','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.08333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-71.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999375,'EPSG','9201','EPSG','8806','False easting',328083.3333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102730','NAD_1983_StatePlane_Rhode_Island_FIPS_3800_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102730','EPSG','1408',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102733','unnamed',NULL,NULL,'EPSG','1409','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',1999996.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102733','NAD_1983_StatePlane_South_Carolina_FIPS_3900_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102733','EPSG','1409',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102734','unnamed',NULL,NULL,'EPSG','2249','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.41666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.68333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102734','NAD_1983_StatePlane_South_Dakota_North_FIPS_4001_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102734','EPSG','2249',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102735','unnamed',NULL,NULL,'EPSG','2250','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.3333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.4,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102735','NAD_1983_StatePlane_South_Dakota_South_FIPS_4002_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102735','EPSG','2250',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102736','unnamed',NULL,NULL,'EPSG','1411','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-86.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',35.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.41666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102736','NAD_1983_StatePlane_Tennessee_FIPS_4100_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102736','EPSG','1411',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102737','unnamed',NULL,NULL,'EPSG','2253','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-101.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.65,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.18333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',656166.6666666665,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102737','NAD_1983_StatePlane_Texas_North_FIPS_4201_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102737','EPSG','2253',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102738','unnamed',NULL,NULL,'EPSG','2254','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.13333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',33.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',6561666.666666666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102738','NAD_1983_StatePlane_Texas_North_Central_FIPS_4202_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102738','EPSG','2254',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102739','unnamed',NULL,NULL,'EPSG','2252','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.3333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',30.11666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',31.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',2296583.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',9842500.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102739','NAD_1983_StatePlane_Texas_Central_FIPS_4203_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102739','EPSG','2252',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102740','unnamed',NULL,NULL,'EPSG','2527','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',27.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-99.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',28.38333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.28333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',13123333.33333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102740','NAD_1983_StatePlane_Texas_South_Central_FIPS_4204_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102740','EPSG','2527',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102741','unnamed',NULL,NULL,'EPSG','2528','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',26.16666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',27.83333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',984250.0,'EPSG','9003','EPSG','8827','Northing at false origin',16404166.66666666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102741','NAD_1983_StatePlane_Texas_South_FIPS_4205_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102741','EPSG','2528',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102742','unnamed',NULL,NULL,'EPSG','2258','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102742','NAD_1983_StatePlane_Utah_North_FIPS_4301_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102742','EPSG','2258',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102743','unnamed',NULL,NULL,'EPSG','2257','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.01666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.65,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',6561666.666666666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102743','NAD_1983_StatePlane_Utah_Central_FIPS_4302_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102743','EPSG','2257',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102744','unnamed',NULL,NULL,'EPSG','2259','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.21666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.35,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',9842500.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102744','NAD_1983_StatePlane_Utah_South_FIPS_4303_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102744','EPSG','2259',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102745','unnamed',NULL,NULL,'EPSG','1414','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-72.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999642857142857,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102745','NAD_1983_StatePlane_Vermont_FIPS_4400_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102745','EPSG','1414',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102746','unnamed',NULL,NULL,'EPSG','2260','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-78.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.2,'EPSG','9102','EPSG','8826','Easting at false origin',11482916.66666666,'EPSG','9003','EPSG','8827','Northing at false origin',6561666.666666666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102746','NAD_1983_StatePlane_Virginia_North_FIPS_4501_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102746','EPSG','2260',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102747','unnamed',NULL,NULL,'EPSG','2261','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-78.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.76666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',11482916.66666666,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102747','NAD_1983_StatePlane_Virginia_South_FIPS_4502_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102747','EPSG','2261',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102748','unnamed',NULL,NULL,'EPSG','2273','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.8333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102748','NAD_1983_StatePlane_Washington_North_FIPS_4601_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102748','EPSG','2273',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102749','unnamed',NULL,NULL,'EPSG','2274','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.33333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102749','NAD_1983_StatePlane_Washington_South_FIPS_4602_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102749','EPSG','2274',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102750','unnamed',NULL,NULL,'EPSG','2264','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-79.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.25,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102750','NAD_1983_StatePlane_West_Virginia_North_FIPS_4701_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102750','EPSG','2264',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102751','unnamed',NULL,NULL,'EPSG','2265','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.48333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102751','NAD_1983_StatePlane_West_Virginia_South_FIPS_4702_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102751','EPSG','2265',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102752','unnamed',NULL,NULL,'EPSG','2267','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102752','NAD_1983_StatePlane_Wisconsin_North_FIPS_4801_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102752','EPSG','2267',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102753','unnamed',NULL,NULL,'EPSG','2266','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.5,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102753','NAD_1983_StatePlane_Wisconsin_Central_FIPS_4802_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102753','EPSG','2266',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102754','unnamed',NULL,NULL,'EPSG','2268','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.06666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102754','NAD_1983_StatePlane_Wisconsin_South_FIPS_4803_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102754','EPSG','2268',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102755','unnamed',NULL,NULL,'EPSG','2269','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-105.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102755','NAD_1983_StatePlane_Wyoming_East_FIPS_4901_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102755','EPSG','2269',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102756','unnamed',NULL,NULL,'EPSG','2270','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-107.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',1312333.333333333,'EPSG','9003','EPSG','8807','False northing',328083.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102756','NAD_1983_StatePlane_Wyoming_East_Central_FIPS_4902_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102756','EPSG','2270',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102757','unnamed',NULL,NULL,'EPSG','2272','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-108.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',1968500.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102757','NAD_1983_StatePlane_Wyoming_West_Central_FIPS_4903_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102757','EPSG','2272',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102758','unnamed',NULL,NULL,'EPSG','2271','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-110.0833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',2624666.666666666,'EPSG','9003','EPSG','8807','False northing',328083.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102758','NAD_1983_StatePlane_Wyoming_West_FIPS_4904_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102758','EPSG','2271',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102761','unnamed',NULL,NULL,'EPSG','2251','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',17.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-66.43333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',18.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',18.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',656166.6666666665,'EPSG','9003','EPSG','8827','Northing at false origin',656166.6666666665,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102761','NAD_1983_StatePlane_Puerto_Rico_Virgin_Islands_FIPS_5200_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102761','EPSG','2251',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102762','unnamed',NULL,NULL,'EPSG','3147','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-9.0,'EPSG','9102','EPSG','8822','Longitude of false origin',26.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-6.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-11.5,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102762','Katanga_1955_Katanga_Lambert',NULL,NULL,'EPSG','4400','EPSG','4695','ESRI','102762','EPSG','3147',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102763','unnamed',NULL,NULL,'EPSG','1386','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-85.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.08333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',4921250.0,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102763','NAD_1983_StatePlane_Kentucky_FIPS_1600_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4269','ESRI','102763','EPSG','1386',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102764','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_7',NULL,NULL,'EPSG','4400','EPSG','4178','EPSG','16267','EPSG','3584',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102765','Pulkovo_1942_Adj_1983_3_Degree_GK_Zone_8',NULL,NULL,'EPSG','4400','EPSG','4178','EPSG','16268','EPSG','3586',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102766','NAD_1983_StatePlane_Guam_FIPS_5400_Feet',NULL,NULL,NULL,NULL,'EPSG','4269',NULL,NULL,'EPSG','1110','PROJCS["NAD_1983_StatePlane_Guam_FIPS_5400_Feet",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Polyconic"],PARAMETER["False_Easting",164041.6666666666],PARAMETER["False_Northing",164041.6666666666],PARAMETER["Central_Meridian",144.7487507055556],PARAMETER["Latitude_Of_Origin",13.47246635277778],UNIT["Foot_US",0.3048006096012192]]',0); INSERT INTO "area" VALUES('ESRI','56','Colombia - Leticia - Amazonas','Colombia - Leticia - Amazonas',-4.7,-3.683333333333334,-70.45,-69.43333333333334,0); INSERT INTO "projected_crs" VALUES('ESRI','102767','MAGNA_Leticia_Amazonas_1994',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','56','PROJCS["MAGNA_Leticia_Amazonas_1994",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",25978.217],PARAMETER["False_Northing",27501.365],PARAMETER["Longitude_Of_Center",-69.94281105833333],PARAMETER["Latitude_Of_Center",-4.197684047222222],PARAMETER["Height",89.7],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','57','Colombia - Medellin - Antioquia','Colombia - Medellin - Antioquia',5.716666666666667,6.733333333333333,-76.06666666666666,-75.05,0); INSERT INTO "projected_crs" VALUES('ESRI','102768','MAGNA_Medellin_Antioquia_2010',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','57','PROJCS["MAGNA_Medellin_Antioquia_2010",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",835378.647],PARAMETER["False_Northing",1180816.875],PARAMETER["Longitude_Of_Center",-75.56488694444444],PARAMETER["Latitude_Of_Center",6.229208888888889],PARAMETER["Height",1510.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','58','Colombia - Arauca - Arauca','Colombia - Arauca - Arauca',6.583333333333333,7.6,-71.26666666666667,-70.25,0); INSERT INTO "projected_crs" VALUES('ESRI','102769','MAGNA_Arauca_2007',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','58','PROJCS["MAGNA_Arauca_2007",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1035263.443],PARAMETER["False_Northing",1275526.621],PARAMETER["Longitude_Of_Center",-70.75830965555555],PARAMETER["Latitude_Of_Center",7.087606391666666],PARAMETER["Height",100.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','59','Colombia - Barranquilla - Atlantico','Colombia - Barranquilla - Atlantico',10.41666666666667,11.43333333333333,-75.35,-74.33333333333333,0); INSERT INTO "projected_crs" VALUES('ESRI','102770','MAGNA_Barranquilla_Atlantico_1997',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','59','PROJCS["MAGNA_Barranquilla_Atlantico_1997",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",917264.406],PARAMETER["False_Northing",1699839.935],PARAMETER["Longitude_Of_Center",-74.83433133333332],PARAMETER["Latitude_Of_Center",10.92318308333333],PARAMETER["Height",100.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','60','Colombia - Bogota D.C. - Bogota D.C.','Colombia - Bogota D.C. - Bogota D.C.',4.166666666666667,5.183333333333334,-74.65,-73.63333333333334,0); INSERT INTO "projected_crs" VALUES('ESRI','102771','MAGNA_Bogota_DC_2005',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','60','PROJCS["MAGNA_Bogota_DC_2005",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",92334.879],PARAMETER["False_Northing",109320.965],PARAMETER["Longitude_Of_Center",-74.14659166666668],PARAMETER["Latitude_Of_Center",4.680486111111112],PARAMETER["Height",2550.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','61','Colombia - Cartagena_Bolivar','Colombia - Cartagena_Bolivar',9.883333333333333,10.9,-76.01666666666667,-75.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102772','MAGNA_Cartagena_Bolivar_2005',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','61','PROJCS["MAGNA_Cartagena_Bolivar_2005",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",842981.41],PARAMETER["False_Northing",1641887.09],PARAMETER["Longitude_Of_Center",-75.51120694444444],PARAMETER["Latitude_Of_Center",10.3970475],PARAMETER["Height",0.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','62','Colombia - Tunja - Boyaca','Colombia - Tunja - Boyaca',5.033333333333333,6.05,-73.86666666666666,-72.85,0); INSERT INTO "projected_crs" VALUES('ESRI','102773','MAGNA_Tunja_Boyaca_1997',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','62','PROJCS["MAGNA_Tunja_Boyaca_1997",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1080514.91],PARAMETER["False_Northing",1103772.028],PARAMETER["Longitude_Of_Center",-73.3519389],PARAMETER["Latitude_Of_Center",5.534194738888889],PARAMETER["Height",2800.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','63','Colombia - Manizales - Caldas','Colombia - Manizales - Caldas',4.566666666666666,5.583333333333333,-76.01666666666667,-75.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102774','MAGNA_Manizales_Caldas_2011',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','63','PROJCS["MAGNA_Manizales_Caldas_2011",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1173727.04],PARAMETER["False_Northing",1052391.13],PARAMETER["Longitude_Of_Center",-75.51109472222223],PARAMETER["Latitude_Of_Center",5.068153888888888],PARAMETER["Height",2100.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','64','Colombia - Florencia - Caqueta','Colombia - Florencia - Caqueta',1.116666666666667,2.133333333333333,-76.13333333333334,-75.11666666666666,0); INSERT INTO "projected_crs" VALUES('ESRI','102775','MAGNA_Florencia_Caqueta_2007',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','64','PROJCS["MAGNA_Florencia_Caqueta_2007",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1162300.348],PARAMETER["False_Northing",671068.716],PARAMETER["Longitude_Of_Center",-75.61911760277778],PARAMETER["Latitude_Of_Center",1.621012294444445],PARAMETER["Height",300.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','65','Colombia - Yopal - Casanare','Colombia - Yopal - Casanare',4.85,5.866666666666667,-72.93333333333334,-71.91666666666667,0); INSERT INTO "projected_crs" VALUES('ESRI','102776','MAGNA_Yopal_Casanare_2006',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','65','PROJCS["MAGNA_Yopal_Casanare_2006",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",851184.177],PARAMETER["False_Northing",1083954.137],PARAMETER["Longitude_Of_Center",-72.42004027777779],PARAMETER["Latitude_Of_Center",5.353927222222222],PARAMETER["Height",300.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','66','Colombia - Popayan - Cauca','Colombia - Popayan - Cauca',2.95,2.966666666666667,-77.11666666666666,-76.1,0); INSERT INTO "projected_crs" VALUES('ESRI','102777','MAGNA_Popayan_Cauca_2006',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','66','PROJCS["MAGNA_Popayan_Cauca_2006",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1052430.525],PARAMETER["False_Northing",763366.548],PARAMETER["Longitude_Of_Center",-76.6060916361111],PARAMETER["Latitude_Of_Center",2.456159883333334],PARAMETER["Height",1740.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','67','Colombia - Valledupar - Cesar','Colombia - Valledupar - Cesar',9.933333333333334,10.95,-73.58333333333333,-73.56666666666666,0); INSERT INTO "projected_crs" VALUES('ESRI','102778','MAGNA_Valledupar_Cesar_2011',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','67','PROJCS["MAGNA_Valledupar_Cesar_2011",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1090979.66],PARAMETER["False_Northing",1647208.93],PARAMETER["Longitude_Of_Center",-73.2465713888889],PARAMETER["Latitude_Of_Center",10.44726111111111],PARAMETER["Height",200.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','68','Colombia - Quibdo - Choco','Colombia - Quibdo - Choco',5.183333333333334,6.2,-77.16666666666667,-76.15,0); INSERT INTO "projected_crs" VALUES('ESRI','102779','MAGNA_Quibdo_Choco_2011',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','68','PROJCS["MAGNA_Quibdo_Choco_2011",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1047273.617],PARAMETER["False_Northing",1121443.09],PARAMETER["Longitude_Of_Center",-76.65075385833335],PARAMETER["Latitude_Of_Center",5.694247661111111],PARAMETER["Height",44.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','69','Colombia - Monteria - Cordoba','Colombia - Monteria - Cordoba',8.266666666666667,9.283333333333333,-76.38333333333334,-75.36666666666666,0); INSERT INTO "projected_crs" VALUES('ESRI','102780','MAGNA_Monteria_Cordoba_2006',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','69','PROJCS["MAGNA_Monteria_Cordoba_2006",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1131814.934],PARAMETER["False_Northing",1462131.119],PARAMETER["Longitude_Of_Center",-75.87955333055555],PARAMETER["Latitude_Of_Center",8.773085755555556],PARAMETER["Height",15.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','70','Colombia - Inirida - Guainia','Colombia - Inirida - Guainia',3.333333333333333,4.35,-68.41666666666667,-67.4,0); INSERT INTO "projected_crs" VALUES('ESRI','102781','MAGNA_Inirida_Guainia_2008',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','70','PROJCS["MAGNA_Inirida_Guainia_2008",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1019177.687],PARAMETER["False_Northing",491791.326],PARAMETER["Longitude_Of_Center",-67.90523208888889],PARAMETER["Latitude_Of_Center",3.845438183333334],PARAMETER["Height",96.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','71','Colombia - San Jose del Guaviare - Guaviare','Colombia - San Jose del Guaviare - Guaviare',2.05,3.066666666666667,-73.15,-72.13333333333334,0); INSERT INTO "projected_crs" VALUES('ESRI','102782','MAGNA_San_Jose_del_Guaviare_2011',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','71','PROJCS["MAGNA_San_Jose_del_Guaviare_2011",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1159876.62],PARAMETER["False_Northing",775380.342],PARAMETER["Longitude_Of_Center",-72.640033325],PARAMETER["Latitude_Of_Center",2.564078941666666],PARAMETER["Height",185.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','72','Colombia - Neiva - Huila','Colombia - Neiva - Huila',2.433333333333334,3.45,-75.8,-74.78333333333333,0); INSERT INTO "projected_crs" VALUES('ESRI','102783','MAGNA_Neiva_Huila_2006',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','72','PROJCS["MAGNA_Neiva_Huila_2006",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",864476.923],PARAMETER["False_Northing",817199.827],PARAMETER["Longitude_Of_Center",-75.29643672222223],PARAMETER["Latitude_Of_Center",2.942415055555556],PARAMETER["Height",430.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','73','Colombia - Riohacha - La Guajira','Colombia - Riohacha - La Guajira',11.03333333333333,12.05,-73.41666666666667,-72.4,0); INSERT INTO "projected_crs" VALUES('ESRI','102784','MAGNA_Riohacha_La_Guajira_2006',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','73','PROJCS["MAGNA_Riohacha_La_Guajira_2006",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1128154.73],PARAMETER["False_Northing",1767887.914],PARAMETER["Longitude_Of_Center",-72.90276886944444],PARAMETER["Latitude_Of_Center",11.53691332777778],PARAMETER["Height",6.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','74','Colombia - Santa Marta - Magdalena','Colombia - Santa Marta - Magdalena',10.71666666666667,11.73333333333333,-74.73333333333333,-73.71666666666667,0); INSERT INTO "projected_crs" VALUES('ESRI','102785','MAGNA_Santa_Marta_Magdalena_2007',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','74','PROJCS["MAGNA_Santa_Marta_Magdalena_2007",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",983892.409],PARAMETER["False_Northing",1732533.518],PARAMETER["Longitude_Of_Center",-74.22500527777778],PARAMETER["Latitude_Of_Center",11.21964305555556],PARAMETER["Height",29.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','75','Colombia - Villavicencio - Meta','Colombia - Villavicencio - Meta',3.65,4.666666666666667,-74.13333333333334,-73.11666666666666,0); INSERT INTO "projected_crs" VALUES('ESRI','102786','MAGNA_Villavicencio_Meta_2011',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','75','PROJCS["MAGNA_Villavicencio_Meta_2011",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1050678.757],PARAMETER["False_Northing",950952.124],PARAMETER["Longitude_Of_Center",-73.62448598611111],PARAMETER["Latitude_Of_Center",4.1553751],PARAMETER["Height",427.19],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','76','Colombia - Pasto - Narino','Colombia - Pasto - Narino',0.7,1.716666666666667,-77.76666666666667,-76.75,0); INSERT INTO "projected_crs" VALUES('ESRI','102787','MAGNA_Pasto_Narino_2008',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','76','PROJCS["MAGNA_Pasto_Narino_2008",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",980469.695],PARAMETER["False_Northing",624555.332],PARAMETER["Longitude_Of_Center",-77.25312563333334],PARAMETER["Latitude_Of_Center",1.200989513888889],PARAMETER["Height",2530.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','77','Colombia - Cucuta - Norte de Santander','Colombia - Cucuta - Norte de Santander',7.383333333333334,8.4,-73.01666666666667,-72.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102788','MAGNA_Cucuta_Norte_de_Santander_2011',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','77','PROJCS["MAGNA_Cucuta_Norte_de_Santander_2011",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",842805.406],PARAMETER["False_Northing",1364404.57],PARAMETER["Longitude_Of_Center",-72.50287095],PARAMETER["Latitude_Of_Center",7.888936736111111],PARAMETER["Height",308.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','78','Colombia - Mocoa - Putumayo','Colombia - Mocoa - Putumayo',0.6333333333333333,1.65,-77.16666666666667,-76.15,0); INSERT INTO "projected_crs" VALUES('ESRI','102789','MAGNA_Mocoa_Putumayo_2011',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','78','PROJCS["MAGNA_Mocoa_Putumayo_2011",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1047467.388],PARAMETER["False_Northing",617828.474],PARAMETER["Longitude_Of_Center",-76.65102121944444],PARAMETER["Latitude_Of_Center",1.140023358333333],PARAMETER["Height",655.2],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','79','Colombia - Armenia - Quindio','Colombia - Armenia - Quindio',4.016666666666667,5.033333333333333,-76.18333333333334,-75.16666666666667,0); INSERT INTO "projected_crs" VALUES('ESRI','102790','MAGNA_Armenia_Quindio_2006',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','79','PROJCS["MAGNA_Armenia_Quindio_2006",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1155824.666],PARAMETER["False_Northing",993087.465],PARAMETER["Longitude_Of_Center",-75.67348916666667],PARAMETER["Latitude_Of_Center",4.532325],PARAMETER["Height",1470.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','80','Colombia - Pereira - Risaralda','Colombia - Pereira - Risaralda',4.3,5.316666666666666,-76.2,-75.18333333333334,0); INSERT INTO "projected_crs" VALUES('ESRI','102791','MAGNA_Pereira_Risaralda_2007',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','80','PROJCS["MAGNA_Pereira_Risaralda_2007",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1153492.012],PARAMETER["False_Northing",1024195.255],PARAMETER["Longitude_Of_Center",-75.69395138888889],PARAMETER["Latitude_Of_Center",4.813593611111111],PARAMETER["Height",1500.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','81','Colombia - San_Andres - San_Andres','Colombia - San_Andres - San_Andres',12.01666666666667,13.03333333333333,-82.23333333333333,-81.21666666666667,0); INSERT INTO "projected_crs" VALUES('ESRI','102792','MAGNA_San_Andres_2007',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','81','PROJCS["MAGNA_San_Andres_2007",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",820439.298],PARAMETER["False_Northing",1877357.828],PARAMETER["Longitude_Of_Center",-81.72937595],PARAMETER["Latitude_Of_Center",12.523794325],PARAMETER["Height",6.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','82','Colombia - Bucaramanga - Santander','Colombia - Bucaramanga - Santander',6.566666666666666,7.583333333333333,-73.7,-72.68333333333334,0); INSERT INTO "projected_crs" VALUES('ESRI','102793','MAGNA_Bucaramanga_Santander_2008',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','82','PROJCS["MAGNA_Bucaramanga_Santander_2008",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1097241.305],PARAMETER["False_Northing",1274642.278],PARAMETER["Longitude_Of_Center",-73.19734322222223],PARAMETER["Latitude_Of_Center",7.078887141666667],PARAMETER["Height",931.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','83','Colombia - Sucre - Sucre','Colombia - Sucre - Sucre',8.3,9.316666666666666,-75.23333333333333,-74.21666666666667,0); INSERT INTO "projected_crs" VALUES('ESRI','102794','MAGNA_Sucre_2006',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','83','PROJCS["MAGNA_Sucre_2006",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",929043.607],PARAMETER["False_Northing",1466125.658],PARAMETER["Longitude_Of_Center",-74.722466825],PARAMETER["Latitude_Of_Center",8.810550366666668],PARAMETER["Height",20.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','84','Colombia - Ibague - Tolima','Colombia - Ibague - Tolima',3.916666666666667,4.933333333333334,-75.68333333333334,-74.66666666666667,0); INSERT INTO "projected_crs" VALUES('ESRI','102795','MAGNA_Ibague_Tolima_2007',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','84','PROJCS["MAGNA_Ibague_Tolima_2007",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",877634.33],PARAMETER["False_Northing",980541.348],PARAMETER["Longitude_Of_Center",-75.17992593333334],PARAMETER["Latitude_Of_Center",4.419412827777778],PARAMETER["Height",1100.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','85','Colombia - Cali - Valle del Cauca','Colombia - Cali - Valle del Cauca',2.933333333333334,3.95,-77.03333333333333,-76.01666666666667,0); INSERT INTO "projected_crs" VALUES('ESRI','102796','MAGNA_Cali_Valle_del_Cauca_2009',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','85','PROJCS["MAGNA_Cali_Valle_del_Cauca_2009",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1061900.18],PARAMETER["False_Northing",872364.63],PARAMETER["Longitude_Of_Center",-76.5205625],PARAMETER["Latitude_Of_Center",3.441883333333334],PARAMETER["Height",1000.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','86','Colombia - Mitu - Vaupes','Colombia - Mitu - Vaupes',0.7333333333333333,1.75,-70.75,-69.73333333333333,0); INSERT INTO "projected_crs" VALUES('ESRI','102797','MAGNA_Mitu_Vaupes_2011',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','86','PROJCS["MAGNA_Mitu_Vaupes_2011",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1093717.398],PARAMETER["False_Northing",629997.236],PARAMETER["Longitude_Of_Center",-70.23546165555555],PARAMETER["Latitude_Of_Center",1.249969366666667],PARAMETER["Height",170.0],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','87','Colombia - Puerto - Carreno - Vichada','Colombia - Puerto - Carreno - Vichada',5.666666666666667,6.683333333333334,-68.01666666666667,-67.0,0); INSERT INTO "projected_crs" VALUES('ESRI','102798','MAGNA_Puerto_Carreno_Vichada_2011',NULL,NULL,NULL,NULL,'EPSG','4686',NULL,NULL,'ESRI','87','PROJCS["MAGNA_Puerto_Carreno_Vichada_2011",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1063834.703],PARAMETER["False_Northing",1175257.481],PARAMETER["Longitude_Of_Center",-67.50075024722223],PARAMETER["Latitude_Of_Center",6.18072141388889],PARAMETER["Height",51.58],UNIT["Meter",1.0]]',1); INSERT INTO "area" VALUES('ESRI','88','UK - Highways England - A1','UK - Highways England - A1',50.1068,50.4249,-5.5482,-5.3991,0); INSERT INTO "conversion" VALUES('ESRI','102799','unnamed',NULL,NULL,'ESRI','88','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99926,'EPSG','9201','EPSG','8806','False easting',261910.5587,'EPSG','9001','EPSG','8807','False northing',70975.76209,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102799','OSGB36_Highways_England_A1H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102799','ESRI','88',NULL,0); INSERT INTO "area" VALUES('ESRI','89','UK - Highways England - A2','UK - Highways England - A2',50.1106,50.4286,-5.4217,-5.2734,0); INSERT INTO "conversion" VALUES('ESRI','102800','unnamed',NULL,NULL,'ESRI','89','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999314,'EPSG','9201','EPSG','8806','False easting',252927.2844,'EPSG','9001','EPSG','8807','False northing',70979.59363,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102800','OSGB36_Highways_England_A2H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102800','ESRI','89',NULL,0); INSERT INTO "area" VALUES('ESRI','90','UK - Highways England - A3','UK - Highways England - A3',50.1142,50.4321,-5.2952,-5.1477,0); INSERT INTO "conversion" VALUES('ESRI','102801','unnamed',NULL,NULL,'ESRI','90','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999365,'EPSG','9201','EPSG','8806','False easting',243942.3084,'EPSG','9001','EPSG','8807','False northing',70983.21269,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102801','OSGB36_Highways_England_A3H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102801','ESRI','90',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102802','unnamed',NULL,NULL,'ESRI','90','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99939,'EPSG','9201','EPSG','8806','False easting',243948.4072,'EPSG','9001','EPSG','8807','False northing',70984.98734,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102802','OSGB36_Highways_England_A3H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102802','ESRI','90',NULL,0); INSERT INTO "area" VALUES('ESRI','91','UK - Highways England - A4','UK - Highways England - A4',50.2075,50.5253,-5.1747,-5.0277,0); INSERT INTO "conversion" VALUES('ESRI','102803','unnamed',NULL,NULL,'ESRI','91','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999415,'EPSG','9201','EPSG','8806','False easting',234956.1813,'EPSG','9001','EPSG','8807','False northing',70986.76115,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102803','OSGB36_Highways_England_A4H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102803','ESRI','91',NULL,0); INSERT INTO "area" VALUES('ESRI','92','UK - Highways England - A5','UK - Highways England - A5',50.2109,50.5289,-5.0479,-4.8877,0); INSERT INTO "conversion" VALUES('ESRI','102804','unnamed',NULL,NULL,'ESRI','92','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999465,'EPSG','9201','EPSG','8806','False easting',225969.1556,'EPSG','9001','EPSG','8807','False northing',70990.30995,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102804','OSGB36_Highways_England_A5H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102804','ESRI','92',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102805','unnamed',NULL,NULL,'ESRI','92','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99949,'EPSG','9201','EPSG','8806','False easting',225974.8051,'EPSG','9001','EPSG','8807','False northing',70992.08478,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102805','OSGB36_Highways_England_A5H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102805','ESRI','92',NULL,0); INSERT INTO "area" VALUES('ESRI','93','UK - Highways England - A6','UK - Highways England - A6',50.2144,50.5323,-4.907,-4.7477,0); INSERT INTO "conversion" VALUES('ESRI','102806','unnamed',NULL,NULL,'ESRI','93','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999516,'EPSG','9201','EPSG','8806','False easting',215981.5338,'EPSG','9001','EPSG','8807','False northing',70993.93011,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102806','OSGB36_Highways_England_A6H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102806','ESRI','93',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102807','unnamed',NULL,NULL,'ESRI','93','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999541,'EPSG','9201','EPSG','8806','False easting',215986.9336,'EPSG','9001','EPSG','8807','False northing',70995.70502,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102807','OSGB36_Highways_England_A6H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102807','ESRI','93',NULL,0); INSERT INTO "area" VALUES('ESRI','94','UK - Highways England - A7','UK - Highways England - A7',50.3975,50.5356,-4.766,-4.6175,0); INSERT INTO "conversion" VALUES('ESRI','102808','unnamed',NULL,NULL,'ESRI','94','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999564,'EPSG','9201','EPSG','8806','False easting',205992.2754,'EPSG','9001','EPSG','8807','False northing',70997.33764,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102808','OSGB36_Highways_England_A7H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102808','ESRI','94',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102809','unnamed',NULL,NULL,'ESRI','94','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999589,'EPSG','9201','EPSG','8806','False easting',205997.4254,'EPSG','9001','EPSG','8807','False northing',70999.11264,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102809','OSGB36_Highways_England_A7H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102809','ESRI','94',NULL,0); INSERT INTO "area" VALUES('ESRI','95','UK - Highways England - A8','UK - Highways England - A8',50.221,50.7996,-4.6397,-4.4536,0); INSERT INTO "conversion" VALUES('ESRI','102810','unnamed',NULL,NULL,'ESRI','95','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999613,'EPSG','9201','EPSG','8806','False easting',196002.254,'EPSG','9001','EPSG','8807','False northing',71000.81651,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102810','OSGB36_Highways_England_A8H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102810','ESRI','95',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102811','unnamed',NULL,NULL,'ESRI','95','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999638,'EPSG','9201','EPSG','8806','False easting',196007.1543,'EPSG','9001','EPSG','8807','False northing',71002.5916,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102811','OSGB36_Highways_England_A8H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102811','ESRI','95',NULL,0); INSERT INTO "area" VALUES('ESRI','96','UK - Highways England - A9','UK - Highways England - A9',50.2244,50.8031,-4.4837,-4.2855,0); INSERT INTO "conversion" VALUES('ESRI','102812','unnamed',NULL,NULL,'ESRI','96','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999662,'EPSG','9201','EPSG','8806','False easting',185011.1931,'EPSG','9001','EPSG','8807','False northing',71004.29572,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102812','OSGB36_Highways_England_A9H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102812','ESRI','96',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102813','unnamed',NULL,NULL,'ESRI','96','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999687,'EPSG','9201','EPSG','8806','False easting',185015.8185,'EPSG','9001','EPSG','8807','False northing',71006.07089,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102813','OSGB36_Highways_England_A9H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102813','ESRI','96',NULL,0); INSERT INTO "area" VALUES('ESRI','97','UK - Highways England - A10','UK - Highways England - A10',50.2278,50.8069,-4.3136,-4.0893,0); INSERT INTO "conversion" VALUES('ESRI','102814','unnamed',NULL,NULL,'ESRI','97','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999713,'EPSG','9201','EPSG','8806','False easting',173019.2914,'EPSG','9001','EPSG','8807','False northing',71007.91729,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102814','OSGB36_Highways_England_A10H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102814','ESRI','97',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102815','unnamed',NULL,NULL,'ESRI','97','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999738,'EPSG','9201','EPSG','8806','False easting',173023.6171,'EPSG','9001','EPSG','8807','False northing',71009.69256,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102815','OSGB36_Highways_England_A10H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102815','ESRI','97',NULL,0); INSERT INTO "area" VALUES('ESRI','98','UK - Highways England - A11','UK - Highways England - A11',50.2315,50.8105,-4.115,-3.8791,0); INSERT INTO "conversion" VALUES('ESRI','102816','unnamed',NULL,NULL,'ESRI','98','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999767,'EPSG','9201','EPSG','8806','False easting',159026.3186,'EPSG','9001','EPSG','8807','False northing',71011.75231,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102816','OSGB36_Highways_England_A11H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102816','ESRI','98',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102817','unnamed',NULL,NULL,'ESRI','98','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999792,'EPSG','9201','EPSG','8806','False easting',159030.2944,'EPSG','9001','EPSG','8807','False northing',71013.52767,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102817','OSGB36_Highways_England_A11H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102817','ESRI','98',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102818','unnamed',NULL,NULL,'ESRI','98','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999817,'EPSG','9201','EPSG','8806','False easting',159034.2704,'EPSG','9001','EPSG','8807','False northing',71015.30312,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102818','OSGB36_Highways_England_A11H3',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102818','ESRI','98',NULL,0); INSERT INTO "area" VALUES('ESRI','99','UK - Highways England - A12','UK - Highways England - A12',50.2351,50.814,-3.9022,-3.6549,0); INSERT INTO "conversion" VALUES('ESRI','102819','unnamed',NULL,NULL,'ESRI','99','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999817,'EPSG','9201','EPSG','8806','False easting',144031.0383,'EPSG','9001','EPSG','8807','False northing',71015.30362,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102819','OSGB36_Highways_England_A12H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102819','ESRI','99',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102820','unnamed',NULL,NULL,'ESRI','99','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999842,'EPSG','9201','EPSG','8806','False easting',144034.6392,'EPSG','9001','EPSG','8807','False northing',71017.07907,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102820','OSGB36_Highways_England_A12H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102820','ESRI','99',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102821','unnamed',NULL,NULL,'ESRI','99','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999867,'EPSG','9201','EPSG','8806','False easting',144038.2403,'EPSG','9001','EPSG','8807','False northing',71018.8546,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102821','OSGB36_Highways_England_A12H3',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102821','ESRI','99',NULL,0); INSERT INTO "area" VALUES('ESRI','100','UK - Highways England - A13','UK - Highways England - A13',50.4183,50.8981,-3.6781,-3.4219,0); INSERT INTO "conversion" VALUES('ESRI','102822','unnamed',NULL,NULL,'ESRI','100','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999865,'EPSG','9201','EPSG','8806','False easting',128033.7365,'EPSG','9001','EPSG','8807','False northing',71018.71321,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102822','OSGB36_Highways_England_A13H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102822','ESRI','100',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102823','unnamed',NULL,NULL,'ESRI','100','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99989,'EPSG','9201','EPSG','8806','False easting',128036.9375,'EPSG','9001','EPSG','8807','False northing',71020.48874,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102823','OSGB36_Highways_England_A13H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102823','ESRI','100',NULL,0); INSERT INTO "area" VALUES('ESRI','101','UK - Highways England - A14','UK - Highways England - A14',50.585,51.1984,-4.4468,-3.1023,0); INSERT INTO "conversion" VALUES('ESRI','102824','unnamed',NULL,NULL,'ESRI','101','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999914,'EPSG','9201','EPSG','8806','False easting',111034.6979,'EPSG','9001','EPSG','8807','False northing',71022.19417,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102824','OSGB36_Highways_England_A14H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102824','ESRI','101',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102825','unnamed',NULL,NULL,'ESRI','101','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999939,'EPSG','9201','EPSG','8806','False easting',111037.4739,'EPSG','9001','EPSG','8807','False northing',71023.96979,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102825','OSGB36_Highways_England_A14H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102825','ESRI','101',NULL,0); INSERT INTO "area" VALUES('ESRI','102','UK - Highways England - A15','UK - Highways England - A15',50.6049,52.0473,-3.1375,-2.6218,0); INSERT INTO "conversion" VALUES('ESRI','102826','unnamed',NULL,NULL,'ESRI','102','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999967,'EPSG','9201','EPSG','8806','False easting',88032.17537,'EPSG','9001','EPSG','8807','False northing',71025.95967,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102826','OSGB36_Highways_England_A15H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102826','ESRI','102',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102827','unnamed',NULL,NULL,'ESRI','102','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999992,'EPSG','9201','EPSG','8806','False easting',88034.37626,'EPSG','9001','EPSG','8807','False northing',71027.73539,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102827','OSGB36_Highways_England_A15H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102827','ESRI','102',NULL,0); INSERT INTO "area" VALUES('ESRI','103','UK - Highways England - A16','UK - Highways England - A16',50.6084,52.048,-2.6417,-1.5041,0); INSERT INTO "conversion" VALUES('ESRI','102828','unnamed',NULL,NULL,'ESRI','103','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000012,'EPSG','9201','EPSG','8806','False easting',54022.17583,'EPSG','9001','EPSG','8807','False northing',71029.15712,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102828','OSGB36_Highways_England_A16H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102828','ESRI','103',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102829','unnamed',NULL,NULL,'ESRI','103','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000037,'EPSG','9201','EPSG','8806','False easting',54023.52644,'EPSG','9001','EPSG','8807','False northing',71030.93291,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102829','OSGB36_Highways_England_A16H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102829','ESRI','103',NULL,0); INSERT INTO "area" VALUES('ESRI','104','UK - Highways England - A17','UK - Highways England - A17',50.777,52.048,-1.5177,-1.0083,0); INSERT INTO "conversion" VALUES('ESRI','102830','unnamed',NULL,NULL,'ESRI','104','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999981,'EPSG','9201','EPSG','8806','False easting',-24009.11135,'EPSG','9001','EPSG','8807','False northing',71026.9544,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102830','OSGB36_Highways_England_A17H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102830','ESRI','104',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102831','unnamed',NULL,NULL,'ESRI','104','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000006,'EPSG','9201','EPSG','8806','False easting',-24009.7116,'EPSG','9001','EPSG','8807','False northing',71028.73014,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102831','OSGB36_Highways_England_A17H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102831','ESRI','104',NULL,0); INSERT INTO "area" VALUES('ESRI','105','UK - Highways England - A18','UK - Highways England - A18',50.7727,52.0448,-1.0355,-0.571,0); INSERT INTO "conversion" VALUES('ESRI','102832','unnamed',NULL,NULL,'ESRI','105','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999928,'EPSG','9201','EPSG','8806','False easting',-58018.94296,'EPSG','9001','EPSG','8807','False northing',71023.18879,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102832','OSGB36_Highways_England_A18H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102832','ESRI','105',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102833','unnamed',NULL,NULL,'ESRI','105','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999953,'EPSG','9201','EPSG','8806','False easting',-58020.39349,'EPSG','9001','EPSG','8807','False northing',71024.96444,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102833','OSGB36_Highways_England_A18H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102833','ESRI','105',NULL,0); INSERT INTO "area" VALUES('ESRI','106','UK - Highways England - A19','UK - Highways England - A19',50.7696,52.0404,-0.6101,-0.3232,0); INSERT INTO "conversion" VALUES('ESRI','102834','unnamed',NULL,NULL,'ESRI','106','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999874,'EPSG','9201','EPSG','8806','False easting',-88023.98625,'EPSG','9001','EPSG','8807','False northing',71019.35254,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102834','OSGB36_Highways_England_A19H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102834','ESRI','106',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102835','unnamed',NULL,NULL,'ESRI','106','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999899,'EPSG','9201','EPSG','8806','False easting',-88026.18693,'EPSG','9001','EPSG','8807','False northing',71021.12809,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102835','OSGB36_Highways_England_A19H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102835','ESRI','106',NULL,0); INSERT INTO "area" VALUES('ESRI','107','UK - Highways England - A20','UK - Highways England - A20',50.7659,52.0371,-0.369,-0.0755,0); INSERT INTO "conversion" VALUES('ESRI','102836','unnamed',NULL,NULL,'ESRI','107','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999826,'EPSG','9201','EPSG','8806','False easting',-105023.5775,'EPSG','9001','EPSG','8807','False northing',71015.94289,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102836','OSGB36_Highways_England_A20H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102836','ESRI','107',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102837','unnamed',NULL,NULL,'ESRI','107','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999851,'EPSG','9201','EPSG','8806','False easting',-105026.2032,'EPSG','9001','EPSG','8807','False northing',71017.71836,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102837','OSGB36_Highways_England_A20H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102837','ESRI','107',NULL,0); INSERT INTO "area" VALUES('ESRI','108','UK - Highways England - A21','UK - Highways England - A21',50.7618,52.0333,-0.128,0.1722,0); INSERT INTO "conversion" VALUES('ESRI','102838','unnamed',NULL,NULL,'ESRI','108','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999771,'EPSG','9201','EPSG','8806','False easting',-122020.6823,'EPSG','9001','EPSG','8807','False northing',71012.0364,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102838','OSGB36_Highways_England_A21H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102838','ESRI','108',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102839','unnamed',NULL,NULL,'ESRI','108','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999796,'EPSG','9201','EPSG','8806','False easting',-122023.7329,'EPSG','9001','EPSG','8807','False northing',71013.81177,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102839','OSGB36_Highways_England_A21H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102839','ESRI','108',NULL,0); INSERT INTO "area" VALUES('ESRI','109','UK - Highways England - A22','UK - Highways England - A22',50.7572,52.029,0.1129,0.4198,0); INSERT INTO "conversion" VALUES('ESRI','102840','unnamed',NULL,NULL,'ESRI','109','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999708,'EPSG','9201','EPSG','8806','False easting',-139014.8049,'EPSG','9001','EPSG','8807','False northing',71007.56222,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102840','OSGB36_Highways_England_A22H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102840','ESRI','109',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102841','unnamed',NULL,NULL,'ESRI','109','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999733,'EPSG','9201','EPSG','8806','False easting',-139018.2804,'EPSG','9001','EPSG','8807','False northing',71009.33748,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102841','OSGB36_Highways_England_A22H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102841','ESRI','109',NULL,0); INSERT INTO "area" VALUES('ESRI','110','UK - Highways England - A23','UK - Highways England - A23',50.7546,52.0242,0.3537,0.5509,0); INSERT INTO "conversion" VALUES('ESRI','102842','unnamed',NULL,NULL,'ESRI','110','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999656,'EPSG','9201','EPSG','8806','False easting',-156008.5024,'EPSG','9001','EPSG','8807','False northing',71003.86967,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102842','OSGB36_Highways_England_A23H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102842','ESRI','110',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102843','unnamed',NULL,NULL,'ESRI','110','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999681,'EPSG','9201','EPSG','8806','False easting',-156012.4027,'EPSG','9001','EPSG','8807','False northing',71005.64484,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102843','OSGB36_Highways_England_A23H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102843','ESRI','110',NULL,0); INSERT INTO "area" VALUES('ESRI','111','UK - Highways England - A24','UK - Highways England - A24',50.7511,52.0214,0.4812,0.711,0); INSERT INTO "conversion" VALUES('ESRI','102844','unnamed',NULL,NULL,'ESRI','111','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999613,'EPSG','9201','EPSG','8806','False easting',-165001.8975,'EPSG','9001','EPSG','8807','False northing',71000.81651,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102844','OSGB36_Highways_England_A24H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102844','ESRI','111',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102845','unnamed',NULL,NULL,'ESRI','111','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999638,'EPSG','9201','EPSG','8806','False easting',-165006.0227,'EPSG','9001','EPSG','8807','False northing',71002.5916,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102845','OSGB36_Highways_England_A24H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102845','ESRI','111',NULL,0); INSERT INTO "area" VALUES('ESRI','112','UK - Highways England - A25','UK - Highways England - A25',50.7478,52.0178,0.637,0.8566,0); INSERT INTO "conversion" VALUES('ESRI','102846','unnamed',NULL,NULL,'ESRI','112','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999565,'EPSG','9201','EPSG','8806','False easting',-175993.5763,'EPSG','9001','EPSG','8807','False northing',70997.40864,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102846','OSGB36_Highways_England_A25H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102846','ESRI','112',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102847','unnamed',NULL,NULL,'ESRI','112','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99959,'EPSG','9201','EPSG','8806','False easting',-175997.9763,'EPSG','9001','EPSG','8807','False northing',70999.18364,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102847','OSGB36_Highways_England_A25H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102847','ESRI','112',NULL,0); INSERT INTO "area" VALUES('ESRI','113','UK - Highways England - A26','UK - Highways England - A26',50.7444,52.0144,0.7786,1.0021,0); INSERT INTO "conversion" VALUES('ESRI','102848','unnamed',NULL,NULL,'ESRI','113','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999517,'EPSG','9201','EPSG','8806','False easting',-185984.2846,'EPSG','9001','EPSG','8807','False northing',70994.00109,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102848','OSGB36_Highways_England_A26H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102848','ESRI','113',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102849','unnamed',NULL,NULL,'ESRI','113','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999542,'EPSG','9201','EPSG','8806','False easting',-185988.9343,'EPSG','9001','EPSG','8807','False northing',70995.77601,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102849','OSGB36_Highways_England_A26H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102849','ESRI','113',NULL,0); INSERT INTO "area" VALUES('ESRI','114','UK - Highways England - A27','UK - Highways England - A27',50.9293,52.0108,0.932,1.1476,0); INSERT INTO "conversion" VALUES('ESRI','102850','unnamed',NULL,NULL,'ESRI','114','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999467,'EPSG','9201','EPSG','8806','False easting',-195973.6419,'EPSG','9001','EPSG','8807','False northing',70990.45191,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102850','OSGB36_Highways_England_A27H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102850','ESRI','114',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102851','unnamed',NULL,NULL,'ESRI','114','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999492,'EPSG','9201','EPSG','8806','False easting',-195978.5414,'EPSG','9001','EPSG','8807','False northing',70992.22674,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102851','OSGB36_Highways_England_A27H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102851','ESRI','114',NULL,0); INSERT INTO "area" VALUES('ESRI','115','UK - Highways England - A28','UK - Highways England - A28',50.9259,52.007,1.0741,1.2785,0); INSERT INTO "conversion" VALUES('ESRI','102852','unnamed',NULL,NULL,'ESRI','115','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999416,'EPSG','9201','EPSG','8806','False easting',-205961.7946,'EPSG','9001','EPSG','8807','False northing',70986.83212,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102852','OSGB36_Highways_England_A28H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102852','ESRI','115',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102853','unnamed',NULL,NULL,'ESRI','115','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999441,'EPSG','9201','EPSG','8806','False easting',-205966.9438,'EPSG','9001','EPSG','8807','False northing',70988.60686,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102853','OSGB36_Highways_England_A28H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102853','ESRI','115',NULL,0); INSERT INTO "area" VALUES('ESRI','116','UK - Highways England - A29','UK - Highways England - A29',50.9223,52.0034,1.202,1.4094,0); INSERT INTO "conversion" VALUES('ESRI','102854','unnamed',NULL,NULL,'ESRI','116','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999366,'EPSG','9201','EPSG','8806','False easting',-214949.3801,'EPSG','9001','EPSG','8807','False northing',70983.28366,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102854','OSGB36_Highways_England_A29H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102854','ESRI','116',NULL,0); INSERT INTO "area" VALUES('ESRI','117','UK - Highways England - A30','UK - Highways England - A30',50.9186,51.9997,1.3299,1.5403,0); INSERT INTO "conversion" VALUES('ESRI','102855','unnamed',NULL,NULL,'ESRI','117','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999314,'EPSG','9201','EPSG','8806','False easting',-223935.6193,'EPSG','9001','EPSG','8807','False northing',70979.59363,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102855','OSGB36_Highways_England_A30H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102855','ESRI','117',NULL,0); INSERT INTO "area" VALUES('ESRI','118','UK - Highways England - B15','UK - Highways England - B15',52.0434,53.9351,-3.1882,-2.6416,0); INSERT INTO "conversion" VALUES('ESRI','102856','unnamed',NULL,NULL,'ESRI','118','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999967,'EPSG','9201','EPSG','8806','False easting',88032.17537,'EPSG','9001','EPSG','8807','False northing',111040.5848,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102856','OSGB36_Highways_England_B15H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102856','ESRI','118',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102857','unnamed',NULL,NULL,'ESRI','118','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999992,'EPSG','9201','EPSG','8806','False easting',88034.37626,'EPSG','9001','EPSG','8807','False northing',111043.361,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102857','OSGB36_Highways_England_B15H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102857','ESRI','118',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102858','unnamed',NULL,NULL,'ESRI','118','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000017,'EPSG','9201','EPSG','8806','False easting',88036.57726,'EPSG','9001','EPSG','8807','False northing',111046.1372,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102858','OSGB36_Highways_England_B15H3',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102858','ESRI','118',NULL,0); INSERT INTO "area" VALUES('ESRI','119','UK - Highways England - B16','UK - Highways England - B16',52.0472,53.9359,-2.6703,-1.482,0); INSERT INTO "conversion" VALUES('ESRI','102859','unnamed',NULL,NULL,'ESRI','119','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000012,'EPSG','9201','EPSG','8806','False easting',54022.17583,'EPSG','9001','EPSG','8807','False northing',111045.5837,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102859','OSGB36_Highways_England_B16H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102859','ESRI','119',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102860','unnamed',NULL,NULL,'ESRI','119','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000037,'EPSG','9201','EPSG','8806','False easting',54023.52644,'EPSG','9001','EPSG','8807','False northing',111048.3599,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102860','OSGB36_Highways_England_B16H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102860','ESRI','119',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102861','unnamed',NULL,NULL,'ESRI','119','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000062,'EPSG','9201','EPSG','8806','False easting',54024.87711,'EPSG','9001','EPSG','8807','False northing',111051.1363,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102861','OSGB36_Highways_England_B16H3',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102861','ESRI','119',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102862','unnamed',NULL,NULL,'ESRI','119','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000087,'EPSG','9201','EPSG','8806','False easting',54026.22785,'EPSG','9001','EPSG','8807','False northing',111053.9128,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102862','OSGB36_Highways_England_B16H4',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102862','ESRI','119',NULL,0); INSERT INTO "area" VALUES('ESRI','120','UK - Highways England - B17','UK - Highways England - B17',52.0447,53.9359,-1.5042,-0.9641,0); INSERT INTO "conversion" VALUES('ESRI','102863','unnamed',NULL,NULL,'ESRI','120','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999981,'EPSG','9201','EPSG','8806','False easting',-24009.11135,'EPSG','9001','EPSG','8807','False northing',111042.14,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102863','OSGB36_Highways_England_B17H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102863','ESRI','120',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102864','unnamed',NULL,NULL,'ESRI','120','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000006,'EPSG','9201','EPSG','8806','False easting',-24009.7116,'EPSG','9001','EPSG','8807','False northing',111044.9161,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102864','OSGB36_Highways_England_B17H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102864','ESRI','120',NULL,0); INSERT INTO "area" VALUES('ESRI','121','UK - Highways England - B18','UK - Highways England - B18',52.0403,53.9325,-1.0084,-0.5073,0); INSERT INTO "conversion" VALUES('ESRI','102865','unnamed',NULL,NULL,'ESRI','121','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999928,'EPSG','9201','EPSG','8806','False easting',-58018.94296,'EPSG','9001','EPSG','8807','False northing',111036.2529,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102865','OSGB36_Highways_England_B18H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102865','ESRI','121',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102866','unnamed',NULL,NULL,'ESRI','121','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999953,'EPSG','9201','EPSG','8806','False easting',-58020.39349,'EPSG','9001','EPSG','8807','False northing',111039.0289,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102866','OSGB36_Highways_England_B18H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102866','ESRI','121',NULL,0); INSERT INTO "area" VALUES('ESRI','122','UK - Highways England - B19','UK - Highways England - B19',52.037,53.9277,-0.5711,-0.2485,0); INSERT INTO "conversion" VALUES('ESRI','102867','unnamed',NULL,NULL,'ESRI','122','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999874,'EPSG','9201','EPSG','8806','False easting',-88023.98625,'EPSG','9001','EPSG','8807','False northing',111030.2554,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102867','OSGB36_Highways_England_B19H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102867','ESRI','122',NULL,0); INSERT INTO "area" VALUES('ESRI','123','UK - Highways England - B20','UK - Highways England - B20',52.0332,53.9242,-0.3233,0.0103,0); INSERT INTO "conversion" VALUES('ESRI','102868','unnamed',NULL,NULL,'ESRI','123','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999826,'EPSG','9201','EPSG','8806','False easting',-105023.5775,'EPSG','9001','EPSG','8807','False northing',111024.9248,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102868','OSGB36_Highways_England_B20H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102868','ESRI','123',NULL,0); INSERT INTO "area" VALUES('ESRI','124','UK - Highways England - B21','UK - Highways England - B21',52.0289,52.8061,-0.0756,0.2105,0); INSERT INTO "conversion" VALUES('ESRI','102869','unnamed',NULL,NULL,'ESRI','124','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999771,'EPSG','9201','EPSG','8806','False easting',-122020.6823,'EPSG','9001','EPSG','8807','False northing',111018.8175,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102869','OSGB36_Highways_England_B21H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102869','ESRI','124',NULL,0); INSERT INTO "area" VALUES('ESRI','125','UK - Highways England - B22','UK - Highways England - B22',52.0241,52.8017,0.1721,0.4625,0); INSERT INTO "conversion" VALUES('ESRI','102870','unnamed',NULL,NULL,'ESRI','125','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999709,'EPSG','9201','EPSG','8806','False easting',-139014.9439,'EPSG','9001','EPSG','8807','False northing',111011.9337,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102870','OSGB36_Highways_England_B22H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102870','ESRI','125',NULL,0); INSERT INTO "area" VALUES('ESRI','126','UK - Highways England - B23','UK - Highways England - B23',52.0213,52.7967,0.4197,0.5958,0); INSERT INTO "conversion" VALUES('ESRI','102871','unnamed',NULL,NULL,'ESRI','126','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999656,'EPSG','9201','EPSG','8806','False easting',-156008.5024,'EPSG','9001','EPSG','8807','False northing',111006.0498,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102871','OSGB36_Highways_England_B23H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102871','ESRI','126',NULL,0); INSERT INTO "area" VALUES('ESRI','127','UK - Highways England - B24','UK - Highways England - B24',52.0177,52.7939,0.5508,0.7588,0); INSERT INTO "conversion" VALUES('ESRI','102872','unnamed',NULL,NULL,'ESRI','127','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999614,'EPSG','9201','EPSG','8806','False easting',-165002.0625,'EPSG','9001','EPSG','8807','False northing',111001.3875,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102872','OSGB36_Highways_England_B24H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102872','ESRI','127',NULL,0); INSERT INTO "area" VALUES('ESRI','128','UK - Highways England - B25','UK - Highways England - B25',52.0143,52.7902,0.7109,0.9069,0); INSERT INTO "conversion" VALUES('ESRI','102873','unnamed',NULL,NULL,'ESRI','128','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999565,'EPSG','9201','EPSG','8806','False easting',-175993.5763,'EPSG','9001','EPSG','8807','False northing',110995.9487,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102873','OSGB36_Highways_England_B25H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102873','ESRI','128',NULL,0); INSERT INTO "area" VALUES('ESRI','129','UK - Highways England - B26','UK - Highways England - B26',52.0107,52.7866,0.8565,1.055,0); INSERT INTO "conversion" VALUES('ESRI','102874','unnamed',NULL,NULL,'ESRI','129','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999517,'EPSG','9201','EPSG','8806','False easting',-185984.2846,'EPSG','9001','EPSG','8807','False northing',110990.6214,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102874','OSGB36_Highways_England_B26H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102874','ESRI','129',NULL,0); INSERT INTO "area" VALUES('ESRI','130','UK - Highways England - B27','UK - Highways England - B27',52.0069,52.7829,1.002,1.2031,0); INSERT INTO "conversion" VALUES('ESRI','102875','unnamed',NULL,NULL,'ESRI','130','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999467,'EPSG','9201','EPSG','8806','False easting',-195973.6419,'EPSG','9001','EPSG','8807','False northing',110985.0727,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102875','OSGB36_Highways_England_B27H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102875','ESRI','130',NULL,0); INSERT INTO "area" VALUES('ESRI','131','UK - Highways England - B28','UK - Highways England - B28',52.0033,52.779,1.1475,1.3363,0); INSERT INTO "conversion" VALUES('ESRI','102876','unnamed',NULL,NULL,'ESRI','131','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999416,'EPSG','9201','EPSG','8806','False easting',-205961.7946,'EPSG','9001','EPSG','8807','False northing',110979.4136,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102876','OSGB36_Highways_England_B28H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102876','ESRI','131',NULL,0); INSERT INTO "area" VALUES('ESRI','132','UK - Highways England - B29','UK - Highways England - B29',51.9996,52.7753,1.2784,1.4695,0); INSERT INTO "conversion" VALUES('ESRI','102877','unnamed',NULL,NULL,'ESRI','132','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999367,'EPSG','9201','EPSG','8806','False easting',-214949.595,'EPSG','9001','EPSG','8807','False northing',110973.9769,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102877','OSGB36_Highways_England_B29H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102877','ESRI','132',NULL,0); INSERT INTO "area" VALUES('ESRI','133','UK - Highways England - B30','UK - Highways England - B30',51.9957,52.7715,1.4093,1.6026,0); INSERT INTO "conversion" VALUES('ESRI','102878','unnamed',NULL,NULL,'ESRI','133','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999315,'EPSG','9201','EPSG','8806','False easting',-223935.8432,'EPSG','9001','EPSG','8807','False northing',110968.208,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102878','OSGB36_Highways_England_B30H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102878','ESRI','133',NULL,0); INSERT INTO "area" VALUES('ESRI','134','UK - Highways England - B31','UK - Highways England - B31',52.3416,52.7675,1.5681,1.7357,0); INSERT INTO "conversion" VALUES('ESRI','102879','unnamed',NULL,NULL,'ESRI','134','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999261,'EPSG','9201','EPSG','8806','False easting',-232920.6915,'EPSG','9001','EPSG','8807','False northing',110962.2179,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102879','OSGB36_Highways_England_B31H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102879','ESRI','134',NULL,0); INSERT INTO "area" VALUES('ESRI','135','UK - Highways England - B32','UK - Highways England - B32',52.3374,52.7634,1.6999,1.8688,0); INSERT INTO "conversion" VALUES('ESRI','102880','unnamed',NULL,NULL,'ESRI','135','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999206,'EPSG','9201','EPSG','8806','False easting',-241904.3281,'EPSG','9001','EPSG','8807','False northing',110956.1174,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102880','OSGB36_Highways_England_B32H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102880','ESRI','135',NULL,0); INSERT INTO "area" VALUES('ESRI','136','UK - Highways England - C13','UK - Highways England - C13',54.3636,54.7717,-3.8344,-3.5547,0); INSERT INTO "conversion" VALUES('ESRI','102881','unnamed',NULL,NULL,'ESRI','136','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999866,'EPSG','9201','EPSG','8806','False easting',128033.8646,'EPSG','9001','EPSG','8807','False northing',126033.3354,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102881','OSGB36_Highways_England_C13H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102881','ESRI','136',NULL,0); INSERT INTO "area" VALUES('ESRI','137','UK - Highways England - C14','UK - Highways England - C14',54.0079,54.7758,-3.5703,-3.1904,0); INSERT INTO "conversion" VALUES('ESRI','102882','unnamed',NULL,NULL,'ESRI','137','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999914,'EPSG','9201','EPSG','8806','False easting',111034.6979,'EPSG','9001','EPSG','8807','False northing',126039.3868,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102882','OSGB36_Highways_England_C14H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102882','ESRI','137',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102883','unnamed',NULL,NULL,'ESRI','137','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999939,'EPSG','9201','EPSG','8806','False easting',111037.4739,'EPSG','9001','EPSG','8807','False northing',126042.5379,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102883','OSGB36_Highways_England_C14H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102883','ESRI','137',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102884','unnamed',NULL,NULL,'ESRI','137','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999964,'EPSG','9201','EPSG','8806','False easting',111040.25,'EPSG','9001','EPSG','8807','False northing',126045.6892,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102884','OSGB36_Highways_England_C14H3',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102884','ESRI','137',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102885','unnamed',NULL,NULL,'ESRI','137','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999989,'EPSG','9201','EPSG','8806','False easting',111043.0263,'EPSG','9001','EPSG','8807','False northing',126048.8406,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102885','OSGB36_Highways_England_C14H4',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102885','ESRI','137',NULL,0); INSERT INTO "area" VALUES('ESRI','138','UK - Highways England - C15','UK - Highways England - C15',53.931,55.1394,-3.2237,-2.6702,0); INSERT INTO "conversion" VALUES('ESRI','102886','unnamed',NULL,NULL,'ESRI','138','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999967,'EPSG','9201','EPSG','8806','False easting',88032.17537,'EPSG','9001','EPSG','8807','False northing',126046.0693,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102886','OSGB36_Highways_England_C15H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102886','ESRI','138',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102887','unnamed',NULL,NULL,'ESRI','138','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999992,'EPSG','9201','EPSG','8806','False easting',88034.37626,'EPSG','9001','EPSG','8807','False northing',126049.2206,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102887','OSGB36_Highways_England_C15H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102887','ESRI','138',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102888','unnamed',NULL,NULL,'ESRI','138','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000017,'EPSG','9201','EPSG','8806','False easting',88036.57726,'EPSG','9001','EPSG','8807','False northing',126052.372,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102888','OSGB36_Highways_England_C15H3',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102888','ESRI','138',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102889','unnamed',NULL,NULL,'ESRI','138','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000042,'EPSG','9201','EPSG','8806','False easting',88038.77836,'EPSG','9001','EPSG','8807','False northing',126055.5236,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102889','OSGB36_Highways_England_C15H4',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102889','ESRI','138',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102890','unnamed',NULL,NULL,'ESRI','138','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000067,'EPSG','9201','EPSG','8806','False easting',88040.97958,'EPSG','9001','EPSG','8807','False northing',126058.6753,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102890','OSGB36_Highways_England_C15H5',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102890','ESRI','138',NULL,0); INSERT INTO "area" VALUES('ESRI','139','UK - Highways England - C16','UK - Highways England - C16',53.935,55.8321,-2.7026,-1.4571,0); INSERT INTO "conversion" VALUES('ESRI','102891','unnamed',NULL,NULL,'ESRI','139','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000012,'EPSG','9201','EPSG','8806','False easting',54022.17583,'EPSG','9001','EPSG','8807','False northing',126051.7436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102891','OSGB36_Highways_England_C16H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102891','ESRI','139',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102892','unnamed',NULL,NULL,'ESRI','139','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000037,'EPSG','9201','EPSG','8806','False easting',54023.52644,'EPSG','9001','EPSG','8807','False northing',126054.895,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102892','OSGB36_Highways_England_C16H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102892','ESRI','139',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102893','unnamed',NULL,NULL,'ESRI','139','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000062,'EPSG','9201','EPSG','8806','False easting',54024.87711,'EPSG','9001','EPSG','8807','False northing',126058.0466,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102893','OSGB36_Highways_England_C16H3',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102893','ESRI','139',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102894','unnamed',NULL,NULL,'ESRI','139','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000087,'EPSG','9201','EPSG','8806','False easting',54026.22785,'EPSG','9001','EPSG','8807','False northing',126061.1983,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102894','OSGB36_Highways_England_C16H4',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102894','ESRI','139',NULL,0); INSERT INTO "area" VALUES('ESRI','140','UK - Highways England - C17','UK - Highways England - C17',53.9324,55.5176,-1.4821,-0.923,0); INSERT INTO "conversion" VALUES('ESRI','102895','unnamed',NULL,NULL,'ESRI','140','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999981,'EPSG','9201','EPSG','8806','False easting',-24009.11135,'EPSG','9001','EPSG','8807','False northing',126047.8346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102895','OSGB36_Highways_England_C17H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102895','ESRI','140',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102896','unnamed',NULL,NULL,'ESRI','140','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000006,'EPSG','9201','EPSG','8806','False easting',-24009.7116,'EPSG','9001','EPSG','8807','False northing',126050.9859,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102896','OSGB36_Highways_England_C17H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102896','ESRI','140',NULL,0); INSERT INTO "area" VALUES('ESRI','141','UK - Highways England - C18','UK - Highways England - C18',53.9276,54.3908,-0.9642,-0.4907,0); INSERT INTO "conversion" VALUES('ESRI','102897','unnamed',NULL,NULL,'ESRI','141','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999928,'EPSG','9201','EPSG','8806','False easting',-58018.94296,'EPSG','9001','EPSG','8807','False northing',126041.1519,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102897','OSGB36_Highways_England_C18H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102897','ESRI','141',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102898','unnamed',NULL,NULL,'ESRI','141','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999953,'EPSG','9201','EPSG','8806','False easting',-58020.39349,'EPSG','9001','EPSG','8807','False northing',126044.3031,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102898','OSGB36_Highways_England_C18H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102898','ESRI','141',NULL,0); INSERT INTO "area" VALUES('ESRI','142','UK - Highways England - C19','UK - Highways England - C19',53.9241,54.3859,-0.5074,-0.229,0); INSERT INTO "conversion" VALUES('ESRI','102899','unnamed',NULL,NULL,'ESRI','142','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999874,'EPSG','9201','EPSG','8806','False easting',-88023.98625,'EPSG','9001','EPSG','8807','False northing',126034.3439,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102899','OSGB36_Highways_England_C19H1',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102899','ESRI','142',NULL,0); INSERT INTO "conversion" VALUES('ESRI','102900','unnamed',NULL,NULL,'ESRI','142','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-2.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999899,'EPSG','9201','EPSG','8806','False easting',-88026.18693,'EPSG','9001','EPSG','8807','False northing',126037.4949,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102900','OSGB36_Highways_England_C19H2',NULL,NULL,'EPSG','4400','EPSG','4277','ESRI','102900','ESRI','142',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102962','NAD_1983_2011_California_Teale_Albers',NULL,NULL,NULL,NULL,'EPSG','6318',NULL,NULL,'EPSG','1375','PROJCS["NAD_1983_2011_California_Teale_Albers",GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",-4000000.0],PARAMETER["Central_Meridian",-120.0],PARAMETER["Standard_Parallel_1",34.0],PARAMETER["Standard_Parallel_2",40.5],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102963','NAD_1983_2011_Mississippi_TM',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102469','EPSG','1393',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102965','NAD_1983_2011_Contiguous_USA_Albers',NULL,NULL,NULL,NULL,'EPSG','6318',NULL,NULL,'EPSG','1323','PROJCS["NAD_1983_2011_Contiguous_USA_Albers",GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-96.0],PARAMETER["Standard_Parallel_1",29.5],PARAMETER["Standard_Parallel_2",45.5],PARAMETER["Latitude_Of_Origin",23.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102966','NAD_1983_2011_Alaska_Albers',NULL,NULL,NULL,NULL,'EPSG','6318',NULL,NULL,'EPSG','1330','PROJCS["NAD_1983_2011_Alaska_Albers",GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-154.0],PARAMETER["Standard_Parallel_1",55.0],PARAMETER["Standard_Parallel_2",65.0],PARAMETER["Latitude_Of_Origin",50.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102967','NAD_1983_2011_Florida_GDL_Albers',NULL,NULL,NULL,NULL,'EPSG','6318',NULL,NULL,'EPSG','1379','PROJCS["NAD_1983_2011_Florida_GDL_Albers",GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",400000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-84.0],PARAMETER["Standard_Parallel_1",24.0],PARAMETER["Standard_Parallel_2",31.5],PARAMETER["Latitude_Of_Origin",24.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102968','NAD_1983_2011_Michigan_GeoRef_Meters',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102123','EPSG','1391',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102969','NAD_1983_2011_Oregon_Statewide_Lambert',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102380','EPSG','1406',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102970','NAD_1983_2011_Oregon_Statewide_Lambert_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','102381','EPSG','1406',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102971','NAD_1983_2011_Texas_Centric_Mapping_System_Albers',NULL,NULL,NULL,NULL,'EPSG','6318',NULL,NULL,'EPSG','1412','PROJCS["NAD_1983_2011_Texas_Centric_Mapping_System_Albers",GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["False_Easting",1500000.0],PARAMETER["False_Northing",6000000.0],PARAMETER["Central_Meridian",-100.0],PARAMETER["Standard_Parallel_1",27.5],PARAMETER["Standard_Parallel_2",35.0],PARAMETER["Latitude_Of_Origin",18.0],UNIT["Meter",1.0]]',1); INSERT INTO "projected_crs" VALUES('ESRI','102972','NAD_1983_2011_Texas_Centric_Mapping_System_Lambert',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102602','EPSG','1412',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102973','NAD_1983_2011_Wisconsin_TM',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','14841','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102974','NAD_1983_2011_Wisconsin_TM_US_Ft',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102217','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','102975','NAD_1983_2011_StatePlane_Alabama_East_FIPS_0101',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102229','EPSG','2154',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102976','NAD_1983_2011_StatePlane_Alabama_West_FIPS_0102',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102230','EPSG','2155',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102977','unnamed',NULL,NULL,'EPSG','2156','EPSG','9812','Hotine Oblique Mercator (variant A)','EPSG','8811','Latitude of projection centre',57.0,'EPSG','9102','EPSG','8812','Longitude of projection centre',-133.6666666666667,'EPSG','9102','EPSG','8813','Azimuth of initial line',-36.86989764583333,'EPSG','9102','EPSG','8814','Angle from Rectified to Skew Grid',-36.86989764583333,'EPSG','9102','EPSG','8815','Scale factor on initial line',0.9999,'EPSG','9201','EPSG','8806','False easting',5000000.0,'EPSG','9001','EPSG','8807','False northing',-5000000.0,'EPSG','9001',1); INSERT INTO "projected_crs" VALUES('ESRI','102977','NAD_1983_2011_StatePlane_Alaska_1_FIPS_5001',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102977','EPSG','2156',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102978','NAD_1983_2011_StatePlane_Alaska_2_FIPS_5002',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','15032','EPSG','2158',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102979','NAD_1983_2011_StatePlane_Alaska_3_FIPS_5003',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','15033','EPSG','2159',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102980','NAD_1983_2011_StatePlane_Alaska_4_FIPS_5004',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','15034','EPSG','2160',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102981','NAD_1983_2011_StatePlane_Alaska_5_FIPS_5005',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','15035','EPSG','2161',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102982','NAD_1983_2011_StatePlane_Alaska_6_FIPS_5006',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','15036','EPSG','2162',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102983','NAD_1983_2011_StatePlane_Alaska_7_FIPS_5007',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','15037','EPSG','2163',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102984','NAD_1983_2011_StatePlane_Alaska_8_FIPS_5008',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','15038','EPSG','2164',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102985','NAD_1983_2011_StatePlane_Alaska_9_FIPS_5009',NULL,NULL,'EPSG','4400','EPSG','6318','EPSG','15039','EPSG','2165',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102986','unnamed',NULL,NULL,'EPSG','2157','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',51.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-176.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',51.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',53.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102986','NAD_1983_2011_StatePlane_Alaska_10_FIPS_5010',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102986','EPSG','2157',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102987','NAD_1983_2011_StatePlane_Arizona_East_FIPS_0201',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102248','EPSG','2167',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102988','NAD_1983_2011_StatePlane_Arizona_Central_FIPS_0202',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102249','EPSG','2166',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102989','NAD_1983_2011_StatePlane_Arizona_West_FIPS_0203',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102250','EPSG','2168',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102990','unnamed',NULL,NULL,'EPSG','2167','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-110.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102990','NAD_1983_2011_StatePlane_Arizona_East_FIPS_0201_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','102990','EPSG','2167',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102991','unnamed',NULL,NULL,'EPSG','2166','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.9166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102991','NAD_1983_2011_StatePlane_Arizona_Central_FIPS_0202_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','102991','EPSG','2166',NULL,1); INSERT INTO "conversion" VALUES('ESRI','102992','unnamed',NULL,NULL,'EPSG','2168','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-113.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102992','NAD_1983_2011_StatePlane_Arizona_West_FIPS_0203_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','102992','EPSG','2168',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102993','NAD_1983_2011_StatePlane_Arkansas_North_FIPS_0301',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102251','EPSG','2169',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102994','NAD_1983_2011_StatePlane_Arkansas_South_FIPS_0302',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102252','EPSG','2170',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102995','NAD_1983_2011_StatePlane_Arkansas_North_FIPS_0301_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102651','EPSG','2169',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102996','NAD_1983_2011_StatePlane_Arkansas_South_FIPS_0302_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102652','EPSG','2170',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102997','NAD_1983_2011_StatePlane_California_I_FIPS_0401',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102241','EPSG','2175',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102998','NAD_1983_2011_StatePlane_California_II_FIPS_0402',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102242','EPSG','2176',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','102999','NAD_1983_2011_StatePlane_California_III_FIPS_0403',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102243','EPSG','2177',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103000','NAD_1983_2011_StatePlane_California_IV_FIPS_0404',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102244','EPSG','2178',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103001','NAD_1983_2011_StatePlane_California_V_FIPS_0405',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102245','EPSG','2182',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103002','NAD_1983_2011_StatePlane_California_VI_FIPS_0406',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102246','EPSG','2180',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103003','NAD_1983_2011_StatePlane_California_I_FIPS_0401_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102641','EPSG','2175',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103004','NAD_1983_2011_StatePlane_California_II_FIPS_0402_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102642','EPSG','2176',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103005','NAD_1983_2011_StatePlane_California_III_FIPS_0403_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102643','EPSG','2177',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103006','NAD_1983_2011_StatePlane_California_IV_FIPS_0404_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102644','EPSG','2178',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103007','NAD_1983_2011_StatePlane_California_V_FIPS_0405_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102645','EPSG','2182',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103008','NAD_1983_2011_StatePlane_California_VI_FIPS_0406_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102646','EPSG','2180',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103009','NAD_1983_2011_StatePlane_Colorado_North_FIPS_0501',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102253','EPSG','2184',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103010','NAD_1983_2011_StatePlane_Colorado_Central_FIPS_0502',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102254','EPSG','2183',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103011','NAD_1983_2011_StatePlane_Colorado_South_FIPS_0503',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102255','EPSG','2185',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103012','NAD_1983_2011_StatePlane_Colorado_North_FIPS_0501_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102653','EPSG','2184',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103013','NAD_1983_2011_StatePlane_Colorado_Central_FIPS_0502_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102654','EPSG','2183',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103014','NAD_1983_2011_StatePlane_Colorado_South_FIPS_0503_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102655','EPSG','2185',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103015','NAD_1983_2011_StatePlane_Connecticut_FIPS_0600',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102256','EPSG','1377',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103016','NAD_1983_2011_StatePlane_Connecticut_FIPS_0600_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102656','EPSG','1377',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103017','NAD_1983_2011_StatePlane_Delaware_FIPS_0700',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102257','EPSG','1378',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103018','NAD_1983_2011_StatePlane_Delaware_FIPS_0700_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102657','EPSG','1378',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103019','NAD_1983_2011_StatePlane_Florida_East_FIPS_0901',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102258','EPSG','2186',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103020','NAD_1983_2011_StatePlane_Florida_West_FIPS_0902',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102259','EPSG','2188',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103021','NAD_1983_2011_StatePlane_Florida_North_FIPS_0903',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102260','EPSG','2187',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103022','NAD_1983_2011_StatePlane_Florida_East_FIPS_0901_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102658','EPSG','2186',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103023','NAD_1983_2011_StatePlane_Florida_West_FIPS_0902_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102659','EPSG','2188',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103024','NAD_1983_2011_StatePlane_Florida_North_FIPS_0903_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102660','EPSG','2187',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103025','NAD_1983_2011_StatePlane_Georgia_East_FIPS_1001',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102266','EPSG','2189',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103026','NAD_1983_2011_StatePlane_Georgia_West_FIPS_1002',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102267','EPSG','2190',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103027','NAD_1983_2011_StatePlane_Georgia_East_FIPS_1001_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102666','EPSG','2189',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103028','NAD_1983_2011_StatePlane_Georgia_West_FIPS_1002_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102667','EPSG','2190',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103029','NAD_1983_2011_StatePlane_Idaho_East_FIPS_1101',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102268','EPSG','2192',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103030','NAD_1983_2011_StatePlane_Idaho_Central_FIPS_1102',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102269','EPSG','2191',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103031','NAD_1983_2011_StatePlane_Idaho_West_FIPS_1103',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102270','EPSG','2193',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103032','NAD_1983_2011_StatePlane_Idaho_East_FIPS_1101_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102668','EPSG','2192',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103033','NAD_1983_2011_StatePlane_Idaho_Central_FIPS_1102_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102669','EPSG','2191',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103034','NAD_1983_2011_StatePlane_Idaho_West_FIPS_1103_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102670','EPSG','2193',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103035','NAD_1983_2011_StatePlane_Illinois_East_FIPS_1201',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102271','EPSG','2194',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103036','NAD_1983_2011_StatePlane_Illinois_West_FIPS_1202',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102272','EPSG','2195',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103037','NAD_1983_2011_StatePlane_Illinois_East_FIPS_1201_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102671','EPSG','2194',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103038','NAD_1983_2011_StatePlane_Illinois_West_FIPS_1202_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102672','EPSG','2195',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103039','NAD_1983_2011_StatePlane_Indiana_East_FIPS_1301',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102273','EPSG','2196',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103040','NAD_1983_2011_StatePlane_Indiana_West_FIPS_1302',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102274','EPSG','2197',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103041','NAD_1983_2011_StatePlane_Indiana_East_FIPS_1301_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102673','EPSG','2196',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103042','NAD_1983_2011_StatePlane_Indiana_West_FIPS_1302_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102674','EPSG','2197',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103043','NAD_1983_2011_StatePlane_Iowa_North_FIPS_1401',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102275','EPSG','2198',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103044','NAD_1983_2011_StatePlane_Iowa_South_FIPS_1402',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102276','EPSG','2199',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103045','NAD_1983_2011_StatePlane_Iowa_North_FIPS_1401_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102675','EPSG','2198',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103046','NAD_1983_2011_StatePlane_Iowa_South_FIPS_1402_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102676','EPSG','2199',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103047','NAD_1983_2011_StatePlane_Kansas_North_FIPS_1501',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102277','EPSG','2200',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103048','NAD_1983_2011_StatePlane_Kansas_South_FIPS_1502',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102278','EPSG','2201',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103049','NAD_1983_2011_StatePlane_Kansas_North_FIPS_1501_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102677','EPSG','2200',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103050','NAD_1983_2011_StatePlane_Kansas_South_FIPS_1502_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102678','EPSG','2201',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103051','NAD_1983_2011_StatePlane_Kentucky_North_FIPS_1601',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102279','EPSG','2202',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103052','NAD_1983_2011_StatePlane_Kentucky_North_FIPS_1601_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102679','EPSG','2202',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103053','NAD_1983_2011_StatePlane_Kentucky_FIPS_1600',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','65163','EPSG','1386',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103054','NAD_1983_2011_StatePlane_Kentucky_FIPS_1600_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102763','EPSG','1386',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103055','NAD_1983_2011_StatePlane_Kentucky_South_FIPS_1602',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102280','EPSG','2203',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103056','NAD_1983_2011_StatePlane_Kentucky_South_FIPS_1602_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102680','EPSG','2203',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103057','NAD_1983_2011_StatePlane_Louisiana_North_FIPS_1701',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102281','EPSG','2204',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103058','NAD_1983_2011_StatePlane_Louisiana_South_FIPS_1702',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102282','EPSG','2529',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103059','NAD_1983_2011_StatePlane_Louisiana_North_FIPS_1701_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102681','EPSG','2204',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103060','NAD_1983_2011_StatePlane_Louisiana_South_FIPS_1702_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102682','EPSG','2529',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103061','NAD_1983_2011_StatePlane_Maine_East_FIPS_1801',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102283','EPSG','2206',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103062','NAD_1983_2011_StatePlane_Maine_West_FIPS_1802',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102284','EPSG','2207',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103063','NAD_1983_2011_StatePlane_Maine_East_FIPS_1801_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102683','EPSG','2206',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103064','NAD_1983_2011_StatePlane_Maine_West_FIPS_1802_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102684','EPSG','2207',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103065','NAD_1983_2011_Maine_2000_East_Zone',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102208','EPSG','2960',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103066','NAD_1983_2011_Maine_2000_Central_Zone',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102209','EPSG','2959',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103067','NAD_1983_2011_Maine_2000_West_Zone',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102210','EPSG','2958',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103068','NAD_1983_2011_StatePlane_Maryland_FIPS_1900',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102285','EPSG','1389',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103069','NAD_1983_2011_StatePlane_Maryland_FIPS_1900_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102685','EPSG','1389',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103070','NAD_1983_2011_StatePlane_Massachusetts_Mainland_FIPS_2001',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102286','EPSG','2209',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103071','NAD_1983_2011_StatePlane_Massachusetts_Island_FIPS_2002',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102287','EPSG','2208',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103072','NAD_1983_2011_StatePlane_Massachusetts_Mnld_FIPS_2001_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102686','EPSG','2209',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103073','NAD_1983_2011_StatePlane_Massachusetts_Isl_FIPS_2002_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102687','EPSG','2208',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103074','NAD_1983_2011_StatePlane_Michigan_North_FIPS_2111',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102288','EPSG','1723',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103075','NAD_1983_2011_StatePlane_Michigan_Central_FIPS_2112',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102289','EPSG','1724',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103076','NAD_1983_2011_StatePlane_Michigan_South_FIPS_2113',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102290','EPSG','1725',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103077','unnamed',NULL,NULL,'EPSG','1723','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.78333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.48333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',26246719.16010498,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103077','NAD_1983_2011_StatePlane_Michigan_North_FIPS_2111_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103077','EPSG','1723',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103078','unnamed',NULL,NULL,'EPSG','1724','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.31666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.7,'EPSG','9102','EPSG','8826','Easting at false origin',19685039.37007874,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103078','NAD_1983_2011_StatePlane_Michigan_Central_FIPS_2112_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103078','EPSG','1724',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103079','unnamed',NULL,NULL,'EPSG','1725','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.1,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',13123359.58005249,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103079','NAD_1983_2011_StatePlane_Michigan_South_FIPS_2113_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103079','EPSG','1725',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103080','NAD_1983_2011_StatePlane_Minnesota_North_FIPS_2201',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102291','EPSG','2214',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103081','NAD_1983_2011_StatePlane_Minnesota_Central_FIPS_2202',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102292','EPSG','2213',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103082','NAD_1983_2011_StatePlane_Minnesota_South_FIPS_2203',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102293','EPSG','2215',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103083','NAD_1983_2011_StatePlane_Minnesota_North_FIPS_2201_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102466','EPSG','2214',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103084','NAD_1983_2011_StatePlane_Minnesota_Central_FIPS_2202_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102467','EPSG','2213',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103085','NAD_1983_2011_StatePlane_Minnesota_South_FIPS_2203_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102468','EPSG','2215',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103086','NAD_1983_2011_StatePlane_Mississippi_East_FIPS_2301',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102294','EPSG','2216',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103087','NAD_1983_2011_StatePlane_Mississippi_West_FIPS_2302',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102295','EPSG','2217',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103088','NAD_1983_2011_StatePlane_Mississippi_East_FIPS_2301_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102694','EPSG','2216',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103089','NAD_1983_2011_StatePlane_Mississippi_West_FIPS_2302_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102695','EPSG','2217',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103090','NAD_1983_2011_StatePlane_Missouri_East_FIPS_2401',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102296','EPSG','2219',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103091','NAD_1983_2011_StatePlane_Missouri_Central_FIPS_2402',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102297','EPSG','2218',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103092','NAD_1983_2011_StatePlane_Missouri_West_FIPS_2403',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102298','EPSG','2220',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103093','NAD_1983_2011_StatePlane_Montana_FIPS_2500',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102300','EPSG','1395',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103094','unnamed',NULL,NULL,'EPSG','1395','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.25,'EPSG','9102','EPSG','8822','Longitude of false origin',-109.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.0,'EPSG','9102','EPSG','8826','Easting at false origin',1968503.937007874,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103094','NAD_1983_2011_StatePlane_Montana_FIPS_2500_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103094','EPSG','1395',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103095','NAD_1983_2011_StatePlane_Nebraska_FIPS_2600',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102304','EPSG','1396',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103096','NAD_1983_2011_StatePlane_Nebraska_FIPS_2600_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102704','EPSG','1396',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103097','NAD_1983_2011_StatePlane_Nevada_East_FIPS_2701',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102307','EPSG','2224',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103098','NAD_1983_2011_StatePlane_Nevada_Central_FIPS_2702',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102308','EPSG','2223',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103099','NAD_1983_2011_StatePlane_Nevada_West_FIPS_2703',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102309','EPSG','2225',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103100','NAD_1983_2011_StatePlane_Nevada_East_FIPS_2701_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102707','EPSG','2224',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103101','NAD_1983_2011_StatePlane_Nevada_Central_FIPS_2702_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102708','EPSG','2223',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103102','NAD_1983_2011_StatePlane_Nevada_West_FIPS_2703_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102709','EPSG','2225',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103103','NAD_1983_2011_StatePlane_New_Hampshire_FIPS_2800',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102310','EPSG','1398',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103104','NAD_1983_2011_StatePlane_New_Hampshire_FIPS_2800_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102710','EPSG','1398',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103105','NAD_1983_2011_StatePlane_New_Jersey_FIPS_2900',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102311','EPSG','1399',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103106','NAD_1983_2011_StatePlane_New_Jersey_FIPS_2900_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102711','EPSG','1399',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103107','NAD_1983_2011_StatePlane_New_Mexico_East_FIPS_3001',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102312','EPSG','2228',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103108','NAD_1983_2011_StatePlane_New_Mexico_Central_FIPS_3002',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102313','EPSG','2231',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103109','NAD_1983_2011_StatePlane_New_Mexico_West_FIPS_3003',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102314','EPSG','2232',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103110','NAD_1983_2011_StatePlane_New_Mexico_East_FIPS_3001_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102712','EPSG','2228',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103111','NAD_1983_2011_StatePlane_New_Mexico_Central_FIPS_3002_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102713','EPSG','2231',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103112','NAD_1983_2011_StatePlane_New_Mexico_West_FIPS_3003_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102714','EPSG','2232',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103113','NAD_1983_2011_StatePlane_New_York_East_FIPS_3101',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102315','EPSG','2234',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103114','NAD_1983_2011_StatePlane_New_York_Central_FIPS_3102',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102316','EPSG','2233',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103115','NAD_1983_2011_StatePlane_New_York_West_FIPS_3103',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102317','EPSG','2236',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103116','NAD_1983_2011_StatePlane_New_York_Long_Island_FIPS_3104',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102318','EPSG','2235',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103117','NAD_1983_2011_StatePlane_New_York_East_FIPS_3101_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102715','EPSG','2234',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103118','NAD_1983_2011_StatePlane_New_York_Central_FIPS_3102_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102716','EPSG','2233',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103119','NAD_1983_2011_StatePlane_New_York_West_FIPS_3103_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102717','EPSG','2236',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103120','NAD_1983_2011_StatePlane_New_York_Long_Isl_FIPS_3104_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102718','EPSG','2235',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103121','unnamed',NULL,NULL,'EPSG','1402','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.75,'EPSG','9102','EPSG','8822','Longitude of false origin',-79.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',609601.2192024384,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103121','NAD_1983_2011_StatePlane_North_Carolina_FIPS_3200',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','103121','EPSG','1402',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103122','unnamed',NULL,NULL,'EPSG','1402','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.75,'EPSG','9102','EPSG','8822','Longitude of false origin',-79.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103122','NAD_1983_2011_StatePlane_North_Carolina_FIPS_3200_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','103122','EPSG','1402',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103123','NAD_1983_2011_StatePlane_North_Dakota_North_FIPS_3301',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102320','EPSG','2237',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103124','NAD_1983_2011_StatePlane_North_Dakota_South_FIPS_3302',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102321','EPSG','2238',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103125','unnamed',NULL,NULL,'EPSG','2237','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.43333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968503.937007874,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103125','NAD_1983_2011_StatePlane_North_Dakota_North_FIPS_3301_FtI',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103125','EPSG','2237',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103126','unnamed',NULL,NULL,'EPSG','2238','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968503.937007874,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103126','NAD_1983_2011_StatePlane_North_Dakota_South_FIPS_3302_FtI',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103126','EPSG','2238',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103127','NAD_1983_2011_StatePlane_Ohio_North_FIPS_3401',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102322','EPSG','2239',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103128','NAD_1983_2011_StatePlane_Ohio_South_FIPS_3402',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102323','EPSG','2240',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103129','NAD_1983_2011_StatePlane_Ohio_North_FIPS_3401_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102722','EPSG','2239',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103130','NAD_1983_2011_StatePlane_Ohio_South_FIPS_3402_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102723','EPSG','2240',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103131','NAD_1983_2011_StatePlane_Oklahoma_North_FIPS_3501',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102324','EPSG','2241',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103132','NAD_1983_2011_StatePlane_Oklahoma_South_FIPS_3502',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102325','EPSG','2242',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103133','NAD_1983_2011_StatePlane_Oklahoma_North_FIPS_3501_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102724','EPSG','2241',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103134','NAD_1983_2011_StatePlane_Oklahoma_South_FIPS_3502_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102725','EPSG','2242',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103135','NAD_1983_2011_StatePlane_Oregon_North_FIPS_3601',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102326','EPSG','2243',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103136','NAD_1983_2011_StatePlane_Oregon_South_FIPS_3602',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102327','EPSG','2244',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103137','NAD_1983_2011_StatePlane_Oregon_North_FIPS_3601_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','102378','EPSG','2243',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103138','NAD_1983_2011_StatePlane_Oregon_South_FIPS_3602_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','102379','EPSG','2244',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103139','unnamed',NULL,NULL,'EPSG','2245','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.88333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.95,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103139','NAD_1983_2011_StatePlane_Pennsylvania_North_FIPS_3701',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','103139','EPSG','2245',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103140','NAD_1983_2011_StatePlane_Pennsylvania_North_FIPS_3701_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102728','EPSG','2245',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103141','unnamed',NULL,NULL,'EPSG','2246','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103141','NAD_1983_2011_StatePlane_Pennsylvania_South_FIPS_3702',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','103141','EPSG','2246',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103142','NAD_1983_2011_StatePlane_Pennsylvania_South_FIPS_3702_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102729','EPSG','2246',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103143','NAD_1983_2011_StatePlane_Rhode_Island_FIPS_3800',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102330','EPSG','1408',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103144','NAD_1983_2011_StatePlane_Rhode_Island_FIPS_3800_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102730','EPSG','1408',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103145','unnamed',NULL,NULL,'EPSG','1409','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',609600.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103145','NAD_1983_2011_StatePlane_South_Carolina_FIPS_3900',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','103145','EPSG','1409',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103146','unnamed',NULL,NULL,'EPSG','1409','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103146','NAD_1983_2011_StatePlane_South_Carolina_FIPS_3900_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103146','EPSG','1409',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103147','NAD_1983_2011_StatePlane_South_Dakota_North_FIPS_4001',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102334','EPSG','2249',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103148','NAD_1983_2011_StatePlane_South_Dakota_South_FIPS_4002',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102335','EPSG','2250',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103149','NAD_1983_2011_StatePlane_South_Dakota_North_FIPS_4001_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102734','EPSG','2249',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103150','NAD_1983_2011_StatePlane_South_Dakota_South_FIPS_4002_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102735','EPSG','2250',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103151','NAD_1983_2011_StatePlane_Tennessee_FIPS_4100',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102336','EPSG','1411',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103152','NAD_1983_2011_StatePlane_Tennessee_FIPS_4100_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102736','EPSG','1411',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103153','NAD_1983_2011_StatePlane_Texas_North_FIPS_4201',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102337','EPSG','2253',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103154','NAD_1983_2011_StatePlane_Texas_North_Central_FIPS_4202',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102338','EPSG','2254',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103155','NAD_1983_2011_StatePlane_Texas_Central_FIPS_4203',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102339','EPSG','2252',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103156','NAD_1983_2011_StatePlane_Texas_South_Central_FIPS_4204',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102340','EPSG','2527',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103157','NAD_1983_2011_StatePlane_Texas_South_FIPS_4205',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102341','EPSG','2528',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103158','NAD_1983_2011_StatePlane_Texas_North_FIPS_4201_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102737','EPSG','2253',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103159','NAD_1983_2011_StatePlane_Texas_North_Central_FIPS_4202_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102738','EPSG','2254',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103160','NAD_1983_2011_StatePlane_Texas_Central_FIPS_4203_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102739','EPSG','2252',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103161','NAD_1983_2011_StatePlane_Texas_South_Central_FIPS_4204_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102740','EPSG','2527',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103162','NAD_1983_2011_StatePlane_Texas_South_FIPS_4205_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102741','EPSG','2528',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103163','NAD_1983_2011_StatePlane_Utah_North_FIPS_4301',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102342','EPSG','2258',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103164','NAD_1983_2011_StatePlane_Utah_Central_FIPS_4302',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102343','EPSG','2257',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103165','NAD_1983_2011_StatePlane_Utah_South_FIPS_4303',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102344','EPSG','2259',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103166','unnamed',NULL,NULL,'EPSG','2258','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640419.947506561,'EPSG','9002','EPSG','8827','Northing at false origin',3280839.895013123,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103166','NAD_1983_2011_StatePlane_Utah_North_FIPS_4301_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103166','EPSG','2258',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103167','unnamed',NULL,NULL,'EPSG','2257','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.01666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.65,'EPSG','9102','EPSG','8826','Easting at false origin',1640419.947506561,'EPSG','9002','EPSG','8827','Northing at false origin',6561679.790026246,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103167','NAD_1983_2011_StatePlane_Utah_Central_FIPS_4302_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103167','EPSG','2257',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103168','unnamed',NULL,NULL,'EPSG','2259','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.21666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.35,'EPSG','9102','EPSG','8826','Easting at false origin',1640419.947506561,'EPSG','9002','EPSG','8827','Northing at false origin',9842519.685039369,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103168','NAD_1983_2011_StatePlane_Utah_South_FIPS_4303_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103168','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103169','NAD_1983_2011_StatePlane_Utah_North_FIPS_4301_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102742','EPSG','2258',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103170','NAD_1983_2011_StatePlane_Utah_Central_FIPS_4302_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102743','EPSG','2257',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103171','NAD_1983_2011_StatePlane_Utah_South_FIPS_4303_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102744','EPSG','2259',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103172','NAD_1983_2011_StatePlane_Vermont_FIPS_4400',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102345','EPSG','1414',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103173','NAD_1983_2011_StatePlane_Vermont_FIPS_4400_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102745','EPSG','1414',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103174','NAD_1983_2011_StatePlane_Virginia_North_FIPS_4501',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102346','EPSG','2260',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103175','NAD_1983_2011_StatePlane_Virginia_South_FIPS_4502',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102347','EPSG','2261',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103176','NAD_1983_2011_StatePlane_Virginia_North_FIPS_4501_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102746','EPSG','2260',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103177','NAD_1983_2011_StatePlane_Virginia_South_FIPS_4502_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102747','EPSG','2261',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103178','NAD_1983_2011_StatePlane_Washington_North_FIPS_4601',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102348','EPSG','2273',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103179','NAD_1983_2011_StatePlane_Washington_South_FIPS_4602',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102349','EPSG','2274',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103180','NAD_1983_2011_StatePlane_Washington_North_FIPS_4601_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102748','EPSG','2273',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103181','NAD_1983_2011_StatePlane_Washington_South_FIPS_4602_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102749','EPSG','2274',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103182','NAD_1983_2011_StatePlane_West_Virginia_North_FIPS_4701',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102350','EPSG','2264',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103183','NAD_1983_2011_StatePlane_West_Virginia_South_FIPS_4702',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102351','EPSG','2265',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103184','NAD_1983_2011_StatePlane_West_Virginia_North_FIPS_4701_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102750','EPSG','2264',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103185','NAD_1983_2011_StatePlane_West_Virginia_South_FIPS_4702_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102751','EPSG','2265',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103186','NAD_1983_2011_StatePlane_Wisconsin_North_FIPS_4801',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102352','EPSG','2267',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103187','NAD_1983_2011_StatePlane_Wisconsin_Central_FIPS_4802',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102353','EPSG','2266',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103188','NAD_1983_2011_StatePlane_Wisconsin_South_FIPS_4803',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102354','EPSG','2268',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103189','NAD_1983_2011_StatePlane_Wisconsin_North_FIPS_4801_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102752','EPSG','2267',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103190','NAD_1983_2011_StatePlane_Wisconsin_Central_FIPS_4802_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102753','EPSG','2266',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103191','NAD_1983_2011_StatePlane_Wisconsin_South_FIPS_4803_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102754','EPSG','2268',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103192','NAD_1983_2011_StatePlane_Wyoming_East_FIPS_4901',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102355','EPSG','2269',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103193','NAD_1983_2011_StatePlane_Wyoming_East_Central_FIPS_4902',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102356','EPSG','2270',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103194','NAD_1983_2011_StatePlane_Wyoming_West_Central_FIPS_4903',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102357','EPSG','2272',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103195','NAD_1983_2011_StatePlane_Wyoming_West_FIPS_4904',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102358','EPSG','2271',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103196','NAD_1983_2011_StatePlane_Wyoming_East_FIPS_4901_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102755','EPSG','2269',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103197','NAD_1983_2011_StatePlane_Wyoming_E_Central_FIPS_4902_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102756','EPSG','2270',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103198','NAD_1983_2011_StatePlane_Wyoming_W_Central_FIPS_4903_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102757','EPSG','2272',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103199','NAD_1983_2011_StatePlane_Wyoming_West_FIPS_4904_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','102758','EPSG','2271',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103200','NAD_1983_2011_StatePlane_Puerto_Rico_Virgin_Isls_FIPS_5200',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','102361','EPSG','3634',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103201','RGRDC_2005_Congo_TM_Zone_12',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','17412','EPSG','3937',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103202','RGRDC_2005_Congo_TM_Zone_14',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','17414','EPSG','3151',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103203','RGRDC_2005_Congo_TM_Zone_16',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','17416','EPSG','3617',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103204','RGRDC_2005_Congo_TM_Zone_18',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','17418','EPSG','3618',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103205','RGRDC_2005_Congo_TM_Zone_20',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','17420','EPSG','3620',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103206','RGRDC_2005_Congo_TM_Zone_22',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','17422','EPSG','3621',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103207','RGRDC_2005_Congo_TM_Zone_24',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','17424','EPSG','3622',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103208','RGRDC_2005_Congo_TM_Zone_26',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','17426','EPSG','3623',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103209','RGRDC_2005_Congo_TM_Zone_28',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','17428','EPSG','3624',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103210','RGRDC_2005_UTM_Zone_33S',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','16133','EPSG','3626',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103211','RGRDC_2005_UTM_Zone_34S',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','16134','EPSG','3627',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103212','RGRDC_2005_UTM_Zone_35S',NULL,NULL,'EPSG','4400','EPSG','4046','EPSG','16135','EPSG','3628',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103213','Chua_UTM_Zone_23S',NULL,NULL,'EPSG','4400','EPSG','4224','EPSG','16123','EPSG','3619',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103214','REGCAN95_UTM_Zone_27N',NULL,NULL,'EPSG','4400','EPSG','4081','EPSG','16027','EPSG','3629',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103215','REGCAN95_UTM_Zone_28N',NULL,NULL,'EPSG','4400','EPSG','4081','EPSG','16028','EPSG','3630',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103216','ETRS_1989_DKTM1',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4089','EPSG','3631',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103217','ETRS_1989_DKTM2',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4090','EPSG','3632',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103218','ETRS_1989_DKTM3',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4091','EPSG','2532',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103219','ETRS_1989_DKTM4',NULL,NULL,'EPSG','4400','EPSG','4258','EPSG','4092','EPSG','2533',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103220','unnamed',NULL,NULL,'EPSG','2154','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-85.83333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99996,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103220','NAD_1983_CORS96_StatePlane_Alabama_East_FIPS_0101',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103220','EPSG','2154',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103221','unnamed',NULL,NULL,'EPSG','2155','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103221','NAD_1983_CORS96_StatePlane_Alabama_West_FIPS_0102',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103221','EPSG','2155',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103222','unnamed',NULL,NULL,'EPSG','2167','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-110.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',213360.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103222','NAD_1983_CORS96_StatePlane_Arizona_East_FIPS_0201',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103222','EPSG','2167',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103223','unnamed',NULL,NULL,'EPSG','2166','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.9166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',213360.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103223','NAD_1983_CORS96_StatePlane_Arizona_Central_FIPS_0202',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103223','EPSG','2166',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103224','unnamed',NULL,NULL,'EPSG','2168','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-113.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',213360.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103224','NAD_1983_CORS96_StatePlane_Arizona_West_FIPS_0203',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103224','EPSG','2168',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103225','unnamed',NULL,NULL,'EPSG','2167','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-110.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103225','NAD_1983_CORS96_StatePlane_Arizona_East_FIPS_0201_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103225','EPSG','2167',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103226','unnamed',NULL,NULL,'EPSG','2166','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.9166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103226','NAD_1983_CORS96_StatePlane_Arizona_Central_FIPS_0202_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103226','EPSG','2166',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103227','unnamed',NULL,NULL,'EPSG','2168','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-113.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9002','EPSG','8807','False northing',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103227','NAD_1983_CORS96_StatePlane_Arizona_West_FIPS_0203_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103227','EPSG','2168',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103228','unnamed',NULL,NULL,'EPSG','2169','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.23333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103228','NAD_1983_CORS96_StatePlane_Arkansas_North_FIPS_0301',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103228','EPSG','2169',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103229','unnamed',NULL,NULL,'EPSG','2170','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',33.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103229','NAD_1983_CORS96_StatePlane_Arkansas_South_FIPS_0302',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103229','EPSG','2170',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103230','unnamed',NULL,NULL,'EPSG','2169','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.23333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1312333.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103230','NAD_1983_CORS96_StatePlane_Arkansas_North_FIPS_0301_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103230','EPSG','2169',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103231','unnamed',NULL,NULL,'EPSG','2170','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',33.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1312333.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',1312333.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103231','NAD_1983_CORS96_StatePlane_Arkansas_South_FIPS_0302_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103231','EPSG','2170',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103232','unnamed',NULL,NULL,'EPSG','2175','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103232','NAD_1983_CORS96_StatePlane_California_I_FIPS_0401',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103232','EPSG','2175',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103233','unnamed',NULL,NULL,'EPSG','2176','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103233','NAD_1983_CORS96_StatePlane_California_II_FIPS_0402',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103233','EPSG','2176',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103234','unnamed',NULL,NULL,'EPSG','2177','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.06666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103234','NAD_1983_CORS96_StatePlane_California_III_FIPS_0403',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103234','EPSG','2177',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103235','unnamed',NULL,NULL,'EPSG','2178','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-119.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.25,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103235','NAD_1983_CORS96_StatePlane_California_IV_FIPS_0404',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103235','EPSG','2178',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103236','unnamed',NULL,NULL,'EPSG','2182','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-118.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',35.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103236','NAD_1983_CORS96_StatePlane_California_V_FIPS_0405',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103236','EPSG','2182',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103237','unnamed',NULL,NULL,'EPSG','2180','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-116.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',33.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103237','NAD_1983_CORS96_StatePlane_California_VI_FIPS_0406',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103237','EPSG','2180',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103238','unnamed',NULL,NULL,'EPSG','2175','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103238','NAD_1983_CORS96_StatePlane_California_I_FIPS_0401_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103238','EPSG','2175',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103239','unnamed',NULL,NULL,'EPSG','2176','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-122.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103239','NAD_1983_CORS96_StatePlane_California_II_FIPS_0402_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103239','EPSG','2176',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103240','unnamed',NULL,NULL,'EPSG','2177','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.06666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103240','NAD_1983_CORS96_StatePlane_California_III_FIPS_0403_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103240','EPSG','2177',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103241','unnamed',NULL,NULL,'EPSG','2178','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-119.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.25,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103241','NAD_1983_CORS96_StatePlane_California_IV_FIPS_0404_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103241','EPSG','2178',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103242','unnamed',NULL,NULL,'EPSG','2182','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-118.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',35.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103242','NAD_1983_CORS96_StatePlane_California_V_FIPS_0405_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103242','EPSG','2182',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103243','unnamed',NULL,NULL,'EPSG','2180','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',32.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-116.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',33.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',6561666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103243','NAD_1983_CORS96_StatePlane_California_VI_FIPS_0406_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103243','EPSG','2180',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103244','unnamed',NULL,NULL,'EPSG','2184','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',914401.8289,'EPSG','9001','EPSG','8827','Northing at false origin',304800.6096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103244','NAD_1983_CORS96_StatePlane_Colorado_North_FIPS_0501',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103244','EPSG','2184',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103245','unnamed',NULL,NULL,'EPSG','2183','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.45,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.75,'EPSG','9102','EPSG','8826','Easting at false origin',914401.8289,'EPSG','9001','EPSG','8827','Northing at false origin',304800.6096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103245','NAD_1983_CORS96_StatePlane_Colorado_Central_FIPS_0502',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103245','EPSG','2183',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103246','unnamed',NULL,NULL,'EPSG','2185','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.23333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',914401.8289,'EPSG','9001','EPSG','8827','Northing at false origin',304800.6096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103246','NAD_1983_CORS96_StatePlane_Colorado_South_FIPS_0503',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103246','EPSG','2185',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103247','unnamed',NULL,NULL,'EPSG','2184','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',3000000.000316083,'EPSG','9003','EPSG','8827','Northing at false origin',999999.999996,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103247','NAD_1983_CORS96_StatePlane_Colorado_North_FIPS_0501_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103247','EPSG','2184',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103248','unnamed',NULL,NULL,'EPSG','2183','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.45,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.75,'EPSG','9102','EPSG','8826','Easting at false origin',3000000.000316083,'EPSG','9003','EPSG','8827','Northing at false origin',999999.999996,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103248','NAD_1983_CORS96_StatePlane_Colorado_Central_FIPS_0502_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103248','EPSG','2183',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103249','unnamed',NULL,NULL,'EPSG','2185','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-105.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.23333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.43333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',3000000.000316083,'EPSG','9003','EPSG','8827','Northing at false origin',999999.999996,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103249','NAD_1983_CORS96_StatePlane_Colorado_South_FIPS_0503_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103249','EPSG','2185',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103250','unnamed',NULL,NULL,'EPSG','1377','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-72.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.2,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.86666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',304800.6096,'EPSG','9001','EPSG','8827','Northing at false origin',152400.3048,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103250','NAD_1983_CORS96_StatePlane_Connecticut_FIPS_0600',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103250','EPSG','1377',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103251','unnamed',NULL,NULL,'EPSG','1377','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-72.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.2,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.86666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',999999.999996,'EPSG','9003','EPSG','8827','Northing at false origin',499999.999998,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103251','NAD_1983_CORS96_StatePlane_Connecticut_FIPS_0600_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103251','EPSG','1377',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103252','unnamed',NULL,NULL,'EPSG','1378','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-75.41666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103252','NAD_1983_CORS96_StatePlane_Delaware_FIPS_0700',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103252','EPSG','1378',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103253','unnamed',NULL,NULL,'EPSG','1378','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-75.41666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103253','NAD_1983_CORS96_StatePlane_Delaware_FIPS_0700_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103253','EPSG','1378',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103254','unnamed',NULL,NULL,'EPSG','2186','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103254','NAD_1983_CORS96_StatePlane_Florida_East_FIPS_0901',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103254','EPSG','2186',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103255','unnamed',NULL,NULL,'EPSG','2188','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-82.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103255','NAD_1983_CORS96_StatePlane_Florida_West_FIPS_0902',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103255','EPSG','2188',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103256','unnamed',NULL,NULL,'EPSG','2187','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',29.58333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.75,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103256','NAD_1983_CORS96_StatePlane_Florida_North_FIPS_0903',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103256','EPSG','2187',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103257','unnamed',NULL,NULL,'EPSG','2186','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-81.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103257','NAD_1983_CORS96_StatePlane_Florida_East_FIPS_0901_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103257','EPSG','2186',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103258','unnamed',NULL,NULL,'EPSG','2188','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',24.33333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-82.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103258','NAD_1983_CORS96_StatePlane_Florida_West_FIPS_0902_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103258','EPSG','2188',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103259','unnamed',NULL,NULL,'EPSG','2187','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',29.58333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.75,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103259','NAD_1983_CORS96_StatePlane_Florida_North_FIPS_0903_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103259','EPSG','2187',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103260','unnamed',NULL,NULL,'EPSG','2189','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-82.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103260','NAD_1983_CORS96_StatePlane_Georgia_East_FIPS_1001',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103260','EPSG','2189',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103261','unnamed',NULL,NULL,'EPSG','2190','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-84.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103261','NAD_1983_CORS96_StatePlane_Georgia_West_FIPS_1002',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103261','EPSG','2190',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103262','unnamed',NULL,NULL,'EPSG','2189','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-82.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103262','NAD_1983_CORS96_StatePlane_Georgia_East_FIPS_1001_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103262','EPSG','2189',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103263','unnamed',NULL,NULL,'EPSG','2190','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',30.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-84.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',2296583.333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103263','NAD_1983_CORS96_StatePlane_Georgia_West_FIPS_1002_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103263','EPSG','2190',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103264','unnamed',NULL,NULL,'EPSG','2192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-112.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999473684210526,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103264','NAD_1983_CORS96_StatePlane_Idaho_East_FIPS_1101',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103264','EPSG','2192',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103265','unnamed',NULL,NULL,'EPSG','2191','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-114.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999473684210526,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103265','NAD_1983_CORS96_StatePlane_Idaho_Central_FIPS_1102',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103265','EPSG','2191',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103266','unnamed',NULL,NULL,'EPSG','2193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103266','NAD_1983_CORS96_StatePlane_Idaho_West_FIPS_1103',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103266','EPSG','2193',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103267','unnamed',NULL,NULL,'EPSG','2192','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-112.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999473684210526,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103267','NAD_1983_CORS96_StatePlane_Idaho_East_FIPS_1101_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103267','EPSG','2192',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103268','unnamed',NULL,NULL,'EPSG','2191','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-114.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999473684210526,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103268','NAD_1983_CORS96_StatePlane_Idaho_Central_FIPS_1102_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103268','EPSG','2191',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103269','unnamed',NULL,NULL,'EPSG','2193','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',2624666.666666666,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103269','NAD_1983_CORS96_StatePlane_Idaho_West_FIPS_1103_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103269','EPSG','2193',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103270','unnamed',NULL,NULL,'EPSG','2194','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.33333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999975,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103270','NAD_1983_CORS96_StatePlane_Illinois_East_FIPS_1201',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103270','EPSG','2194',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103271','unnamed',NULL,NULL,'EPSG','2195','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103271','NAD_1983_CORS96_StatePlane_Illinois_West_FIPS_1202',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103271','EPSG','2195',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103272','unnamed',NULL,NULL,'EPSG','2194','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.33333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999975,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103272','NAD_1983_CORS96_StatePlane_Illinois_East_FIPS_1201_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103272','EPSG','2194',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103273','unnamed',NULL,NULL,'EPSG','2195','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',2296583.333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103273','NAD_1983_CORS96_StatePlane_Illinois_West_FIPS_1202_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103273','EPSG','2195',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103274','unnamed',NULL,NULL,'EPSG','2196','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-85.66666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',250000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103274','NAD_1983_CORS96_StatePlane_Indiana_East_FIPS_1301',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103274','EPSG','2196',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103275','unnamed',NULL,NULL,'EPSG','2197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.08333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',900000.0,'EPSG','9001','EPSG','8807','False northing',250000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103275','NAD_1983_CORS96_StatePlane_Indiana_West_FIPS_1302',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103275','EPSG','2197',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103276','unnamed',NULL,NULL,'EPSG','2196','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-85.66666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',328083.3333333333,'EPSG','9003','EPSG','8807','False northing',820208.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103276','NAD_1983_CORS96_StatePlane_Indiana_East_FIPS_1301_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103276','EPSG','2196',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103277','unnamed',NULL,NULL,'EPSG','2197','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',37.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.08333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',2952750.0,'EPSG','9003','EPSG','8807','False northing',820208.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103277','NAD_1983_CORS96_StatePlane_Indiana_West_FIPS_1302_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103277','EPSG','2197',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103278','unnamed',NULL,NULL,'EPSG','2198','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.06666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.26666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103278','NAD_1983_CORS96_StatePlane_Iowa_North_FIPS_1401',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103278','EPSG','2198',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103279','unnamed',NULL,NULL,'EPSG','2199','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.61666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103279','NAD_1983_CORS96_StatePlane_Iowa_South_FIPS_1402',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103279','EPSG','2199',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103280','unnamed',NULL,NULL,'EPSG','2198','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.06666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.26666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',4921250.0,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103280','NAD_1983_CORS96_StatePlane_Iowa_North_FIPS_1401_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103280','EPSG','2198',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103281','unnamed',NULL,NULL,'EPSG','2199','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.61666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103281','NAD_1983_CORS96_StatePlane_Iowa_South_FIPS_1402_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103281','EPSG','2199',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103282','unnamed',NULL,NULL,'EPSG','2200','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103282','NAD_1983_CORS96_StatePlane_Kansas_North_FIPS_1501',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103282','EPSG','2200',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103283','unnamed',NULL,NULL,'EPSG','2201','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.26666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.56666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',400000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103283','NAD_1983_CORS96_StatePlane_Kansas_South_FIPS_1502',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103283','EPSG','2201',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103284','unnamed',NULL,NULL,'EPSG','2200','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1312333.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103284','NAD_1983_CORS96_StatePlane_Kansas_North_FIPS_1501_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103284','EPSG','2200',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103285','unnamed',NULL,NULL,'EPSG','2201','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.26666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.56666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1312333.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',1312333.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103285','NAD_1983_CORS96_StatePlane_Kansas_South_FIPS_1502_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103285','EPSG','2201',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103286','unnamed',NULL,NULL,'EPSG','2202','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.96666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103286','NAD_1983_CORS96_StatePlane_Kentucky_North_FIPS_1601',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103286','EPSG','2202',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103287','unnamed',NULL,NULL,'EPSG','2202','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.96666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103287','NAD_1983_CORS96_StatePlane_Kentucky_North_FIPS_1601_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103287','EPSG','2202',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103288','unnamed',NULL,NULL,'EPSG','1386','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-85.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.08333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',1500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103288','NAD_1983_CORS96_StatePlane_Kentucky_FIPS_1600',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103288','EPSG','1386',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103289','unnamed',NULL,NULL,'EPSG','1386','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-85.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.08333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',4921250.0,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103289','NAD_1983_CORS96_StatePlane_Kentucky_FIPS_1600_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103289','EPSG','1386',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103290','unnamed',NULL,NULL,'EPSG','2203','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-85.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.93333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',500000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103290','NAD_1983_CORS96_StatePlane_Kentucky_South_FIPS_1602',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103290','EPSG','2203',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103291','unnamed',NULL,NULL,'EPSG','2203','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-85.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.93333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',1640416.666666667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103291','NAD_1983_CORS96_StatePlane_Kentucky_South_FIPS_1602_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103291','EPSG','2203',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103292','unnamed',NULL,NULL,'EPSG','2204','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',30.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',31.16666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',32.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103292','NAD_1983_CORS96_StatePlane_Louisiana_North_FIPS_1701',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103292','EPSG','2204',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103293','unnamed',NULL,NULL,'EPSG','2529','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',28.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.33333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',29.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.7,'EPSG','9102','EPSG','8826','Easting at false origin',1000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103293','NAD_1983_CORS96_StatePlane_Louisiana_South_FIPS_1702',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103293','EPSG','2529',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103294','unnamed',NULL,NULL,'EPSG','2204','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',30.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',31.16666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',32.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',3280833.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103294','NAD_1983_CORS96_StatePlane_Louisiana_North_FIPS_1701_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103294','EPSG','2204',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103295','unnamed',NULL,NULL,'EPSG','2529','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',28.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.33333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',29.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.7,'EPSG','9102','EPSG','8826','Easting at false origin',3280833.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103295','NAD_1983_CORS96_StatePlane_Louisiana_South_FIPS_1702_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103295','EPSG','2529',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103296','unnamed',NULL,NULL,'EPSG','2206','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-68.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103296','NAD_1983_CORS96_StatePlane_Maine_East_FIPS_1801',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103296','EPSG','2206',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103297','unnamed',NULL,NULL,'EPSG','2207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-70.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',900000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103297','NAD_1983_CORS96_StatePlane_Maine_West_FIPS_1802',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103297','EPSG','2207',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103298','unnamed',NULL,NULL,'EPSG','2206','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.66666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-68.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103298','NAD_1983_CORS96_StatePlane_Maine_East_FIPS_1801_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103298','EPSG','2206',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103299','unnamed',NULL,NULL,'EPSG','2207','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-70.16666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',2952750.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103299','NAD_1983_CORS96_StatePlane_Maine_West_FIPS_1802_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103299','EPSG','2207',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103300','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.36666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000365285,'EPSG','9201','EPSG','8806','False easting',147218.6942,'EPSG','9001','EPSG','8807','False northing',0.0037,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103300','NAD_1983_HARN_WISCRS_Adams_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103300','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103301','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.70611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.62222222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000495683,'EPSG','9201','EPSG','8806','False easting',172821.9461,'EPSG','9001','EPSG','8807','False northing',0.0017,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103301','NAD_1983_HARN_WISCRS_Ashland_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103301','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103302','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.13333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.85,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000486665,'EPSG','9201','EPSG','8806','False easting',93150.0,'EPSG','9001','EPSG','8807','False northing',0.0029,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103302','NAD_1983_HARN_WISCRS_Barron_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103302','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103303','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.66964837722222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.15277777777779,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000331195,'EPSG','9201','EPSG','8806','False easting',228600.4575,'EPSG','9001','EPSG','8807','False northing',148551.4837,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103303','NAD_1983_HARN_WISCRS_Bayfield_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103303','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103304','NAD_1983_HARN_WISCRS_Brown_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','EPSG','7428','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103305','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.48138888888889,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.79722222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000382778,'EPSG','9201','EPSG','8806','False easting',175260.3502,'EPSG','9001','EPSG','8807','False northing',0.0048,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103305','NAD_1983_HARN_WISCRS_Buffalo_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103305','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103306','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.89871486583333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.45777777777778,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000383841,'EPSG','9201','EPSG','8806','False easting',64008.1276,'EPSG','9001','EPSG','8807','False northing',59445.9043,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103306','NAD_1983_HARN_WISCRS_Burnett_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103306','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103307','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.71944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000286569,'EPSG','9201','EPSG','8806','False easting',244754.8893,'EPSG','9001','EPSG','8807','False northing',0.0049,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103307','NAD_1983_HARN_WISCRS_Calumet_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103307','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103308','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.97785689861112,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.29444444444444,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000391127,'EPSG','9201','EPSG','8806','False easting',60045.72,'EPSG','9001','EPSG','8807','False northing',44091.4346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103308','NAD_1983_HARN_WISCRS_Chippewa_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103308','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103309','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.6,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.70833333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000463003,'EPSG','9201','EPSG','8806','False easting',199949.1989,'EPSG','9001','EPSG','8807','False northing',0.0086,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103309','NAD_1983_HARN_WISCRS_Clark_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103309','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103310','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.46254664583333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.39444444444445,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00003498,'EPSG','9201','EPSG','8806','False easting',169164.3381,'EPSG','9001','EPSG','8807','False northing',111569.6134,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103310','NAD_1983_HARN_WISCRS_Columbia_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103310','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103311','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.200055605,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.9388888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000349151,'EPSG','9201','EPSG','8806','False easting',113690.6274,'EPSG','9001','EPSG','8807','False northing',53703.1201,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103311','NAD_1983_HARN_WISCRS_Crawford_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103311','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103312','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.0695160375,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.42222222222223,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000384786,'EPSG','9201','EPSG','8806','False easting',247193.2944,'EPSG','9001','EPSG','8807','False northing',146591.9896,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103312','NAD_1983_HARN_WISCRS_Dane_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103312','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103313','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.47222222222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.775,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000346418,'EPSG','9201','EPSG','8806','False easting',263347.7263,'EPSG','9001','EPSG','8807','False northing',0.0076,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103313','NAD_1983_HARN_WISCRS_Dodge_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103313','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103314','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.4,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.27222222222223,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000187521,'EPSG','9201','EPSG','8806','False easting',158801.1176,'EPSG','9001','EPSG','8807','False northing',0.0023,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103314','NAD_1983_HARN_WISCRS_Door_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103314','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103315','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.88333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.91666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000385418,'EPSG','9201','EPSG','8806','False easting',59131.3183,'EPSG','9001','EPSG','8807','False northing',0.0041,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103315','NAD_1983_HARN_WISCRS_Douglas_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103315','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103316','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.40833333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.89444444444445,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000410324,'EPSG','9201','EPSG','8806','False easting',51816.104,'EPSG','9001','EPSG','8807','False northing',0.003,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103316','NAD_1983_HARN_WISCRS_Dunn_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103316','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103317','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.87228112638889,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.28888888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000035079,'EPSG','9201','EPSG','8806','False easting',120091.4402,'EPSG','9001','EPSG','8807','False northing',91687.9239,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103317','NAD_1983_HARN_WISCRS_EauClaire_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103317','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103318','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.43888888888888,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.14166666666668,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000552095,'EPSG','9201','EPSG','8806','False easting',133502.6683,'EPSG','9001','EPSG','8807','False northing',0.0063,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103318','NAD_1983_HARN_WISCRS_Florence_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103318','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103319','NAD_1983_HARN_WISCRS_Fond_du_Lac_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103307','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103320','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.00555555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000673004,'EPSG','9201','EPSG','8806','False easting',275844.5533,'EPSG','9001','EPSG','8807','False northing',0.0157,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103320','NAD_1983_HARN_WISCRS_Forest_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103320','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103321','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.41111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.8,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000349452,'EPSG','9201','EPSG','8806','False easting',242316.4841,'EPSG','9001','EPSG','8807','False northing',0.01,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103321','NAD_1983_HARN_WISCRS_Grant_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103321','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103322','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.63756227694444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.83888888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000390487,'EPSG','9201','EPSG','8806','False easting',170078.7403,'EPSG','9001','EPSG','8807','False northing',45830.2947,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103322','NAD_1983_HARN_WISCRS_Green_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103322','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103323','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.80700011777778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.24166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000344057,'EPSG','9201','EPSG','8806','False easting',150876.3018,'EPSG','9001','EPSG','8807','False northing',79170.7795,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103323','NAD_1983_HARN_WISCRS_GreenLake_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103323','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103324','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.53888888888888,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.16111111111111,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000394961,'EPSG','9201','EPSG','8806','False easting',113081.0261,'EPSG','9001','EPSG','8807','False northing',0.0045,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103324','NAD_1983_HARN_WISCRS_Iowa_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103324','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103325','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.43333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.25555555555556,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000677153,'EPSG','9201','EPSG','8806','False easting',220980.4419,'EPSG','9001','EPSG','8807','False northing',0.0085,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103325','NAD_1983_HARN_WISCRS_Iron_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103325','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103326','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.25333512777778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.84429651944444,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000353,'EPSG','9201','EPSG','8806','False easting',27000.0,'EPSG','9001','EPSG','8807','False northing',25000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103326','NAD_1983_HARN_WISCRS_Jackson_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103326','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103327','NAD_1983_HARN_WISCRS_Jefferson_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103313','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103328','NAD_1983_HARN_WISCRS_Juneau_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103300','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103329','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.21666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.89444444444445,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000260649,'EPSG','9201','EPSG','8806','False easting',185928.3728,'EPSG','9001','EPSG','8807','False northing',0.0009,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103329','NAD_1983_HARN_WISCRS_Kenosha_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103329','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103330','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.26666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.55,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000233704,'EPSG','9201','EPSG','8806','False easting',79857.7614,'EPSG','9001','EPSG','8807','False northing',0.0012,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103330','NAD_1983_HARN_WISCRS_Kewaunee_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103330','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103331','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.45111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.31666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000319985,'EPSG','9201','EPSG','8806','False easting',130454.6598,'EPSG','9001','EPSG','8807','False northing',0.0033,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103331','NAD_1983_HARN_WISCRS_LaCrosse_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103331','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103332','NAD_1983_HARN_WISCRS_Lafayette_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103322','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103333','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.15423710527778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.03333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000627024,'EPSG','9201','EPSG','8806','False easting',198425.197,'EPSG','9001','EPSG','8807','False northing',105279.7829,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103333','NAD_1983_HARN_WISCRS_Langlade_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103333','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103334','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.84444444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.73333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000599003,'EPSG','9201','EPSG','8806','False easting',116129.0323,'EPSG','9001','EPSG','8807','False northing',0.0058,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103334','NAD_1983_HARN_WISCRS_Lincoln_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103334','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103335','NAD_1983_HARN_WISCRS_Manitowoc_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103330','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103336','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.90090442361111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.77,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000053289,'EPSG','9201','EPSG','8806','False easting',74676.1493,'EPSG','9001','EPSG','8807','False northing',55049.2669,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103336','NAD_1983_HARN_WISCRS_Marathon_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103336','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103337','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.69166666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.71111111111111,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000234982,'EPSG','9201','EPSG','8806','False easting',238658.8794,'EPSG','9001','EPSG','8807','False northing',0.0032,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103337','NAD_1983_HARN_WISCRS_Marinette_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103337','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103338','NAD_1983_HARN_WISCRS_Marquette_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103323','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103339','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.71666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.41666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000362499,'EPSG','9201','EPSG','8806','False easting',105461.0121,'EPSG','9001','EPSG','8807','False northing',0.0029,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103339','NAD_1983_HARN_WISCRS_Menominee_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103339','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103340','NAD_1983_HARN_WISCRS_Milwaukee_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103329','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103341','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.00007392861111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.64166666666668,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000434122,'EPSG','9201','EPSG','8806','False easting',204521.209,'EPSG','9001','EPSG','8807','False northing',121923.9861,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103341','NAD_1983_HARN_WISCRS_Monroe_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103341','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103342','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.39722222222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.90833333333335,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000236869,'EPSG','9201','EPSG','8806','False easting',182880.3676,'EPSG','9001','EPSG','8807','False northing',0.0033,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103342','NAD_1983_HARN_WISCRS_Oconto_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103342','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103343','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.70422377027778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.54444444444444,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000686968,'EPSG','9201','EPSG','8806','False easting',70104.1401,'EPSG','9001','EPSG','8807','False northing',57588.0346,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103343','NAD_1983_HARN_WISCRS_Oneida_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103343','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103344','NAD_1983_HARN_WISCRS_Outagamie_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103307','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103345','NAD_1983_HARN_WISCRS_Ozaukee_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103329','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103346','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.63614887194444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.22777777777777,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000362977,'EPSG','9201','EPSG','8806','False easting',167640.3354,'EPSG','9001','EPSG','8807','False northing',86033.0876,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103346','NAD_1983_HARN_WISCRS_Pepin_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103346','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103347','NAD_1983_HARN_WISCRS_Pierce_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103346','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103348','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.66111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000433849,'EPSG','9201','EPSG','8806','False easting',141732.2823,'EPSG','9001','EPSG','8807','False northing',0.0059,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103348','NAD_1983_HARN_WISCRS_Polk_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103348','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103349','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.41682397527777,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000039936,'EPSG','9201','EPSG','8806','False easting',56388.1128,'EPSG','9001','EPSG','8807','False northing',50022.1874,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103349','NAD_1983_HARN_WISCRS_Portage_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103349','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103350','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.55555555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.48888888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000649554,'EPSG','9201','EPSG','8806','False easting',227990.8546,'EPSG','9001','EPSG','8807','False northing',0.0109,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103350','NAD_1983_HARN_WISCRS_Price_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103350','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103351','NAD_1983_HARN_WISCRS_Racine_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103329','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103352','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.3223129275,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.43055555555556,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000375653,'EPSG','9201','EPSG','8806','False easting',202387.6048,'EPSG','9001','EPSG','8807','False northing',134255.4253,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103352','NAD_1983_HARN_WISCRS_Richland_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103352','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103353','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.94444444444444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.07222222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000337311,'EPSG','9201','EPSG','8806','False easting',146304.2926,'EPSG','9001','EPSG','8807','False northing',0.0068,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103353','NAD_1983_HARN_WISCRS_Rock_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103353','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103354','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.91944444444444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.06666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000495976,'EPSG','9201','EPSG','8806','False easting',250546.1013,'EPSG','9001','EPSG','8807','False northing',0.0234,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103354','NAD_1983_HARN_WISCRS_Rusk_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103354','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103355','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.81944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.9,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000373868,'EPSG','9201','EPSG','8806','False easting',185623.5716,'EPSG','9001','EPSG','8807','False northing',0.0051,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103355','NAD_1983_HARN_WISCRS_Sauk_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103355','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103356','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.90009913138888,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.11666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000573461,'EPSG','9201','EPSG','8806','False easting',216713.2336,'EPSG','9001','EPSG','8807','False northing',120734.1631,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103356','NAD_1983_HARN_WISCRS_Sawyer_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103356','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103357','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.03611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.60555555555555,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000032144,'EPSG','9201','EPSG','8806','False easting',262433.3253,'EPSG','9001','EPSG','8807','False northing',0.0096,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103357','NAD_1983_HARN_WISCRS_Shawano_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103357','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103358','NAD_1983_HARN_WISCRS_Sheboygan_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103330','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103359','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.03611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000381803,'EPSG','9201','EPSG','8806','False easting',165506.7302,'EPSG','9001','EPSG','8807','False northing',0.0103,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103359','NAD_1983_HARN_WISCRS_St_Croix_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103359','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103360','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.17782208583333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.48333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000597566,'EPSG','9201','EPSG','8806','False easting',187147.5744,'EPSG','9001','EPSG','8807','False northing',107746.7522,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103360','NAD_1983_HARN_WISCRS_Taylor_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103360','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103361','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.16111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.36666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000361538,'EPSG','9201','EPSG','8806','False easting',256946.9138,'EPSG','9001','EPSG','8807','False northing',0.0041,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103361','NAD_1983_HARN_WISCRS_Trempealeau_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103361','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103362','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.57503293972223,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.78333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000408158,'EPSG','9201','EPSG','8806','False easting',222504.4451,'EPSG','9001','EPSG','8807','False northing',47532.0602,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103362','NAD_1983_HARN_WISCRS_Vernon_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103362','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103363','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.07784409055556,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.48888888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000730142,'EPSG','9201','EPSG','8806','False easting',134417.0689,'EPSG','9001','EPSG','8807','False northing',50337.1092,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103363','NAD_1983_HARN_WISCRS_Vilas_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103363','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103364','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.66946209694444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.54166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000367192,'EPSG','9201','EPSG','8806','False easting',232562.8651,'EPSG','9001','EPSG','8807','False northing',111088.2224,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103364','NAD_1983_HARN_WISCRS_Walworth_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103364','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103365','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.96121983333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.78333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000475376,'EPSG','9201','EPSG','8806','False easting',234086.8682,'EPSG','9001','EPSG','8807','False northing',188358.6058,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103365','NAD_1983_HARN_WISCRS_Washburn_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103365','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103366','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.91805555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.06388888888888,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00003738,'EPSG','9201','EPSG','8806','False easting',120091.4415,'EPSG','9001','EPSG','8807','False northing',0.003,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103366','NAD_1983_HARN_WISCRS_Washington_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103366','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103367','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.56944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.225,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000346179,'EPSG','9201','EPSG','8806','False easting',208788.418,'EPSG','9001','EPSG','8807','False northing',0.0034,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103367','NAD_1983_HARN_WISCRS_Waukesha_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103367','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103368','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.42027777777778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.81666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000333645,'EPSG','9201','EPSG','8806','False easting',185013.9709,'EPSG','9001','EPSG','8807','False northing',0.007,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103368','NAD_1983_HARN_WISCRS_Waupaca_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103368','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103369','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.11394404583334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.24166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000392096,'EPSG','9201','EPSG','8806','False easting',120091.4402,'EPSG','9001','EPSG','8807','False northing',45069.7587,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103369','NAD_1983_HARN_WISCRS_Waushara_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103369','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103370','NAD_1983_HARN_WISCRS_Winnebago_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103307','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103371','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.36259546944444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000421209,'EPSG','9201','EPSG','8806','False easting',208483.6173,'EPSG','9001','EPSG','8807','False northing',134589.754,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103371','NAD_1983_HARN_WISCRS_Wood_County_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103371','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103372','unnamed',NULL,NULL,'EPSG','2960','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-67.875,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103372','NAD_1983_CORS96_Maine_2000_East_Zone',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103372','EPSG','2960',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103373','unnamed',NULL,NULL,'EPSG','2959','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-69.125,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103373','NAD_1983_CORS96_Maine_2000_Central_Zone',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103373','EPSG','2959',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103374','unnamed',NULL,NULL,'EPSG','2958','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-70.375,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103374','NAD_1983_CORS96_Maine_2000_West_Zone',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103374','EPSG','2958',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103375','unnamed',NULL,NULL,'EPSG','1389','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.45,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103375','NAD_1983_CORS96_StatePlane_Maryland_FIPS_1900',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103375','EPSG','1389',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103376','unnamed',NULL,NULL,'EPSG','1389','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.45,'EPSG','9102','EPSG','8826','Easting at false origin',1312333.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103376','NAD_1983_CORS96_StatePlane_Maryland_FIPS_1900_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103376','EPSG','1389',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103377','unnamed',NULL,NULL,'EPSG','2209','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-71.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',42.68333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',200000.0,'EPSG','9001','EPSG','8827','Northing at false origin',750000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103377','NAD_1983_CORS96_StatePlane_Massachusetts_Mainland_FIPS_2001',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103377','EPSG','2209',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103378','unnamed',NULL,NULL,'EPSG','2208','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-70.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.28333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103378','NAD_1983_CORS96_StatePlane_Massachusetts_Island_FIPS_2002',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103378','EPSG','2208',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103379','unnamed',NULL,NULL,'EPSG','2209','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-71.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',42.68333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',656166.6666666665,'EPSG','9003','EPSG','8827','Northing at false origin',2460625.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103379','NAD_1983_CORS96_StatePlane_Massachusetts_Mnld_FIPS_2001_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103379','EPSG','2209',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103380','unnamed',NULL,NULL,'EPSG','2208','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-70.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.28333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103380','NAD_1983_CORS96_StatePlane_Massachusetts_Isl_FIPS_2002_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103380','EPSG','2208',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103381','unnamed',NULL,NULL,'EPSG','1723','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.78333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.48333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',8000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103381','NAD_1983_CORS96_StatePlane_Michigan_North_FIPS_2111',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103381','EPSG','1723',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103382','unnamed',NULL,NULL,'EPSG','1724','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.31666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.7,'EPSG','9102','EPSG','8826','Easting at false origin',6000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103382','NAD_1983_CORS96_StatePlane_Michigan_Central_FIPS_2112',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103382','EPSG','1724',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103383','unnamed',NULL,NULL,'EPSG','1725','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.1,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',4000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103383','NAD_1983_CORS96_StatePlane_Michigan_South_FIPS_2113',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103383','EPSG','1725',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103384','unnamed',NULL,NULL,'EPSG','1723','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.78333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-87.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.48333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',26246719.16010498,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103384','NAD_1983_CORS96_StatePlane_Michigan_North_FIPS_2111_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103384','EPSG','1723',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103385','unnamed',NULL,NULL,'EPSG','1724','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.31666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.7,'EPSG','9102','EPSG','8826','Easting at false origin',19685039.37007874,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103385','NAD_1983_CORS96_StatePlane_Michigan_Central_FIPS_2112_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103385','EPSG','1724',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103386','unnamed',NULL,NULL,'EPSG','1725','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-84.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.1,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',13123359.58005249,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103386','NAD_1983_CORS96_StatePlane_Michigan_South_FIPS_2113_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103386','EPSG','1725',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103387','unnamed',NULL,NULL,'EPSG','2214','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.1,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.63333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',800000.0,'EPSG','9001','EPSG','8827','Northing at false origin',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103387','NAD_1983_CORS96_StatePlane_Minnesota_North_FIPS_2201',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103387','EPSG','2214',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103388','unnamed',NULL,NULL,'EPSG','2213','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.61666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.05,'EPSG','9102','EPSG','8826','Easting at false origin',800000.0,'EPSG','9001','EPSG','8827','Northing at false origin',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103388','NAD_1983_CORS96_StatePlane_Minnesota_Central_FIPS_2202',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103388','EPSG','2213',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103389','unnamed',NULL,NULL,'EPSG','2215','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.21666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',800000.0,'EPSG','9001','EPSG','8827','Northing at false origin',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103389','NAD_1983_CORS96_StatePlane_Minnesota_South_FIPS_2203',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103389','EPSG','2215',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103390','unnamed',NULL,NULL,'EPSG','2214','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.1,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.63333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',2624666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',328083.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103390','NAD_1983_CORS96_StatePlane_Minnesota_North_FIPS_2201_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103390','EPSG','2214',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103391','unnamed',NULL,NULL,'EPSG','2213','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.61666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.05,'EPSG','9102','EPSG','8826','Easting at false origin',2624666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',328083.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103391','NAD_1983_CORS96_StatePlane_Minnesota_Central_FIPS_2202_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103391','EPSG','2213',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103392','unnamed',NULL,NULL,'EPSG','2215','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.21666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',2624666.666666666,'EPSG','9003','EPSG','8827','Northing at false origin',328083.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103392','NAD_1983_CORS96_StatePlane_Minnesota_South_FIPS_2203_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103392','EPSG','2215',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103393','unnamed',NULL,NULL,'EPSG','2216','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.83333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103393','NAD_1983_CORS96_StatePlane_Mississippi_East_FIPS_2301',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103393','EPSG','2216',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103394','unnamed',NULL,NULL,'EPSG','2217','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.33333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',700000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103394','NAD_1983_CORS96_StatePlane_Mississippi_West_FIPS_2302',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103394','EPSG','2217',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103395','unnamed',NULL,NULL,'EPSG','2216','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.83333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103395','NAD_1983_CORS96_StatePlane_Mississippi_East_FIPS_2301_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103395','EPSG','2216',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103396','unnamed',NULL,NULL,'EPSG','2217','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',29.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.33333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99995,'EPSG','9201','EPSG','8806','False easting',2296583.333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103396','NAD_1983_CORS96_StatePlane_Mississippi_West_FIPS_2302_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103396','EPSG','2217',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103397','unnamed',NULL,NULL,'EPSG','2219','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',35.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103397','NAD_1983_CORS96_StatePlane_Missouri_East_FIPS_2401',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103397','EPSG','2219',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103398','unnamed',NULL,NULL,'EPSG','2218','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',35.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999333333333333,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103398','NAD_1983_CORS96_StatePlane_Missouri_Central_FIPS_2402',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103398','EPSG','2218',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103399','unnamed',NULL,NULL,'EPSG','2220','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',36.16666666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-94.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999411764705882,'EPSG','9201','EPSG','8806','False easting',850000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103399','NAD_1983_CORS96_StatePlane_Missouri_West_FIPS_2403',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103399','EPSG','2220',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103400','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.36666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000365285,'EPSG','9201','EPSG','8806','False easting',482999.999,'EPSG','9003','EPSG','8807','False northing',0.012,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103400','NAD_1983_HARN_WISCRS_Adams_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103400','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103401','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.70611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.62222222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000495683,'EPSG','9201','EPSG','8806','False easting',567000.001,'EPSG','9003','EPSG','8807','False northing',0.006,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103401','NAD_1983_HARN_WISCRS_Ashland_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103401','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103402','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.13333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.85,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000486665,'EPSG','9201','EPSG','8806','False easting',305609.625,'EPSG','9003','EPSG','8807','False northing',0.01,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103402','NAD_1983_HARN_WISCRS_Barron_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103402','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103403','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.66964837722222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.15277777777779,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000331195,'EPSG','9201','EPSG','8806','False easting',750000.001,'EPSG','9003','EPSG','8807','False northing',487372.659,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103403','NAD_1983_HARN_WISCRS_Bayfield_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103403','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103404','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',103674.333,'EPSG','9003','EPSG','8807','False northing',15091.833,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103404','NAD_1983_HARN_WISCRS_Brown_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103404','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103405','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.48138888888889,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.79722222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000382778,'EPSG','9201','EPSG','8806','False easting',574999.999,'EPSG','9003','EPSG','8807','False northing',0.016,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103405','NAD_1983_HARN_WISCRS_Buffalo_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103405','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103406','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.89871486583333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.45777777777778,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000383841,'EPSG','9201','EPSG','8806','False easting',209999.999,'EPSG','9003','EPSG','8807','False northing',195032.104,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103406','NAD_1983_HARN_WISCRS_Burnett_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103406','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103407','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.71944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000286569,'EPSG','9201','EPSG','8806','False easting',802999.999,'EPSG','9003','EPSG','8807','False northing',0.016,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103407','NAD_1983_HARN_WISCRS_Calumet_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103407','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103408','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.97785689861112,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.29444444444444,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000391127,'EPSG','9201','EPSG','8806','False easting',197000.0,'EPSG','9003','EPSG','8807','False northing',144656.648,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103408','NAD_1983_HARN_WISCRS_Chippewa_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103408','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103409','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.6,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.70833333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000463003,'EPSG','9201','EPSG','8806','False easting',655999.997,'EPSG','9003','EPSG','8807','False northing',0.028,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103409','NAD_1983_HARN_WISCRS_Clark_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103409','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103410','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.46254664583333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.39444444444445,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00003498,'EPSG','9201','EPSG','8806','False easting',554999.999,'EPSG','9003','EPSG','8807','False northing',366041.307,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103410','NAD_1983_HARN_WISCRS_Columbia_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103410','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103411','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.200055605,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.9388888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000349151,'EPSG','9201','EPSG','8806','False easting',373000.0,'EPSG','9003','EPSG','8807','False northing',176190.987,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103411','NAD_1983_HARN_WISCRS_Crawford_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103411','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103412','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.0695160375,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.42222222222223,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000384786,'EPSG','9201','EPSG','8806','False easting',811000.0,'EPSG','9003','EPSG','8807','False northing',480943.886,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103412','NAD_1983_HARN_WISCRS_Dane_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103412','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103413','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.47222222222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.775,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000346418,'EPSG','9201','EPSG','8806','False easting',863999.999,'EPSG','9003','EPSG','8807','False northing',0.025,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103413','NAD_1983_HARN_WISCRS_Dodge_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103413','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103414','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.4,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.27222222222223,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000187521,'EPSG','9201','EPSG','8806','False easting',521000.0,'EPSG','9003','EPSG','8807','False northing',0.008,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103414','NAD_1983_HARN_WISCRS_Door_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103414','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103415','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.88333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.91666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000385418,'EPSG','9201','EPSG','8806','False easting',194000.0,'EPSG','9003','EPSG','8807','False northing',0.013,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103415','NAD_1983_HARN_WISCRS_Douglas_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103415','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103416','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.40833333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.89444444444445,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000410324,'EPSG','9201','EPSG','8806','False easting',170000.001,'EPSG','9003','EPSG','8807','False northing',0.01,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103416','NAD_1983_HARN_WISCRS_Dunn_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103416','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103417','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.87228112638889,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.28888888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000035079,'EPSG','9201','EPSG','8806','False easting',394000.0,'EPSG','9003','EPSG','8807','False northing',300812.797,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103417','NAD_1983_HARN_WISCRS_EauClaire_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103417','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103418','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.43888888888888,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.14166666666668,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000552095,'EPSG','9201','EPSG','8806','False easting',438000.004,'EPSG','9003','EPSG','8807','False northing',0.021,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103418','NAD_1983_HARN_WISCRS_Florence_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103418','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103419','NAD_1983_HARN_WISCRS_Fond_du_Lac_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103407','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103420','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.00555555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000673004,'EPSG','9201','EPSG','8806','False easting',905000.005,'EPSG','9003','EPSG','8807','False northing',0.052,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103420','NAD_1983_HARN_WISCRS_Forest_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103420','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103421','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.41111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.8,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000349452,'EPSG','9201','EPSG','8806','False easting',794999.998,'EPSG','9003','EPSG','8807','False northing',0.033,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103421','NAD_1983_HARN_WISCRS_Grant_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103421','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103422','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.63756227694444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.83888888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000390487,'EPSG','9201','EPSG','8806','False easting',558000.0,'EPSG','9003','EPSG','8807','False northing',150361.559,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103422','NAD_1983_HARN_WISCRS_Green_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103422','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103423','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.80700011777778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.24166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000344057,'EPSG','9201','EPSG','8806','False easting',495000.0,'EPSG','9003','EPSG','8807','False northing',259746.132,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103423','NAD_1983_HARN_WISCRS_GreenLake_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103423','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103424','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.53888888888888,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.16111111111111,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000394961,'EPSG','9201','EPSG','8806','False easting',371000.0,'EPSG','9003','EPSG','8807','False northing',0.015,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103424','NAD_1983_HARN_WISCRS_Iowa_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103424','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103425','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.43333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.25555555555556,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000677153,'EPSG','9201','EPSG','8806','False easting',725000.0,'EPSG','9003','EPSG','8807','False northing',0.028,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103425','NAD_1983_HARN_WISCRS_Iron_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103425','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103426','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.25333512777778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.84429651944444,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000353,'EPSG','9201','EPSG','8806','False easting',88582.5,'EPSG','9003','EPSG','8807','False northing',82020.833,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103426','NAD_1983_HARN_WISCRS_Jackson_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103426','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103427','NAD_1983_HARN_WISCRS_Jefferson_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103413','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103428','NAD_1983_HARN_WISCRS_Juneau_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103400','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103429','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.21666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.89444444444445,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000260649,'EPSG','9201','EPSG','8806','False easting',610000.003,'EPSG','9003','EPSG','8807','False northing',0.003,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103429','NAD_1983_HARN_WISCRS_Kenosha_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103429','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103430','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.26666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.55,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000233704,'EPSG','9201','EPSG','8806','False easting',262000.006,'EPSG','9003','EPSG','8807','False northing',0.004,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103430','NAD_1983_HARN_WISCRS_Kewaunee_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103430','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103431','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.45111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.31666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000319985,'EPSG','9201','EPSG','8806','False easting',427999.996,'EPSG','9003','EPSG','8807','False northing',0.011,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103431','NAD_1983_HARN_WISCRS_LaCrosse_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103431','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103432','NAD_1983_HARN_WISCRS_Lafayette_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103422','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103433','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.15423710527778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.03333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000627024,'EPSG','9201','EPSG','8806','False easting',651000.0,'EPSG','9003','EPSG','8807','False northing',345405.421,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103433','NAD_1983_HARN_WISCRS_Langlade_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103433','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103434','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.84444444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.73333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000599003,'EPSG','9201','EPSG','8806','False easting',381000.0,'EPSG','9003','EPSG','8807','False northing',0.019,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103434','NAD_1983_HARN_WISCRS_Lincoln_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103434','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103435','NAD_1983_HARN_WISCRS_Manitowoc_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103430','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103436','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.90090442361111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.77,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000053289,'EPSG','9201','EPSG','8806','False easting',245000.0,'EPSG','9003','EPSG','8807','False northing',180607.47,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103436','NAD_1983_HARN_WISCRS_Marathon_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103436','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103437','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.69166666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.71111111111111,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000234982,'EPSG','9201','EPSG','8806','False easting',783000.007,'EPSG','9003','EPSG','8807','False northing',0.01,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103437','NAD_1983_HARN_WISCRS_Marinette_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103437','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103438','NAD_1983_HARN_WISCRS_Marquette_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103423','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103439','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.71666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.41666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000362499,'EPSG','9201','EPSG','8806','False easting',346000.004,'EPSG','9003','EPSG','8807','False northing',0.01,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103439','NAD_1983_HARN_WISCRS_Menominee_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103439','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103440','NAD_1983_HARN_WISCRS_Milwaukee_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103429','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103441','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.00007392861111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.64166666666668,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000434122,'EPSG','9201','EPSG','8806','False easting',671000.0,'EPSG','9003','EPSG','8807','False northing',400012.278,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103441','NAD_1983_HARN_WISCRS_Monroe_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103441','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103442','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.39722222222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.90833333333335,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000236869,'EPSG','9201','EPSG','8806','False easting',600000.006,'EPSG','9003','EPSG','8807','False northing',0.011,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103442','NAD_1983_HARN_WISCRS_Oconto_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103442','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103443','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.70422377027778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.54444444444444,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000686968,'EPSG','9201','EPSG','8806','False easting',230000.0,'EPSG','9003','EPSG','8807','False northing',188936.744,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103443','NAD_1983_HARN_WISCRS_Oneida_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103443','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103444','NAD_1983_HARN_WISCRS_Outagamie_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103407','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103445','NAD_1983_HARN_WISCRS_Ozaukee_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103429','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103446','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.63614887194444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.22777777777777,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000362977,'EPSG','9201','EPSG','8806','False easting',550000.0,'EPSG','9003','EPSG','8807','False northing',282260.222,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103446','NAD_1983_HARN_WISCRS_Pepin_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103446','EPSG','1418',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103447','NAD_1983_HARN_WISCRS_Pierce_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103446','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103448','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.66111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000433849,'EPSG','9201','EPSG','8806','False easting',464999.996,'EPSG','9003','EPSG','8807','False northing',0.019,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103448','NAD_1983_HARN_WISCRS_Polk_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103448','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103449','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.41682397527777,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000039936,'EPSG','9201','EPSG','8806','False easting',185000.0,'EPSG','9003','EPSG','8807','False northing',164114.46,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103449','NAD_1983_HARN_WISCRS_Portage_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103449','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103450','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.55555555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.48888888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000649554,'EPSG','9201','EPSG','8806','False easting',747999.995,'EPSG','9003','EPSG','8807','False northing',0.036,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103450','NAD_1983_HARN_WISCRS_Price_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103450','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103451','NAD_1983_HARN_WISCRS_Racine_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103429','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103452','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.3223129275,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.43055555555556,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000375653,'EPSG','9201','EPSG','8806','False easting',664000.0,'EPSG','9003','EPSG','8807','False northing',440469.675,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103452','NAD_1983_HARN_WISCRS_Richland_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103452','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103453','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.94444444444444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.07222222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000337311,'EPSG','9201','EPSG','8806','False easting',480000.0,'EPSG','9003','EPSG','8807','False northing',0.022,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103453','NAD_1983_HARN_WISCRS_Rock_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103453','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103454','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.91944444444444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.06666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000495976,'EPSG','9201','EPSG','8806','False easting',822000.001,'EPSG','9003','EPSG','8807','False northing',0.077,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103454','NAD_1983_HARN_WISCRS_Rusk_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103454','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103455','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.81944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.9,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000373868,'EPSG','9201','EPSG','8806','False easting',609000.001,'EPSG','9003','EPSG','8807','False northing',0.017,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103455','NAD_1983_HARN_WISCRS_Sauk_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103455','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103456','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.90009913138888,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.11666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000573461,'EPSG','9201','EPSG','8806','False easting',711000.001,'EPSG','9003','EPSG','8807','False northing',396108.667,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103456','NAD_1983_HARN_WISCRS_Sawyer_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103456','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103457','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.03611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.60555555555555,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000032144,'EPSG','9201','EPSG','8806','False easting',861000.001,'EPSG','9003','EPSG','8807','False northing',0.031,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103457','NAD_1983_HARN_WISCRS_Shawano_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103457','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103458','NAD_1983_HARN_WISCRS_Sheboygan_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103430','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103459','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.03611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000381803,'EPSG','9201','EPSG','8806','False easting',542999.997,'EPSG','9003','EPSG','8807','False northing',0.034,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103459','NAD_1983_HARN_WISCRS_St_Croix_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103459','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103460','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.17782208583333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.48333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000597566,'EPSG','9201','EPSG','8806','False easting',614000.0,'EPSG','9003','EPSG','8807','False northing',353499.136,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103460','NAD_1983_HARN_WISCRS_Taylor_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103460','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103461','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.16111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.36666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000361538,'EPSG','9201','EPSG','8806','False easting',843000.0,'EPSG','9003','EPSG','8807','False northing',0.013,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103461','NAD_1983_HARN_WISCRS_Trempealeau_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103461','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103462','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',43.57503293972223,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.78333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000408158,'EPSG','9201','EPSG','8806','False easting',730000.0,'EPSG','9003','EPSG','8807','False northing',155944.768,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103462','NAD_1983_HARN_WISCRS_Vernon_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103462','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103463','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.07784409055556,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.48888888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000730142,'EPSG','9201','EPSG','8806','False easting',441000.0,'EPSG','9003','EPSG','8807','False northing',165147.666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103463','NAD_1983_HARN_WISCRS_Vilas_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103463','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103464','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',42.66946209694444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.54166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000367192,'EPSG','9201','EPSG','8806','False easting',763000.0,'EPSG','9003','EPSG','8807','False northing',364461.943,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103464','NAD_1983_HARN_WISCRS_Walworth_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103464','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103465','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',45.96121983333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.78333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000475376,'EPSG','9201','EPSG','8806','False easting',768000.0,'EPSG','9003','EPSG','8807','False northing',617973.193,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103465','NAD_1983_HARN_WISCRS_Washburn_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103465','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103466','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.91805555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.06388888888888,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00003738,'EPSG','9201','EPSG','8806','False easting',394000.004,'EPSG','9003','EPSG','8807','False northing',0.01,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103466','NAD_1983_HARN_WISCRS_Washington_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103466','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103467','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.56944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.225,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000346179,'EPSG','9201','EPSG','8806','False easting',685000.001,'EPSG','9003','EPSG','8807','False northing',0.011,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103467','NAD_1983_HARN_WISCRS_Waukesha_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103467','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103468','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.42027777777778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.81666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000333645,'EPSG','9201','EPSG','8806','False easting',607000.003,'EPSG','9003','EPSG','8807','False northing',0.023,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103468','NAD_1983_HARN_WISCRS_Waupaca_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103468','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103469','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.11394404583334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.24166666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000392096,'EPSG','9201','EPSG','8806','False easting',394000.0,'EPSG','9003','EPSG','8807','False northing',147866.367,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103469','NAD_1983_HARN_WISCRS_Waushara_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103469','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103470','NAD_1983_HARN_WISCRS_Winnebago_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103407','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103471','unnamed',NULL,NULL,'EPSG','1418','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',44.36259546944444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0000421209,'EPSG','9201','EPSG','8806','False easting',684000.001,'EPSG','9003','EPSG','8807','False northing',441566.551,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103471','NAD_1983_HARN_WISCRS_Wood_County_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103471','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103472','unnamed',NULL,NULL,'EPSG','1395','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.25,'EPSG','9102','EPSG','8822','Longitude of false origin',-109.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.0,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103472','NAD_1983_CORS96_StatePlane_Montana_FIPS_2500',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103472','EPSG','1395',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103473','unnamed',NULL,NULL,'EPSG','1395','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.25,'EPSG','9102','EPSG','8822','Longitude of false origin',-109.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.0,'EPSG','9102','EPSG','8826','Easting at false origin',1968503.937007874,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103473','NAD_1983_CORS96_StatePlane_Montana_FIPS_2500_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103473','EPSG','1395',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103474','unnamed',NULL,NULL,'EPSG','1396','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.0,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103474','NAD_1983_CORS96_StatePlane_Nebraska_FIPS_2600',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103474','EPSG','1396',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103475','unnamed',NULL,NULL,'EPSG','1396','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.0,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103475','NAD_1983_CORS96_StatePlane_Nebraska_FIPS_2600_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103475','EPSG','1396',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103476','unnamed',NULL,NULL,'EPSG','2224','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.5833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',8000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103476','NAD_1983_CORS96_StatePlane_Nevada_East_FIPS_2701',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103476','EPSG','2224',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103477','unnamed',NULL,NULL,'EPSG','2223','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-116.6666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',6000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103477','NAD_1983_CORS96_StatePlane_Nevada_Central_FIPS_2702',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103477','EPSG','2223',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103478','unnamed',NULL,NULL,'EPSG','2225','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-118.5833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103478','NAD_1983_CORS96_StatePlane_Nevada_West_FIPS_2703',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103478','EPSG','2225',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103479','unnamed',NULL,NULL,'EPSG','2224','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-115.5833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',26246666.66666666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103479','NAD_1983_CORS96_StatePlane_Nevada_East_FIPS_2701_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103479','EPSG','2224',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103480','unnamed',NULL,NULL,'EPSG','2223','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-116.6666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',19685000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103480','NAD_1983_CORS96_StatePlane_Nevada_Central_FIPS_2702_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103480','EPSG','2223',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103481','unnamed',NULL,NULL,'EPSG','2225','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',34.75,'EPSG','9102','EPSG','8802','Longitude of natural origin',-118.5833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',2624666.666666666,'EPSG','9003','EPSG','8807','False northing',13123333.33333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103481','NAD_1983_CORS96_StatePlane_Nevada_West_FIPS_2703_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103481','EPSG','2225',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103482','unnamed',NULL,NULL,'EPSG','1398','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-71.66666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103482','NAD_1983_CORS96_StatePlane_New_Hampshire_FIPS_2800',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103482','EPSG','1398',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103483','unnamed',NULL,NULL,'EPSG','1398','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-71.66666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999666666666667,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103483','NAD_1983_CORS96_StatePlane_New_Hampshire_FIPS_2800_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103483','EPSG','1398',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103484','unnamed',NULL,NULL,'EPSG','1399','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-74.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103484','NAD_1983_CORS96_StatePlane_New_Jersey_FIPS_2900',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103484','EPSG','1399',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103485','unnamed',NULL,NULL,'EPSG','1399','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-74.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',492125.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103485','NAD_1983_CORS96_StatePlane_New_Jersey_FIPS_2900_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103485','EPSG','1399',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103486','unnamed',NULL,NULL,'EPSG','2228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-104.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999090909090909,'EPSG','9201','EPSG','8806','False easting',165000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103486','NAD_1983_CORS96_StatePlane_New_Mexico_East_FIPS_3001',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103486','EPSG','2228',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103487','unnamed',NULL,NULL,'EPSG','2231','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-106.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103487','NAD_1983_CORS96_StatePlane_New_Mexico_Central_FIPS_3002',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103487','EPSG','2231',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103488','unnamed',NULL,NULL,'EPSG','2232','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-107.8333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999166666666667,'EPSG','9201','EPSG','8806','False easting',830000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103488','NAD_1983_CORS96_StatePlane_New_Mexico_West_FIPS_3003',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103488','EPSG','2232',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103489','unnamed',NULL,NULL,'EPSG','2228','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-104.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999090909090909,'EPSG','9201','EPSG','8806','False easting',541337.5,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103489','NAD_1983_CORS96_StatePlane_New_Mexico_East_FIPS_3001_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103489','EPSG','2228',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103490','unnamed',NULL,NULL,'EPSG','2231','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-106.25,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',1640416.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103490','NAD_1983_CORS96_StatePlane_New_Mexico_Central_FIPS_3002_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103490','EPSG','2231',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103491','unnamed',NULL,NULL,'EPSG','2232','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',31.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-107.8333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999166666666667,'EPSG','9201','EPSG','8806','False easting',2723091.666666666,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103491','NAD_1983_CORS96_StatePlane_New_Mexico_West_FIPS_3003_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103491','EPSG','2232',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103492','unnamed',NULL,NULL,'EPSG','2234','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-74.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',150000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103492','NAD_1983_CORS96_StatePlane_New_York_East_FIPS_3101',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103492','EPSG','2234',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103493','unnamed',NULL,NULL,'EPSG','2233','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-76.58333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',250000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103493','NAD_1983_CORS96_StatePlane_New_York_Central_FIPS_3102',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103493','EPSG','2233',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103494','unnamed',NULL,NULL,'EPSG','2236','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-78.58333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',350000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103494','NAD_1983_CORS96_StatePlane_New_York_West_FIPS_3103',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103494','EPSG','2236',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103495','unnamed',NULL,NULL,'EPSG','2235','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-74.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.66666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.03333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',300000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103495','NAD_1983_CORS96_StatePlane_New_York_Long_Island_FIPS_3104',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103495','EPSG','2235',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103496','unnamed',NULL,NULL,'EPSG','2234','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',38.83333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-74.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999,'EPSG','9201','EPSG','8806','False easting',492125.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103496','NAD_1983_CORS96_StatePlane_New_York_East_FIPS_3101_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103496','EPSG','2234',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103497','unnamed',NULL,NULL,'EPSG','2233','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-76.58333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',820208.3333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103497','NAD_1983_CORS96_StatePlane_New_York_Central_FIPS_3102_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103497','EPSG','2233',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103498','unnamed',NULL,NULL,'EPSG','2236','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-78.58333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',1148291.666666667,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103498','NAD_1983_CORS96_StatePlane_New_York_West_FIPS_3103_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103498','EPSG','2236',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103499','unnamed',NULL,NULL,'EPSG','2235','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-74.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.66666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.03333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',984250.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103499','NAD_1983_CORS96_StatePlane_New_York_Long_Isl_FIPS_3104_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103499','EPSG','2235',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103500','unnamed',NULL,NULL,'EPSG','1402','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.75,'EPSG','9102','EPSG','8822','Longitude of false origin',-79.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',609601.2192024384,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103500','NAD_1983_CORS96_StatePlane_North_Carolina_FIPS_3200',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103500','EPSG','1402',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103501','unnamed',NULL,NULL,'EPSG','1402','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.75,'EPSG','9102','EPSG','8822','Longitude of false origin',-79.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103501','NAD_1983_CORS96_StatePlane_North_Carolina_FIPS_3200_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103501','EPSG','1402',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103502','unnamed',NULL,NULL,'EPSG','2237','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.43333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103502','NAD_1983_CORS96_StatePlane_North_Dakota_North_FIPS_3301',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103502','EPSG','2237',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103503','unnamed',NULL,NULL,'EPSG','2238','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103503','NAD_1983_CORS96_StatePlane_North_Dakota_South_FIPS_3302',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103503','EPSG','2238',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103504','unnamed',NULL,NULL,'EPSG','2237','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.43333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968503.937007874,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103504','NAD_1983_CORS96_StatePlane_North_Dakota_North_FIPS_3301_FtI',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103504','EPSG','2237',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103505','unnamed',NULL,NULL,'EPSG','2238','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968503.937007874,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103505','NAD_1983_CORS96_StatePlane_North_Dakota_South_FIPS_3302_FtI',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103505','EPSG','2238',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103506','unnamed',NULL,NULL,'EPSG','2239','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-82.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.43333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.7,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103506','NAD_1983_CORS96_StatePlane_Ohio_North_FIPS_3401',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103506','EPSG','2239',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103507','unnamed',NULL,NULL,'EPSG','2240','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-82.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.03333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103507','NAD_1983_CORS96_StatePlane_Ohio_South_FIPS_3402',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103507','EPSG','2240',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103508','unnamed',NULL,NULL,'EPSG','2239','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-82.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.43333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.7,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103508','NAD_1983_CORS96_StatePlane_Ohio_North_FIPS_3401_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103508','EPSG','2239',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103509','unnamed',NULL,NULL,'EPSG','2240','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-82.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.03333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103509','NAD_1983_CORS96_StatePlane_Ohio_South_FIPS_3402_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103509','EPSG','2240',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103510','unnamed',NULL,NULL,'EPSG','2241','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',35.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103510','NAD_1983_CORS96_StatePlane_Oklahoma_North_FIPS_3501',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103510','EPSG','2241',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103511','unnamed',NULL,NULL,'EPSG','2242','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',33.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',35.23333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103511','NAD_1983_CORS96_StatePlane_Oklahoma_South_FIPS_3502',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103511','EPSG','2242',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103512','unnamed',NULL,NULL,'EPSG','2241','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',35.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',35.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103512','NAD_1983_CORS96_StatePlane_Oklahoma_North_FIPS_3501_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103512','EPSG','2241',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103513','unnamed',NULL,NULL,'EPSG','2242','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',33.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',33.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',35.23333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103513','NAD_1983_CORS96_StatePlane_Oklahoma_South_FIPS_3502_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103513','EPSG','2242',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103514','unnamed',NULL,NULL,'EPSG','2245','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.88333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.95,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103514','NAD_1983_CORS96_StatePlane_Pennsylvania_North_FIPS_3701',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103514','EPSG','2245',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103515','unnamed',NULL,NULL,'EPSG','2245','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.88333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.95,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103515','NAD_1983_CORS96_StatePlane_Pennsylvania_North_FIPS_3701_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103515','EPSG','2245',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103516','unnamed',NULL,NULL,'EPSG','2246','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103516','NAD_1983_CORS96_StatePlane_Pennsylvania_South_FIPS_3702',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103516','EPSG','2246',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103517','unnamed',NULL,NULL,'EPSG','2246','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',39.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-77.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103517','NAD_1983_CORS96_StatePlane_Pennsylvania_South_FIPS_3702_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103517','EPSG','2246',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103518','unnamed',NULL,NULL,'EPSG','1408','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.08333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-71.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999375,'EPSG','9201','EPSG','8806','False easting',100000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103518','NAD_1983_CORS96_StatePlane_Rhode_Island_FIPS_3800',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103518','EPSG','1408',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103519','unnamed',NULL,NULL,'EPSG','1408','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.08333333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-71.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999375,'EPSG','9201','EPSG','8806','False easting',328083.3333333333,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103519','NAD_1983_CORS96_StatePlane_Rhode_Island_FIPS_3800_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103519','EPSG','1408',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103520','unnamed',NULL,NULL,'EPSG','1409','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',609600.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103520','NAD_1983_CORS96_StatePlane_South_Carolina_FIPS_3900',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103520','EPSG','1409',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103521','unnamed',NULL,NULL,'EPSG','1409','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',34.83333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',2000000.0,'EPSG','9002','EPSG','8827','Northing at false origin',0.0,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103521','NAD_1983_CORS96_StatePlane_South_Carolina_FIPS_3900_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103521','EPSG','1409',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103522','unnamed',NULL,NULL,'EPSG','2249','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.41666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.68333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103522','NAD_1983_CORS96_StatePlane_South_Dakota_North_FIPS_4001',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103522','EPSG','2249',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103523','unnamed',NULL,NULL,'EPSG','2250','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.3333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.4,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103523','NAD_1983_CORS96_StatePlane_South_Dakota_South_FIPS_4002',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103523','EPSG','2250',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103524','unnamed',NULL,NULL,'EPSG','2249','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.41666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.68333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103524','NAD_1983_CORS96_StatePlane_South_Dakota_North_FIPS_4001_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103524','EPSG','2249',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103525','unnamed',NULL,NULL,'EPSG','2250','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.3333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.4,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103525','NAD_1983_CORS96_StatePlane_South_Dakota_South_FIPS_4002_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103525','EPSG','2250',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103526','unnamed',NULL,NULL,'EPSG','1411','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-86.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',35.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.41666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103526','NAD_1983_CORS96_StatePlane_Tennessee_FIPS_4100',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103526','EPSG','1411',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103527','unnamed',NULL,NULL,'EPSG','1411','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-86.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',35.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.41666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103527','NAD_1983_CORS96_StatePlane_Tennessee_FIPS_4100_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103527','EPSG','1411',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103528','ETRF_1989_UTM_Zone_28N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16028','EPSG','2122',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103529','ETRF_1989_UTM_Zone_29N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16029','EPSG','2123',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103530','ETRF_1989_UTM_Zone_30N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16030','EPSG','2124',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103531','ETRF_1989_UTM_Zone_31N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16031','EPSG','2125',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103532','ETRF_1989_UTM_Zone_32N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16032','EPSG','2126',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103533','ETRF_1989_UTM_Zone_33N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16033','EPSG','2127',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103534','ETRF_1989_UTM_Zone_34N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16034','EPSG','2128',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103535','ETRF_1989_UTM_Zone_35N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16035','EPSG','2129',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103536','ETRF_1989_UTM_Zone_36N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16036','EPSG','2130',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103537','ETRF_1989_UTM_Zone_37N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16037','EPSG','2131',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103538','ETRF_1989_UTM_Zone_38N',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','16038','EPSG','2132',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103539','unnamed',NULL,NULL,'EPSG','2253','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-101.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.65,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.18333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',200000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103539','NAD_1983_CORS96_StatePlane_Texas_North_FIPS_4201',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103539','EPSG','2253',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103540','unnamed',NULL,NULL,'EPSG','2254','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.13333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',33.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103540','NAD_1983_CORS96_StatePlane_Texas_North_Central_FIPS_4202',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103540','EPSG','2254',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103541','unnamed',NULL,NULL,'EPSG','2252','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.3333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',30.11666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',31.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103541','NAD_1983_CORS96_StatePlane_Texas_Central_FIPS_4203',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103541','EPSG','2252',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103542','unnamed',NULL,NULL,'EPSG','2527','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',27.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-99.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',28.38333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.28333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103542','NAD_1983_CORS96_StatePlane_Texas_South_Central_FIPS_4204',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103542','EPSG','2527',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103543','unnamed',NULL,NULL,'EPSG','2528','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',26.16666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',27.83333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',300000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103543','NAD_1983_CORS96_StatePlane_Texas_South_FIPS_4205',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103543','EPSG','2528',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103544','unnamed',NULL,NULL,'EPSG','2253','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',34.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-101.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',34.65,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',36.18333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',656166.6666666665,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103544','NAD_1983_CORS96_StatePlane_Texas_North_FIPS_4201_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103544','EPSG','2253',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103545','unnamed',NULL,NULL,'EPSG','2254','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',31.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',32.13333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',33.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',6561666.666666666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103545','NAD_1983_CORS96_StatePlane_Texas_North_Central_FIPS_4202_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103545','EPSG','2254',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103546','unnamed',NULL,NULL,'EPSG','2252','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',29.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-100.3333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',30.11666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',31.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',2296583.333333333,'EPSG','9003','EPSG','8827','Northing at false origin',9842500.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103546','NAD_1983_CORS96_StatePlane_Texas_Central_FIPS_4203_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103546','EPSG','2252',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103547','unnamed',NULL,NULL,'EPSG','2527','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',27.83333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-99.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',28.38333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',30.28333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',13123333.33333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103547','NAD_1983_CORS96_StatePlane_Texas_South_Central_FIPS_4204_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103547','EPSG','2527',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103548','unnamed',NULL,NULL,'EPSG','2528','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',25.66666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-98.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',26.16666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',27.83333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',984250.0,'EPSG','9003','EPSG','8827','Northing at false origin',16404166.66666666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103548','NAD_1983_CORS96_StatePlane_Texas_South_FIPS_4205_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103548','EPSG','2528',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103549','unnamed',NULL,NULL,'EPSG','2258','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103549','NAD_1983_CORS96_StatePlane_Utah_North_FIPS_4301',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103549','EPSG','2258',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103550','unnamed',NULL,NULL,'EPSG','2257','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.01666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.65,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103550','NAD_1983_CORS96_StatePlane_Utah_Central_FIPS_4302',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103550','EPSG','2257',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103551','unnamed',NULL,NULL,'EPSG','2259','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.21666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.35,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103551','NAD_1983_CORS96_StatePlane_Utah_South_FIPS_4303',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103551','EPSG','2259',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103552','NAD_1983_CORS96_StatePlane_Utah_North_FIPS_4301_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103166','EPSG','2258',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103553','NAD_1983_CORS96_StatePlane_Utah_Central_FIPS_4302_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103167','EPSG','2257',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103554','NAD_1983_CORS96_StatePlane_Utah_South_FIPS_4303_Ft_Intl',NULL,NULL,'ESRI','Foot','EPSG','6783','ESRI','103168','EPSG','2259',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103555','unnamed',NULL,NULL,'EPSG','2258','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',40.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',40.71666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',41.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103555','NAD_1983_CORS96_StatePlane_Utah_North_FIPS_4301_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103555','EPSG','2258',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103556','unnamed',NULL,NULL,'EPSG','2257','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.01666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.65,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',6561666.666666666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103556','NAD_1983_CORS96_StatePlane_Utah_Central_FIPS_4302_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103556','EPSG','2257',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103557','unnamed',NULL,NULL,'EPSG','2259','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-111.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.21666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.35,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',9842500.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103557','NAD_1983_CORS96_StatePlane_Utah_South_FIPS_4303_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103557','EPSG','2259',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103558','unnamed',NULL,NULL,'EPSG','1414','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-72.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999642857142857,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103558','NAD_1983_CORS96_StatePlane_Vermont_FIPS_4400',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103558','EPSG','1414',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103559','unnamed',NULL,NULL,'EPSG','2260','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-78.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.2,'EPSG','9102','EPSG','8826','Easting at false origin',3500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103559','NAD_1983_CORS96_StatePlane_Virginia_North_FIPS_4501',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103559','EPSG','2260',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103560','unnamed',NULL,NULL,'EPSG','2261','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-78.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.76666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',3500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103560','NAD_1983_CORS96_StatePlane_Virginia_South_FIPS_4502',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103560','EPSG','2261',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103561','unnamed',NULL,NULL,'EPSG','2260','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.66666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-78.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',38.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',39.2,'EPSG','9102','EPSG','8826','Easting at false origin',11482916.66666666,'EPSG','9003','EPSG','8827','Northing at false origin',6561666.666666666,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103561','NAD_1983_CORS96_StatePlane_Virginia_North_FIPS_4501_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103561','EPSG','2260',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103562','unnamed',NULL,NULL,'EPSG','2261','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',36.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-78.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',36.76666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',37.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',11482916.66666666,'EPSG','9003','EPSG','8827','Northing at false origin',3280833.333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103562','NAD_1983_CORS96_StatePlane_Virginia_South_FIPS_4502_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103562','EPSG','2261',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103563','unnamed',NULL,NULL,'EPSG','2273','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.8333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103563','NAD_1983_CORS96_StatePlane_Washington_North_FIPS_4601',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103563','EPSG','2273',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103564','unnamed',NULL,NULL,'EPSG','2274','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.33333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103564','NAD_1983_CORS96_StatePlane_Washington_South_FIPS_4602',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103564','EPSG','2274',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103565','unnamed',NULL,NULL,'EPSG','2273','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.8333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103565','NAD_1983_CORS96_StatePlane_Washington_North_FIPS_4601_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103565','EPSG','2273',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103566','unnamed',NULL,NULL,'EPSG','2274','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-120.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.33333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',1640416.666666667,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103566','NAD_1983_CORS96_StatePlane_Washington_South_FIPS_4602_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103566','EPSG','2274',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103567','unnamed',NULL,NULL,'EPSG','2264','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-79.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.25,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103567','NAD_1983_CORS96_StatePlane_West_Virginia_North_FIPS_4701',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103567','EPSG','2264',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103568','unnamed',NULL,NULL,'EPSG','2265','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.48333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103568','NAD_1983_CORS96_StatePlane_West_Virginia_South_FIPS_4702',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103568','EPSG','2265',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103569','unnamed',NULL,NULL,'EPSG','2264','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',38.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-79.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',39.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',40.25,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103569','NAD_1983_CORS96_StatePlane_West_Virginia_North_FIPS_4701_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103569','EPSG','2264',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103570','unnamed',NULL,NULL,'EPSG','2265','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',37.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-81.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',37.48333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',38.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103570','NAD_1983_CORS96_StatePlane_West_Virginia_South_FIPS_4702_FtUS',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103570','EPSG','2265',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103571','unnamed',NULL,NULL,'EPSG','2267','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103571','NAD_1983_CORS96_StatePlane_Wisconsin_North_FIPS_4801',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103571','EPSG','2267',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103572','unnamed',NULL,NULL,'EPSG','2266','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.5,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103572','NAD_1983_CORS96_StatePlane_Wisconsin_Central_FIPS_4802',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103572','EPSG','2266',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103573','unnamed',NULL,NULL,'EPSG','2268','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.06666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103573','NAD_1983_CORS96_StatePlane_Wisconsin_South_FIPS_4803',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103573','EPSG','2268',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103574','unnamed',NULL,NULL,'EPSG','2267','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.16666666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.76666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103574','NAD_1983_CORS96_StatePlane_Wisconsin_North_FIPS_4801_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103574','EPSG','2267',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103575','unnamed',NULL,NULL,'EPSG','2266','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.5,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103575','NAD_1983_CORS96_StatePlane_Wisconsin_Central_FIPS_4802_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103575','EPSG','2266',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103576','unnamed',NULL,NULL,'EPSG','2268','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.0,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.73333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.06666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',1968500.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103576','NAD_1983_CORS96_StatePlane_Wisconsin_South_FIPS_4803_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103576','EPSG','2268',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103577','unnamed',NULL,NULL,'EPSG','2269','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-105.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',200000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103577','NAD_1983_CORS96_StatePlane_Wyoming_East_FIPS_4901',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103577','EPSG','2269',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103578','unnamed',NULL,NULL,'EPSG','2270','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-107.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',400000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103578','NAD_1983_CORS96_StatePlane_Wyoming_East_Central_FIPS_4902',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103578','EPSG','2270',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103579','unnamed',NULL,NULL,'EPSG','2272','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-108.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103579','NAD_1983_CORS96_StatePlane_Wyoming_West_Central_FIPS_4903',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103579','EPSG','2272',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103580','unnamed',NULL,NULL,'EPSG','2271','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-110.0833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',800000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103580','NAD_1983_CORS96_StatePlane_Wyoming_West_FIPS_4904',NULL,NULL,'EPSG','4400','EPSG','6783','ESRI','103580','EPSG','2271',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103581','unnamed',NULL,NULL,'EPSG','2269','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-105.1666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',656166.6666666665,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103581','NAD_1983_CORS96_StatePlane_Wyoming_East_FIPS_4901_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103581','EPSG','2269',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103582','unnamed',NULL,NULL,'EPSG','2270','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-107.3333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',1312333.333333333,'EPSG','9003','EPSG','8807','False northing',328083.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103582','NAD_1983_CORS96_StatePlane_Wyoming_E_Central_FIPS_4902_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103582','EPSG','2270',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103583','unnamed',NULL,NULL,'EPSG','2272','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-108.75,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',1968500.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103583','NAD_1983_CORS96_StatePlane_Wyoming_W_Central_FIPS_4903_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103583','EPSG','2272',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103584','ETRF_1989_TM_Baltic_1993',NULL,NULL,'EPSG','4400','EPSG','9059','EPSG','19930','EPSG','1646',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103585','unnamed',NULL,NULL,'EPSG','2271','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',40.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',-110.0833333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9999375,'EPSG','9201','EPSG','8806','False easting',2624666.666666666,'EPSG','9003','EPSG','8807','False northing',328083.3333333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103585','NAD_1983_CORS96_StatePlane_Wyoming_West_FIPS_4904_Ft_US',NULL,NULL,'ESRI','Foot_US','EPSG','6783','ESRI','103585','EPSG','2271',NULL,0); INSERT INTO "area" VALUES('ESRI','143','Navajo Nation','Navajo Nation',32.8,37.75,-114.04,-106.17,0); INSERT INTO "conversion" VALUES('ESRI','103586','unnamed',NULL,NULL,'ESRI','143','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-109.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00023,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103586','NAD_1983_HARN_Navajo_Nation_Coordinate_System_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103586','ESRI','143',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103587','unnamed',NULL,NULL,'ESRI','143','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-109.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00023,'EPSG','9201','EPSG','8806','False easting',984250.0,'EPSG','9003','EPSG','8807','False northing',1968500.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103587','NAD_1983_HARN_Navajo_Nation_Coordinate_System_US_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103587','ESRI','143',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103588','unnamed',NULL,NULL,'ESRI','143','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',36.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-109.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00023,'EPSG','9201','EPSG','8806','False easting',984251.968503937,'EPSG','9002','EPSG','8807','False northing',1968503.937007874,'EPSG','9002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103588','NAD_1983_HARN_Navajo_Nation_Coordinate_System_Intl_Feet',NULL,NULL,'ESRI','Foot','EPSG','4152','ESRI','103588','ESRI','143',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103589','NAD_1983_NSRS2007_Navajo_Nation_Coordinate_System_Meters',NULL,NULL,'EPSG','4400','EPSG','4759','ESRI','103586','ESRI','143',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103590','NAD_1983_NSRS2007_Navajo_Nation_Coordinate_System_US_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4759','ESRI','103587','ESRI','143',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103591','NAD_1983_NSRS2007_Navajo_Nation_Coordinate_System_Intl_Feet',NULL,NULL,'ESRI','Foot','EPSG','4759','ESRI','103588','ESRI','143',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103592','NAD_1983_(2011)_Navajo_Nation_Coordinate_System_Meters',NULL,NULL,'EPSG','4400','EPSG','6318','ESRI','103586','ESRI','143',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103593','NAD_1983_(2011)_Navajo_Nation_Coordinate_System_US_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','6318','ESRI','103587','ESRI','143',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103594','NAD_1983_(2011)_Navajo_Nation_Coordinate_System_Intl_Feet',NULL,NULL,'ESRI','Foot','EPSG','6318','ESRI','103588','ESRI','143',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103595','ONGD17_UTM_Zone_39N',NULL,NULL,'EPSG','4400','ESRI','104027','EPSG','16039','EPSG','4322',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103596','ONGD17_UTM_Zone_40N',NULL,NULL,'EPSG','4400','ESRI','104027','EPSG','16040','EPSG','4323',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103597','ONGD17_UTM_Zone_41N',NULL,NULL,'EPSG','4400','ESRI','104027','EPSG','16041','EPSG','4324',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103600','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',46.15416666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-93.4325,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000059152669,'EPSG','9201','EPSG','8806','False easting',152409.319685395,'EPSG','9001','EPSG','8807','False northing',30481.86393707899,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103600','NAD_1983_HARN_Adj_MN_Aitkin_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103600','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103601','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',46.63,'EPSG','9102','EPSG','8802','Longitude of natural origin',-96.7,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000045317862,'EPSG','9201','EPSG','8806','False easting',152407.2112565913,'EPSG','9001','EPSG','8807','False northing',30481.44225131827,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103601','NAD_1983_HARN_Adj_MN_Clay_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103601','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103602','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',47.15166666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-95.37583333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000072505661,'EPSG','9201','EPSG','8806','False easting',152411.3546854458,'EPSG','9001','EPSG','8807','False northing',30482.27093708916,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103602','NAD_1983_HARN_Adj_MN_Clearwater_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103602','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103603','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',46.80361111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-94.92055555555557,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000071553661,'EPSG','9201','EPSG','8806','False easting',152411.2096003556,'EPSG','9001','EPSG','8807','False northing',30482.24192007113,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103603','NAD_1983_HARN_Adj_MN_Hubbard_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103603','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103604','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',47.06666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.40916666666668,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000075844621,'EPSG','9201','EPSG','8806','False easting',152411.8635439675,'EPSG','9001','EPSG','8807','False northing',30482.3727087935,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103604','NAD_1983_HARN_Adj_MN_Lake_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103604','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103605','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.55888888888889,'EPSG','9102','EPSG','8802','Longitude of natural origin',-93.62055555555555,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000054146138,'EPSG','9201','EPSG','8806','False easting',152408.5566885446,'EPSG','9001','EPSG','8807','False northing',30481.71133770892,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103605','NAD_1983_HARN_Adj_MN_Mille_Lacs_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103605','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103606','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.74583333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.83333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000039836799,'EPSG','9201','EPSG','8806','False easting',152406.3759409195,'EPSG','9001','EPSG','8807','False northing',30481.2751881839,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103606','NAD_1983_HARN_Adj_MN_Washington_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103606','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103607','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',46.02166666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-96.52444444444444,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000048901066,'EPSG','9201','EPSG','8806','False easting',152407.7573379731,'EPSG','9001','EPSG','8807','False northing',30481.55146759462,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103607','NAD_1983_HARN_Adj_MN_Wilkin_Meters',NULL,NULL,'EPSG','4400','EPSG','4152','ESRI','103607','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103608','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.03527777777778,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.26666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.06666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.36666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103608','NAD_1983_HARN_Adj_MN_Anoka_Meters',NULL,NULL,'EPSG','4400','ESRI','104700','ESRI','103608','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103609','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.71777777777778,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.68333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103609','NAD_1983_HARN_Adj_MN_Becker_Meters',NULL,NULL,'EPSG','4400','ESRI','104701','ESRI','103609','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103610','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.02,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.01666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.11666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103610','NAD_1983_HARN_Adj_MN_Beltrami_North_Meters',NULL,NULL,'EPSG','4400','ESRI','104702','ESRI','103610','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103611','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.4125,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.85,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.91666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103611','NAD_1983_HARN_Adj_MN_Beltrami_South_Meters',NULL,NULL,'EPSG','4400','ESRI','104703','ESRI','103611','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103612','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.55916666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.05,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.58333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103612','NAD_1983_HARN_Adj_MN_Benton_Meters',NULL,NULL,'EPSG','4400','ESRI','104704','ESRI','103612','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103613','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.15222222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.05,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.21666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.53333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103613','NAD_1983_HARN_Adj_MN_Big_Stone_Meters',NULL,NULL,'EPSG','4400','ESRI','104705','ESRI','103613','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103614','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.84805555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.26666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.36666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103614','NAD_1983_HARN_Adj_MN_Blue_Earth_Meters',NULL,NULL,'EPSG','4400','ESRI','104706','ESRI','103614','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103615','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.10805555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.73333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.16666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103615','NAD_1983_HARN_Adj_MN_Brown_Meters',NULL,NULL,'EPSG','4400','ESRI','104707','ESRI','103615','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103616','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.41722222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.68333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.46666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103616','NAD_1983_HARN_Adj_MN_Carlton_Meters',NULL,NULL,'EPSG','4400','ESRI','104708','ESRI','103616','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103617','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.63972222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.76666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.68333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.9,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103617','NAD_1983_HARN_Adj_MN_Carver_Meters',NULL,NULL,'EPSG','4400','ESRI','104709','ESRI','103617','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103618','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.80361111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.21666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.91666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.31666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103618','NAD_1983_HARN_Adj_MN_Cass_North_Meters',NULL,NULL,'EPSG','4400','ESRI','104710','ESRI','103618','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103619','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.15638888888888,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.46666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.26666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103619','NAD_1983_HARN_Adj_MN_Cass_South_Meters',NULL,NULL,'EPSG','4400','ESRI','104711','ESRI','103619','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103620','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.75277777777778,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.85,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.2,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103620','NAD_1983_HARN_Adj_MN_Chippewa_Meters',NULL,NULL,'EPSG','4400','ESRI','104712','ESRI','103620','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103621','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.29638888888888,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.08333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103621','NAD_1983_HARN_Adj_MN_Chisago_Meters',NULL,NULL,'EPSG','4400','ESRI','104713','ESRI','103621','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103622','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.88333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103622','NAD_1983_HARN_Adj_MN_Cook_North_Meters',NULL,NULL,'EPSG','4400','ESRI','104714','ESRI','103622','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103623','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.43888888888888,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.55,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.81666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103623','NAD_1983_HARN_Adj_MN_Cook_South_Meters',NULL,NULL,'EPSG','4400','ESRI','104715','ESRI','103623','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103624','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.84805555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.91666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.9,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103624','NAD_1983_HARN_Adj_MN_Cottonwood_Meters',NULL,NULL,'EPSG','4400','ESRI','104716','ESRI','103624','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103625','NAD_1983_HARN_Adj_MN_Crow_Wing_Meters',NULL,NULL,'EPSG','4400','ESRI','104717','ESRI','103619','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103626','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.47194444444445,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.31666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.51666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.91666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103626','NAD_1983_HARN_Adj_MN_Dakota_Meters',NULL,NULL,'EPSG','4400','ESRI','104718','ESRI','103626','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103627','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.83388888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.91666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.88333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.13333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103627','NAD_1983_HARN_Adj_MN_Dodge_Meters',NULL,NULL,'EPSG','4400','ESRI','104719','ESRI','103627','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103628','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.75888888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.05,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.8,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.05,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103628','NAD_1983_HARN_Adj_MN_Douglas_Meters',NULL,NULL,'EPSG','4400','ESRI','104720','ESRI','103628','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103629','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.95,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.8,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103629','NAD_1983_HARN_Adj_MN_Faribault_Meters',NULL,NULL,'EPSG','4400','ESRI','104721','ESRI','103629','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103630','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.08333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.55,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.8,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103630','NAD_1983_HARN_Adj_MN_Fillmore_Meters',NULL,NULL,'EPSG','4400','ESRI','104722','ESRI','103630','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103631','NAD_1983_HARN_Adj_MN_Freeborn_Meters',NULL,NULL,'EPSG','4400','ESRI','104723','ESRI','103629','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103632','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.19472222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.13333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103632','NAD_1983_HARN_Adj_MN_Goodhue_Meters',NULL,NULL,'EPSG','4400','ESRI','104724','ESRI','103632','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103633','NAD_1983_HARN_Adj_MN_Grant_Meters',NULL,NULL,'EPSG','4400','ESRI','104725','ESRI','103628','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103634','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.79111111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.38333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.88333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.13333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103634','NAD_1983_HARN_Adj_MN_Hennepin_Meters',NULL,NULL,'EPSG','4400','ESRI','104726','ESRI','103634','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103635','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.46666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.8,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103635','NAD_1983_HARN_Adj_MN_Houston_Meters',NULL,NULL,'EPSG','4400','ESRI','104727','ESRI','103635','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103636','NAD_1983_HARN_Adj_MN_Isanti_Meters',NULL,NULL,'EPSG','4400','ESRI','104728','ESRI','103621','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103637','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.73333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.81666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103637','NAD_1983_HARN_Adj_MN_Itasca_North_Meters',NULL,NULL,'EPSG','4400','ESRI','104729','ESRI','103637','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103638','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.02638888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.73333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.08333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.41666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103638','NAD_1983_HARN_Adj_MN_Itasca_South_Meters',NULL,NULL,'EPSG','4400','ESRI','104730','ESRI','103638','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103639','NAD_1983_HARN_Adj_MN_Jackson_Meters',NULL,NULL,'EPSG','4400','ESRI','104731','ESRI','103629','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103640','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.73,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.9,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.81666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.33333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103640','NAD_1983_HARN_Adj_MN_Kanabec_Meters',NULL,NULL,'EPSG','4400','ESRI','104732','ESRI','103640','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103641','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.89138888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.96666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.33333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103641','NAD_1983_HARN_Adj_MN_Kandiyohi_Meters',NULL,NULL,'EPSG','4400','ESRI','104733','ESRI','103641','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103642','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.54388888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.15,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.6,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.93333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103642','NAD_1983_HARN_Adj_MN_Kittson_Meters',NULL,NULL,'EPSG','4400','ESRI','104734','ESRI','103642','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103643','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.84583333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.61666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103643','NAD_1983_HARN_Adj_MN_Koochiching_Meters',NULL,NULL,'EPSG','4400','ESRI','104735','ESRI','103643','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103644','NAD_1983_HARN_Adj_MN_Lac_Qui_Parle_Meters',NULL,NULL,'EPSG','4400','ESRI','104736','ESRI','103620','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103645','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',49.15,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.98333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',49.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.33333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103645','NAD_1983_HARN_Adj_MN_Lake_of_the_Woods_North_Meters',NULL,NULL,'EPSG','4400','ESRI','104737','ESRI','103645','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103646','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.36611111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.88333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.45,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103646','NAD_1983_HARN_Adj_MN_Lake_of_the_Woods_South_Meters',NULL,NULL,'EPSG','4400','ESRI','104738','ESRI','103646','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103647','NAD_1983_HARN_Adj_MN_Le_Sueur_Meters',NULL,NULL,'EPSG','4400','ESRI','104739','ESRI','103632','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103648','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.19666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.26666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.28333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.61666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103648','NAD_1983_HARN_Adj_MN_Lincoln_Meters',NULL,NULL,'EPSG','4400','ESRI','104740','ESRI','103648','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103649','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.19555555555555,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.85,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.58333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103649','NAD_1983_HARN_Adj_MN_Lyon_Meters',NULL,NULL,'EPSG','4400','ESRI','104741','ESRI','103649','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103650','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.45611111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.63333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.53333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.91666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103650','NAD_1983_HARN_Adj_MN_McLeod_Meters',NULL,NULL,'EPSG','4400','ESRI','104742','ESRI','103650','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103651','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.15166666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.81666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.2,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.45,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103651','NAD_1983_HARN_Adj_MN_Mahnomen_Meters',NULL,NULL,'EPSG','4400','ESRI','104743','ESRI','103651','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103652','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.17305555555555,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.38333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.23333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103652','NAD_1983_HARN_Adj_MN_Marshall_Meters',NULL,NULL,'EPSG','4400','ESRI','104744','ESRI','103652','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103653','NAD_1983_HARN_Adj_MN_Martin_Meters',NULL,NULL,'EPSG','4400','ESRI','104745','ESRI','103629','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103654','NAD_1983_HARN_Adj_MN_Meeker_Meters',NULL,NULL,'EPSG','4400','ESRI','104746','ESRI','103641','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103655','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.77388888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.2,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.85,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.26666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103655','NAD_1983_HARN_Adj_MN_Morrison_Meters',NULL,NULL,'EPSG','4400','ESRI','104747','ESRI','103655','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103656','NAD_1983_HARN_Adj_MN_Mower_Meters',NULL,NULL,'EPSG','4400','ESRI','104748','ESRI','103629','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103657','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.84805555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.76666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.91666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103657','NAD_1983_HARN_Adj_MN_Murray_Meters',NULL,NULL,'EPSG','4400','ESRI','104749','ESRI','103657','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103658','NAD_1983_HARN_Adj_MN_Nicollet_Meters',NULL,NULL,'EPSG','4400','ESRI','104750','ESRI','103614','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103659','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.95,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.8,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103659','NAD_1983_HARN_Adj_MN_Nobles_Meters',NULL,NULL,'EPSG','4400','ESRI','104751','ESRI','103659','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103660','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.15055555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.45,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.2,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.45,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103660','NAD_1983_HARN_Adj_MN_Norman_Meters',NULL,NULL,'EPSG','4400','ESRI','104752','ESRI','103660','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103661','NAD_1983_HARN_Adj_MN_Olmsted_Meters',NULL,NULL,'EPSG','4400','ESRI','104753','ESRI','103627','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103662','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.10638888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.71666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.65,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103662','NAD_1983_HARN_Adj_MN_Ottertail_Meters',NULL,NULL,'EPSG','4400','ESRI','104754','ESRI','103662','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103663','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.49888888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.6,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103663','NAD_1983_HARN_Adj_MN_Pennington_Meters',NULL,NULL,'EPSG','4400','ESRI','104755','ESRI','103663','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103664','NAD_1983_HARN_Adj_MN_Pine_Meters',NULL,NULL,'EPSG','4400','ESRI','104756','ESRI','103640','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103665','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.84916666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.88333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.15,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103665','NAD_1983_HARN_Adj_MN_Pipestone_Meters',NULL,NULL,'EPSG','4400','ESRI','104757','ESRI','103665','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103666','NAD_1983_HARN_Adj_MN_Polk_Meters',NULL,NULL,'EPSG','4400','ESRI','104758','ESRI','103663','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103667','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.28277777777777,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.15,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.35,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.7,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103667','NAD_1983_HARN_Adj_MN_Pope_Meters',NULL,NULL,'EPSG','4400','ESRI','104759','ESRI','103667','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103668','NAD_1983_HARN_Adj_MN_Ramsey_Meters',NULL,NULL,'EPSG','4400','ESRI','104760','ESRI','103634','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103669','NAD_1983_HARN_Adj_MN_Red_Lake_Meters',NULL,NULL,'EPSG','4400','ESRI','104761','ESRI','103663','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103670','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.19472222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.23333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.26666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.56666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103670','NAD_1983_HARN_Adj_MN_Redwood_Meters',NULL,NULL,'EPSG','4400','ESRI','104762','ESRI','103670','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103671','NAD_1983_HARN_Adj_MN_Renville_Meters',NULL,NULL,'EPSG','4400','ESRI','104763','ESRI','103650','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103672','NAD_1983_HARN_Adj_MN_Rice_Meters',NULL,NULL,'EPSG','4400','ESRI','104764','ESRI','103632','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103673','NAD_1983_HARN_Adj_MN_Rock_Meters',NULL,NULL,'EPSG','4400','ESRI','104765','ESRI','103659','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103674','NAD_1983_HARN_Adj_MN_Roseau_Meters',NULL,NULL,'EPSG','4400','ESRI','104766','ESRI','103642','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103675','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.45,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.98333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.53333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103675','NAD_1983_HARN_Adj_MN_St_Louis_North_Meters',NULL,NULL,'EPSG','4400','ESRI','104767','ESRI','103675','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103676','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.25,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.45,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.75,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103676','NAD_1983_HARN_Adj_MN_St_Louis_Central_Meters',NULL,NULL,'EPSG','4400','ESRI','104768','ESRI','103676','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103677','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.65,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.45,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.13333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103677','NAD_1983_HARN_Adj_MN_St_Louis_South_Meters',NULL,NULL,'EPSG','4400','ESRI','104769','ESRI','103677','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103678','NAD_1983_HARN_Adj_MN_Scott_Meters',NULL,NULL,'EPSG','4400','ESRI','104770','ESRI','103626','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103679','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.9775,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.88333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103679','NAD_1983_HARN_Adj_MN_Sherburne_Meters',NULL,NULL,'EPSG','4400','ESRI','104771','ESRI','103679','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103680','NAD_1983_HARN_Adj_MN_Sibley_Meters',NULL,NULL,'EPSG','4400','ESRI','104772','ESRI','103650','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103681','NAD_1983_HARN_Adj_MN_Stearns_Meters',NULL,NULL,'EPSG','4400','ESRI','104773','ESRI','103667','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103682','NAD_1983_HARN_Adj_MN_Steele_Meters',NULL,NULL,'EPSG','4400','ESRI','104774','ESRI','103627','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103683','NAD_1983_HARN_Adj_MN_Stevens_Meters',NULL,NULL,'EPSG','4400','ESRI','104775','ESRI','103667','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103684','NAD_1983_HARN_Adj_MN_Swift_Meters',NULL,NULL,'EPSG','4400','ESRI','104776','ESRI','103613','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103685','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.77333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.9,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.86666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.28333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103685','NAD_1983_HARN_Adj_MN_Todd_Meters',NULL,NULL,'EPSG','4400','ESRI','104777','ESRI','103685','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103686','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.58555555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.55,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.63333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103686','NAD_1983_HARN_Adj_MN_Traverse_Meters',NULL,NULL,'EPSG','4400','ESRI','104778','ESRI','103686','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103687','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.10694444444444,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.26666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.15,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.41666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103687','NAD_1983_HARN_Adj_MN_Wabasha_Meters',NULL,NULL,'EPSG','4400','ESRI','104779','ESRI','103687','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103688','NAD_1983_HARN_Adj_MN_Wadena_Meters',NULL,NULL,'EPSG','4400','ESRI','104780','ESRI','103619','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103689','NAD_1983_HARN_Adj_MN_Waseca_Meters',NULL,NULL,'EPSG','4400','ESRI','104781','ESRI','103627','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103690','NAD_1983_HARN_Adj_MN_Watonwan_Meters',NULL,NULL,'EPSG','4400','ESRI','104782','ESRI','103624','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103691','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.84722222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.61666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.9,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.13333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103691','NAD_1983_HARN_Adj_MN_Winona_Meters',NULL,NULL,'EPSG','4400','ESRI','104783','ESRI','103691','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103692','NAD_1983_HARN_Adj_MN_Wright_Meters',NULL,NULL,'EPSG','4400','ESRI','104784','ESRI','103679','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103693','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.54166666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.9,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.66666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.95,'EPSG','9102','EPSG','8826','Easting at false origin',152400.3048006096,'EPSG','9001','EPSG','8827','Northing at false origin',30480.06096012193,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103693','NAD_1983_HARN_Adj_MN_Yellow_Medicine_Meters',NULL,NULL,'EPSG','4400','ESRI','104785','ESRI','103693','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103694','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',46.61666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.45,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998529,'EPSG','9201','EPSG','8806','False easting',1450000.0,'EPSG','9001','EPSG','8807','False northing',1000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103694','NAD_1983_HARN_Adj_MN_St_Louis_CS96_Meters',NULL,NULL,'EPSG','4400','ESRI','104786','ESRI','103694','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103695','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',46.61666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.45,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99998529,'EPSG','9201','EPSG','8806','False easting',4757208.333333,'EPSG','9003','EPSG','8807','False northing',3280833.333333,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103695','NAD_1983_HARN_Adj_MN_St_Louis_CS96_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104786','ESRI','103695','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103696','NAD_1983_(CSRS)_v6_UTM_Zone_19N',NULL,NULL,'EPSG','4400','EPSG','8252','EPSG','16019','EPSG','3524',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103697','NAD_1983_(CSRS)_v6_UTM_Zone_20N',NULL,NULL,'EPSG','4400','EPSG','8252','EPSG','16020','EPSG','3525',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103698','NAD_1983_(CSRS)_v6_UTM_Zone_21N',NULL,NULL,'EPSG','4400','EPSG','8252','EPSG','16021','EPSG','2151',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103700','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',46.15416666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-93.4325,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000059152669,'EPSG','9201','EPSG','8806','False easting',500029.5763345,'EPSG','9003','EPSG','8807','False northing',100005.9152669,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103700','NAD_1983_HARN_Adj_MN_Aitkin_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103700','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103701','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',46.63,'EPSG','9102','EPSG','8802','Longitude of natural origin',-96.7,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000045317862,'EPSG','9201','EPSG','8806','False easting',500022.658931,'EPSG','9003','EPSG','8807','False northing',100004.5317862,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103701','NAD_1983_HARN_Adj_MN_Clay_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103701','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103702','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',47.15166666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-95.37583333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000072505661,'EPSG','9201','EPSG','8806','False easting',500036.2528305,'EPSG','9003','EPSG','8807','False northing',100007.2505661,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103702','NAD_1983_HARN_Adj_MN_Clearwater_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103702','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103703','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',46.80361111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-94.92055555555557,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000071553661,'EPSG','9201','EPSG','8806','False easting',500035.7768305,'EPSG','9003','EPSG','8807','False northing',100007.1553661,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103703','NAD_1983_HARN_Adj_MN_Hubbard_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103703','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103704','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',47.06666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.40916666666668,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000075844621,'EPSG','9201','EPSG','8806','False easting',500037.9223105,'EPSG','9003','EPSG','8807','False northing',100007.5844621,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103704','NAD_1983_HARN_Adj_MN_Lake_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103704','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103705','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.55888888888889,'EPSG','9102','EPSG','8802','Longitude of natural origin',-93.62055555555555,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000054146138,'EPSG','9201','EPSG','8806','False easting',500027.073069,'EPSG','9003','EPSG','8807','False northing',100005.4146138,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103705','NAD_1983_HARN_Adj_MN_Mille_Lacs_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103705','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103706','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.74583333333334,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.83333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000039836799,'EPSG','9201','EPSG','8806','False easting',500019.9183995,'EPSG','9003','EPSG','8807','False northing',100003.9836799,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103706','NAD_1983_HARN_Adj_MN_Washington_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103706','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103707','unnamed',NULL,NULL,'EPSG','1392','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',46.02166666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-96.52444444444444,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.000048901066,'EPSG','9201','EPSG','8806','False easting',500024.450533,'EPSG','9003','EPSG','8807','False northing',100004.8901066,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103707','NAD_1983_HARN_Adj_MN_Wilkin_Feet',NULL,NULL,'ESRI','Foot_US','EPSG','4152','ESRI','103707','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103708','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.03527777777778,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.26666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.06666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.36666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103708','NAD_1983_HARN_Adj_MN_Anoka_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104700','ESRI','103708','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103709','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.71777777777778,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.68333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103709','NAD_1983_HARN_Adj_MN_Becker_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104701','ESRI','103709','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103710','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.02,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.01666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.11666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103710','NAD_1983_HARN_Adj_MN_Beltrami_North_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104702','ESRI','103710','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103711','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.4125,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.85,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.5,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.91666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103711','NAD_1983_HARN_Adj_MN_Beltrami_South_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104703','ESRI','103711','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103712','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.55916666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.05,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.58333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.78333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103712','NAD_1983_HARN_Adj_MN_Benton_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104704','ESRI','103712','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103713','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.15222222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.05,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.21666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.53333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103713','NAD_1983_HARN_Adj_MN_Big_Stone_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104705','ESRI','103713','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103714','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.84805555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.26666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.36666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103714','NAD_1983_HARN_Adj_MN_Blue_Earth_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104706','ESRI','103714','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103715','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.10805555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.73333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.16666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103715','NAD_1983_HARN_Adj_MN_Brown_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104707','ESRI','103715','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103716','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.41722222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.68333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.46666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103716','NAD_1983_HARN_Adj_MN_Carlton_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104708','ESRI','103716','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103717','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.63972222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.76666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.68333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.9,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103717','NAD_1983_HARN_Adj_MN_Carver_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104709','ESRI','103717','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103718','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.80361111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.21666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.91666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.31666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103718','NAD_1983_HARN_Adj_MN_Cass_North_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104710','ESRI','103718','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103719','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.15638888888888,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.46666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.26666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.73333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103719','NAD_1983_HARN_Adj_MN_Cass_South_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104711','ESRI','103719','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103720','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.75277777777778,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.85,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.83333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.2,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103720','NAD_1983_HARN_Adj_MN_Chippewa_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104712','ESRI','103720','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103721','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.29638888888888,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.08333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103721','NAD_1983_HARN_Adj_MN_Chisago_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104713','ESRI','103721','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103722','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.88333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.93333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103722','NAD_1983_HARN_Adj_MN_Cook_North_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104714','ESRI','103722','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103723','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.43888888888888,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.55,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.81666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103723','NAD_1983_HARN_Adj_MN_Cook_South_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104715','ESRI','103723','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103724','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.84805555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.91666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.9,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103724','NAD_1983_HARN_Adj_MN_Cottonwood_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104716','ESRI','103724','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103725','NAD_1983_HARN_Adj_MN_Crow_Wing_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104717','ESRI','103719','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103726','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.47194444444445,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.31666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.51666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.91666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103726','NAD_1983_HARN_Adj_MN_Dakota_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104718','ESRI','103726','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103727','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.83388888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.91666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.88333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.13333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103727','NAD_1983_HARN_Adj_MN_Dodge_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104719','ESRI','103727','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103728','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.75888888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.05,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.8,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.05,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103728','NAD_1983_HARN_Adj_MN_Douglas_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104720','ESRI','103728','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103729','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.95,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.8,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103729','NAD_1983_HARN_Adj_MN_Faribault_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104721','ESRI','103729','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103730','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.08333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.55,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.8,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103730','NAD_1983_HARN_Adj_MN_Fillmore_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104722','ESRI','103730','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103731','NAD_1983_HARN_Adj_MN_Freeborn_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104723','ESRI','103729','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103732','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.19472222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.13333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.3,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.66666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103732','NAD_1983_HARN_Adj_MN_Goodhue_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104724','ESRI','103732','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103733','NAD_1983_HARN_Adj_MN_Grant_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104725','ESRI','103728','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103734','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.79111111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.38333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.88333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.13333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103734','NAD_1983_HARN_Adj_MN_Hennepin_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104726','ESRI','103734','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103735','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.46666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.8,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103735','NAD_1983_HARN_Adj_MN_Houston_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104727','ESRI','103735','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103736','NAD_1983_HARN_Adj_MN_Isanti_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104728','ESRI','103721','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103737','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.73333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.81666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103737','NAD_1983_HARN_Adj_MN_Itasca_North_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104729','ESRI','103737','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103738','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.02638888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.73333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.08333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.41666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103738','NAD_1983_HARN_Adj_MN_Itasca_South_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104730','ESRI','103738','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103739','NAD_1983_HARN_Adj_MN_Jackson_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104731','ESRI','103729','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103740','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.73,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.9,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.81666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.33333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103740','NAD_1983_HARN_Adj_MN_Kanabec_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104732','ESRI','103740','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103741','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.89138888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.96666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.33333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103741','NAD_1983_HARN_Adj_MN_Kandiyohi_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104733','ESRI','103741','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103742','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.54388888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.15,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.6,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.93333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103742','NAD_1983_HARN_Adj_MN_Kittson_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104734','ESRI','103742','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103743','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.84583333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.75,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.61666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103743','NAD_1983_HARN_Adj_MN_Koochiching_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104735','ESRI','103743','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103744','NAD_1983_HARN_Adj_MN_Lac_Qui_Parle_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104736','ESRI','103720','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103745','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',49.15,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.98333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',49.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.33333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103745','NAD_1983_HARN_Adj_MN_Lake_of_the_Woods_North_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104737','ESRI','103745','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103746','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.36611111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.88333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.45,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.88333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103746','NAD_1983_HARN_Adj_MN_Lake_of_the_Woods_South_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104738','ESRI','103746','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103747','NAD_1983_HARN_Adj_MN_Le_Sueur_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104739','ESRI','103732','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103748','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.19666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.26666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.28333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.61666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103748','NAD_1983_HARN_Adj_MN_Lincoln_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104740','ESRI','103748','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103749','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.19555555555555,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.85,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.58333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103749','NAD_1983_HARN_Adj_MN_Lyon_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104741','ESRI','103749','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103750','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.45611111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.63333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.53333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.91666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103750','NAD_1983_HARN_Adj_MN_McLeod_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104742','ESRI','103750','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103751','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.15166666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.81666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.2,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.45,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103751','NAD_1983_HARN_Adj_MN_Mahnomen_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104743','ESRI','103751','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103752','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.17305555555555,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.38333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.23333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.48333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103752','NAD_1983_HARN_Adj_MN_Marshall_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104744','ESRI','103752','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103753','NAD_1983_HARN_Adj_MN_Martin_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104745','ESRI','103729','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103754','NAD_1983_HARN_Adj_MN_Meeker_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104746','ESRI','103741','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103755','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.77388888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.2,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.85,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.26666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103755','NAD_1983_HARN_Adj_MN_Morrison_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104747','ESRI','103755','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103756','NAD_1983_HARN_Adj_MN_Mower_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104748','ESRI','103729','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103757','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.84805555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.76666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.91666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.16666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103757','NAD_1983_HARN_Adj_MN_Murray_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104749','ESRI','103757','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103758','NAD_1983_HARN_Adj_MN_Nicollet_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104750','ESRI','103714','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103759','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.5,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.95,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.8,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103759','NAD_1983_HARN_Adj_MN_Nobles_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104751','ESRI','103759','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103760','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.15055555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.45,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.2,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.45,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103760','NAD_1983_HARN_Adj_MN_Norman_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104752','ESRI','103760','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103761','NAD_1983_HARN_Adj_MN_Olmsted_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104753','ESRI','103727','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103762','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.10638888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.71666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.65,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103762','NAD_1983_HARN_Adj_MN_Ottertail_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104754','ESRI','103762','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103763','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.49888888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.36666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.6,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103763','NAD_1983_HARN_Adj_MN_Pennington_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104755','ESRI','103763','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103764','NAD_1983_HARN_Adj_MN_Pine_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104756','ESRI','103740','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103765','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.84916666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.25,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.88333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.15,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103765','NAD_1983_HARN_Adj_MN_Pipestone_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104757','ESRI','103765','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103766','NAD_1983_HARN_Adj_MN_Polk_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104758','ESRI','103763','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103767','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.28277777777777,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.15,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.35,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.7,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103767','NAD_1983_HARN_Adj_MN_Pope_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104759','ESRI','103767','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103768','NAD_1983_HARN_Adj_MN_Ramsey_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104760','ESRI','103734','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103769','NAD_1983_HARN_Adj_MN_Red_Lake_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104761','ESRI','103763','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103770','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.19472222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.23333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.26666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.56666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103770','NAD_1983_HARN_Adj_MN_Redwood_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104762','ESRI','103770','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103771','NAD_1983_HARN_Adj_MN_Renville_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104763','ESRI','103750','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103772','NAD_1983_HARN_Adj_MN_Rice_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104764','ESRI','103732','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103773','NAD_1983_HARN_Adj_MN_Rock_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104765','ESRI','103759','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103774','NAD_1983_HARN_Adj_MN_Roseau_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104766','ESRI','103742','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103775','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.83333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.45,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.98333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.53333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103775','NAD_1983_HARN_Adj_MN_St_Louis_North_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104767','ESRI','103775','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103776','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.25,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.45,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.75,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103776','NAD_1983_HARN_Adj_MN_St_Louis_Central_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104768','ESRI','103776','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103777','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.65,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.45,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.78333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.13333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103777','NAD_1983_HARN_Adj_MN_St_Louis_South_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104769','ESRI','103777','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103778','NAD_1983_HARN_Adj_MN_Scott_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104770','ESRI','103726','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103779','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.9775,'EPSG','9102','EPSG','8822','Longitude of false origin',-93.88333333333334,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.03333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.46666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103779','NAD_1983_HARN_Adj_MN_Sherburne_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104771','ESRI','103779','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103780','NAD_1983_HARN_Adj_MN_Sibley_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104772','ESRI','103750','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103781','NAD_1983_HARN_Adj_MN_Stearns_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104773','ESRI','103767','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103782','NAD_1983_HARN_Adj_MN_Steele_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104774','ESRI','103727','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103783','NAD_1983_HARN_Adj_MN_Stevens_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104775','ESRI','103767','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103784','NAD_1983_HARN_Adj_MN_Swift_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104776','ESRI','103713','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103785','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.77333333333333,'EPSG','9102','EPSG','8822','Longitude of false origin',-94.9,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.86666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.28333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103785','NAD_1983_HARN_Adj_MN_Todd_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104777','ESRI','103785','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103786','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.58555555555556,'EPSG','9102','EPSG','8822','Longitude of false origin',-96.55,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.63333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.96666666666667,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103786','NAD_1983_HARN_Adj_MN_Traverse_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104778','ESRI','103786','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103787','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.10694444444444,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.26666666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.15,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.41666666666666,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103787','NAD_1983_HARN_Adj_MN_Wabasha_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104779','ESRI','103787','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103788','NAD_1983_HARN_Adj_MN_Wadena_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104780','ESRI','103719','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103789','NAD_1983_HARN_Adj_MN_Waseca_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104781','ESRI','103727','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103790','NAD_1983_HARN_Adj_MN_Watonwan_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104782','ESRI','103724','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103791','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.84722222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.61666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.9,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.13333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103791','NAD_1983_HARN_Adj_MN_Winona_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104783','ESRI','103791','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103792','NAD_1983_HARN_Adj_MN_Wright_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104784','ESRI','103779','EPSG','1392',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103793','unnamed',NULL,NULL,'EPSG','1392','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.54166666666666,'EPSG','9102','EPSG','8822','Longitude of false origin',-95.9,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.66666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.95,'EPSG','9102','EPSG','8826','Easting at false origin',500000.0,'EPSG','9003','EPSG','8827','Northing at false origin',100000.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103793','NAD_1983_HARN_Adj_MN_Yellow_Medicine_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104785','ESRI','103793','EPSG','1392',NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103794','Mexican_Datum_1993_UTM_Zone_11N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16011','EPSG','3423',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103795','Mexican_Datum_1993_UTM_Zone_12N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16012','EPSG','3424',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103796','Mexican_Datum_1993_UTM_Zone_13N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16013','EPSG','3425',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103797','Mexican_Datum_1993_UTM_Zone_14N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16014','EPSG','3426',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103798','Mexican_Datum_1993_UTM_Zone_15N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16015','EPSG','3633',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103799','Mexican_Datum_1993_UTM_Zone_16N',NULL,NULL,'EPSG','4400','EPSG','4483','EPSG','16016','EPSG','3635',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103800','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.36666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999999,'EPSG','9201','EPSG','8806','False easting',147218.6944373889,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103800','NAD_1983_HARN_Adj_WI_Adams_Meters',NULL,NULL,'EPSG','4400','ESRI','104800','ESRI','103800','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103801','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.70611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.62222222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',172821.9456438913,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103801','NAD_1983_HARN_Adj_WI_Ashland_Meters',NULL,NULL,'EPSG','4400','ESRI','104801','ESRI','103801','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103802','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.13333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.85,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',93150.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103802','NAD_1983_HARN_Adj_WI_Barron_Meters',NULL,NULL,'EPSG','4400','ESRI','104802','ESRI','103802','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103803','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',31599.99998984,'EPSG','9001','EPSG','8807','False northing',4599.98983997968,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103803','NAD_1983_HARN_Adj_WI_Brown_Meters',NULL,NULL,'EPSG','4400','ESRI','104804','ESRI','103803','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103804','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.48138888888889,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.79722222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',175260.3505207011,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103804','NAD_1983_HARN_Adj_WI_Buffalo_Meters',NULL,NULL,'EPSG','4400','ESRI','104805','ESRI','103804','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103805','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.71944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',244754.8895097791,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103805','NAD_1983_HARN_Adj_WI_Calumet_Meters',NULL,NULL,'EPSG','4400','ESRI','104807','ESRI','103805','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103806','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.6,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.70833333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999994,'EPSG','9201','EPSG','8806','False easting',199949.1998984,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103806','NAD_1983_HARN_Adj_WI_Clark_Meters',NULL,NULL,'EPSG','4400','ESRI','104809','ESRI','103806','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103807','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.47222222222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.775,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',263347.7266954534,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103807','NAD_1983_HARN_Adj_WI_Dodge_Meters',NULL,NULL,'EPSG','4400','ESRI','104813','ESRI','103807','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103808','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.4,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.27222222222223,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999991,'EPSG','9201','EPSG','8806','False easting',158801.1176022352,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103808','NAD_1983_HARN_Adj_WI_Door_Meters',NULL,NULL,'EPSG','4400','ESRI','104814','ESRI','103808','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103809','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.88333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.91666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',59131.31826263653,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103809','NAD_1983_HARN_Adj_WI_Douglas_Meters',NULL,NULL,'EPSG','4400','ESRI','104815','ESRI','103809','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103810','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.40833333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.89444444444445,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999998,'EPSG','9201','EPSG','8806','False easting',51816.10363220727,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103810','NAD_1983_HARN_Adj_WI_Dunn_Meters',NULL,NULL,'EPSG','4400','ESRI','104816','ESRI','103810','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103811','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.43888888888888,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.14166666666668,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999993,'EPSG','9201','EPSG','8806','False easting',133502.667005334,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103811','NAD_1983_HARN_Adj_WI_Florence_Meters',NULL,NULL,'EPSG','4400','ESRI','104818','ESRI','103811','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103812','NAD_1983_HARN_Adj_WI_Fond_du_Lac_Meters',NULL,NULL,'EPSG','4400','ESRI','104819','ESRI','103805','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103813','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.00555555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',275844.5516891034,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103813','NAD_1983_HARN_Adj_WI_Forest_Meters',NULL,NULL,'EPSG','4400','ESRI','104820','ESRI','103813','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103814','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.41111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.8,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',242316.4846329693,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103814','NAD_1983_HARN_Adj_WI_Grant_Meters',NULL,NULL,'EPSG','4400','ESRI','104821','ESRI','103814','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103815','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.53888888888888,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.16111111111111,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',113081.0261620523,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103815','NAD_1983_HARN_Adj_WI_Iowa_Meters',NULL,NULL,'EPSG','4400','ESRI','104824','ESRI','103815','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103816','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.43333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.25555555555556,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',220980.4419608839,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103816','NAD_1983_HARN_Adj_WI_Iron_Meters',NULL,NULL,'EPSG','4400','ESRI','104825','ESRI','103816','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103817','NAD_1983_HARN_Adj_WI_Jefferson_Meters',NULL,NULL,'EPSG','4400','ESRI','104827','ESRI','103807','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103818','NAD_1983_HARN_Adj_WI_Juneau_Meters',NULL,NULL,'EPSG','4400','ESRI','104828','ESRI','103800','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103819','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.21666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.89444444444445,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999998,'EPSG','9201','EPSG','8806','False easting',185928.3718567437,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103819','NAD_1983_HARN_Adj_WI_Kenosha_Meters',NULL,NULL,'EPSG','4400','ESRI','104829','ESRI','103819','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103820','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.26666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.55,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',79857.75971551944,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103820','NAD_1983_HARN_Adj_WI_Kewaunee_Meters',NULL,NULL,'EPSG','4400','ESRI','104830','ESRI','103820','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103821','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.45111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.31666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999994,'EPSG','9201','EPSG','8806','False easting',130454.6609093218,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103821','NAD_1983_HARN_Adj_WI_LaCrosse_Meters',NULL,NULL,'EPSG','4400','ESRI','104831','ESRI','103821','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103822','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.84444444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.73333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999998,'EPSG','9201','EPSG','8806','False easting',116129.0322580645,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103822','NAD_1983_HARN_Adj_WI_Lincoln_Meters',NULL,NULL,'EPSG','4400','ESRI','104834','ESRI','103822','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103823','NAD_1983_HARN_Adj_WI_Manitowoc_Meters',NULL,NULL,'EPSG','4400','ESRI','104835','ESRI','103820','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103824','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.69166666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.71111111111111,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999986,'EPSG','9201','EPSG','8806','False easting',238658.8773177547,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103824','NAD_1983_HARN_Adj_WI_Marinette_Meters',NULL,NULL,'EPSG','4400','ESRI','104837','ESRI','103824','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103825','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.71666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.41666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999994,'EPSG','9201','EPSG','8806','False easting',105461.0109220219,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103825','NAD_1983_HARN_Adj_WI_Menominee_Meters',NULL,NULL,'EPSG','4400','ESRI','104839','ESRI','103825','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103826','NAD_1983_HARN_Adj_WI_Milwaukee_Meters',NULL,NULL,'EPSG','4400','ESRI','104840','ESRI','103819','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103827','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.39722222222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.90833333333335,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999991,'EPSG','9201','EPSG','8806','False easting',182880.3657607315,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103827','NAD_1983_HARN_Adj_WI_Oconto_Meters',NULL,NULL,'EPSG','4400','ESRI','104842','ESRI','103827','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103828','NAD_1983_HARN_Adj_WI_Outagamie_Meters',NULL,NULL,'EPSG','4400','ESRI','104844','ESRI','103805','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103829','NAD_1983_HARN_Adj_WI_Ozaukee_Meters',NULL,NULL,'EPSG','4400','ESRI','104845','ESRI','103819','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103830','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.66111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',141732.283464567,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103830','NAD_1983_HARN_Adj_WI_Polk_Meters',NULL,NULL,'EPSG','4400','ESRI','104848','ESRI','103830','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103831','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.55555555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.48888888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999998,'EPSG','9201','EPSG','8806','False easting',227990.855981712,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103831','NAD_1983_HARN_Adj_WI_Price_Meters',NULL,NULL,'EPSG','4400','ESRI','104850','ESRI','103831','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103832','NAD_1983_HARN_Adj_WI_Racine_Meters',NULL,NULL,'EPSG','4400','ESRI','104851','ESRI','103819','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103833','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.94444444444444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.07222222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',146304.2926085852,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103833','NAD_1983_HARN_Adj_WI_Rock_Meters',NULL,NULL,'EPSG','4400','ESRI','104853','ESRI','103833','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103834','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.91944444444444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.06666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',250546.1010922022,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103834','NAD_1983_HARN_Adj_WI_Rusk_Meters',NULL,NULL,'EPSG','4400','ESRI','104854','ESRI','103834','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103835','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.03611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',165506.731013462,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103835','NAD_1983_HARN_Adj_WI_St_Croix_Meters',NULL,NULL,'EPSG','4400','ESRI','104855','ESRI','103835','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103836','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.81944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.9,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',185623.5712471425,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103836','NAD_1983_HARN_Adj_WI_Sauk_Meters',NULL,NULL,'EPSG','4400','ESRI','104856','ESRI','103836','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103837','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.03611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.60555555555555,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',262433.3248666498,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103837','NAD_1983_HARN_Adj_WI_Shawano_Meters',NULL,NULL,'EPSG','4400','ESRI','104858','ESRI','103837','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103838','NAD_1983_HARN_Adj_WI_Sheboygan_Meters',NULL,NULL,'EPSG','4400','ESRI','104859','ESRI','103820','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103839','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.16111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.36666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999998,'EPSG','9201','EPSG','8806','False easting',256946.9138938278,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103839','NAD_1983_HARN_Adj_WI_Trempealeau_Meters',NULL,NULL,'EPSG','4400','ESRI','104861','ESRI','103839','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103840','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.91805555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.06388888888888,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',120091.4401828804,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103840','NAD_1983_HARN_Adj_WI_Washington_Meters',NULL,NULL,'EPSG','4400','ESRI','104866','ESRI','103840','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103841','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.56944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.225,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',208788.4175768352,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103841','NAD_1983_HARN_Adj_WI_Waukesha_Meters',NULL,NULL,'EPSG','4400','ESRI','104867','ESRI','103841','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103842','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.42027777777778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.81666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',185013.9700279401,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103842','NAD_1983_HARN_Adj_WI_Waupaca_Meters',NULL,NULL,'EPSG','4400','ESRI','104868','ESRI','103842','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103843','NAD_1983_HARN_Adj_WI_Winnebago_Meters',NULL,NULL,'EPSG','4400','ESRI','104870','ESRI','103805','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103844','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.15277777777779,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.41388888888888,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.925,'EPSG','9102','EPSG','8826','Easting at false origin',228600.4572009144,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103844','NAD_1983_HARN_Adj_WI_Bayfield_Meters',NULL,NULL,'EPSG','4400','ESRI','104803','ESRI','103844','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103845','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.36388888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.45777777777778,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.71388888888889,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',64008.12801625604,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103845','NAD_1983_HARN_Adj_WI_Burnett_Meters',NULL,NULL,'EPSG','4400','ESRI','104806','ESRI','103845','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103846','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.58111111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.29444444444444,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.81388888888888,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.14166666666667,'EPSG','9102','EPSG','8826','Easting at false origin',60045.72009144019,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103846','NAD_1983_HARN_Adj_WI_Chippewa_Meters',NULL,NULL,'EPSG','4400','ESRI','104808','ESRI','103846','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103847','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.45833333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.39444444444445,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.59166666666667,'EPSG','9102','EPSG','8826','Easting at false origin',169164.3383286767,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103847','NAD_1983_HARN_Adj_WI_Columbia_Meters',NULL,NULL,'EPSG','4400','ESRI','104810','ESRI','103847','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103848','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.71666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.9388888888889,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.05833333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.34166666666667,'EPSG','9102','EPSG','8826','Easting at false origin',113690.6273812548,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103848','NAD_1983_HARN_Adj_WI_Crawford_Meters',NULL,NULL,'EPSG','4400','ESRI','104811','ESRI','103848','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103849','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.75,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.42222222222223,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.90833333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.23055555555555,'EPSG','9102','EPSG','8826','Easting at false origin',247193.2943865888,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103849','NAD_1983_HARN_Adj_WI_Dane_Meters',NULL,NULL,'EPSG','4400','ESRI','104812','ESRI','103849','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103850','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.04722222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.28888888888889,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.73055555555555,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.01388888888889,'EPSG','9102','EPSG','8826','Easting at false origin',120091.4401828804,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103850','NAD_1983_HARN_Adj_WI_EauClaire_Meters',NULL,NULL,'EPSG','4400','ESRI','104817','ESRI','103850','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103851','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.225,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.83888888888889,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.48611111111111,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',42.78888888888888,'EPSG','9102','EPSG','8826','Easting at false origin',170078.7401574803,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103851','NAD_1983_HARN_Adj_WI_Green_Meters',NULL,NULL,'EPSG','4400','ESRI','104822','ESRI','103851','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103852','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.09444444444445,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.24166666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.66666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.94722222222222,'EPSG','9102','EPSG','8826','Easting at false origin',150876.3017526035,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103852','NAD_1983_HARN_Adj_WI_GreenLake_Meters',NULL,NULL,'EPSG','4400','ESRI','104823','ESRI','103852','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103853','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.79444444444444,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.73888888888889,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.16388888888888,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.41944444444444,'EPSG','9102','EPSG','8826','Easting at false origin',125882.6517653035,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103853','NAD_1983_HARN_Adj_WI_Jackson_Meters',NULL,NULL,'EPSG','4400','ESRI','104826','ESRI','103853','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103854','NAD_1983_HARN_Adj_WI_Lafayette_Meters',NULL,NULL,'EPSG','4400','ESRI','104832','ESRI','103851','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103855','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.20694444444445,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.03333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.30833333333333,'EPSG','9102','EPSG','8826','Easting at false origin',198425.1968503937,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103855','NAD_1983_HARN_Adj_WI_Langlade_Meters',NULL,NULL,'EPSG','4400','ESRI','104833','ESRI','103855','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103856','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.40555555555555,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.77,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.74527777777778,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.05638888888888,'EPSG','9102','EPSG','8826','Easting at false origin',74676.14935229871,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103856','NAD_1983_HARN_Adj_WI_Marathon_Meters',NULL,NULL,'EPSG','4400','ESRI','104836','ESRI','103856','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103857','NAD_1983_HARN_Adj_WI_Marquette_Meters',NULL,NULL,'EPSG','4400','ESRI','104838','ESRI','103852','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103858','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.90277777777778,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.64166666666668,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.83888888888889,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.16111111111111,'EPSG','9102','EPSG','8826','Easting at false origin',204521.2090424181,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103858','NAD_1983_HARN_Adj_WI_Monroe_Meters',NULL,NULL,'EPSG','4400','ESRI','104841','ESRI','103858','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103859','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.18611111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.54444444444444,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.84166666666667,'EPSG','9102','EPSG','8826','Easting at false origin',70104.14020828043,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103859','NAD_1983_HARN_Adj_WI_Oneida_Meters',NULL,NULL,'EPSG','4400','ESRI','104843','ESRI','103859','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103860','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.86194444444445,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.22777777777777,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.52222222222222,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.75,'EPSG','9102','EPSG','8826','Easting at false origin',167640.3352806706,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103860','NAD_1983_HARN_Adj_WI_Pepin_Meters',NULL,NULL,'EPSG','4400','ESRI','104846','ESRI','103860','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103861','NAD_1983_HARN_Adj_WI_Pierce_Meters',NULL,NULL,'EPSG','4400','ESRI','104847','ESRI','103860','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103862','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.96666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.65,'EPSG','9102','EPSG','8826','Easting at false origin',56388.11277622556,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103862','NAD_1983_HARN_Adj_WI_Portage_Meters',NULL,NULL,'EPSG','4400','ESRI','104849','ESRI','103862','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103863','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.11388888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.43055555555556,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.14166666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.50277777777778,'EPSG','9102','EPSG','8826','Easting at false origin',202387.6047752096,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103863','NAD_1983_HARN_Adj_WI_Richland_Meters',NULL,NULL,'EPSG','4400','ESRI','104852','ESRI','103863','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103864','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.81388888888888,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.11666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.71944444444445,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.08055555555556,'EPSG','9102','EPSG','8826','Easting at false origin',216713.2334264669,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103864','NAD_1983_HARN_Adj_WI_Sawyer_Meters',NULL,NULL,'EPSG','4400','ESRI','104857','ESRI','103864','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103865','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.20833333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.48333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.05555555555555,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.3,'EPSG','9102','EPSG','8826','Easting at false origin',187147.5742951486,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103865','NAD_1983_HARN_Adj_WI_Taylor_Meters',NULL,NULL,'EPSG','4400','ESRI','104860','ESRI','103865','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103866','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.14722222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.78333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.46666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.68333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',222504.44500889,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103866','NAD_1983_HARN_Adj_WI_Vernon_Meters',NULL,NULL,'EPSG','4400','ESRI','104862','ESRI','103866','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103867','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.625,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.48888888888889,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.93055555555555,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.225,'EPSG','9102','EPSG','8826','Easting at false origin',134417.0688341377,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103867','NAD_1983_HARN_Adj_WI_Vilas_Meters',NULL,NULL,'EPSG','4400','ESRI','104863','ESRI','103867','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103868','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.66944444444444,'EPSG','9102','EPSG','8822','Longitude of false origin',-88.54166666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.58888888888889,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',42.75,'EPSG','9102','EPSG','8826','Easting at false origin',232562.8651257303,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103868','NAD_1983_HARN_Adj_WI_Walworth_Meters',NULL,NULL,'EPSG','4400','ESRI','104864','ESRI','103868','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103869','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.26666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.78333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.77222222222222,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.15,'EPSG','9102','EPSG','8826','Easting at false origin',234086.8681737364,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103869','NAD_1983_HARN_Adj_WI_Washburn_Meters',NULL,NULL,'EPSG','4400','ESRI','104865','ESRI','103869','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103870','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.70833333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.24166666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.975,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.25277777777778,'EPSG','9102','EPSG','8826','Easting at false origin',120091.4401828804,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103870','NAD_1983_HARN_Adj_WI_Waushara_Meters',NULL,NULL,'EPSG','4400','ESRI','104869','ESRI','103870','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103871','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.15138888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.18055555555555,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.54444444444444,'EPSG','9102','EPSG','8826','Easting at false origin',208483.616967234,'EPSG','9001','EPSG','8827','Northing at false origin',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103871','NAD_1983_HARN_Adj_WI_Wood_Meters',NULL,NULL,'EPSG','4400','ESRI','104871','ESRI','103871','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103900','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.36666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999999,'EPSG','9201','EPSG','8806','False easting',483000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103900','NAD_1983_HARN_Adj_WI_Adams_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104800','ESRI','103900','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103901','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.70611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.62222222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',567000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103901','NAD_1983_HARN_Adj_WI_Ashland_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104801','ESRI','103901','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103902','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.13333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.85,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',305609.625,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103902','NAD_1983_HARN_Adj_WI_Barron_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104802','ESRI','103902','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103903','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.00002,'EPSG','9201','EPSG','8806','False easting',103674.3333,'EPSG','9003','EPSG','8807','False northing',15091.8,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103903','NAD_1983_HARN_Adj_WI_Brown_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104804','ESRI','103903','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103904','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.48138888888889,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.79722222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',575000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103904','NAD_1983_HARN_Adj_WI_Buffalo_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104805','ESRI','103904','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103905','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.71944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.5,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',803000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103905','NAD_1983_HARN_Adj_WI_Calumet_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104807','ESRI','103905','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103906','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.6,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.70833333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999994,'EPSG','9201','EPSG','8806','False easting',656000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103906','NAD_1983_HARN_Adj_WI_Clark_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104809','ESRI','103906','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103907','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.47222222222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.775,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',864000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103907','NAD_1983_HARN_Adj_WI_Dodge_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104813','ESRI','103907','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103908','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.4,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.27222222222223,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999991,'EPSG','9201','EPSG','8806','False easting',521000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103908','NAD_1983_HARN_Adj_WI_Door_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104814','ESRI','103908','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103909','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.88333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.91666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',194000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103909','NAD_1983_HARN_Adj_WI_Douglas_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104815','ESRI','103909','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103910','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.40833333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.89444444444445,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999998,'EPSG','9201','EPSG','8806','False easting',170000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103910','NAD_1983_HARN_Adj_WI_Dunn_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104816','ESRI','103910','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103911','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.43888888888888,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.14166666666668,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999993,'EPSG','9201','EPSG','8806','False easting',438000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103911','NAD_1983_HARN_Adj_WI_Florence_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104818','ESRI','103911','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103912','NAD_1983_HARN_Adj_WI_Fond_du_Lac_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104819','ESRI','103905','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103913','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.00555555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',905000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103913','NAD_1983_HARN_Adj_WI_Forest_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104820','ESRI','103913','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103914','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.41111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.8,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',795000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103914','NAD_1983_HARN_Adj_WI_Grant_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104821','ESRI','103914','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103915','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.53888888888888,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.16111111111111,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',371000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103915','NAD_1983_HARN_Adj_WI_Iowa_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104824','ESRI','103915','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103916','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',45.43333333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.25555555555556,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',725000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103916','NAD_1983_HARN_Adj_WI_Iron_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104825','ESRI','103916','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103917','NAD_1983_HARN_Adj_WI_Jefferson_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104827','ESRI','103907','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103918','NAD_1983_HARN_Adj_WI_Juneau_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104828','ESRI','103900','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103919','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.21666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.89444444444445,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999998,'EPSG','9201','EPSG','8806','False easting',610000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103919','NAD_1983_HARN_Adj_WI_Kenosha_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104829','ESRI','103919','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103920','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.26666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.55,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',262000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103920','NAD_1983_HARN_Adj_WI_Kewaunee_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104830','ESRI','103920','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103921','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.45111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.31666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999994,'EPSG','9201','EPSG','8806','False easting',428000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103921','NAD_1983_HARN_Adj_WI_LaCrosse_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104831','ESRI','103921','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103922','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.84444444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.73333333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999998,'EPSG','9201','EPSG','8806','False easting',381000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103922','NAD_1983_HARN_Adj_WI_Lincoln_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104834','ESRI','103922','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103923','NAD_1983_HARN_Adj_WI_Manitowoc_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104835','ESRI','103920','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103924','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.69166666666666,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.71111111111111,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999986,'EPSG','9201','EPSG','8806','False easting',783000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103924','NAD_1983_HARN_Adj_WI_Marinette_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104837','ESRI','103924','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103925','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.71666666666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.41666666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999994,'EPSG','9201','EPSG','8806','False easting',346000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103925','NAD_1983_HARN_Adj_WI_Menominee_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104839','ESRI','103925','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103926','NAD_1983_HARN_Adj_WI_Milwaukee_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104840','ESRI','103919','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103927','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.39722222222222,'EPSG','9102','EPSG','8802','Longitude of natural origin',-87.90833333333335,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999991,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103927','NAD_1983_HARN_Adj_WI_Oconto_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104842','ESRI','103927','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103928','NAD_1983_HARN_Adj_WI_Outagamie_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104844','ESRI','103905','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103929','NAD_1983_HARN_Adj_WI_Ozaukee_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104845','ESRI','103919','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103930','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.66111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',465000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103930','NAD_1983_HARN_Adj_WI_Polk_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104848','ESRI','103930','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103931','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.55555555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-90.48888888888889,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999998,'EPSG','9201','EPSG','8806','False easting',748000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103931','NAD_1983_HARN_Adj_WI_Price_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104850','ESRI','103931','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103932','NAD_1983_HARN_Adj_WI_Racine_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104851','ESRI','103919','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103933','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',41.94444444444444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.07222222222222,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',480000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103933','NAD_1983_HARN_Adj_WI_Rock_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104853','ESRI','103933','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103934','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.91944444444444,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.06666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',822000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103934','NAD_1983_HARN_Adj_WI_Rusk_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104854','ESRI','103934','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103935','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.03611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-92.63333333333334,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',543000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103935','NAD_1983_HARN_Adj_WI_St_Croix_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104855','ESRI','103935','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103936','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.81944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-89.9,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',609000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103936','NAD_1983_HARN_Adj_WI_Sauk_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104856','ESRI','103936','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103937','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',44.03611111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.60555555555555,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.99999,'EPSG','9201','EPSG','8806','False easting',861000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103937','NAD_1983_HARN_Adj_WI_Shawano_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104858','ESRI','103937','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103938','NAD_1983_HARN_Adj_WI_Sheboygan_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104859','ESRI','103920','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103939','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.16111111111111,'EPSG','9102','EPSG','8802','Longitude of natural origin',-91.36666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999998,'EPSG','9201','EPSG','8806','False easting',843000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103939','NAD_1983_HARN_Adj_WI_Trempealeau_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104861','ESRI','103939','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103940','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.91805555555555,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.06388888888888,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999995,'EPSG','9201','EPSG','8806','False easting',394000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103940','NAD_1983_HARN_Adj_WI_Washington_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104866','ESRI','103940','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103941','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',42.56944444444445,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.225,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999997,'EPSG','9201','EPSG','8806','False easting',685000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103941','NAD_1983_HARN_Adj_WI_Waukesha_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104867','ESRI','103941','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103942','unnamed',NULL,NULL,'EPSG','1418','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',43.42027777777778,'EPSG','9102','EPSG','8802','Longitude of natural origin',-88.81666666666666,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.999996,'EPSG','9201','EPSG','8806','False easting',607000.0,'EPSG','9003','EPSG','8807','False northing',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103942','NAD_1983_HARN_Adj_WI_Waupaca_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104868','ESRI','103942','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103943','NAD_1983_HARN_Adj_WI_Winnebago_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104870','ESRI','103905','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103944','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.33333333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.15277777777779,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.41388888888888,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.925,'EPSG','9102','EPSG','8826','Easting at false origin',750000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103944','NAD_1983_HARN_Adj_WI_Bayfield_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104803','ESRI','103944','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103945','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.36388888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.45777777777778,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.71388888888889,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.08333333333334,'EPSG','9102','EPSG','8826','Easting at false origin',210000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103945','NAD_1983_HARN_Adj_WI_Burnett_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104806','ESRI','103945','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103946','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.58111111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.29444444444444,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.81388888888888,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.14166666666667,'EPSG','9102','EPSG','8826','Easting at false origin',197000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "projected_crs" VALUES('ESRI','103946','NAD_1983_HARN_Adj_WI_Chippewa_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104808','ESRI','103946','EPSG','1418',NULL,0); INSERT INTO "conversion" VALUES('ESRI','103947','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.45833333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.39444444444445,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.33333333333334,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.59166666666667,'EPSG','9102','EPSG','8826','Easting at false origin',555000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103947','NAD_1983_HARN_Adj_WI_Columbia_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104810','ESRI','103947','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103948','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.71666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.9388888888889,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.05833333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.34166666666667,'EPSG','9102','EPSG','8826','Easting at false origin',373000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103948','NAD_1983_HARN_Adj_WI_Crawford_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104811','ESRI','103948','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103949','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.75,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.42222222222223,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.90833333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.23055555555555,'EPSG','9102','EPSG','8826','Easting at false origin',811000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103949','NAD_1983_HARN_Adj_WI_Dane_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104812','ESRI','103949','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103950','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.04722222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.28888888888889,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.73055555555555,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.01388888888889,'EPSG','9102','EPSG','8826','Easting at false origin',394000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103950','NAD_1983_HARN_Adj_WI_EauClaire_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104817','ESRI','103950','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103951','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.225,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.83888888888889,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.48611111111111,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',42.78888888888888,'EPSG','9102','EPSG','8826','Easting at false origin',558000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103951','NAD_1983_HARN_Adj_WI_Green_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104822','ESRI','103951','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103952','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.09444444444445,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.24166666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.66666666666666,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.94722222222222,'EPSG','9102','EPSG','8826','Easting at false origin',495000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103952','NAD_1983_HARN_Adj_WI_GreenLake_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104823','ESRI','103952','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103953','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.79444444444444,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.73888888888889,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.16388888888888,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.41944444444444,'EPSG','9102','EPSG','8826','Easting at false origin',413000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103953','NAD_1983_HARN_Adj_WI_Jackson_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104826','ESRI','103953','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103954','NAD_1983_HARN_Adj_WI_Lafayette_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104832','ESRI','103951','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103955','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.20694444444445,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.03333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.30833333333333,'EPSG','9102','EPSG','8826','Easting at false origin',651000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103955','NAD_1983_HARN_Adj_WI_Langlade_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104833','ESRI','103955','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103956','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.40555555555555,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.77,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.74527777777778,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.05638888888888,'EPSG','9102','EPSG','8826','Easting at false origin',245000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103956','NAD_1983_HARN_Adj_WI_Marathon_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104836','ESRI','103956','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103957','NAD_1983_HARN_Adj_WI_Marquette_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104838','ESRI','103952','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103958','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.90277777777778,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.64166666666668,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.83888888888889,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.16111111111111,'EPSG','9102','EPSG','8826','Easting at false origin',671000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103958','NAD_1983_HARN_Adj_WI_Monroe_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104841','ESRI','103958','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103959','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.18611111111111,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.54444444444444,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.56666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.84166666666667,'EPSG','9102','EPSG','8826','Easting at false origin',230000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103959','NAD_1983_HARN_Adj_WI_Oneida_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104843','ESRI','103959','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103960','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.86194444444445,'EPSG','9102','EPSG','8822','Longitude of false origin',-92.22777777777777,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.52222222222222,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.75,'EPSG','9102','EPSG','8826','Easting at false origin',550000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103960','NAD_1983_HARN_Adj_WI_Pepin_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104846','ESRI','103960','EPSG','1418',NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103961','NAD_1983_HARN_Adj_WI_Pierce_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104847','ESRI','103960','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103962','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.96666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.5,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.18333333333333,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.65,'EPSG','9102','EPSG','8826','Easting at false origin',185000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103962','NAD_1983_HARN_Adj_WI_Portage_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104849','ESRI','103962','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103963','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.11388888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.43055555555556,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.14166666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.50277777777778,'EPSG','9102','EPSG','8826','Easting at false origin',664000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103963','NAD_1983_HARN_Adj_WI_Richland_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104852','ESRI','103963','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103964','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.81388888888888,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.11666666666666,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.71944444444445,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.08055555555556,'EPSG','9102','EPSG','8826','Easting at false origin',711000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103964','NAD_1983_HARN_Adj_WI_Sawyer_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104857','ESRI','103964','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103965','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.20833333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.48333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.05555555555555,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.3,'EPSG','9102','EPSG','8826','Easting at false origin',614000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103965','NAD_1983_HARN_Adj_WI_Taylor_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104860','ESRI','103965','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103966','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.14722222222222,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.78333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.46666666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.68333333333333,'EPSG','9102','EPSG','8826','Easting at false origin',730000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103966','NAD_1983_HARN_Adj_WI_Vernon_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104862','ESRI','103966','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103967','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.625,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.48888888888889,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.93055555555555,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.225,'EPSG','9102','EPSG','8826','Easting at false origin',441000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103967','NAD_1983_HARN_Adj_WI_Vilas_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104863','ESRI','103967','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103968','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',41.66944444444444,'EPSG','9102','EPSG','8822','Longitude of false origin',-88.54166666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.58888888888889,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',42.75,'EPSG','9102','EPSG','8826','Easting at false origin',763000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103968','NAD_1983_HARN_Adj_WI_Walworth_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104864','ESRI','103968','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103969','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.26666666666667,'EPSG','9102','EPSG','8822','Longitude of false origin',-91.78333333333333,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.77222222222222,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.15,'EPSG','9102','EPSG','8826','Easting at false origin',768000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103969','NAD_1983_HARN_Adj_WI_Washburn_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104865','ESRI','103969','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103970','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.70833333333334,'EPSG','9102','EPSG','8822','Longitude of false origin',-89.24166666666667,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.975,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.25277777777778,'EPSG','9102','EPSG','8826','Easting at false origin',394000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103970','NAD_1983_HARN_Adj_WI_Waushara_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104869','ESRI','103970','EPSG','1418',NULL,1); INSERT INTO "conversion" VALUES('ESRI','103971','unnamed',NULL,NULL,'EPSG','1418','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.15138888888889,'EPSG','9102','EPSG','8822','Longitude of false origin',-90.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.18055555555555,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.54444444444444,'EPSG','9102','EPSG','8826','Easting at false origin',684000.0,'EPSG','9003','EPSG','8827','Northing at false origin',0.0,'EPSG','9003',NULL,NULL,NULL,NULL,NULL,NULL,1); INSERT INTO "projected_crs" VALUES('ESRI','103971','NAD_1983_HARN_Adj_WI_Wood_Feet',NULL,NULL,'ESRI','Foot_US','ESRI','104871','ESRI','103971','EPSG','1418',NULL,1); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102340','projected_crs','EPSG','2847','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102341','projected_crs','EPSG','2848','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102342','projected_crs','EPSG','2849','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102343','projected_crs','EPSG','2850','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102344','projected_crs','EPSG','2851','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102345','projected_crs','EPSG','2852','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102346','projected_crs','EPSG','2853','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102347','projected_crs','EPSG','2854','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102348','projected_crs','EPSG','2855','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102349','projected_crs','EPSG','2856','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102065','projected_crs','EPSG','5513','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102067','projected_crs','EPSG','5514','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102066','projected_crs','EPSG','5221','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102744','projected_crs','EPSG','3567','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102745','projected_crs','EPSG','5646','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102746','projected_crs','EPSG','2283','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102747','projected_crs','EPSG','2284','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102740','projected_crs','EPSG','2278','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102741','projected_crs','EPSG','2279','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102742','projected_crs','EPSG','3560','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102743','projected_crs','EPSG','3566','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102748','projected_crs','EPSG','2285','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102724','projected_crs','EPSG','2267','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102986','projected_crs','EPSG','6403','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102987','projected_crs','EPSG','6406','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102984','projected_crs','EPSG','6401','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102725','projected_crs','EPSG','2268','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102982','projected_crs','EPSG','6399','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102983','projected_crs','EPSG','6400','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102669','projected_crs','EPSG','2242','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102668','projected_crs','EPSG','2241','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102667','projected_crs','EPSG','2240','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102050','projected_crs','EPSG','6332','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102663','projected_crs','EPSG','3759','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102988','projected_crs','EPSG','6404','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102660','projected_crs','EPSG','2238','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102111','projected_crs','EPSG','5519','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102110','projected_crs','EPSG','2154','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102113','projected_crs','EPSG','3785','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102112','projected_crs','EPSG','3764','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102119','projected_crs','EPSG','3080','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102788','projected_crs','EPSG','6251','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103426','projected_crs','EPSG','8162','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103214','projected_crs','EPSG','4082','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','31917','projected_crs','EPSG','31986','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103165','projected_crs','EPSG','6621','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','31919','projected_crs','EPSG','31988','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','31918','projected_crs','EPSG','31987','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102059','projected_crs','EPSG','6341','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102989','projected_crs','EPSG','6408','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102188','projected_crs','EPSG','3777','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102189','projected_crs','EPSG','3801','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102186','projected_crs','EPSG','3775','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102187','projected_crs','EPSG','3776','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102184','projected_crs','EPSG','3400','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102185','projected_crs','EPSG','3401','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102182','projected_crs','EPSG','3773','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102183','projected_crs','EPSG','3800','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102180','projected_crs','EPSG','3771','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102181','projected_crs','EPSG','3772','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103206','projected_crs','EPSG','4057','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','54035','projected_crs','EPSG','8857','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','54037','projected_crs','EPSG','8859','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','54036','projected_crs','EPSG','8858','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103048','projected_crs','EPSG','6468','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103049','projected_crs','EPSG','6467','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103161','projected_crs','EPSG','6588','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103160','projected_crs','EPSG','6578','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103044','projected_crs','EPSG','6464','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103045','projected_crs','EPSG','6463','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103046','projected_crs','EPSG','6465','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103047','projected_crs','EPSG','6466','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103040','projected_crs','EPSG','6460','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103041','projected_crs','EPSG','6459','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103042','projected_crs','EPSG','6461','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103043','projected_crs','EPSG','6462','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102656','projected_crs','EPSG','2234','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103163','projected_crs','EPSG','6620','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102657','projected_crs','EPSG','2235','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102655','projected_crs','EPSG','2233','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102652','projected_crs','EPSG','3434','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103162','projected_crs','EPSG','6586','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102718','projected_crs','EPSG','2263','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103082','projected_crs','EPSG','6504','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103148','projected_crs','EPSG','6573','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102444','projected_crs','EPSG','3825','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102443','projected_crs','EPSG','3826','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102442','projected_crs','EPSG','3827','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102441','projected_crs','EPSG','3828','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102524','projected_crs','EPSG','6632','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102713','projected_crs','EPSG','2258','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102527','projected_crs','EPSG','6633','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102520','projected_crs','EPSG','6628','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102521','projected_crs','EPSG','6629','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102449','projected_crs','EPSG','8693','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102523','projected_crs','EPSG','6631','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103448','projected_crs','EPSG','8136','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103449','projected_crs','EPSG','8134','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103198','projected_crs','EPSG','6618','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103111','projected_crs','EPSG','6529','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102711','projected_crs','EPSG','3424','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103412','projected_crs','EPSG','8193','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103192','projected_crs','EPSG','6611','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103193','projected_crs','EPSG','6613','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103190','projected_crs','EPSG','6605','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102710','projected_crs','EPSG','3437','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103196','projected_crs','EPSG','6612','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103197','projected_crs','EPSG','6614','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103194','projected_crs','EPSG','6617','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102768','projected_crs','EPSG','6257','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103410','projected_crs','EPSG','8200','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103417','projected_crs','EPSG','8093','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103084','projected_crs','EPSG','6501','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102749','projected_crs','EPSG','2286','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103415','projected_crs','EPSG','8182','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103414','projected_crs','EPSG','8185','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102769','projected_crs','EPSG','6244','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102623','projected_crs','EPSG','6682','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102622','projected_crs','EPSG','6681','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102621','projected_crs','EPSG','6680','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102620','projected_crs','EPSG','6679','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102627','projected_crs','EPSG','6686','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102626','projected_crs','EPSG','6685','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102625','projected_crs','EPSG','6684','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102624','projected_crs','EPSG','6683','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102780','projected_crs','EPSG','6260','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102781','projected_crs','EPSG','6254','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102782','projected_crs','EPSG','6269','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102628','projected_crs','EPSG','6687','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102784','projected_crs','EPSG','6267','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102785','projected_crs','EPSG','6270','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102786','projected_crs','EPSG','6274','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102607','projected_crs','EPSG','3463','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102985','projected_crs','EPSG','6402','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103349','projected_crs','EPSG','8133','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103348','projected_crs','EPSG','8135','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102230','projected_crs','EPSG','2760','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102234','projected_crs','EPSG','3158','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102235','projected_crs','EPSG','3159','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102236','projected_crs','EPSG','3160','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102980','projected_crs','EPSG','6397','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102151','projected_crs','EPSG','3092','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102153','projected_crs','EPSG','3094','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102152','projected_crs','EPSG','3093','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102155','projected_crs','EPSG','3096','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102154','projected_crs','EPSG','3095','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103334','projected_crs','EPSG','8151','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102666','projected_crs','EPSG','2239','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103087','projected_crs','EPSG','6509','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103025','projected_crs','EPSG','6444','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102304','projected_crs','EPSG','2819','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102305','projected_crs','EPSG','5367','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102654','projected_crs','EPSG','2232','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102307','projected_crs','EPSG','2820','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102300','projected_crs','EPSG','2818','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102653','projected_crs','EPSG','2231','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102719','projected_crs','EPSG','2264','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102651','projected_crs','EPSG','3433','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102717','projected_crs','EPSG','2262','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102716','projected_crs','EPSG','2261','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102715','projected_crs','EPSG','2260','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102714','projected_crs','EPSG','2259','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102308','projected_crs','EPSG','2821','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102309','projected_crs','EPSG','2822','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102658','projected_crs','EPSG','2236','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102659','projected_crs','EPSG','2237','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103129','projected_crs','EPSG','6549','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103128','projected_crs','EPSG','6550','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103326','projected_crs','EPSG','8161','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103122','projected_crs','EPSG','6543','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103123','projected_crs','EPSG','6544','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102783','projected_crs','EPSG','6261','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103121','projected_crs','EPSG','6542','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103120','projected_crs','EPSG','6539','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103127','projected_crs','EPSG','6548','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102646','projected_crs','EPSG','2230','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103125','projected_crs','EPSG','6545','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103124','projected_crs','EPSG','6546','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103350','projected_crs','EPSG','8131','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103126','projected_crs','EPSG','6547','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103354','projected_crs','EPSG','8125','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103355','projected_crs','EPSG','8123','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103169','projected_crs','EPSG','6626','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103017','projected_crs','EPSG','6435','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103016','projected_crs','EPSG','6434','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102979','projected_crs','EPSG','6396','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102978','projected_crs','EPSG','6395','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103013','projected_crs','EPSG','6428','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103012','projected_crs','EPSG','6430','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103011','projected_crs','EPSG','6431','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103010','projected_crs','EPSG','6427','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102973','projected_crs','EPSG','6610','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102972','projected_crs','EPSG','6580','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102971','projected_crs','EPSG','6579','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102970','projected_crs','EPSG','6557','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102977','projected_crs','EPSG','6394','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102976','projected_crs','EPSG','6356','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102975','projected_crs','EPSG','6355','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103018','projected_crs','EPSG','6436','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103212','projected_crs','EPSG','4063','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103408','projected_crs','EPSG','8204','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102500','projected_crs','EPSG','6785','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103158','projected_crs','EPSG','6582','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103159','projected_crs','EPSG','6584','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103156','projected_crs','EPSG','6587','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103157','projected_crs','EPSG','6585','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103154','projected_crs','EPSG','6583','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103155','projected_crs','EPSG','6577','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103152','projected_crs','EPSG','6576','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103153','projected_crs','EPSG','6581','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103150','projected_crs','EPSG','6574','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103151','projected_crs','EPSG','6575','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103217','projected_crs','EPSG','4094','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103216','projected_crs','EPSG','4093','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102259','projected_crs','EPSG','2778','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103367','projected_crs','EPSG','8101','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103303','projected_crs','EPSG','8214','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103080','projected_crs','EPSG','6502','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103301','projected_crs','EPSG','8222','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102278','projected_crs','EPSG','2797','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102279','projected_crs','EPSG','2798','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103305','projected_crs','EPSG','8209','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103081','projected_crs','EPSG','6500','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102274','projected_crs','EPSG','2793','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102275','projected_crs','EPSG','2794','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102276','projected_crs','EPSG','2795','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102277','projected_crs','EPSG','2796','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102270','projected_crs','EPSG','2789','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102271','projected_crs','EPSG','2790','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102272','projected_crs','EPSG','2791','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102273','projected_crs','EPSG','2792','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103083','projected_crs','EPSG','6503','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103070','projected_crs','EPSG','6491','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103443','projected_crs','EPSG','8140','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102490','projected_crs','EPSG','5247','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103202','projected_crs','EPSG','4049','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103085','projected_crs','EPSG','6505','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102296','projected_crs','EPSG','2815','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102297','projected_crs','EPSG','2816','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102294','projected_crs','EPSG','2813','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102295','projected_crs','EPSG','2814','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102292','projected_crs','EPSG','2811','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102293','projected_crs','EPSG','2812','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102290','projected_crs','EPSG','2809','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102358','projected_crs','EPSG','2865','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','65163','projected_crs','EPSG','3088','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102356','projected_crs','EPSG','2863','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102355','projected_crs','EPSG','2862','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102354','projected_crs','EPSG','2861','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102353','projected_crs','EPSG','2860','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102352','projected_crs','EPSG','2859','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102298','projected_crs','EPSG','2817','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102350','projected_crs','EPSG','2857','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103321','projected_crs','EPSG','8171','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102268','projected_crs','EPSG','2787','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103089','projected_crs','EPSG','6510','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102753','projected_crs','EPSG','2288','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102752','projected_crs','EPSG','2287','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102751','projected_crs','EPSG','26854','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102750','projected_crs','EPSG','26853','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102757','projected_crs','EPSG','3738','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102756','projected_crs','EPSG','3737','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102755','projected_crs','EPSG','3736','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102754','projected_crs','EPSG','2289','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102758','projected_crs','EPSG','3739','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102995','projected_crs','EPSG','6411','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102994','projected_crs','EPSG','6412','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102618','projected_crs','EPSG','6677','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102619','projected_crs','EPSG','6678','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102991','projected_crs','EPSG','6405','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102990','projected_crs','EPSG','6407','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102993','projected_crs','EPSG','6410','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102992','projected_crs','EPSG','6409','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102612','projected_crs','EPSG','6671','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102613','projected_crs','EPSG','6672','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102610','projected_crs','EPSG','6669','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102611','projected_crs','EPSG','6670','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102616','projected_crs','EPSG','6675','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102617','projected_crs','EPSG','6676','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102614','projected_crs','EPSG','6673','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102615','projected_crs','EPSG','6674','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102260','projected_crs','EPSG','2779','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102124','projected_crs','EPSG','26701','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102125','projected_crs','EPSG','26702','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102126','projected_crs','EPSG','3370','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102127','projected_crs','EPSG','3371','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102128','projected_crs','EPSG','26901','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102129','projected_crs','EPSG','26902','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103201','projected_crs','EPSG','4048','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102054','projected_crs','EPSG','6336','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102055','projected_crs','EPSG','6337','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102056','projected_crs','EPSG','6338','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102057','projected_crs','EPSG','6339','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102199','projected_crs','EPSG','3812','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102051','projected_crs','EPSG','6333','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102052','projected_crs','EPSG','6334','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102053','projected_crs','EPSG','6335','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102058','projected_crs','EPSG','6340','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102190','projected_crs','EPSG','3005','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102728','projected_crs','EPSG','2271','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102729','projected_crs','EPSG','2272','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102357','projected_crs','EPSG','2864','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103455','projected_crs','EPSG','8124','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103112','projected_crs','EPSG','6533','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103113','projected_crs','EPSG','6536','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103059','projected_crs','EPSG','6477','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103058','projected_crs','EPSG','6478','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103116','projected_crs','EPSG','6538','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102508','projected_crs','EPSG','6817','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103114','projected_crs','EPSG','6534','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103115','projected_crs','EPSG','6540','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103053','projected_crs','EPSG','6472','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103052','projected_crs','EPSG','6471','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103051','projected_crs','EPSG','6470','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103050','projected_crs','EPSG','6469','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103057','projected_crs','EPSG','6476','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103056','projected_crs','EPSG','6475','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103055','projected_crs','EPSG','6474','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103054','projected_crs','EPSG','6473','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103339','projected_crs','EPSG','8145','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102466','projected_crs','EPSG','26857','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103450','projected_crs','EPSG','8132','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103015','projected_crs','EPSG','6433','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103204','projected_crs','EPSG','4051','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103026','projected_crs','EPSG','6446','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102722','projected_crs','EPSG','3734','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103460','projected_crs','EPSG','8116','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103027','projected_crs','EPSG','6445','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103024','projected_crs','EPSG','6441','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102439','projected_crs','EPSG','4462','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103022','projected_crs','EPSG','6438','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103205','projected_crs','EPSG','4056','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103023','projected_crs','EPSG','6443','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102723','projected_crs','EPSG','3735','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103020','projected_crs','EPSG','6442','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103021','projected_crs','EPSG','6440','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103457','projected_crs','EPSG','8120','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103456','projected_crs','EPSG','8122','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102539','projected_crs','EPSG','6820','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102538','projected_crs','EPSG','6816','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103453','projected_crs','EPSG','8128','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103452','projected_crs','EPSG','8130','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103028','projected_crs','EPSG','6447','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103029','projected_crs','EPSG','6450','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102533','projected_crs','EPSG','6792','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102532','projected_crs','EPSG','6788','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102531','projected_crs','EPSG','6796','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102530','projected_crs','EPSG','6784','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102537','projected_crs','EPSG','6812','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102536','projected_crs','EPSG','6808','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102535','projected_crs','EPSG','6804','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102534','projected_crs','EPSG','6800','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103189','projected_crs','EPSG','6607','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103188','projected_crs','EPSG','6608','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103369','projected_crs','EPSG','8097','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103019','projected_crs','EPSG','6437','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103181','projected_crs','EPSG','6599','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103180','projected_crs','EPSG','6597','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103183','projected_crs','EPSG','6602','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103182','projected_crs','EPSG','6600','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103185','projected_crs','EPSG','6603','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103184','projected_crs','EPSG','6601','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103187','projected_crs','EPSG','6879','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103186','projected_crs','EPSG','6606','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102326','projected_crs','EPSG','2838','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102327','projected_crs','EPSG','2839','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102797','projected_crs','EPSG','6258','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102796','projected_crs','EPSG','6249','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102795','projected_crs','EPSG','6253','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102794','projected_crs','EPSG','6271','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102793','projected_crs','EPSG','6248','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102792','projected_crs','EPSG','6268','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102791','projected_crs','EPSG','6263','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102790','projected_crs','EPSG','6245','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102798','projected_crs','EPSG','6265','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102388','projected_crs','EPSG','6348','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102384','projected_crs','EPSG','6344','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102385','projected_crs','EPSG','6345','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102386','projected_crs','EPSG','6346','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102387','projected_crs','EPSG','6347','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102380','projected_crs','EPSG','6867','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102381','projected_crs','EPSG','6868','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102382','projected_crs','EPSG','6342','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102383','projected_crs','EPSG','6343','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103404','projected_crs','EPSG','8213','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103164','projected_crs','EPSG','6619','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102548','projected_crs','EPSG','6856','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102549','projected_crs','EPSG','6860','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102546','projected_crs','EPSG','6844','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102547','projected_crs','EPSG','6852','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102544','projected_crs','EPSG','6840','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102545','projected_crs','EPSG','6848','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102542','projected_crs','EPSG','6832','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102543','projected_crs','EPSG','6836','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102540','projected_crs','EPSG','6824','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102541','projected_crs','EPSG','6828','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102362','projected_crs','EPSG','4647','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102363','projected_crs','EPSG','3090','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102361','projected_crs','EPSG','2866','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102006','projected_crs','EPSG','3338','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103401','projected_crs','EPSG','8224','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103402','projected_crs','EPSG','8220','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103403','projected_crs','EPSG','8216','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102779','projected_crs','EPSG','6266','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103439','projected_crs','EPSG','8146','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102778','projected_crs','EPSG','6273','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102645','projected_crs','EPSG','2229','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102644','projected_crs','EPSG','2228','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102311','projected_crs','EPSG','2824','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102310','projected_crs','EPSG','2823','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102317','projected_crs','EPSG','2830','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102316','projected_crs','EPSG','2829','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102315','projected_crs','EPSG','2828','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102314','projected_crs','EPSG','2827','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102090','projected_crs','EPSG','3770','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102091','projected_crs','EPSG','3003','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102092','projected_crs','EPSG','3004','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102318','projected_crs','EPSG','2831','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102095','projected_crs','EPSG','3448','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102764','projected_crs','EPSG','4417','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102765','projected_crs','EPSG','4434','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102771','projected_crs','EPSG','6247','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102770','projected_crs','EPSG','6246','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103213','projected_crs','EPSG','4071','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102167','projected_crs','EPSG','2942','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103138','projected_crs','EPSG','6561','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102169','projected_crs','EPSG','2943','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103139','projected_crs','EPSG','6562','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103062','projected_crs','EPSG','6485','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103063','projected_crs','EPSG','6484','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103060','projected_crs','EPSG','6479','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103061','projected_crs','EPSG','6483','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103066','projected_crs','EPSG','6480','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103067','projected_crs','EPSG','6482','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103064','projected_crs','EPSG','6486','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103065','projected_crs','EPSG','6481','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103068','projected_crs','EPSG','6487','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103069','projected_crs','EPSG','6488','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103365','projected_crs','EPSG','8105','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103418','projected_crs','EPSG','8091','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103149','projected_crs','EPSG','6572','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103117','projected_crs','EPSG','6537','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103364','projected_crs','EPSG','8107','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103145','projected_crs','EPSG','6569','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103144','projected_crs','EPSG','6568','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103147','projected_crs','EPSG','6571','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103146','projected_crs','EPSG','6570','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103141','projected_crs','EPSG','6564','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103140','projected_crs','EPSG','6563','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103143','projected_crs','EPSG','6567','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103142','projected_crs','EPSG','6565','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103366','projected_crs','EPSG','8103','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103200','projected_crs','EPSG','6566','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103310','projected_crs','EPSG','8198','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102590','projected_crs','EPSG','8441','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102593','projected_crs','EPSG','6688','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103362','projected_crs','EPSG','8111','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102595','projected_crs','EPSG','6690','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102594','projected_crs','EPSG','6689','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102597','projected_crs','EPSG','6692','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102596','projected_crs','EPSG','6691','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102692','projected_crs','EPSG','26850','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102693','projected_crs','EPSG','26851','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102691','projected_crs','EPSG','26849','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102694','projected_crs','EPSG','2254','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102695','projected_crs','EPSG','2255','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103311','projected_crs','EPSG','8196','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102603','projected_crs','EPSG','3081','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102502','projected_crs','EPSG','6789','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102503','projected_crs','EPSG','6793','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102269','projected_crs','EPSG','2788','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102501','projected_crs','EPSG','6797','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102506','projected_crs','EPSG','6809','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102507','projected_crs','EPSG','6813','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102504','projected_crs','EPSG','6801','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102505','projected_crs','EPSG','6805','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102263','projected_crs','EPSG','2784','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102262','projected_crs','EPSG','2783','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102261','projected_crs','EPSG','2782','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102509','projected_crs','EPSG','6821','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102267','projected_crs','EPSG','2781','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102266','projected_crs','EPSG','2780','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102265','projected_crs','EPSG','2786','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102264','projected_crs','EPSG','2785','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102469','projected_crs','EPSG','3815','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102468','projected_crs','EPSG','26859','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103468','projected_crs','EPSG','8100','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103469','projected_crs','EPSG','8098','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103466','projected_crs','EPSG','8104','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103467','projected_crs','EPSG','8102','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102467','projected_crs','EPSG','26858','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102211','projected_crs','EPSG','3748','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103462','projected_crs','EPSG','8112','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103463','projected_crs','EPSG','8110','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102463','projected_crs','EPSG','3760','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103461','projected_crs','EPSG','8114','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102285','projected_crs','EPSG','2804','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102284','projected_crs','EPSG','2803','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102287','projected_crs','EPSG','2806','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102286','projected_crs','EPSG','2805','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102281','projected_crs','EPSG','2800','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102280','projected_crs','EPSG','2799','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102283','projected_crs','EPSG','2802','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102282','projected_crs','EPSG','2801','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102322','projected_crs','EPSG','2834','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102323','projected_crs','EPSG','2835','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102320','projected_crs','EPSG','2832','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102321','projected_crs','EPSG','2833','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102289','projected_crs','EPSG','2808','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102288','projected_crs','EPSG','2807','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102324','projected_crs','EPSG','2836','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102325','projected_crs','EPSG','2837','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102229','projected_crs','EPSG','2759','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103309','projected_crs','EPSG','8201','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102609','projected_crs','EPSG','3814','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102608','projected_crs','EPSG','3074','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103208','projected_crs','EPSG','4059','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103209','projected_crs','EPSG','4060','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103361','projected_crs','EPSG','8113','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103360','projected_crs','EPSG','8115','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103363','projected_crs','EPSG','8109','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102712','projected_crs','EPSG','2257','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102601','projected_crs','EPSG','3083','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103203','projected_crs','EPSG','4050','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102214','projected_crs','EPSG','4826','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102602','projected_crs','EPSG','3082','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102605','projected_crs','EPSG','8826','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103207','projected_crs','EPSG','4058','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102210','projected_crs','EPSG','3077','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102606','projected_crs','EPSG','3072','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102139','projected_crs','EPSG','3067','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103302','projected_crs','EPSG','8218','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102131','projected_crs','EPSG','3373','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102130','projected_crs','EPSG','3372','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103333','projected_crs','EPSG','8153','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103306','projected_crs','EPSG','8207','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103331','projected_crs','EPSG','8155','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103336','projected_crs','EPSG','8149','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103304','projected_crs','EPSG','8212','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103337','projected_crs','EPSG','8147','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102735','projected_crs','EPSG','3455','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102734','projected_crs','EPSG','4457','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102737','projected_crs','EPSG','2275','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102040','projected_crs','EPSG','5178','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102047','projected_crs','EPSG','6329','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102046','projected_crs','EPSG','6328','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103411','projected_crs','EPSG','8197','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103454','projected_crs','EPSG','8126','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102049','projected_crs','EPSG','6331','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102048','projected_crs','EPSG','6330','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102739','projected_crs','EPSG','2277','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102738','projected_crs','EPSG','2276','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103308','projected_crs','EPSG','8203','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103371','projected_crs','EPSG','8095','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103215','projected_crs','EPSG','4083','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103101','projected_crs','EPSG','6519','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103100','projected_crs','EPSG','6521','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103103','projected_crs','EPSG','6524','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103102','projected_crs','EPSG','6523','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103105','projected_crs','EPSG','6526','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103104','projected_crs','EPSG','6525','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103107','projected_crs','EPSG','6530','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103106','projected_crs','EPSG','6527','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103109','projected_crs','EPSG','6532','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103108','projected_crs','EPSG','6528','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103199','projected_crs','EPSG','6616','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102420','projected_crs','EPSG','5325','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103420','projected_crs','EPSG','8177','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103421','projected_crs','EPSG','8172','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103039','projected_crs','EPSG','6458','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103038','projected_crs','EPSG','6457','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103424','projected_crs','EPSG','8166','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103425','projected_crs','EPSG','8164','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103035','projected_crs','EPSG','6454','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103034','projected_crs','EPSG','6453','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103037','projected_crs','EPSG','6455','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103036','projected_crs','EPSG','6456','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103031','projected_crs','EPSG','6452','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103030','projected_crs','EPSG','6448','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103033','projected_crs','EPSG','6449','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103032','projected_crs','EPSG','6451','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103464','projected_crs','EPSG','8108','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102522','projected_crs','EPSG','6630','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102966','projected_crs','EPSG','6393','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102252','projected_crs','EPSG','2765','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102253','projected_crs','EPSG','2772','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102250','projected_crs','EPSG','2763','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102251','projected_crs','EPSG','2764','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102256','projected_crs','EPSG','2775','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102257','projected_crs','EPSG','2776','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102254','projected_crs','EPSG','2773','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102255','projected_crs','EPSG','2774','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102258','projected_crs','EPSG','2777','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102291','projected_crs','EPSG','2810','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102494','projected_crs','EPSG','6635','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102495','projected_crs','EPSG','6637','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102496','projected_crs','EPSG','6636','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102736','projected_crs','EPSG','2274','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102559','projected_crs','EPSG','7694','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102558','projected_crs','EPSG','7693','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103086','projected_crs','EPSG','6506','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102493','projected_crs','EPSG','6634','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103088','projected_crs','EPSG','6507','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102981','projected_crs','EPSG','6398','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102557','projected_crs','EPSG','7692','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103325','projected_crs','EPSG','8163','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103324','projected_crs','EPSG','8165','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102730','projected_crs','EPSG','3438','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103431','projected_crs','EPSG','8156','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102377','projected_crs','EPSG','6886','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102376','projected_crs','EPSG','6884','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102379','projected_crs','EPSG','6887','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102378','projected_crs','EPSG','6885','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102351','projected_crs','EPSG','2858','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103441','projected_crs','EPSG','8144','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103442','projected_crs','EPSG','8142','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102087','projected_crs','EPSG','5175','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102086','projected_crs','EPSG','5174','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102085','projected_crs','EPSG','5173','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102084','projected_crs','EPSG','5188','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102083','projected_crs','EPSG','5187','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102082','projected_crs','EPSG','5186','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102081','projected_crs','EPSG','5185','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102080','projected_crs','EPSG','5179','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103409','projected_crs','EPSG','8202','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102089','projected_crs','EPSG','5177','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102088','projected_crs','EPSG','5176','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102670','projected_crs','EPSG','2243','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102671','projected_crs','EPSG','3435','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102672','projected_crs','EPSG','3436','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102673','projected_crs','EPSG','2965','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102674','projected_crs','EPSG','2966','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102675','projected_crs','EPSG','3417','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102676','projected_crs','EPSG','3418','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102677','projected_crs','EPSG','3419','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102678','projected_crs','EPSG','3420','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102679','projected_crs','EPSG','2246','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102773','projected_crs','EPSG','6272','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102772','projected_crs','EPSG','6250','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102775','projected_crs','EPSG','6252','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102774','projected_crs','EPSG','6256','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102777','projected_crs','EPSG','6264','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102776','projected_crs','EPSG','6275','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102100','projected_crs','EPSG','3857','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103076','projected_crs','EPSG','6498','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103320','projected_crs','EPSG','8173','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102313','projected_crs','EPSG','2826','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','31922','projected_crs','EPSG','31991','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103465','projected_crs','EPSG','8106','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','31920','projected_crs','EPSG','31989','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','31921','projected_crs','EPSG','31990','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102647','projected_crs','EPSG','4437','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102172','projected_crs','EPSG','3107','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102171','projected_crs','EPSG','3111','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102170','projected_crs','EPSG','3110','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103191','projected_crs','EPSG','6609','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102641','projected_crs','EPSG','2225','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103459','projected_crs','EPSG','8118','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102643','projected_crs','EPSG','2227','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102642','projected_crs','EPSG','2226','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103071','projected_crs','EPSG','6489','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102762','projected_crs','EPSG','4415','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103073','projected_crs','EPSG','6490','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103072','projected_crs','EPSG','6492','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103075','projected_crs','EPSG','6493','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103074','projected_crs','EPSG','6495','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103077','projected_crs','EPSG','6496','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102763','projected_crs','EPSG','3089','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103079','projected_crs','EPSG','6499','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103078','projected_crs','EPSG','6494','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103178','projected_crs','EPSG','6596','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103179','projected_crs','EPSG','6598','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103405','projected_crs','EPSG','8210','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103170','projected_crs','EPSG','6625','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103171','projected_crs','EPSG','6627','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103172','projected_crs','EPSG','6589','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103173','projected_crs','EPSG','6590','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103174','projected_crs','EPSG','6592','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103175','projected_crs','EPSG','6594','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103176','projected_crs','EPSG','6593','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102767','projected_crs','EPSG','6255','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103406','projected_crs','EPSG','8208','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102681','projected_crs','EPSG','3451','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102680','projected_crs','EPSG','2247','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102683','projected_crs','EPSG','26847','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102682','projected_crs','EPSG','3452','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102685','projected_crs','EPSG','2248','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102684','projected_crs','EPSG','26848','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102687','projected_crs','EPSG','2250','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102686','projected_crs','EPSG','2249','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103177','projected_crs','EPSG','6595','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102511','projected_crs','EPSG','6829','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102510','projected_crs','EPSG','6825','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102513','projected_crs','EPSG','6837','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102512','projected_crs','EPSG','6833','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102515','projected_crs','EPSG','6849','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102514','projected_crs','EPSG','6841','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102517','projected_crs','EPSG','6853','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102516','projected_crs','EPSG','6845','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102519','projected_crs','EPSG','6861','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102518','projected_crs','EPSG','6857','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102997','projected_crs','EPSG','6415','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103195','projected_crs','EPSG','6615','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102996','projected_crs','EPSG','6413','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103471','projected_crs','EPSG','8096','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102339','projected_crs','EPSG','2846','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102338','projected_crs','EPSG','2845','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102789','projected_crs','EPSG','6259','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102331','projected_crs','EPSG','5014','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102330','projected_crs','EPSG','2840','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102333','projected_crs','EPSG','5016','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102332','projected_crs','EPSG','5015','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102335','projected_crs','EPSG','2842','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102334','projected_crs','EPSG','2841','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102337','projected_crs','EPSG','2844','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102336','projected_crs','EPSG','2843','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103118','projected_crs','EPSG','6535','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102999','projected_crs','EPSG','6419','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102998','projected_crs','EPSG','6417','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103219','projected_crs','EPSG','4096','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103218','projected_crs','EPSG','4095','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103352','projected_crs','EPSG','8129','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103353','projected_crs','EPSG','8127','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102209','projected_crs','EPSG','3464','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102208','projected_crs','EPSG','3075','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103356','projected_crs','EPSG','8121','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103357','projected_crs','EPSG','8119','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102205','projected_crs','EPSG','3741','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103210','projected_crs','EPSG','4061','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102207','projected_crs','EPSG','3743','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102206','projected_crs','EPSG','3742','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102201','projected_crs','EPSG','4414','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102200','projected_crs','EPSG','2195','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102203','projected_crs','EPSG','3751','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102202','projected_crs','EPSG','3750','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102148','projected_crs','EPSG','3100','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102149','projected_crs','EPSG','3101','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103119','projected_crs','EPSG','6541','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102140','projected_crs','EPSG','2326','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102146','projected_crs','EPSG','3098','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102147','projected_crs','EPSG','3099','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102145','projected_crs','EPSG','3097','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103359','projected_crs','EPSG','8117','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102123','projected_crs','EPSG','3078','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103110','projected_crs','EPSG','6531','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102787','projected_crs','EPSG','6262','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103416','projected_crs','EPSG','8180','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102704','projected_crs','EPSG','26852','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102706','projected_crs','EPSG','7142','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102707','projected_crs','EPSG','3421','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102708','projected_crs','EPSG','3422','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102709','projected_crs','EPSG','3423','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103314','projected_crs','EPSG','8184','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103368','projected_crs','EPSG','8099','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103316','projected_crs','EPSG','8179','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103014','projected_crs','EPSG','6432','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','2183','projected_crs','ESRI','102552','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','2182','projected_crs','ESRI','102551','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','2181','projected_crs','ESRI','102550','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103317','projected_crs','EPSG','8092','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','2187','projected_crs','ESRI','102556','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','2186','projected_crs','ESRI','102555','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','2185','projected_crs','ESRI','102554','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','2184','projected_crs','ESRI','102553','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103134','projected_crs','EPSG','6555','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103135','projected_crs','EPSG','6558','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103136','projected_crs','EPSG','6560','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103137','projected_crs','EPSG','6559','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103130','projected_crs','EPSG','6551','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103131','projected_crs','EPSG','6552','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103132','projected_crs','EPSG','6554','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103133','projected_crs','EPSG','6553','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103343','projected_crs','EPSG','8139','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103342','projected_crs','EPSG','8141','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103341','projected_crs','EPSG','8143','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102968','projected_crs','EPSG','6497','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102969','projected_crs','EPSG','6556','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102965','projected_crs','EPSG','6350','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102312','projected_crs','EPSG','2825','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102967','projected_crs','EPSG','6439','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102962','projected_crs','EPSG','6414','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102963','projected_crs','EPSG','6508','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103008','projected_crs','EPSG','6426','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103009','projected_crs','EPSG','6429','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103433','projected_crs','EPSG','8154','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103434','projected_crs','EPSG','8152','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103437','projected_crs','EPSG','8148','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103436','projected_crs','EPSG','8150','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103000','projected_crs','EPSG','6421','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103001','projected_crs','EPSG','6423','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103002','projected_crs','EPSG','6425','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103003','projected_crs','EPSG','6416','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103004','projected_crs','EPSG','6418','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103005','projected_crs','EPSG','6420','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103006','projected_crs','EPSG','6422','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103007','projected_crs','EPSG','6424','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103794','projected_crs','EPSG','4484','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103795','projected_crs','EPSG','4485','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103796','projected_crs','EPSG','4486','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103797','projected_crs','EPSG','4487','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103798','projected_crs','EPSG','4488','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103799','projected_crs','EPSG','4489','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103211','projected_crs','EPSG','4062','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103097','projected_crs','EPSG','6520','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103096','projected_crs','EPSG','6880','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102241','projected_crs','EPSG','2766','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103315','projected_crs','EPSG','8181','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102243','projected_crs','EPSG','2768','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102242','projected_crs','EPSG','2767','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102245','projected_crs','EPSG','2770','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102244','projected_crs','EPSG','2769','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103312','projected_crs','EPSG','8191','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102246','projected_crs','EPSG','2771','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102249','projected_crs','EPSG','2762','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102248','projected_crs','EPSG','2761','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103318','projected_crs','EPSG','8090','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103099','projected_crs','EPSG','6522','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103098','projected_crs','EPSG','6518','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102560','projected_crs','EPSG','7695','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','102561','projected_crs','EPSG','7696','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103095','projected_crs','EPSG','6516','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103094','projected_crs','EPSG','6515','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103093','projected_crs','EPSG','6514','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103092','projected_crs','EPSG','6513','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103091','projected_crs','EPSG','6511','ESRI'); INSERT INTO "supersession" VALUES('projected_crs','ESRI','103090','projected_crs','EPSG','6512','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1027','EGM2008_Geoid','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1028','Fao_1979','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1039','New_Zealand_Vertical_Datum_2009','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1040','Dunedin_Bluff_1960','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1054','Sri_Lanka_Vertical_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1059','Faroe_Islands_Vertical_Reference_2009','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1079','Fehmarnbelt_Vertical_Reference_2010','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1080','Lowest_Astronomic_Tide','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1082','Highest_Astronomic_Tide','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1083','Lower_Low_Water_Large_Tide','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1084','Higher_High_Water_Large_Tide','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1085','Indian_Spring_Low_Water','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1086','Mean_Lower_Low_Water_Spring_Tides','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1087','Mean_Low_Water_Spring_Tides','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1088','Mean_High_Water_Spring_Tides','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1089','Mean_Lower_Low_Water','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1090','Mean_Higher_High_Water','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1091','Mean_Low_Water','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1092','Mean_High_Water','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1093','Low_Water','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1094','High_Water','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1096','Norway_Normal_Null_2000','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1097','Grand_Cayman_Vertical_Datum_1954','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1098','Little_Cayman_Vertical_Datum_1961','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1099','Cayman_Brac_Vertical_Datum_1961','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1101','Cais_da_Pontinha-Funchal','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1102','Cais_da_Vila-Porto_Santo','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1103','Cais_das_Velas','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1105','Cais_da_Madalena','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1106','Santa_Cruz_da_Graciosa','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1107','Cais_da_Figueirinha-Angra_do_Heroismo','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1108','Santa_Cruz_das_Flores','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1109','Cais_da_Vila_do_Porto','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1110','Ponta_Delgada','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1119','Northern_Marianas_Vertical_Datum_of_2003','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1121','Tutuila_Vertical_Datum_of_1962','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1122','Guam_Vertical_Datum_of_1963','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1123','Puerto_Rico_Vertical_Datum_of_2002','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1124','Virgin_Islands_Vertical_Datum_of_2009','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1125','American_Samoa_Vertical_Datum_of_2002','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1126','Guam_Vertical_Datum_of_2004','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1127','Canadian_Geodetic_Vertical_Datum_of_2013','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1129','Japanese_Standard_Levelling_Datum_1972','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1130','Japanese_Geodetic_Datum_2000_vertical','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1131','Japanese_Geodetic_Datum_2011_vertical','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1140','Singapore_Height_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1146','Ras_Ghumays','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1148','Famagusta_1960','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1149','Papua_New_Guinea_2008','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1150','Kumul_34','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1161','Deutsches_Haupthoehennetz_1912','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1162','Latvian_Height_System_2000','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1164','Ordnance_Datum_Newlyn_(Offshore)','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1169','New_Zealand_Vertical_Datum_2016','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1170','Deutsches_Haupthoehennetz_2016','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1171','Port_Moresby_1996','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1172','Port_Moresby_2008','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1175','Jamestown_1971','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1176','St_Helena_Tritan_Vertical_Datum_2011','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1177','St_Helena_Vertical_Datum_2015','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1190','Landshaedarkerfi_Islands_2004','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1199','Greenland_Vertical_Reference_2000','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1200','Greenland_Vertical_Reference_2016','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1202','Baltic_1957','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1210','Macao_Height_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1213','Helsinki_1943','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1215','Slovenian_Vertical_System_2010','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1216','Serbian_Vertical_Reference_System_2012','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1219','MOMRA_Vertical_Geodetic_Control','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1224','Taiwan_Vertical_Datum_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1226','Datum_Altimetrico_de_Costa_Rica_1952','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','1250','IGN_2008_LD','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5100','Mean_Sea_Level','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5101','Ordnance_Datum_Newlyn','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5102','National_Geodetic_Vertical_Datum_1929','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5103','North_American_Vertical_Datum_1988','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5104','Yellow_Sea_1956','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5105','Baltic_Sea','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5106','Caspian_Sea','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5109','Normaal_Amsterdams_Peil','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5110','Oostende','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5111','Australian_Height_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5112','Australian_Height_Datum_Tasmania','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5113','Sea_Level','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5114','Canadian_Geodetic_Vertical_Datum_of_1928','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5115','Piraeus_Harbour_1986','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5116','Helsinki_1960','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5117','Rikets_Hojdsystem_1970','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5118','Nivellement_General_de_la_France_Lallemand','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5119','Nivellement_General_de_la_France_IGN69','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5120','Nivellement_General_de_la_France_IGN78','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5122','Japanese_Standard_Levelling_Datum_1969','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5123','PDO_Height_Datum_1993','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5124','Fahud_Height_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5125','Ha_Tien_1960','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5126','Hon_Dau_1992','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5127','Landesnivellement_1902','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5128','Landeshohennetz_1995','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5129','European_Vertical_Reference_Frame_2000','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5130','Malin_Head','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5131','Belfast','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5132','Dansk_Normal_Nul','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5133','AIOC_1995','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5134','Black_Sea','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5135','Hong_Kong_Principal_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5136','Hong_Kong_Chart_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5137','Yellow_Sea_1985','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5138','Ordnance_Datum_Newlyn_Orkney_Isles','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5139','Fair_Isle','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5142','Sule_Skerry','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5143','North_Rona','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5145','St_Kilda','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5146','Flannan_Isles','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5147','St_Marys','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5150','Bandar_Abbas','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5151','Nivellement_General_de_Nouvelle_Caledonie','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5153','Nivellement_General_Guyanais_1977','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5154','IGN_1987','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5155','IGN_1988','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5156','IGN_1989','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5157','Auckland','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5158','Bluff','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5159','Dunedin','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5160','Gisborne','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5161','Lyttelton','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5162','Moturiki','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5163','Napier','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5164','Nelson','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5165','One_Tree_Point','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5166','Tararu','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5167','Taranaki','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5168','Wellington','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5169','Chatham_Island','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5170','Stewart_Island','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5171','EGM96_Geoid','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5172','Nivellement_General_du_Luxembourg','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5174','Norway_Normal_Null_1954','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5176','Gebrauchshohen_Adria','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5177','Slovenian_Vertical_System_2000','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5181','Deutches_Haupthoehennetz_1992','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5182','Deutches_Haupthoehennetz_1985','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5183','SNN76','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5184','Baltic_1982','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5185','Baltic_1980','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5186','Kuwait_PWD','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5187','KOC_Well_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5188','KOC_Construction_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5189','Nivellement_General_de_la_Corse_1948','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5190','Danger_1950','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5191','Mayotte_1950','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5192','Martinique_1955','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5193','Guadeloupe_1951','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5194','Lagos_1955','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5195','Nivellement_General_de_Polynesie_Francaise','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5196','IGN_1966','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5197','Moorea_SAU_1981','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5198','Raiatea_SAU_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5199','Maupiti_SAU_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5200','Huahine_SAU_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5201','Tahaa_SAU_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5202','Bora_Bora_SAU_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5203','EGM84_Geoid','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5204','International_Great_Lakes_Datum_1955','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5205','International_Great_Lakes_Datum_1985','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5206','Dansk_Vertikal_Reference_1990','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5207','Croatian_Vertical_Reference_System_1971','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5208','Rikets_Hojdsystem_2000','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5209','Rikets_Hojdsystem_1900','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5210','IGN_1988_LS','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5211','IGN_1988_MG','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5212','IGN_1992_LD','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5213','IGN_1988_SB','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5214','IGN_1988_SM','ESRI'); INSERT INTO alias_name VALUES('vertical_datum','EPSG','5215','European_Vertical_Reference_Frame_2007','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','3855','EGM2008_Geoid','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','3886','Fao_1979','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','3900','N2000_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','4440','NZVD2009_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','4458','Dunedin_Bluff_1960_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5193','Incheon_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5195','Trieste_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5214','Genoa_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5237','SLVD_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5317','FVR09_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5336','Black_Sea_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5597','FCSVR10_Height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5600','NGPF','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5601','IGN_1966','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5602','Moorea_SAU_1981','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5603','Raiatea_SAU_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5604','Maupiti_SAU_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5605','Huahine_SAU_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5606','Tahaa_SAU_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5607','Bora_Bora_SAU_2001','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5608','IGLD_1955','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5609','IGLD_1985','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5610','HVRS_1971','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5611','Caspian_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5612','Baltic_depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5613','RH2000','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5614','KOC_WD_depth_ft','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5615','RH1900','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5616','IGN_1988_LS','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5617','IGN_1988_MG','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5618','IGN_1992_LD','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5619','IGN_1988_SB','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5620','IGN_1988_SM','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5621','EVRF_2007','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5701','Newlyn','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5702','NGVD_1929','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5703','NAVD_1988','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5704','Yellow_Sea_1956','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5705','Baltic','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5706','Caspian','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5709','NAP','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5710','Oostende','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5711','AHD','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5712','AHD_Tasmania','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5713','CGVD_1928','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5714','MSL_Height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5715','MSL_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5716','Piraeus','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5717','N60','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5718','RH70','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5719','NGF_Lallemand','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5720','NGF_IGN69','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5721','NGF_IGN78','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5722','Maputo','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5723','Japanese_Standard_Levelling_Datum_1969','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5724','PDO_Height_Datum_1993','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5725','Fahud_Height_Datum_1993','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5726','Ha_Tien_1960','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5727','Hon_Dau_1992','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5728','LN_1902','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5729','LHN95','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5730','EVRS_2000','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5731','Malin_Head','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5732','Belfast','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5733','Dansk_Normal_Nul','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5734','AIOC95_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5735','Black_Sea','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5736','Yellow_Sea_1956','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5737','Yellow_Sea_1985','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5738','Hong_Kong_Principal_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5739','Hong_Kong_Chart_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5740','Newlyn_Orkney_Isles','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5741','Fair_Isle','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5742','Lerwick','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5743','Foula','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5744','Sule_Skerry','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5745','North_Rona','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5746','Stornoway','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5747','St_Kilda','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5748','Flannan_Isles','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5749','St_Marys','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5750','Douglas','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5751','Fao','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5752','Bandar_Abbas','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5753','NGNC','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5754','Poolbeg','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5755','NGG_1977','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5756','IGN_1987','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5757','IGN_1988','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5758','IGN_1989','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5759','Auckland','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5760','Bluff','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5761','Dunedin','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5762','Gisborne','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5763','Lyttelton','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5764','Moturiki','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5765','Napier','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5766','Nelson','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5767','One_Tree_Point','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5768','Tararu','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5769','Taranaki','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5770','Wellington','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5771','Chatham_Island','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5772','Stewart_Island','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5773','EGM96_Geoid','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5774','NG_L','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5775','Antalya','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5776','NN54','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5777','Durres','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5778','GHA','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5779','SVS2000','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5780','Cascais','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5781','Constanta','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5782','Alicante','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5783','DHHN92','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5784','DHHN85','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5785','SNN76','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5786','Baltic_1982','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5787','EOMA_1980','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5788','Kuwait_PWD','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5789','KOC_Well_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5790','KOC_Construction_Datum','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5791','NGC_1948','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5792','Danger_1950','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5793','Mayotte_1950','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5794','Martinique_1955','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5795','Guadeloupe_1951','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5796','Lagos_1955','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5797','AIOC95_Height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5798','EGM84_Geoid','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5799','DVR90','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5829','Instantaneous_Water_Level_Height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5831','Instantaneous_Water_Level_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5843','Ras_Ghumays_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5861','LAT_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5862','LLWLT_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5863','ISLW_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5864','MLLWS_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5865','MLWS_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5866','MLLW_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5867','MLW_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5868','MHW_Height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5869','MHHW_Height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5870','MHWS_Height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5871','HHWLT_Height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5872','HAT_Height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5873','Low_Water_Depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5874','High_Water_Height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','5941','NN2000_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6130','GCVD54_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6131','LCVD61_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6132','CBVD61_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6178','Cais_da_Pontinha-Funchal_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6179','Cais_da_Vila-Porto_Santo_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6180','Cais_das_Velas_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6181','Horta_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6182','Cais_da_Madalena_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6183','Santa_Cruz_da_Graciosa_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6184','Cais_da_Figueirinha-Angra_do_Heroismo_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6185','Santa_Cruz_das_Flores_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6186','Cais_da_Vila_do_Porto_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6187','Ponta_Delgada_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6357','NAVD88_depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6358','NAVD88_depth_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6359','NGVD29_depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6360','NAVD88_height_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6638','Tutuila_1962_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6639','Guam_1963_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6640','NMVD03_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6641','PRVD02_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6642','VIVD09_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6643','ASVD02_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6644','GUVD04_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6647','CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6693','JSLD72_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6694','JGD2000_vertical_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6695','JGD2011_vertical_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','6916','SHD_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7446','Famagusta_1960_(height)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7447','PNG08_(height)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7651','Kumul_34_(height)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7652','Kiunga_(height)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7699','DHHN12_(height)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7700','Latvia_2000_(height)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7707','ODN_(Offshore)_(height)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7832','POM96_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7837','DHHN2016_(height)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7839','NZVD2016_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7841','POM08_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7888','Jamestown_1971_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7889','St_Helena_Tritan_2011_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7890','SHVD2015_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7962','Poolbeg_height_(m)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7968','NGVD_1929_height_(m)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7976','HKPD_depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','7979','KOC_WD_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8050','MSL_height_(ftIntl)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8051','MSL_depth_(ftIntl)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8052','MSL_height_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8053','MSL_depth_(ftUS)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8089','ISH2004_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8228','NAVD88_height_(ftIntl)','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8266','GVR2000_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8267','GVR2016_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8357','Baltic_1957_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8358','Baltic_1957_depth','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8434','Macao_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8675','N43_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8690','SVS2010','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8691','SRB_VRS12_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8841','MVGC_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8904','TWVD_2001_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','8911','DACR52_height','ESRI'); INSERT INTO alias_name VALUES('vertical_crs','EPSG','9130','IGN_2008_LD_height','ESRI'); INSERT INTO "vertical_datum" VALUES('ESRI','105103','Red_Espanola_de_Nivelacion_de_Alta_Precision',NULL,NULL,'EPSG','3429',NULL,0); INSERT INTO "vertical_crs" VALUES('ESRI','105603','REDNAP_height',NULL,NULL,'EPSG','6499','ESRI','105103','EPSG','3429',0); INSERT INTO "vertical_datum" VALUES('ESRI','105100','WGS_1984_Geoid',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_crs" VALUES('ESRI','105700','WGS_1984_Geoid',NULL,NULL,'EPSG','6499','ESRI','105100','EPSG','1262',0); INSERT INTO "vertical_datum" VALUES('ESRI','105101','Dansk_Vertikal_Reference_1990',NULL,NULL,'EPSG','3237',NULL,1); INSERT INTO "vertical_crs" VALUES('ESRI','105701','DVR90',NULL,NULL,'EPSG','6499','ESRI','105101','EPSG','3237',1); INSERT INTO "supersession" VALUES('vertical_crs','ESRI','105701','vertical_crs','EPSG','5799','ESRI'); INSERT INTO "vertical_datum" VALUES('ESRI','105102','Rikets_Hojdsystem_2000',NULL,NULL,'EPSG','3313',NULL,1); INSERT INTO "vertical_crs" VALUES('ESRI','105702','RH2000',NULL,NULL,'EPSG','6499','ESRI','105102','EPSG','3313',1); INSERT INTO "supersession" VALUES('vertical_crs','ESRI','105702','vertical_crs','EPSG','5613','ESRI'); INSERT INTO "vertical_crs" VALUES('ESRI','105703','NAVD88_height_(ftUS)',NULL,NULL,'EPSG','6497','EPSG','5103','EPSG','3664',1); INSERT INTO "supersession" VALUES('vertical_crs','ESRI','105703','vertical_crs','EPSG','6360','ESRI'); INSERT INTO "vertical_datum" VALUES('ESRI','105104','LAS07',NULL,NULL,'EPSG','3272',NULL,0); INSERT INTO "vertical_crs" VALUES('ESRI','105704','LAS07_height',NULL,NULL,'EPSG','6499','ESRI','105104','EPSG','3272',0); INSERT INTO "vertical_datum" VALUES('ESRI','105290','EGM2008_Geoid',NULL,NULL,'EPSG','1262',NULL,1); INSERT INTO "vertical_crs" VALUES('ESRI','105790','EGM2008_Geoid',NULL,NULL,'EPSG','6499','ESRI','105290','EPSG','1262',1); INSERT INTO "supersession" VALUES('vertical_crs','ESRI','105790','vertical_crs','EPSG','3855','ESRI'); INSERT INTO "vertical_datum" VALUES('ESRI','105291','Fao_1979',NULL,NULL,'EPSG','3625',NULL,1); INSERT INTO "vertical_crs" VALUES('ESRI','105791','Fao_1979',NULL,NULL,'EPSG','6499','ESRI','105291','EPSG','3625',1); INSERT INTO "supersession" VALUES('vertical_crs','ESRI','105791','vertical_crs','EPSG','3886','ESRI'); INSERT INTO "vertical_datum" VALUES('ESRI','105292','New_Zealand_Vertical_Datum_2009',NULL,NULL,'EPSG','1175',NULL,1); INSERT INTO "vertical_crs" VALUES('ESRI','105792','NZVD2009_height',NULL,NULL,'EPSG','6499','ESRI','105292','EPSG','1175',1); INSERT INTO "supersession" VALUES('vertical_crs','ESRI','105792','vertical_crs','EPSG','4440','ESRI'); INSERT INTO "vertical_datum" VALUES('ESRI','105293','N2000',NULL,NULL,'EPSG','3333',NULL,1); INSERT INTO "vertical_crs" VALUES('ESRI','105793','N2000_height',NULL,NULL,'EPSG','6499','ESRI','105293','EPSG','3333',1); INSERT INTO "supersession" VALUES('vertical_crs','ESRI','105793','vertical_crs','EPSG','3900','ESRI'); INSERT INTO "vertical_datum" VALUES('ESRI','105294','Dunedin_Bluff_1960',NULL,NULL,'EPSG','3806',NULL,1); INSERT INTO "vertical_crs" VALUES('ESRI','105794','Dunedin_Bluff_1960_height',NULL,NULL,'EPSG','6499','ESRI','105294','EPSG','3806',1); INSERT INTO "supersession" VALUES('vertical_crs','ESRI','105794','vertical_crs','EPSG','4458','ESRI'); -- Skipping WGS_1984. Should be a CompoundCRS -- Skipping ETRS_1989. Should be a CompoundCRS -- Skipping NAD_1983. Should be a CompoundCRS -- Skipping Australian_Antarctic_1998. Should be a CompoundCRS -- Skipping Cadastre_1997. Should be a CompoundCRS -- Skipping China_Geodetic_Coordinate_System_2000. Should be a CompoundCRS -- Skipping Swiss_TRF_1995. Should be a CompoundCRS -- Skipping CIGD11. Should be a CompoundCRS -- Skipping CR05. Should be a CompoundCRS -- Skipping DB_REF. Should be a CompoundCRS -- Skipping DGN_1995. Should be a CompoundCRS -- Skipping DRUKREF_03. Should be a CompoundCRS -- Skipping Estonia_1997. Should be a CompoundCRS -- Skipping EUREF_FIN. Should be a CompoundCRS -- Skipping FEH2010. Should be a CompoundCRS -- Skipping GDA_1994. Should be a CompoundCRS -- Skipping GDBD2009. Should be a CompoundCRS -- Skipping GDM_2000. Should be a CompoundCRS -- Skipping Greenland_1996. Should be a CompoundCRS -- Skipping Hartebeesthoek_1994. Should be a CompoundCRS -- Skipping IGD05. Should be a CompoundCRS -- Skipping IG05_Intermediate_CRS. Should be a CompoundCRS -- Skipping IGD05(2012). Should be a CompoundCRS -- Skipping IG05(2012)_Intermediate_CRS. Should be a CompoundCRS -- Skipping IGM_1995. Should be a CompoundCRS -- Skipping IGRS. Should be a CompoundCRS -- Skipping IRENET95. Should be a CompoundCRS -- Skipping ISN_1993. Should be a CompoundCRS -- Skipping ISN_2004. Should be a CompoundCRS -- Skipping ITRF_1988. Should be a CompoundCRS -- Skipping ITRF_1989. Should be a CompoundCRS -- Skipping ITRF_1990. Should be a CompoundCRS -- Skipping ITRF_1991. Should be a CompoundCRS -- Skipping ITRF_1992. Should be a CompoundCRS -- Skipping ITRF_1993. Should be a CompoundCRS -- Skipping ITRF_1996. Should be a CompoundCRS -- Skipping ITRF_1997. Should be a CompoundCRS -- Skipping ITRF_2000. Should be a CompoundCRS -- Skipping ITRF_2005. Should be a CompoundCRS -- Skipping JAD_2001. Should be a CompoundCRS -- Skipping JGD_2000. Should be a CompoundCRS -- Skipping JGD_2011. Should be a CompoundCRS -- Skipping Korea_2000. Should be a CompoundCRS -- Skipping Lao_1997. Should be a CompoundCRS -- Skipping LGD2006. Should be a CompoundCRS -- Skipping LKS_1992. Should be a CompoundCRS -- Skipping LKS_1994. Should be a CompoundCRS -- Skipping MACAO_2008. Should be a CompoundCRS -- Skipping MAGNA. Should be a CompoundCRS -- Skipping MARCARIO_SOLIS. Should be a CompoundCRS -- Skipping MARGEN. Should be a CompoundCRS -- Skipping Mexico_ITRF2008. Should be a CompoundCRS -- Skipping MOLDREF99. Should be a CompoundCRS -- Skipping MONREF_1997. Should be a CompoundCRS -- Skipping Moznet. Should be a CompoundCRS -- Skipping NAD_1983_2011. Should be a CompoundCRS -- Skipping NAD_1983_CORS96. Should be a CompoundCRS -- Skipping North_American_1983_CSRS. Should be a CompoundCRS -- Skipping North_American_1983_HARN. Should be a CompoundCRS -- Skipping NAD_1983_MA11. Should be a CompoundCRS -- Skipping NAD_1983_MARP00. Should be a CompoundCRS -- Skipping NAD_1983_NSRS2007. Should be a CompoundCRS -- Skipping NAD_1983_PA11. Should be a CompoundCRS -- Skipping NAD_1983_PACP00. Should be a CompoundCRS -- Skipping Nepal_Nagarkot. Should be a CompoundCRS -- Skipping NZGD_2000. Should be a CompoundCRS -- Skipping Peru96. Should be a CompoundCRS -- Skipping PNG94. Should be a CompoundCRS -- Skipping POSGAR. Should be a CompoundCRS -- Skipping POSGAR_1994. Should be a CompoundCRS -- Skipping POSGAR_1998. Should be a CompoundCRS -- Skipping PRS_1992. Should be a CompoundCRS -- Skipping PTRA08. Should be a CompoundCRS -- Skipping PZ_1990. Should be a CompoundCRS -- Skipping RDN2008. Should be a CompoundCRS -- Skipping REGCAN95. Should be a CompoundCRS -- Skipping REGVEN. Should be a CompoundCRS -- Skipping RGAF09. Should be a CompoundCRS -- Skipping RGF_1993. Should be a CompoundCRS -- Skipping RGFG_1995. Should be a CompoundCRS -- Skipping RGM_2004. Should be a CompoundCRS -- Skipping RGNC_1991. Should be a CompoundCRS -- Skipping RGNC_1991-93. Should be a CompoundCRS -- Skipping RGPF. Should be a CompoundCRS -- Skipping RGR_1992. Should be a CompoundCRS -- Skipping RGRDC_2005. Should be a CompoundCRS -- Skipping RGSPM_2006. Should be a CompoundCRS -- Skipping RRAF_1991. Should be a CompoundCRS -- Skipping RSRGD2000. Should be a CompoundCRS -- Skipping SIRGAS_2000. Should be a CompoundCRS -- Skipping SIRGAS-Chile. Should be a CompoundCRS -- Skipping SIRGAS_ES2007.8. Should be a CompoundCRS -- Skipping SIRGAS-ROU98. Should be a CompoundCRS -- Skipping SLD99. Should be a CompoundCRS -- Skipping Slovenia_1996. Should be a CompoundCRS -- Skipping SREF98. Should be a CompoundCRS -- Skipping S_JTSK/05. Should be a CompoundCRS -- Skipping S_JTSK/05_Ferro. Should be a CompoundCRS -- Skipping SWEREF99. Should be a CompoundCRS -- Skipping TGD2005. Should be a CompoundCRS -- Skipping TWD_1997. Should be a CompoundCRS -- Skipping Ukraine_2000. Should be a CompoundCRS -- Skipping Yemen_NGN_1996. Should be a CompoundCRS -- Skipping ITRF_2008. Should be a CompoundCRS -- Skipping TUREF. Should be a CompoundCRS -- Skipping GDA2020. Should be a CompoundCRS -- Skipping BGS2005. Should be a CompoundCRS INSERT INTO "vertical_datum" VALUES('ESRI','105110','Unknown_height_system_(meters)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_crs" VALUES('ESRI','115807','Unknown_height_system_(meters)',NULL,NULL,'EPSG','6499','ESRI','105110','EPSG','1262',0); INSERT INTO "vertical_datum" VALUES('ESRI','105111','Unknown_height_system_(US_survey_feet)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_crs" VALUES('ESRI','115808','Unknown_height_system_(US_survey_feet)',NULL,NULL,'EPSG','6497','ESRI','105111','EPSG','1262',0); INSERT INTO "vertical_datum" VALUES('ESRI','105112','Unknown_height_system_(Intl_feet)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_crs" VALUES('ESRI','115809','Unknown_height_system_(Intl_Feet)',NULL,NULL,'EPSG','1030','ESRI','105112','EPSG','1262',0); -- Skipping ITRF2014. Should be a CompoundCRS -- Skipping SHGD2015. Should be a CompoundCRS -- Skipping St_Helena_Tritan. Should be a CompoundCRS -- Skipping GSK-2011. Should be a CompoundCRS -- Skipping PZ-90.11. Should be a CompoundCRS -- Skipping PZ-90.02. Should be a CompoundCRS -- Skipping WGS_1984_(Transit). Should be a CompoundCRS -- Skipping WGS_1984_(G1762). Should be a CompoundCRS -- Skipping WGS_1984_(G1674). Should be a CompoundCRS -- Skipping WGS_1984_(G1150). Should be a CompoundCRS -- Skipping WGS_1984_(G873). Should be a CompoundCRS -- Skipping WGS_1984_(G730). Should be a CompoundCRS -- Skipping ETRF90. Should be a CompoundCRS -- Skipping ETRF91. Should be a CompoundCRS -- Skipping ETRF92. Should be a CompoundCRS -- Skipping ETRF93. Should be a CompoundCRS -- Skipping ETRF94. Should be a CompoundCRS -- Skipping ETRF96. Should be a CompoundCRS -- Skipping ETRF97. Should be a CompoundCRS -- Skipping ETRF2000. Should be a CompoundCRS -- Skipping NAD83(CSRS96). Should be a CompoundCRS -- Skipping NAD83(CSRS)V2. Should be a CompoundCRS -- Skipping NAD83(CSRS)V3. Should be a CompoundCRS -- Skipping NAD83(CSRS)V4. Should be a CompoundCRS -- Skipping NAD83(CSRS)V5. Should be a CompoundCRS -- Skipping NAD83(CSRS)V6. Should be a CompoundCRS -- Skipping NAD83(CSRS)V7. Should be a CompoundCRS -- Skipping IGS14. Should be a CompoundCRS -- Skipping ISN2016. Should be a CompoundCRS -- Skipping Hong_Kong_Geodetic_CS. Should be a CompoundCRS -- Skipping NAD_1983_(FBN). Should be a CompoundCRS -- Skipping NAD_1983_(HARN_Corrected). Should be a CompoundCRS -- Skipping SRB_ETRS89. Should be a CompoundCRS -- Skipping MTRF-2000. Should be a CompoundCRS -- Skipping California_SRS_Epoch_2017.50_(NAD83). Should be a CompoundCRS -- Skipping GGD. Should be a CompoundCRS -- Skipping ONGD14. Should be a CompoundCRS -- Skipping ONGD17. Should be a CompoundCRS -- Skipping S-JTSK_[JTSK03]. Should be a CompoundCRS -- Skipping CR-SIRGAS. Should be a CompoundCRS -- Skipping RGWF96. Should be a CompoundCRS -- Skipping SIRGAS-CON_DGF00P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_DGF01P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_DGF01P02. Should be a CompoundCRS -- Skipping SIRGAS-CON_DGF02P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_DGF04P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_DGF05P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_DGF06P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_DGF07P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_DGF08P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_SIR09P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_SIR10P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_SIR11P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_SIR13P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_SIR14P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_SIR15P01. Should be a CompoundCRS -- Skipping SIRGAS-CON_SIR17P01. Should be a CompoundCRS -- Skipping IGS97. Should be a CompoundCRS -- Skipping IGS00. Should be a CompoundCRS -- Skipping IGb00. Should be a CompoundCRS -- Skipping IGS05. Should be a CompoundCRS -- Skipping IGb08. Should be a CompoundCRS -- Skipping KOSOVAREF01. Should be a CompoundCRS -- Skipping ETRF2005. Should be a CompoundCRS -- Skipping ETRF2014. Should be a CompoundCRS INSERT INTO alias_name VALUES('compound_crs','EPSG','5318','HVC_ETRS_1989_Faroe_TM_and_FVR09_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5498','HVC_NAD_1983_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5499','HVC_NAD_1983_HARN_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5500','HVC_NAD_1983_NSRS2007_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5554','HVC_ETRS_1989_UTM_Zone_31N_and_DHHN92_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5555','HVC_ETRS_1989_UTM_Zone_32N_and_DHHN92_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5556','HVC_ETRS_1989_UTM_Zone_33N_and_DHHN92_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5598','HVC_FEH2010_Fehmarnbelt_TM_and_FCSVR10_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5628','HVC_SWEREF99_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5698','HVC_RGF_1993_Lambert_93_and_NGF_IGN69_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5699','HVC_RGF_1993_Lambert_93_and_NGF_IGN78_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5707','HVC_NTF_Paris_Lambert_Zone_I_and_NGF_IGN69_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5708','HVC_NTF_Paris_Lambert_Zone_IV_and_NGF_IGN78_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5832','HVC_DB_REF_3_Degree_GK_Zone_2_E-N_and_DHHN92','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5833','HVC_DB_REF_3_Degree_GK_Zone_3_E-N_and_DHHN92','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5834','HVC_DB_REF_3_Degree_GK_Zone_4_E-N_and_DHHN92','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5835','HVC_DB_REF_3_Degree_GK_Zone_5_E-N_and_DHHN92','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5845','HVC_SWEREF99_TM_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5846','HVC_SWEREF99_12_00_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5847','HVC_SWEREF99_13_30_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5848','HVC_SWEREF99_15_00_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5849','HVC_SWEREF99_16_30_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5850','HVC_SWEREF99_18_00_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5851','HVC_SWEREF99_14_15_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5852','HVC_SWEREF99_15_45_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5853','HVC_SWEREF99_17_15_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5854','HVC_SWEREF99_18_45_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5855','HVC_SWEREF99_20_15_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5856','HVC_SWEREF99_21_45_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5857','HVC_SWEREF99_23_15_and_RH2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5942','HVC_ETRS_1989_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5945','HVC_ETRS_1989_NTM_Zone_5_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5946','HVC_ETRS_1989_NTM_Zone_6_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5947','HVC_ETRS_1989_NTM_Zone_7_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5948','HVC_ETRS_1989_NTM_Zone_8_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5949','HVC_ETRS_1989_NTM_Zone_9_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5950','HVC_ETRS_1989_NTM_Zone_10_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5951','HVC_ETRS_1989_NTM_Zone_11_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5952','HVC_ETRS_1989_NTM_Zone_12_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5953','HVC_ETRS_1989_NTM_Zone_13_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5954','HVC_ETRS_1989_NTM_Zone_14_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5955','HVC_ETRS_1989_NTM_Zone_15_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5956','HVC_ETRS_1989_NTM_Zone_16_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5957','HVC_ETRS_1989_NTM_Zone_17_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5958','HVC_ETRS_1989_NTM_Zone_18_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5959','HVC_ETRS_1989_NTM_Zone_19_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5960','HVC_ETRS_1989_NTM_Zone_20_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5961','HVC_ETRS_1989_NTM_Zone_21_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5962','HVC_ETRS_1989_NTM_Zone_22_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5963','HVC_ETRS_1989_NTM_Zone_23_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5964','HVC_ETRS_1989_NTM_Zone_24_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5965','HVC_ETRS_1989_NTM_Zone_25_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5966','HVC_ETRS_1989_NTM_Zone_26_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5967','HVC_ETRS_1989_NTM_Zone_27_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5968','HVC_ETRS_1989_NTM_Zone_28_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5969','HVC_ETRS_1989_NTM_Zone_29_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5970','HVC_ETRS_1989_NTM_Zone_30_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5971','HVC_ETRS_1989_UTM_Zone_31_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5972','HVC_ETRS_1989_UTM_Zone_32_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5973','HVC_ETRS_1989_UTM_Zone_33_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5974','HVC_ETRS_1989_UTM_Zone_34_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5975','HVC_ETRS_1989_UTM_Zone_35_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','5976','HVC_ETRS_1989_UTM_Zone_36_and_NN2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6144','HVC_ETRS_1989_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6145','HVC_ETRS_1989_NTM_Zone_5_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6146','HVC_ETRS_1989_NTM_Zone_6_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6147','HVC_ETRS_1989_NTM_Zone_7_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6148','HVC_ETRS_1989_NTM_Zone_8_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6149','HVC_ETRS_1989_NTM_Zone_9_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6150','HVC_ETRS_1989_NTM_Zone_10_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6151','HVC_ETRS_1989_NTM_Zone_11_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6152','HVC_ETRS_1989_NTM_Zone_12_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6153','HVC_ETRS_1989_NTM_Zone_13_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6154','HVC_ETRS_1989_NTM_Zone_14_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6155','HVC_ETRS_1989_NTM_Zone_15_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6156','HVC_ETRS_1989_NTM_Zone_16_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6157','HVC_ETRS_1989_NTM_Zone_17_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6158','HVC_ETRS_1989_NTM_Zone_18_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6159','HVC_ETRS_1989_NTM_Zone_19_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6160','HVC_ETRS_1989_NTM_Zone_20_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6161','HVC_ETRS_1989_NTM_Zone_21_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6162','HVC_ETRS_1989_NTM_Zone_22_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6163','HVC_ETRS_1989_NTM_Zone_23_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6164','HVC_ETRS_1989_NTM_Zone_24_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6165','HVC_ETRS_1989_NTM_Zone_25_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6166','HVC_ETRS_1989_NTM_Zone_26_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6167','HVC_ETRS_1989_NTM_Zone_27_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6168','HVC_ETRS_1989_NTM_Zone_28_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6169','HVC_ETRS_1989_NTM_Zone_29_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6170','HVC_ETRS_1989_NTM_Zone_30_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6171','HVC_ETRS_1989_NTM_Zone_31_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6172','HVC_ETRS_1989_NTM_Zone_32_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6173','HVC_ETRS_1989_NTM_Zone_33_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6174','HVC_ETRS_1989_NTM_Zone_34_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6175','HVC_ETRS_1989_NTM_Zone_35_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6176','HVC_ETRS_1989_NTM_Zone_36_and_NN54_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6190','HVC_Belge_1972_Belgian_Lambert_72_and_Ostend_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6349','HVC_NAD_1983_2011_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6649','HVC_NAD_1983_CSRS_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6650','HVC_NAD_1983_CSRS_UTM_Zone_7N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6651','HVC_NAD_1983_CSRS_UTM_Zone_8N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6652','HVC_NAD_1983_CSRS_UTM_Zone_9N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6653','HVC_NAD_1983_CSRS_UTM_Zone_10N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6654','HVC_NAD_1983_CSRS_UTM_Zone_11N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6655','HVC_NAD_1983_CSRS_UTM_Zone_12N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6656','HVC_NAD_1983_CSRS_UTM_Zone_13N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6657','HVC_NAD_1983_CSRS_UTM_Zone_14N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6658','HVC_NAD_1983_CSRS_UTM_Zone_15N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6659','HVC_NAD_1983_CSRS_UTM_Zone_16N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6660','HVC_NAD_1983_CSRS_UTM_Zone_17N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6661','HVC_NAD_1983_CSRS_UTM_Zone_18N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6662','HVC_NAD_1983_CSRS_UTM_Zone_19N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6663','HVC_NAD_1983_CSRS_UTM_Zone_20N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6664','HVC_NAD_1983_CSRS_UTM_Zone_21N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6665','HVC_NAD_1983_CSRS_UTM_Zone_22N_and_CGVD2013_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6696','HVC_JGD2000_and_JGD2000_vertical_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6697','HVC_JGD2011_and_JGD2011_vertical_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6700','HVC_Tokyo_and_JSLD72_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6893','HVC_WGS_1984_World_Mercator_and_EGM2008_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6917','HVC_SVY21_and_SHD_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','6927','HVC_SVY21_Singapore_TM_and_SHD_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7400','HVC_NTF_Paris_and_NGF_IGN69_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7404','HVC_RT90_and_RH70_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7405','HVC_OSGB36_British_National_Grid_and_ODN_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7406','HVC_NAD27_and_NGVD29_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7407','HVC_NAD27_Texas_North_and_NGVD29_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7409','HVC_ETRF89_and_EVRF2000_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7410','HVC_PSD93_and_PHD93','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7411','HVC_NTF_Paris_Lambert_Zone_II_and_NGF_Lallemand_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7414','HVC_Tokyo_and_JSLD_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7415','HVC_Amersfoort_RD_New_and_NAP_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7416','HVC_ETRF89_UTM_Zone_32N_and_DVR90_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7417','HVC_ETRF89_UTM_Zone_33N_and_DVR90_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7418','HVC_ETRF89_KP2000_Jutland_and_DVR90_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7419','HVC_ETRF89_KP2000_Zealand_and_DVR90_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7420','HVC_ETRF89_KP2000_Bornholm_and_DVR90_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7421','HVC_NTF_Paris_Lambert_Zone_II_and_NGF_IGN69_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7422','HVC_NTF_Paris_Lambert_Zone_III_and_NGF_IGN69_Height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7423','HVC_ETRS_1989_and_EVRF2007_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7954','Astro_DOS_71_UTM_Zone_30S_and_Jamestown_1971_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7955','St_Helena_Tritan_UTM_Zone_30S_and_Tritan_2011_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','7956','SHMG2015_and_SHVD2015_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8349','GR96_and_GVR2000_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8350','GR96_and_GVR2016_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8360','ETRS_1989_and_Baltic_1957_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8370','ETRS_1989_Belgian_Lambert_2008_and_Ostend_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8700','NAD_1983_Arizona_East_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8701','NAD_1983_Arizona_Central_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8702','NAD_1983_Arizona_West_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8703','NAD_1983_Michigan_North_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8704','NAD_1983_Michigan_Central_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8705','NAD_1983_Michigan_South_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8706','NAD_1983_Montana_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8707','NAD_1983_North_Dakota_North_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8708','NAD_1983_North_Dakota_South_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8709','NAD_1983_Oregon_North_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8710','NAD_1983_Oregon_South_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8711','NAD_1983_South_Carolina_Ft_Intl_and_NAVD88_height_Ft_Intl','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8712','NAD_1983_Arkansas_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8713','NAD_1983_Arkansas_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8714','NAD_1983_California_I_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8715','NAD_1983_California_II_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8716','NAD_1983_California_III_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8717','NAD_1983_California_IV_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8718','NAD_1983_California_V_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8719','NAD_1983_California_VI_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8720','NAD_1983_Colorado_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8721','NAD_1983_Colorado_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8722','NAD_1983_Colorado_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8723','NAD_1983_Connecticut_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8724','NAD_1983_Delaware_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8725','NAD_1983_Florida_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8726','NAD_1983_Florida_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8727','NAD_1983_Florida_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8728','NAD_1983_Georgia_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8729','NAD_1983_Georgia_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8730','NAD_1983_Idaho_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8731','NAD_1983_Idaho_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8732','NAD_1983_Idaho_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8733','NAD_1983_Illinois_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8734','NAD_1983_Illinois_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8735','NAD_1983_Indiana_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8736','NAD_1983_Indiana_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8737','NAD_1983_Iowa_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8738','NAD_1983_Iowa_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8739','NAD_1983_Kansas_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8740','NAD_1983_Kansas_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8741','NAD_1983_Kentucky_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8742','NAD_1983_Kentucky_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8743','NAD_1983_Lousiana_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8744','NAD_1983_Lousiana_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8745','NAD_1983_Maine_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8746','NAD_1983_Maine_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8747','NAD_1983_Maryland_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8748','NAD_1983_Massachusetts_Mainland_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8749','NAD_1983_Massachusetts_Island_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8750','NAD_1983_Minnesota_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8751','NAD_1983_Minnesota_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8752','NAD_1983_Minnesota_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8753','NAD_1983_Mississippi_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8754','NAD_1983_Mississippi_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8755','NAD_1983_Nebraska_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8756','NAD_1983_Nevada_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8757','NAD_1983_Nevada_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8758','NAD_1983_Nevada_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8759','NAD_1983_New_Hampshire_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8760','NAD_1983_New_Jersey_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8761','NAD_1983_New_Mexico_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8762','NAD_1983_New_Mexico_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8763','NAD_1983_New_Mexico_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8764','NAD_1983_New_York_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8765','NAD_1983_New_York_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8766','NAD_1983_New_York_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8767','NAD_1983_New_York_Long_Island_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8768','NAD_1983_North_Carolina_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8769','NAD_1983_Ohio_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8770','NAD_1983_Ohio_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8771','NAD_1983_Oklahoma_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8772','NAD_1983_Oklahoma_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8773','NAD_1983_Pennsylvania_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8774','NAD_1983_Pennsylvania_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8775','NAD_1983_Rhode_Island_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8776','NAD_1983_South_Dakota_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8777','NAD_1983_South_Dakota_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8778','NAD_1983_Tennessee_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8779','NAD_1983_Texas_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8780','NAD_1983_Texas_North_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8781','NAD_1983_Texas_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8782','NAD_1983_Texas_South_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8783','NAD_1983_Texas_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8784','NAD_1983_Utah_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8785','NAD_1983_Utah_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8786','NAD_1983_Utah_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8787','NAD_1983_Vermont_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8788','NAD_1983_Virginia_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8789','NAD_1983_Virginia_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8790','NAD_1983_Washington_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8791','NAD_1983_Washington_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8792','NAD_1983_West_Virginia_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8793','NAD_1983_West_Virginia_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8794','NAD_1983_Wisconsin_North_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8795','NAD_1983_Wisconsin_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8796','NAD_1983_Wisconsin_South_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8797','NAD_1983_Wyoming_East_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8798','NAD_1983_Wyoming_East_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8799','NAD_1983_Wyoming_West_Central_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8800','NAD_1983_Wyoming_West_Ft_US_and_NAVD88_height_Ft_US','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8801','NAD_1983_Alabama_East_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8802','NAD_1983_Alabama_West_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8803','NAD_1983_Alaska_1_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8804','NAD_1983_Alaska_2_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8805','NAD_1983_Alaska_3_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8806','NAD_1983_Alaska_4_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8807','NAD_1983_Alaska_5_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8808','NAD_1983_Alaska_6_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8809','NAD_1983_Alaska_7_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8810','NAD_1983_Alaska_8_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8811','NAD_1983_Alaska_9_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8812','NAD_1983_Alaska_10_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8813','NAD_1983_Missouri_East_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8814','NAD_1983_Missouri_Central_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8815','NAD_1983_Missouri_West_and_NAVD88_height','ESRI'); INSERT INTO alias_name VALUES('compound_crs','EPSG','8912','CR-SIRGAS_CRTM05_and_DACR52_height','ESRI'); INSERT INTO "helmert_transformation" VALUES('ESRI','7377','ONGD14_To_WGS_1984_1',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','7373','EPSG','4326','EPSG','1183',0.1,0.819,-0.5762,-1.6446,'EPSG','9001',0.00378,0.03317,-0.00318,'EPSG','9104',0.0693,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','9226','SHGD2015_To_Astro_DOS_71-4_2',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','7886','EPSG','4710','EPSG','3183',0.1,112.771,-12.282,18.935,'EPSG','9001',-2.1692,-16.8896,-17.1961,'EPSG','9104',19.54517,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108003','NAD_1927_To_NAD_1983_PR_VI',NULL,NULL,'EPSG','9615','NTv2','EPSG','4267','EPSG','4269','EPSG','1335',0.05,'EPSG','8656','Latitude and longitude difference file','prvi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108013','CR05_To_Ocotepeque_1935_MB',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','5365','EPSG','5451','EPSG','3232',0.5,-213.116,-9.358,74.946,'EPSG','9001',2.3514188,-0.0614669,6.394209,'EPSG','9104',5.22,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,617749.7118,-6250547.7336,1102063.6099,'EPSG','9001',NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108014','WGS_1984_To_Ocotepeque_1935_MB',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4326','EPSG','5451','EPSG','3232',0.5,-213.116,-9.358,74.946,'EPSG','9001',2.3514188,-0.0614669,6.394209,'EPSG','9104',5.22,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,617749.7118,-6250547.7336,1102063.6099,'EPSG','9001',NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108015','Nepal_Nagarkot_TO_WGS_1984_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6207','EPSG','4326','EPSG','1171',10.0,296.0,732.0,273.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108016','Nepal_Nagarkot_TO_WGS_1984_2',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6207','EPSG','4326','EPSG','1171',5.0,296.207,731.545,273.001,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108017','NAD_1983_PACP00_To_WGS_1984',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104259','EPSG','4326','EPSG','4162',0.1,-0.9102,2.0141,0.5602,'EPSG','9001',-0.029039,-0.010065,-0.010101,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108018','NAD_1983_MARP00_To_WGS_1984',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104260','EPSG','4326','EPSG','4167',0.1,-0.9102,2.0141,0.5602,'EPSG','9001',-0.029039,-0.010065,-0.010101,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','144','Israel, Palestine Territory, and Jordan','Israel, Palestine Territory, and Jordan',29.19,33.53,32.99,39.3,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108021','WGS_1984_To_Israel_CoordFrame',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','4141','ESRI','144',1.0,-24.0024,-17.1032,-17.8444,'EPSG','9001',-0.33009,-1.85269,1.66969,'EPSG','9104',5.4248,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "other_transformation" VALUES('ESRI','108022','NTF_Paris_RGF_To_NTF_2',NULL,NULL,'EPSG','9619','Geographic2D offsets','EPSG','4807','EPSG','4275','EPSG','3694',0.0,'EPSG','8601','Latitude offset',0.0,'EPSG','9104','EPSG','8602','Longitude offset',8413.095,'EPSG','9104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108023','Datum_Lisboa_Hayford_To_WGS_1984_NTv2',NULL,NULL,'EPSG','9615','NTv2','ESRI','104106','EPSG','4326','EPSG','1294',0.1,'EPSG','8656','Latitude and longitude difference file','portugal/DLX_ETRS89_geo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108024','Datum_Lisboa_Hayford_To_ETRS_1989_NTv2',NULL,NULL,'EPSG','9615','NTv2','ESRI','104106','EPSG','4258','EPSG','1294',0.1,'EPSG','8656','Latitude and longitude difference file','portugal/DLX_ETRS89_geo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108025','Datum_73_To_WGS_1984_NTv2',NULL,NULL,'EPSG','9615','NTv2','EPSG','4274','EPSG','4326','EPSG','1294',0.1,'EPSG','8656','Latitude and longitude difference file','portugal/D73_ETRS89_geo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108026','ITRF_1997_To_ITRF_2000_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8996','EPSG','8997','EPSG','1262',0.01,-0.0067,-0.0061,0.0185,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00155,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108027','ITRF_1996_To_ITRF_2000_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8995','EPSG','8997','EPSG','1262',0.01,-0.0067,-0.0061,0.0185,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00155,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108028','ITRF_1994_To_ITRF_2000_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8994','EPSG','8997','EPSG','1262',0.01,-0.0067,-0.0061,0.0185,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00155,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108029','ITRF_1993_To_ITRF_2000_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8993','EPSG','8997','EPSG','1262',0.01,-0.0127,-0.0065,0.0209,'EPSG','9001',0.00039,-0.0008,0.00114,'EPSG','9104',-0.00195,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108030','ITRF_1992_To_ITRF_2000_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8992','EPSG','8997','EPSG','1262',0.01,-0.0147,-0.0135,0.0139,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',-0.00075,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108031','ITRF_1991_To_ITRF_2000_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8991','EPSG','8997','EPSG','1262',0.01,-0.0267,-0.0275,0.0199,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',-0.00215,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108032','ITRF_1990_To_ITRF_2000_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8990','EPSG','8997','EPSG','1262',0.01,-0.0247,-0.0235,0.0359,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',-0.00245,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108033','ITRF_1989_To_ITRF_2000_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8989','EPSG','8997','EPSG','1262',0.01,-0.0297,-0.0475,0.0739,'EPSG','9001',0.0,0.0,0.00018,'EPSG','9104',0.00585,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108034','ITRF_1988_To_ITRF_2000_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8988','EPSG','8997','EPSG','1262',0.01,-0.0247,-0.0115,0.0979,'EPSG','9001',-0.0001,0.0,0.00018,'EPSG','9104',-0.00895,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108035','Ukraine_2000_To_ITRF_2005_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','5561','EPSG','8998','EPSG','1242',1.0,24.0,-121.0,-76.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108036','ITRF_2000_To_ITRF_2005_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8997','EPSG','8998','EPSG','1262',0.01,-0.0001,0.0008,0.0058,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.0004,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108037','Macao_2008_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','8431','EPSG','4326','ESRI','42',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108038','Macao_2008_To_ITRF_2005',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','8431','EPSG','8998','ESRI','42',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108039','Macao_2008_To_Observatorio_Meteorologico_1965_1',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','8431','ESRI','104126','ESRI','42',3.0,202.865,303.99,155.873,'EPSG','9001',34.067,-76.126,-32.647,'EPSG','9104',-6.096,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,-2361757.652,5417232.187,2391453.053,'EPSG','9001',NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108042','Amersfoort_To_WGS_1984_NTv2',NULL,NULL,'EPSG','9615','NTv2','EPSG','4289','EPSG','4326','EPSG','1275',0.2,'EPSG','8656','Latitude and longitude difference file','netherlands/rdtrans2008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108043','Egypt_1907_To_WGS_1984_2',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4229','EPSG','4326','EPSG','1086',5.0,-121.8,98.1,-10.7,'EPSG','9001',0.0,0.0,0.554,'EPSG','9104',0.2263,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108044','NAD_1983_HARN_To_NSRS2007_GEOCON_CONUS',NULL,NULL,'EPSG','9615','NTv2','EPSG','4152','EPSG','4759','EPSG','1323',0.05,'EPSG','8656','Latitude and longitude difference file','gc_nad83_harn_2007_conus_shifts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108045','NAD_1983_HARN_To_NSRS2007_GEOCON_Alaska',NULL,NULL,'EPSG','9615','NTv2','EPSG','4152','EPSG','4759','EPSG','1330',0.05,'EPSG','8656','Latitude and longitude difference file','gc_nad83_harn_2007_alaska_shifts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108046','NAD_1983_HARN_To_NSRS2007_GEOCON_Puerto_Rico_Virgin_Islands',NULL,NULL,'EPSG','9615','NTv2','EPSG','4152','EPSG','4759','EPSG','3634',0.05,'EPSG','8656','Latitude and longitude difference file','gc_nad83_harn_2007_prvi_shifts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108047','NAD_1983_NSRS2007_To_2011_GEOCON11_CONUS',NULL,NULL,'EPSG','9615','NTv2','EPSG','4759','EPSG','6318','EPSG','1323',0.05,'EPSG','8656','Latitude and longitude difference file','gc_nad83_2007_2011_conus_shifts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108048','NAD_1983_NSRS2007_To_2011_GEOCON11_Alaska',NULL,NULL,'EPSG','9615','NTv2','EPSG','4759','EPSG','6318','EPSG','1330',0.05,'EPSG','8656','Latitude and longitude difference file','gc_nad83_2007_2011_alaska_shifts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108049','NAD_1983_NSRS2007_To_2011_GEOCON11_Puerto_Rico_Virgin_Islands',NULL,NULL,'EPSG','9615','NTv2','EPSG','4759','EPSG','6318','EPSG','2251',0.05,'EPSG','8656','Latitude and longitude difference file','gc_nad83_2007_2011_prvi_shifts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108050','ETRS_1989_To_Xrail84_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4258','ESRI','104050','ESRI','2',0.5,19.019,115.122,-97.287,'EPSG','9001',3.577824,-3.484437,-2.767646,'EPSG','9104',18.6084754,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108051','WGS_1984_To_Xrail84_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4326','ESRI','104050','ESRI','2',0.5,19.019,115.122,-97.287,'EPSG','9001',3.577824,-3.484437,-2.767646,'EPSG','9104',18.6084754,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108052','ITRF_2005_To_ITRF_2008_2',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8998','EPSG','8999','EPSG','1262',0.01,0.002,0.0009,0.0047,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',-0.00094,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "other_transformation" VALUES('ESRI','108053','JGD_2011_To_WGS_1984',NULL,NULL,'EPSG','9619','Geographic2D offsets','EPSG','6668','EPSG','4326','EPSG','3957',0.0,'EPSG','8601','Latitude offset',0,'EPSG','9104','EPSG','8602','Longitude offset',0,'EPSG','9104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "other_transformation" VALUES('ESRI','108054','MONREF_1997_To_WGS_1984',NULL,NULL,'EPSG','9619','Geographic2D offsets','ESRI','104134','EPSG','4326','EPSG','1164',1.0,'EPSG','8601','Latitude offset',0,'EPSG','9104','EPSG','8602','Longitude offset',0,'EPSG','9104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108055','WGS_1984_To_MSK_1942',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','ESRI','104135','EPSG','1164',999.0,78.0421780299,204.5186132514,77.449861533,'EPSG','9001',-1.7736709695,3.3197917322,-1.0426077127,'EPSG','9104',-4.95105766,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108056','WGS_1984_To_Pulkovo_1942',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','4284','EPSG','1164',999.0,78.0421780299,204.5186132514,77.449861533,'EPSG','9001',-1.7736709695,3.3197917322,-1.0426077127,'EPSG','9104',-4.95105766,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108057','ETRS_1989_To_OSGB_1936_OSTN15',NULL,NULL,'EPSG','9615','NTv2','EPSG','4258','EPSG','4277','EPSG','4390',0.03,'EPSG','8656','Latitude and longitude difference file','uk/OSTN15_NTv2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108058','WGS_1984_To_OSGB_1936_OSTN15',NULL,NULL,'EPSG','9615','NTv2','EPSG','4326','EPSG','4277','EPSG','4390',1.0,'EPSG','8656','Latitude and longitude difference file','uk/OSTN15_NTv2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108059','OSGB_1936_To_Xrail84_NTv2',NULL,NULL,'EPSG','9615','NTv2','EPSG','4277','ESRI','104050','ESRI','2',0.5,'EPSG','8656','Latitude and longitude difference file','uk/osgb36_xrail84',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108060','GDA_1994_To_GDA2020_1',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4283','EPSG','7844','EPSG','4177',0.01,0.06155,-0.01087,-0.04019,'EPSG','9001',-0.0394924,-0.0327221,-0.0328979,'EPSG','9104',-0.009994,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "other_transformation" VALUES('ESRI','108061','ITRF2014_To_GDA2020_Null',NULL,NULL,'EPSG','9619','Geographic2D offsets','EPSG','9000','EPSG','7844','EPSG','4177',0.005,'EPSG','8601','Latitude offset',0,'EPSG','9104','EPSG','8602','Longitude offset',0,'EPSG','9104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108062','NAD_1927_to_SIRGAS_2000_7Par_Panama',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4267','EPSG','4674','EPSG','3290',1.0,-32.3841359,180.4090461,120.8442577,'EPSG','9001',2.1545854,0.1498782,-0.5742915,'EPSG','9104',8.1049164,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "other_transformation" VALUES('ESRI','108063','NAD_1983_HARN_To_HARN_Adjusted_WCCS_Chippewa',NULL,NULL,'EPSG','9619','Geographic2D offsets','EPSG','4152','ESRI','104808','EPSG','1418',0.0,'EPSG','8601','Latitude offset',0,'EPSG','9104','EPSG','8602','Longitude offset',0,'EPSG','9104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','145','Spain - Peninsula - NTv2 grid','Spain - Peninsula - NTv2 grid',35.5555555555556,44.4444444444444,-10.1833333333333,4.15,0); INSERT INTO "grid_transformation" VALUES('ESRI','108066','ED_1950_To_ETRS_1989_NTv2_PENR2009',NULL,NULL,'EPSG','9615','NTv2','EPSG','4230','EPSG','4258','ESRI','145',0.1,'EPSG','8656','Latitude and longitude difference file','spain/PENR2009',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','146','Spain - Balearic Islands - NTv2 grid','Spain - Balearic Islands - NTv2 grid',38.0,40.7916666666667,0.833333333333333,4.66666666666667,0); INSERT INTO "grid_transformation" VALUES('ESRI','108067','ED_1950_To_ETRS_1989_NTv2_BALR2009',NULL,NULL,'EPSG','9615','NTv2','EPSG','4230','EPSG','4258','ESRI','146',0.2,'EPSG','8656','Latitude and longitude difference file','spain/BALR2009',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108068','ED_1950_To_WGS_1984_NTv2_PENR2009',NULL,NULL,'EPSG','9615','NTv2','EPSG','4230','EPSG','4326','ESRI','145',0.9,'EPSG','8656','Latitude and longitude difference file','spain/PENR2009',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108069','ED_1950_To_WGS_1984_NTv2_BALR2009',NULL,NULL,'EPSG','9615','NTv2','EPSG','4230','EPSG','4326','ESRI','146',0.9,'EPSG','8656','Latitude and longitude difference file','spain/BALR2009',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108070','PD/83_To_WGS_1984_7PAR',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4746','EPSG','4326','EPSG','2544',0.5,599.4,72.4,419.2,'EPSG','9001',-0.062,-0.022,-2.723,'EPSG','9104',6.46,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108071','RD/83_To_WGS_1984_7PAR',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4745','EPSG','4326','EPSG','2545',0.5,612.4,77.0,440.2,'EPSG','9001',-0.054,0.057,-2.797,'EPSG','9104',2.55,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108072','MGI_To_ETRS_1989_Serbia',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4258','EPSG','3534',0.5,577.88891,165.22205,391.18289,'EPSG','9001',-4.9145,0.94729,13.05098,'EPSG','9104',7.78664,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108073','MGI_To_WGS_1984_Serbia',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4312','EPSG','4326','EPSG','3534',1.0,577.88891,165.22205,391.18289,'EPSG','9001',-4.9145,0.94729,13.05098,'EPSG','9104',7.78664,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108074','ITRF_2008_To_ITRF2014_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','8999','EPSG','9000','EPSG','1262',0.01,-0.0016,-0.0019,-0.0024,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.00002,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108075','ITRF2014_To_NAD_1983_CSRS_v7_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','9000','EPSG','8255','EPSG','1061',0.0,1.0053,-1.9092,-0.5416,'EPSG','9001',-0.0267814,0.0004203,-0.0109321,'EPSG','9104',0.00037,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108076','D48_To_D96_2010_GI',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104131','EPSG','4765','EPSG','3307',1.07,476.08,125.947,417.81,'EPSG','9001',-4.610862,-2.388137,11.942335,'EPSG','9104',9.896638,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108077','D96_To_D48_Zahodna_Slovenija',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4765','ESRI','104131','EPSG','3564',0.357,-453.674,-112.561,-388.287,'EPSG','9001',5.343297,2.485394,-10.836743,'EPSG','9104',-15.958238,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108078','D96_To_D48_Severovzhodna_Slovenija',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4765','ESRI','104131','EPSG','3565',0.504,-491.556,-135.972,-440.4,'EPSG','9001',3.683681,2.232141,-13.171698,'EPSG','9104',-5.421926,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108079','D96_To_D48_Jugovzhodna_Slovenija',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4765','ESRI','104131','EPSG','3566',0.388,-485.018,-129.747,-423.199,'EPSG','9001',4.880531,2.348721,-11.745346,'EPSG','9104',-8.231637,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108080','D96_To_D48_Juzna_Slovenija',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4765','ESRI','104131','EPSG','3567',0.137,-502.101,-131.516,-433.704,'EPSG','9001',6.054862,2.498236,-10.429331,'EPSG','9104',-5.188197,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108081','D96_To_D48_Dolenjska',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4765','ESRI','104131','EPSG','3568',0.308,-481.871,-129.173,-420.608,'EPSG','9001',5.096868,2.423927,-11.524756,'EPSG','9104',-8.872387,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108082','D96_To_D48_Stajerska',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4765','ESRI','104131','EPSG','3569',0.368,-477.73,-130.719,-424.46,'EPSG','9001',3.790572,2.246488,-12.99207,'EPSG','9104',-8.828735,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108083','D96_To_D48_Pomurje',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4765','ESRI','104131','EPSG','3570',0.21,-523.882,-151.289,-480.592,'EPSG','9001',3.706371,2.315828,-13.400341,'EPSG','9104',2.972511,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108084','D96_To_D48_Gorenjska',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4765','ESRI','104131','EPSG','3571',0.249,-438.775,-109.403,-377.696,'EPSG','9001',4.933923,2.503267,-11.26993,'EPSG','9104',-18.814763,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108085','D96_To_D48_Primorska',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4765','ESRI','104131','EPSG','3572',0.27,-465.715,-115.127,-397.622,'EPSG','9001',5.743906,2.510737,-10.415817,'EPSG','9104',-13.558204,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108086','D96_To_D48_Osrednja_Slovenija',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4765','ESRI','104131','EPSG','3573',0.185,-465.328,-122.305,-403.609,'EPSG','9001',4.387757,2.265582,-12.157415,'EPSG','9104',-12.73019,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108087','Nord_Sahara_1959_To_WGS_1984_3',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4307','EPSG','4326','EPSG','2393',10.0,-156.5,-87.2,287.8,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108088','Saint_Pierre_et_Miquelon_1950_to_RGSPM_2006',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4638','EPSG','4463','EPSG','3299',1.0,-95.593,573.763,173.442,'EPSG','9001',-0.9602,1.251,-1.3918,'EPSG','9104',42.6265,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108089','OSGB_1936_To_WGS_1984_8_BAD_DX',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4277','EPSG','4326','EPSG','3893',5.0,370.396,-108.938,435.682,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108094','MGI_Ferro_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4805','EPSG','4326','EPSG','2370',5.0,682.0,-203.0,480.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108095','MGI_To_WGS_1984_2',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4312','EPSG','4326','EPSG','1037',1.5,577.326,90.129,463.919,'EPSG','9001',5.1365988,1.4742,5.2970436,'EPSG','9104',2.4232,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108096','Chos_Malal_1914_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4160','EPSG','4326','EPSG','2325',10.5,5.5,176.7,141.4,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108097','Indian_1960_To_WGS_1984_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4131','EPSG','4326','EPSG','1495',27.0,199.0,931.0,318.9,'EPSG','9001',0.0,0.0,0.814,'EPSG','9104',-0.38,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108099','Palestine_1923_To_WGS_1984_2',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4281','EPSG','4326','EPSG','2603',3.5,-229.0,-67.0,277.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108102','NTF_Paris_To_RGF_1993_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4807','EPSG','4171','EPSG','3694',2.0,-168.0,-60.0,320.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108106','Tokyo_To_WGS_1984_2001',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4301','EPSG','4326','EPSG','3957',4.0,-147.54,507.26,680.47,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108107','JGD_2000_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4612','EPSG','4326','EPSG','1135',4.0,-1.126,-0.077,-0.037,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','147','Japan - NTv2','Japan - NTv2',20.0,47.0,121.0,154.0,0); INSERT INTO "grid_transformation" VALUES('ESRI','108109','Tokyo_To_WGS_1984_NTv2',NULL,NULL,'EPSG','9615','NTv2','EPSG','4301','EPSG','4326','ESRI','147',1.0,'EPSG','8656','Latitude and longitude difference file','japan/tky2jgd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108110','Datum_73_To_WGS_1984_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4274','EPSG','4326','EPSG','1294',5.0,-223.237,110.193,36.649,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108111','ED_1950_To_WGS_1984_PT3',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1294',999.0,-86.277,-108.879,-120.181,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108112','Graciosa_Base_SW_1948_To_WGS_1984_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','1301',5.0,-106.226,166.366,-37.893,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108113','Datum_Lisboa_Bessel_To_WGS_1984_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104105','EPSG','4326','EPSG','1294',5.0,508.088,-191.042,565.223,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108114','Datum_Lisboa_Hayford_To_WGS_1984_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104106','EPSG','4326','EPSG','1294',5.0,-304.046,-60.576,103.64,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108115','Porto_Santo_1936_To_WGS_1984_1_IGP',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4615','EPSG','4326','EPSG','2870',5.0,-502.862,-247.438,312.724,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108116','Observatorio_Meteorologico_1939_To_WGS_1984_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37245','EPSG','4326','EPSG','1344',5.0,-422.651,-172.995,84.02,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108117','Sao_Braz_To_WGS_1984_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37249','EPSG','4326','EPSG','1345',5.0,-204.619,140.176,55.226,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108118','ED_1950_To_ETRS_1989_NTv2_Baleares',NULL,NULL,'EPSG','9615','NTv2','EPSG','4230','EPSG','4258','ESRI','146',0.5,'EPSG','8656','Latitude and longitude difference file','spain/baleares',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108119','ED_1950_To_WGS_1984_NTv2_Baleares',NULL,NULL,'EPSG','9615','NTv2','EPSG','4230','EPSG','4326','ESRI','146',1.0,'EPSG','8656','Latitude and longitude difference file','spain/baleares',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108120','Datum_73_To_WGS_1984_2',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4274','EPSG','4326','EPSG','1294',1.0,-239.749,88.181,30.488,'EPSG','9001',-0.26,-0.08,-1.21,'EPSG','9104',2.23,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108121','ED_1950_To_WGS_1984_PT7',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','1294',999.0,-68.863,-134.888,-111.49,'EPSG','9001',0.53,0.14,-0.57,'EPSG','9104',-3.4,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108122','Graciosa_Base_SW_1948_To_WGS_1984_2',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','1301',1.0,-103.088,162.481,-28.276,'EPSG','9001',-0.17,-0.08,-0.17,'EPSG','9104',-1.5,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108123','Datum_Lisboa_Bessel_To_WGS_1984_2',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104105','EPSG','4326','EPSG','1294',1.0,631.392,-66.551,481.442,'EPSG','9001',-1.09,4.445,4.487,'EPSG','9104',-4.43,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108124','Datum_Lisboa_Hayford_To_WGS_1984_2',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104106','EPSG','4326','EPSG','1294',2.0,-288.885,-91.744,126.244,'EPSG','9001',1.69,-0.41,0.21,'EPSG','9104',-4.6,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108125','Porto_Santo_1936_To_WGS_1984_2',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4615','EPSG','4326','EPSG','2870',1.0,-210.502,-66.902,-48.476,'EPSG','9001',-2.094,15.067,5.817,'EPSG','9104',0.485,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108126','ED_1950_To_ETRS_1989_NTv2_Peninsula',NULL,NULL,'EPSG','9615','NTv2','EPSG','4230','EPSG','4258','ESRI','145',0.5,'EPSG','8656','Latitude and longitude difference file','spain/peninsula',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108127','Sao_Braz_To_WGS_1984_2',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','37249','EPSG','4326','EPSG','1345',1.0,-208.719,129.685,52.092,'EPSG','9001',0.2,0.01,-0.33,'EPSG','9104',0.2,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108128','CGRS_1993_To_ETRS_1989',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','6311','EPSG','4258','EPSG','3236',0.5,8.846,-4.394,-1.122,'EPSG','9001',-0.00237,-0.146528,0.130428,'EPSG','9104',0.783926,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108129','CGRS_1993_To_WGS_1984',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','6311','EPSG','4326','EPSG','3236',1.0,8.846,-4.394,-1.122,'EPSG','9001',-0.00237,-0.146528,0.130428,'EPSG','9104',0.783926,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108130','NTF_To_RGF_1993_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4275','EPSG','4171','EPSG','3694',2.0,-168.0,-60.0,320.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108136','ED_1950_To_WGS_1984_NTv2_Peninsula',NULL,NULL,'EPSG','9615','NTv2','EPSG','4230','EPSG','4326','ESRI','145',1.0,'EPSG','8656','Latitude and longitude difference file','spain/peninsula',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','148','Northern Marianas - Rota','Northern Marianas - Rota',14.0,14.75,145.0,146.0,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108137','Guam_1963_To_HARN_Marianas_Rota',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4675','EPSG','4152','ESRI','148',999.0,-96.234,-252.601,258.222,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','149','Northern Marianas - Saipan','Northern Marianas - Saipan',14.75,15.5,145.0,146.0,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108138','Guam_1963_To_HARN_Marianas_Saipan',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4675','EPSG','4152','ESRI','149',999.0,-91.766,-255.817,255.702,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','150','Northern Marianas - Tinian and Aguijan','Northern Marianas - Tinian and Aguijan',14.75,15.13333333333333,145.5,145.75,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108139','Guam_1963_To_HARN_Marianas_Tinian_Aguijan',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4675','EPSG','4152','ESRI','150',999.0,-93.062,-255.309,256.696,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108145','NGO_1948_Oslo_To_WGS_1984',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4817','EPSG','4326','EPSG','1352',5.0,319.08,37.81,463.57,'EPSG','9001',-6.2970588,1.2903926,5.712916338,'EPSG','9104',10.819,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108146','NGO_1948_Oslo_To_ETRS_1989_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4817','EPSG','4258','EPSG','1352',3.0,278.3,93.0,474.5,'EPSG','9001',7.889,0.05,-6.61,'EPSG','9104',6.21,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108147','NGO_1948_Oslo_To_WGS_1984_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4817','EPSG','4326','EPSG','1352',3.0,278.3,93.0,474.5,'EPSG','9001',7.889,0.05,-6.61,'EPSG','9104',6.21,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108148','NAD_1983_CORS96_To_NAD_1983_HARN',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6783','EPSG','4152','EPSG','1324',0.1,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108149','NAD_1983_CORS96_To_NAD_1983_NSRS2007',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6783','EPSG','4759','EPSG','1324',0.1,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108150','ITRF_2000_To_NAD_1983_CORS96',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8997','EPSG','6783','EPSG','1511',0.1,0.9956,-1.9013,-0.5215,'EPSG','9001',0.025915,0.009426,0.011599,'EPSG','9104',0.00062,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108151','WGS_1984_(ITRF00)_To_NAD_1983_CORS96',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','6783','EPSG','1511',0.1,0.9956,-1.9013,-0.5215,'EPSG','9001',0.025915,0.009426,0.011599,'EPSG','9104',0.00062,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108153','Datum_73_To_WGS_1984_2009_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4274','EPSG','4326','EPSG','1294',0.4,-230.994,102.591,25.199,'EPSG','9001',0.633,-0.239,0.9,'EPSG','9104',1.95,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108155','Datum_73_To_WGS_1984_2009_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4274','EPSG','4326','EPSG','1294',0.9,-223.15,110.132,36.711,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108156','Datum_Lisboa_Hayford_To_ETRS_1989_2009_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','104106','EPSG','4258','EPSG','1294',1.5,-283.088,-70.693,117.445,'EPSG','9001',-1.157,0.059,-0.652,'EPSG','9104',-4.058,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108157','Datum_Lisboa_Hayford_To_WGS_1984_2009_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','104106','EPSG','4326','EPSG','1294',1.5,-283.088,-70.693,117.445,'EPSG','9001',-1.157,0.059,-0.652,'EPSG','9104',-4.058,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108158','Datum_Lisboa_Hayford_To_ETRS_1989_2009_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104106','EPSG','4258','EPSG','1294',1.7,-303.861,-60.693,103.607,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108159','Datum_Lisboa_Hayford_To_WGS_1984_2009_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104106','EPSG','4326','EPSG','1294',1.7,-303.861,-60.693,103.607,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108160','Porto_Santo_1936_To_PTRA08_1_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4615','EPSG','5013','EPSG','1314',0.05,-160.41,-21.066,-99.282,'EPSG','9001',2.437,-17.25,-7.446,'EPSG','9104',0.168,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108161','Porto_Santo_1936_To_PTRA08_2_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4615','EPSG','5013','EPSG','3679',0.05,-303.956,224.556,214.306,'EPSG','9001',9.405,-6.626,-12.583,'EPSG','9104',1.327,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108162','Porto_Santo_1936_To_PTRA08_3_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4615','EPSG','5013','EPSG','3680',0.002,-494.088,-312.129,279.877,'EPSG','9001',-1.423,-1.013,1.59,'EPSG','9104',-0.748,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108163','Porto_Santo_1936_To_PTRA08_1_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4615','EPSG','5013','EPSG','1314',0.3,-503.229,-247.375,312.582,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108164','Porto_Santo_1936_To_PTRA08_2_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4615','EPSG','5013','EPSG','3679',0.14,-503.174,-247.255,312.316,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108165','Porto_Santo_1936_To_PTRA08_3_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4615','EPSG','5013','EPSG','3680',0.12,-503.3,-247.574,313.025,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108166','Porto_Santo_1936_To_WGS_1984_1_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4615','EPSG','4326','EPSG','1314',0.1,-160.41,-21.066,-99.282,'EPSG','9001',2.437,-17.25,-7.446,'EPSG','9104',0.168,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108167','Porto_Santo_1936_To_WGS_1984_2_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4615','EPSG','4326','EPSG','3679',0.1,-303.956,224.556,214.306,'EPSG','9001',9.405,-6.626,-12.583,'EPSG','9104',1.327,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108168','Porto_Santo_1936_To_WGS_1984_3_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4615','EPSG','4326','EPSG','3680',0.01,-494.088,-312.129,279.877,'EPSG','9001',-1.423,-1.013,1.59,'EPSG','9104',-0.748,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108169','Porto_Santo_1936_To_WGS_1984_1_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4615','EPSG','4326','EPSG','1314',0.5,-503.229,-247.375,312.582,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108170','Porto_Santo_1936_To_WGS_1984_2_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4615','EPSG','4326','EPSG','3679',0.3,-503.174,-247.255,312.316,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108171','Porto_Santo_1936_To_WGS_1984_3_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4615','EPSG','4326','EPSG','3680',0.3,-503.3,-247.574,313.025,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108172','Sao_Braz_To_PTRA08_1_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37249','EPSG','5013','EPSG','1345',0.025,-269.089,186.247,155.667,'EPSG','9001',2.005,3.606,-0.366,'EPSG','9104',0.097,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108173','Sao_Braz_To_PTRA08_2_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37249','EPSG','5013','EPSG','2871',0.03,-249.507,179.302,119.92,'EPSG','9001',1.406,2.423,-0.479,'EPSG','9104',0.952,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','151','Azores - Santa Maria Island','Azores - Santa Maria Island',36.9,37.1,-25.25,-24.95,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108174','Sao_Braz_To_PTRA08_3_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37249','EPSG','5013','ESRI','151',0.01,-440.296,58.548,296.265,'EPSG','9001',1.128,10.202,4.559,'EPSG','9104',-0.438,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108175','Sao_Braz_To_PTRA08_1_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37249','EPSG','5013','EPSG','1345',0.8,-204.926,140.353,55.063,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108176','Sao_Braz_To_PTRA08_2_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37249','EPSG','5013','EPSG','2871',0.8,-204.519,140.159,55.404,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108177','Sao_Braz_To_PTRA08_3_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37249','EPSG','5013','ESRI','151',0.8,-205.808,140.771,54.326,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108178','Sao_Braz_To_WGS_1984_1_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37249','EPSG','4326','EPSG','1345',0.035,-269.089,186.247,155.667,'EPSG','9001',2.005,3.606,-0.366,'EPSG','9104',0.097,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108179','Sao_Braz_To_WGS_1984_2_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37249','EPSG','4326','EPSG','2871',0.04,-249.507,179.302,119.92,'EPSG','9001',1.406,2.423,-0.479,'EPSG','9104',0.952,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108180','Sao_Braz_To_WGS_1984_3_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37249','EPSG','4326','ESRI','151',0.03,-440.296,58.548,296.265,'EPSG','9001',1.128,10.202,4.559,'EPSG','9104',-0.438,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108181','Sao_Braz_To_WGS_1984_1_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37249','EPSG','4326','EPSG','1345',0.9,-204.926,140.353,55.063,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108182','Sao_Braz_To_WGS_1984_2_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37249','EPSG','4326','EPSG','2871',0.9,-204.519,140.159,55.404,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108183','Sao_Braz_To_WGS_1984_3_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37249','EPSG','4326','ESRI','151',0.9,-205.808,140.771,54.326,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108184','Graciosa_1948_To_PTRA08_1_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','1301',0.18,-185.391,122.266,35.989,'EPSG','9001',0.12,3.18,2.046,'EPSG','9104',-1.053,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108185','Graciosa_1948_To_PTRA08_2_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','2873',0.005,-76.822,257.457,-12.817,'EPSG','9001',2.136,-0.033,-2.392,'EPSG','9104',-0.031,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108186','Graciosa_1948_To_PTRA08_3_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','3681',0.004,-210.371,49.768,0.808,'EPSG','9001',-2.036,3.046,3.709,'EPSG','9104',0.934,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108187','Graciosa_1948_To_PTRA08_4_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','2874',0.4,-364.422,243.651,274.822,'EPSG','9001',5.477,12.092,1.538,'EPSG','9104',2.243,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108188','Graciosa_1948_To_PTRA08_5_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','2875',0.007,-201.545,109.048,32.218,'EPSG','9001',-0.286,3.471,2.443,'EPSG','9104',0.309,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108189','Graciosa_1948_To_PTRA08_6_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','2872',0.005,-216.355,107.044,48.015,'EPSG','9001',-0.204,4.158,2.605,'EPSG','9104',0.297,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108190','WGS_1984_(ITRF00)_To_NAD_1983',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','4269','EPSG','1511',0.1,0.9956,-1.9013,-0.5215,'EPSG','9001',0.025915,0.009426,0.011599,'EPSG','9104',0.00062,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108192','DHDN_To_ETRF_1989',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4314','EPSG','9059','EPSG','2326',5.0,582.0,105.0,414.0,'EPSG','9001',-1.04,-0.35,3.08,'EPSG','9104',8.3,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108193','ED_1950_To_ETRF_1989_1',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4230','EPSG','9059','EPSG','2601',1.0,-116.641,-56.931,-110.559,'EPSG','9001',0.893,0.921,-0.917,'EPSG','9104',-3.52,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108194','Estonia_1992_To_ETRF_1989',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4133','EPSG','9059','EPSG','3246',0.1,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108195','ETRF_1989_To_WGS_1984',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','9059','EPSG','4326','EPSG','1298',1.0,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108196','Hungarian_1972_To_ETRF_1989_1',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4237','EPSG','9059','EPSG','1119',1.0,56.0,-75.77,-15.31,'EPSG','9001',0.37,0.2,0.21,'EPSG','9104',1.01,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108197','IRENET95_To_ETRF_1989',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4173','EPSG','9059','EPSG','1305',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108198','Pulkovo_1942_To_ETRF_1989',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4284','EPSG','9059','EPSG','1343',2.0,24.0,-123.0,-94.0,'EPSG','9001',-0.02,0.25,0.13,'EPSG','9104',1.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108199','RGF_1993_To_ETRF_1989_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4171','EPSG','9059','EPSG','1096',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108201','NGO_1948_To_WGS_1984',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4273','EPSG','4326','EPSG','1352',5.0,319.08,37.81,463.57,'EPSG','9001',-6.2970588,1.2903926,5.712916338,'EPSG','9104',10.819,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108202','S_JTSK_To_Pulkovo_1942',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4156','EPSG','4284','EPSG','1079',1.0,544.8,206.7,540.8,'EPSG','9001',4.998,1.587,5.261,'EPSG','9104',3.56,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108206','DHDN_To_WGS_1984_3x',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4326','EPSG','2543',0.1,597.1,71.4,412.1,'EPSG','9001',0.894,0.068,-1.563,'EPSG','9104',7.58,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108207','DHDN_To_WGS_1984_4x',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4326','EPSG','2542',0.1,584.8,67.0,400.3,'EPSG','9001',0.105,0.013,-2.378,'EPSG','9104',10.29,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108208','DHDN_To_WGS_1984_5x',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4326','EPSG','2541',0.1,590.5,69.5,411.6,'EPSG','9001',-0.796,-0.052,-3.601,'EPSG','9104',8.3,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108209','DHDN_To_WGS_1984_6x',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4326','EPSG','2544',0.1,599.4,72.4,419.2,'EPSG','9001',-0.062,-0.022,-2.723,'EPSG','9104',6.46,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108210','DHDN_To_WGS_1984_7x',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','4314','EPSG','4326','EPSG','2545',0.1,612.4,77.0,440.2,'EPSG','9001',-0.054,0.057,-2.797,'EPSG','9104',2.55,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108211','WGS_1984_To_Observatorio_Meteorologico_1965_1',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','ESRI','104126','EPSG','1147',999.0,148.635396,339.470115,157.265381,'EPSG','9001',32.87685,-76.963371,-32.622853,'EPSG','9104',-8.204889,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108212','SWEREF99_To_RT90',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4619','EPSG','4124','EPSG','1225',999.0,-414.1055246174168,-41.3265500041888,-603.0582474221075,'EPSG','9001',-0.8551163376151379,2.141317405481035,-7.022729828586432,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108213','WGS_1984_To_RT90',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','4124','EPSG','1225',999.0,-414.0978567149,-41.3381489658,-603.0627177516,'EPSG','9001',-0.8550434314,2.1413465185,-7.0227209516,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','152','Iceland - NADCON','Iceland - NADCON',63.2700005,66.6600003,-24.6499996,-13.2499999,0); INSERT INTO "grid_transformation" VALUES('ESRI','108214','ISN_1993_To_ISN_2004',NULL,NULL,'EPSG','9615','NTv2','EPSG','4659','EPSG','5324','ESRI','152',0.05,'EPSG','8656','Latitude and longitude difference file','icegrid2004',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108216','ISN_2004_To_ISN_1993',NULL,NULL,'EPSG','9615','NTv2','EPSG','5324','EPSG','4659','ESRI','152',0.05,'EPSG','8656','Latitude and longitude difference file','ICEGRID93',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108217','La_Canoa_To_SIRGAS',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4247','EPSG','4170','EPSG','3327',15.0,-270.933,115.599,-360.226,'EPSG','9001',-5.266,-1.238,2.381,'EPSG','9104',-5.109,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2464351.594,-5783466.613,974809.808,'EPSG','9001',NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108220','Palestine_1923_To_WGS_1984_1X',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4281','EPSG','4326','EPSG','1126',1.5,-181.0,-122.0,225.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108222','Datum_Lisboa_Hayford_To_Datum_73_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104106','EPSG','4274','EPSG','1294',5.0,-80.809,-170.77,66.991,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108223','Datum_Lisboa_Hayford_To_Datum_73_2',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104106','EPSG','4274','EPSG','1294',5.0,-49.137,-179.924,95.757,'EPSG','9001',1.955,-0.328,1.423,'EPSG','9104',-6.827,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108224','Datum_Lisboa_Hayford_To_Datum_Lisboa_Bessel_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104106','ESRI','104105','EPSG','1294',5.0,-812.134,130.465,-461.583,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108225','Datum_Lisboa_Hayford_To_Datum_Lisboa_Bessel_2',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104106','ESRI','104105','EPSG','1294',5.0,-920.281,-25.191,-355.2,'EPSG','9001',2.781,-4.855,-4.276,'EPSG','9104',-0.168,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108226','EUREF_FIN_To_ETRS_1989',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104129','EPSG','4258','EPSG','1095',1.0,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108227','EUREF_FIN_To_WGS_1984',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104129','EPSG','4326','EPSG','1095',1.0,0.0,0.0,0.0,'EPSG','9001',0.0,0.0,0.0,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108229','KKJ_To_EUREF_FIN',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4123','ESRI','104129','EPSG','3333',1.0,-96.0617,-82.4278,-121.7535,'EPSG','9001',-4.80107,-0.34543,1.37646,'EPSG','9104',1.4964,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108232','Palestine_1923_To_WGS_1984_2X',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4281','EPSG','4326','EPSG','2602',999.0,-219.247,-73.802,269.529,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108233','Jordan_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104130','EPSG','4326','EPSG','1130',999.0,-86.0,-98.0,-119.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108234','Observatorio_Meteorologico_1965_To_WGS_1984_2',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','ESRI','104126','EPSG','4326','EPSG','1147',999.0,-203.35,-302.66,-155.23,'EPSG','9001',-33.338,76.825,32.412,'EPSG','9104',7.926,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,-2361564.77,5417538.39,2391581.09,'EPSG','9001',NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108235','WGS_1984_To_Observatorio_Meteorologico_1965_2',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4326','ESRI','104126','EPSG','1147',999.0,203.35,302.66,155.23,'EPSG','9001',33.326,-76.831,-32.4,'EPSG','9104',-7.926,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,-2361768.11,5417235.73,2391425.86,'EPSG','9001',NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108237','Amersfoort_To_WGS_1984_4X',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4289','EPSG','4326','EPSG','1275',0.75,593.0297,26.0038,478.7534,'EPSG','9001',0.4068573303223975,-0.3507326765425626,1.870347383606796,'EPSG','9104',4.0812,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3903453.1482,368135.3134,5012970.3051,'EPSG','9001',NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108240','Graciosa_1948_To_PTRA08_1_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','1301',0.19,-105.679,166.1,-37.322,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108241','Graciosa_1948_To_PTRA08_2_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','2873',0.068,-105.377,165.769,-36.965,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108242','Graciosa_1948_To_PTRA08_3_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','3681',0.064,-105.359,165.804,-37.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108243','Graciosa_1948_To_PTRA08_4_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','2874',0.1,-105.531,166.39,-37.326,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108244','Graciosa_1948_To_PTRA08_5_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','2875',0.7,-105.756,165.972,-37.313,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108245','Graciosa_1948_To_PTRA08_6_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','5013','EPSG','2872',0.07,-106.235,166.236,-37.768,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108246','Graciosa_1948_To_WGS_1984_1_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','1301',0.5,-185.391,122.266,35.989,'EPSG','9001',0.12,3.18,2.046,'EPSG','9104',-1.053,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108247','Graciosa_1948_To_WGS_1984_2_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','2873',0.01,-76.822,257.457,-12.817,'EPSG','9001',2.136,-0.033,-2.392,'EPSG','9104',-0.031,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108248','Graciosa_1948_To_WGS_1984_3_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','3681',0.01,-210.371,49.768,0.808,'EPSG','9001',-2.036,3.046,3.709,'EPSG','9104',0.934,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108249','Graciosa_1948_To_WGS_1984_4_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','2874',0.5,-364.422,243.651,274.822,'EPSG','9001',5.477,12.092,1.538,'EPSG','9104',2.243,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108250','Graciosa_1948_To_WGS_1984_5_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','2875',0.01,-201.545,109.048,32.218,'EPSG','9001',-0.286,3.471,2.443,'EPSG','9104',0.309,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108251','Graciosa_1948_To_WGS_1984_6_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','2872',0.01,-216.355,107.044,48.015,'EPSG','9001',-0.204,4.158,2.605,'EPSG','9104',0.297,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108259','DOS_1968_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37218','EPSG','4326','EPSG','3198',44.0,230.0,-199.0,-752.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108261','Estonia_1937_To_WGS_1984_NGA',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104101','EPSG','4326','EPSG','1090',0.1,374.0,150.0,588.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108262','Fort_Thomas_1955_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37240','EPSG','4326','EPSG','1200',44.0,-7.0,215.0,225.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108263','GUX_1_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37221','EPSG','4326','EPSG','3197',44.0,252.0,-209.0,-751.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108264','Hermannskogel_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104102','EPSG','4326','EPSG','2370',999.0,682.0,-203.0,480.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108265','Voirol_Unifie_1960_Grad_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','4305','EPSG','4326','EPSG','1365',44.0,-123.0,-206.0,219.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108269','South_Asia_Singapore_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37207','EPSG','4326','EPSG','1210',999.0,7.0,-10.0,-26.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108272','Estonia_1937_To_ETRS_1989',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104101','EPSG','4258','EPSG','1090',0.1,372.87,149.23,585.29,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108276','D48_To_ETRS_1989',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','104131','EPSG','4258','EPSG','1212',3.0,426.62,142.62,460.09,'EPSG','9001',4.98,4.49,-12.42,'EPSG','9104',-17.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108277','D48_To_WGS_1984',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','104131','EPSG','4326','EPSG','1212',3.0,426.62,142.62,460.09,'EPSG','9001',4.98,4.49,-12.42,'EPSG','9104',-17.1,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108278','Voirol_1875_Grad_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104139','EPSG','4326','EPSG','1365',44.0,-73.0,-247.0,227.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108279','Merchich_Degree_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104261','EPSG','4326','EPSG','3280',7.0,31.0,146.0,47.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108280','ITRF_2000_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','8997','EPSG','4326','EPSG','1262',0.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108281','ITRF_2000_To_NAD_1983_HARN',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8997','EPSG','4152','EPSG','1324',0.1,0.9956,-1.9013,-0.5215,'EPSG','9001',0.025915,0.009426,0.011599,'EPSG','9104',0.00062,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108282','WGS_1984_(ITRF00)_To_NAD_1983_HARN',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','4152','EPSG','1324',0.1,0.9956,-1.9013,-0.5215,'EPSG','9001',0.025915,0.009426,0.011599,'EPSG','9104',0.00062,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108283','Ocotepeque_1935_To_WGS_1984_RN',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','EPSG','5451','EPSG','4326','EPSG','3232',999.0,6.41,-49.05,-11.28,'EPSG','9001',1.5657,0.5242,6.9718,'EPSG','9104',-5.7649,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108286','MONREF_1997_To_MSK_1942_1',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104134','ESRI','104135','EPSG','1164',999.0,78.0421780299,204.5186132514,77.449861533,'EPSG','9001',-1.7736709695,3.3197917322,-1.0426077127,'EPSG','9104',-4.95105766,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108287','MONREF_1997_To_MSK_1942_2',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104134','ESRI','104135','EPSG','1164',999.0,-12.6212134867,138.667639968,73.9961390849,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108288','MONREF_1997_To_Pulkovo_1942_1',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104134','EPSG','4284','EPSG','1164',999.0,78.0421780299,204.5186132514,77.449861533,'EPSG','9001',-1.7736709695,3.3197917322,-1.0426077127,'EPSG','9104',-4.95105766,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108289','MONREF_1997_To_Pulkovo_1942_2',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104134','EPSG','4284','EPSG','1164',999.0,-12.6212134867,138.667639968,73.9961390849,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108290','MAGNA_To_SIRGAS',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4686','EPSG','4170','EPSG','1070',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108292','Graciosa_1948_To_WGS_1984_1_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','1301',0.3,-105.679,166.1,-37.322,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108293','Graciosa_1948_To_WGS_1984_2_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','2873',0.2,-105.377,165.769,-36.965,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108294','Graciosa_1948_To_WGS_1984_3_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','3681',0.1,-105.359,165.804,-37.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108295','Graciosa_1948_To_WGS_1984_4_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','2874',0.3,-105.531,166.39,-37.326,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108296','Graciosa_1948_To_WGS_1984_5_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','2875',0.9,-105.756,165.972,-37.313,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108297','Graciosa_1948_To_WGS_1984_6_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37241','EPSG','4326','EPSG','2872',0.2,-106.235,166.236,-37.768,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','153','USA - Idaho and Montana','USA - Idaho and Montana',41.0,49.38,-119.0,-104.0,0); INSERT INTO "grid_transformation" VALUES('ESRI','108298','NAD_1983_To_HARN_Montana_Idaho',NULL,NULL,'EPSG','9615','NTv2','EPSG','4269','EPSG','4152','ESRI','153',0.05,'EPSG','8656','Latitude and longitude difference file','imhpgn',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108299','Guam_1963_To_WGS_1984_Saipan',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4675','EPSG','4326','ESRI','149',999.0,59.935,118.4,-10.871,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108300','NAD_1983_HARN_To_WGS_1984_Saipan',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4152','EPSG','4326','ESRI','149',999.0,1.2,0.4,0.55,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108302','ATS_1977_To_NAD_1983_CSRS_NTv2_Maritimes',NULL,NULL,'EPSG','9615','NTv2','EPSG','4122','EPSG','4617','EPSG','1283',999.0,'EPSG','8656','Latitude and longitude difference file','canada/GS7783',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108303','Pohnpei_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104109','EPSG','4326','EPSG','1161',999.0,-89.121,-348.182,260.871,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108304','Guam_1963_To_NAD_1983_HARN_Saipan',NULL,NULL,'EPSG','9615','NTv2','EPSG','4675','EPSG','4152','ESRI','149',999.0,'EPSG','8656','Latitude and longitude difference file','c1hpgn',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO grid_alternatives VALUES ('c1hpgn', 'c1hpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO "grid_transformation" VALUES('ESRI','108305','Guam_1963_To_NAD_1983_HARN_Rota',NULL,NULL,'EPSG','9615','NTv2','EPSG','4675','EPSG','4152','ESRI','148',999.0,'EPSG','8656','Latitude and longitude difference file','c2hpgn',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO grid_alternatives VALUES ('c2hpgn', 'c2hpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO "grid_transformation" VALUES('ESRI','108306','Old_Hawaiian_To_NAD_1983_HARN_Hawaii',NULL,NULL,'EPSG','9615','NTv2','EPSG','4135','EPSG','4152','EPSG','1334',0.05,'EPSG','8656','Latitude and longitude difference file','ohdhihpgn',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','154','Pacific - USA interests Pacific and Mariana plates','Pacific - USA interests Pacific and Mariana plates',-17.56,31.8,129.48,-151.27,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108307','NAD_1983_HARN_PACP00_MARP00_To_WGS_1984',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4152','EPSG','4326','ESRI','154',999.0,-0.9102,2.0141,0.5602,'EPSG','9001',-0.029039,-0.010065,-0.010101,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108330','Old_Hawaiian_Intl_1924_To_WGS_1984_Mean',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104138','EPSG','4326','EPSG','1334',38.0,201.0,-228.0,-346.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108331','Old_Hawaiian_Intl_1924_To_WGS_1984_Hawaii',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104138','EPSG','4326','EPSG','1546',44.0,229.0,-222.0,-348.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108332','Old_Hawaiian_Intl_1924_To_WGS_1984_Kauai',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104138','EPSG','4326','EPSG','1549',35.0,185.0,-233.0,-337.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108333','Old_Hawaiian_Intl_1924_To_WGS_1984_Maui',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104138','EPSG','4326','EPSG','1547',44.0,205.0,-233.0,-355.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108334','Old_Hawaiian_Intl_1924_To_WGS_1984_Oahu',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104138','EPSG','4326','EPSG','1548',14.0,198.0,-226.0,-347.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108335','ED_1950_To_WGS_1984_NGA_7PAR',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4230','EPSG','4326','EPSG','2420',10.0,-102.0,-102.0,-129.0,'EPSG','9001',0.413,-0.184,0.385,'EPSG','9104',2.4664,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108336','OSGB_1936_To_WGS_1984_NGA_7PAR',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4277','EPSG','4326','EPSG','1264',21.0,446.0,-99.0,544.0,'EPSG','9001',-0.945,-0.261,-0.435,'EPSG','9104',-20.8927,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108337','Hong_Kong_1980_To_ITRF_1996',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4611','EPSG','8995','EPSG','1118',1.0,-162.619,-276.959,-161.764,'EPSG','9001',-0.067753,2.243648,1.158828,'EPSG','9104',-1.094246,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108341','Observatorio_Meteorologico_1939_To_PTRA08_1_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37245','EPSG','5013','EPSG','1344',0.03,-487.978,-226.275,102.787,'EPSG','9001',-0.743,1.677,2.087,'EPSG','9104',1.485,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('ESRI','155','Azores - Flores Island','Azores - Flores Island',39.35,39.5,-31.3,-31.1,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108342','Observatorio_Meteorologico_1939_To_PTRA08_2_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37245','EPSG','5013','ESRI','155',0.02,-511.151,-181.269,139.609,'EPSG','9001',1.05,2.703,1.798,'EPSG','9104',3.071,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108343','Observatorio_Meteorologico_1939_To_PTRA08_3_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37245','EPSG','5013','EPSG','3685',0.07,-1333.976,-487.235,945.031,'EPSG','9001',6.674,35.963,20.438,'EPSG','9104',-11.187,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108344','Observatorio_Meteorologico_1939_To_PTRA08_1_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37245','EPSG','5013','EPSG','1344',0.06,-423.058,-172.868,83.772,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108345','Observatorio_Meteorologico_1939_To_PTRA08_2_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37245','EPSG','5013','ESRI','155',0.056,-423.053,-172.871,83.771,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108346','Observatorio_Meteorologico_1939_To_PTRA08_3_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37245','EPSG','5013','EPSG','3685',0.064,-423.024,-172.923,83.83,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108347','Observatorio_Meteorologico_1939_To_WGS_1984_1_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37245','EPSG','4326','EPSG','1344',0.06,-487.978,-226.275,102.787,'EPSG','9001',-0.743,1.677,2.087,'EPSG','9104',1.485,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108348','Observatorio_Meteorologico_1939_To_WGS_1984_2_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37245','EPSG','4326','ESRI','155',0.05,-511.151,-181.269,139.609,'EPSG','9001',1.05,2.703,1.798,'EPSG','9104',3.071,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108349','Observatorio_Meteorologico_1939_To_WGS_1984_3_7par',NULL,NULL,'EPSG','9606','Position Vector transformation (geog2D domain)','ESRI','37245','EPSG','4326','EPSG','3685',0.1,-1333.976,-487.235,945.031,'EPSG','9001',6.674,35.963,20.438,'EPSG','9104',-11.187,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108350','Observatorio_Meteorologico_1939_To_WGS_1984_1_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37245','EPSG','4326','EPSG','1344',0.1,-423.058,-172.868,83.772,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108351','Observatorio_Meteorologico_1939_To_WGS_1984_2_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37245','EPSG','4326','ESRI','155',0.08,-423.053,-172.871,83.771,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108352','Observatorio_Meteorologico_1939_To_WGS_1984_3_3par',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','37245','EPSG','4326','EPSG','3685',0.085,-423.024,-172.923,83.83,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108353','ITRF_2000_To_NAD_1983_2011',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8997','EPSG','6318','EPSG','1511',0.1,0.9956,-1.9013,-0.5215,'EPSG','9001',0.025915,0.009426,0.011599,'EPSG','9104',0.00062,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108354','WGS_1984_(ITRF00)_To_NAD_1983_2011',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','6318','EPSG','1511',0.1,0.9956,-1.9013,-0.5215,'EPSG','9001',0.025915,0.009426,0.011599,'EPSG','9104',0.00062,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108355','NAD_1983_HARN_To_NAD_1983_2011',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4152','EPSG','6318','EPSG','1324',0.1,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108356','NAD_1983_NSRS2007_To_NAD_1983_2011',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4759','EPSG','6318','EPSG','1324',0.1,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108357','NAD_1983_CORS96_To_NAD_1983_2011',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','6783','EPSG','6318','EPSG','1324',0.1,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108359','ED_1950_To_WGS_1984_NTv2_Catalonia',NULL,NULL,'EPSG','9615','NTv2','EPSG','4230','EPSG','4326','EPSG','3732',0.05,'EPSG','8656','Latitude and longitude difference file','spain/100800401',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108360','ITRF_2008_To_NAD_1983_2011',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8999','EPSG','6318','EPSG','1511',0.03,0.99343,-1.90331,-0.52655,'EPSG','9001',0.02591467,0.00942645,0.01159935,'EPSG','9104',0.00171504,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108361','ITRF_2008_To_NAD_1983_MA11',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8999','EPSG','6325','EPSG','4167',0.05,0.908,-2.0161,-0.5653,'EPSG','9001',0.028971,0.01042,0.008928,'EPSG','9104',0.0011,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108362','ITRF_2008_To_NAD_1983_PA11',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','8999','EPSG','6322','EPSG','4162',0.05,0.908,-2.0161,-0.5653,'EPSG','9001',0.027741,0.013469,0.002712,'EPSG','9104',0.0011,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108363','WGS_1984_(ITRF08)_To_NAD_1983_2011',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','6318','EPSG','1511',0.03,0.99343,-1.90331,-0.52655,'EPSG','9001',0.02591467,0.00942645,0.01159935,'EPSG','9104',0.00171504,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108364','WGS_1984_(ITRF08)_To_NAD_1983_MA11',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','6325','EPSG','4167',0.05,0.908,-2.0161,-0.5653,'EPSG','9001',0.028971,0.01042,0.008928,'EPSG','9104',0.0011,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108365','WGS_1984_(ITRF08)_To_NAD_1983_PA11',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','6322','EPSG','4162',0.05,0.908,-2.0161,-0.5653,'EPSG','9001',0.027741,0.013469,0.002712,'EPSG','9104',0.0011,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108366','WGS_1984_To_Ain_El_Abd_1970_MB',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4326','EPSG','4204','EPSG','1040',0.1,151.9082,251.0907,-0.2276,'EPSG','9001',-0.91646,-1.0469,3.21042,'EPSG','9104',-5.2723,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3641909.2287,4425312.2897,2789434.9636,'EPSG','9001',NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108367','GGD_To_Pulkovo_1942',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','ESRI','104022','EPSG','4284','EPSG','3251',0.11,-15.626,126.0343,79.3775,'EPSG','9001',-1.2753,-1.42112,2.69445,'EPSG','9104',4.5284,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3445619.6689,3275369.7555,4236015.9558,'EPSG','9001',NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108368','GGD_To_ITRF_1993',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','ESRI','104022','EPSG','8993','EPSG','3251',0.03,0.3452,-0.1805,-0.206,'EPSG','9001',-0.05465,0.06718,-0.06143,'EPSG','9104',0.0181,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3419202.2774,3284301.1262,4251887.7897,'EPSG','9001',NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108369','CH1903+_To_ETRS_1989_NTv2',NULL,NULL,'EPSG','9615','NTv2','EPSG','4150','EPSG','4258','EPSG','1286',0.1,'EPSG','8656','Latitude and longitude difference file','switzerland/ntv2-ch03p-etrs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108370','CH1903+_To_CHTRF95_NTv2',NULL,NULL,'EPSG','9615','NTv2','EPSG','4150','EPSG','4151','EPSG','1286',0.1,'EPSG','8656','Latitude and longitude difference file','switzerland/ntv2-ch03p-etrs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108371','ONGD17_To_ITRF_1989',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104027','EPSG','8989','EPSG','1183',0.1,1.16835,-1.42001,-2.24431,'EPSG','9001',0.00822,0.05508,-0.01818,'EPSG','9104',0.23388,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108372','ONGD17_To_WGS_1984',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','ESRI','104027','EPSG','4326','EPSG','1183',0.1,1.16835,-1.42001,-2.24431,'EPSG','9001',0.00822,0.05508,-0.01818,'EPSG','9104',0.23388,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108374','Dealul_Piscului_1970_To_WGS_1984_3X',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4317','EPSG','4326','EPSG','1197',3.0,2.3287,-147.0425,-92.0802,'EPSG','9001',0.3092483,-0.32482185,-0.49729934,'EPSG','9104',5.68906266,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108375','Dealul_Piscului_1970_To_ETRS_1989_1X',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4317','EPSG','4258','EPSG','1197',3.0,2.3287,-147.0425,-92.0802,'EPSG','9001',0.3092483,-0.32482185,-0.49729934,'EPSG','9104',5.68906266,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108376','Barbados_1938_To_WGS_1984_2X',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4212','EPSG','4326','EPSG','3218',0.15,-267.434,173.496,181.814,'EPSG','9001',13.4704,-8.7154,-7.3926,'EPSG','9104',14.7492,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108377','NAD_1983_HARN_To_NAD_1983_MA11',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4152','EPSG','6325','EPSG','4167',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108448','Bab_South_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104112','EPSG','4326','EPSG','1185',999.0,-185.583,-230.096,281.361,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108449','Majuro_To_WGS_1984',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','ESRI','104113','EPSG','4326','EPSG','1155',999.0,25.1,-275.6,222.6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108450','NAD_1983_HARN_To_NAD_1983_PA11_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4152','EPSG','6322','EPSG','4162',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108451','WGS_1984_To_KUDAMS_KM_2019',NULL,NULL,'EPSG','9607','Coordinate Frame rotation (geog2D domain)','EPSG','4326','EPSG','4319','EPSG','1136',0.3,-6.1075,-6.4151,-4.9032,'EPSG','9001',1.16158,1.29682,1.91627,'EPSG','9104',0.0,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108452','Padang_To_WGS_1984_1',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4280','EPSG','4326','EPSG','1355',6.0,-377.0,681.0,-50.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108453','AGD_1984_To_GDA_1994_NTv2_Queensland',NULL,NULL,'EPSG','9615','NTv2','EPSG','4203','EPSG','4283','EPSG','4021',0.1,'EPSG','8656','Latitude and longitude difference file','australia/QLD_0900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('ESRI','108457','Amersfoort_To_WGS_1984_2008_MB',NULL,NULL,'EPSG','9636','Molodensky-Badekas (CF geog2D domain)','EPSG','4289','EPSG','4326','EPSG','1275',0.5,593.0248,25.9984,478.7459,'EPSG','9001',0.3989573882431337,-0.3439878173782826,1.877401639980446,'EPSG','9104',4.0725,'EPSG','9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3903453.1482,368135.3134,5012970.3051,'EPSG','9001',NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108471','RGNC_1991_To_IGN72_Grande_Terre_NTv2',NULL,NULL,'EPSG','9615','NTv2','EPSG','4645','EPSG','4662','EPSG','2822',0.1,'EPSG','8656','Latitude and longitude difference file','france/RGNC1991_IGN72GrandeTerre',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "grid_transformation" VALUES('ESRI','108472','RGNC_1991_To_NEA74_Noumea_NTv2',NULL,NULL,'EPSG','9615','NTv2','EPSG','4645','EPSG','4644','EPSG','2823',999.0,'EPSG','8656','Latitude and longitude difference file','france/RGNC1991_NEA74Noumea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); --- This file has been generated by scripts/build_db_create_ignf_from_xml.py from the http://librairies.ign.fr/geoportail/resources/IGNF.xml definition file. DO NOT EDIT ! INSERT INTO "metadata" VALUES('IGNF.SOURCE', 'https://geodesie.ign.fr/contenu/fichiers/IGNF.v3.1.0.xml'); INSERT INTO "metadata" VALUES('IGNF.VERSION', '3.1.0'); INSERT INTO "metadata" VALUES('IGNF.DATE', '2019-05-24'); INSERT INTO "ellipsoid" VALUES('IGNF','ELG032','SPHERE PICARD',NULL,'PROJ', 'EARTH', 6371598,'EPSG','9001',0,NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA052','BORA_SAU 2001',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5530001','CADASTRE 1953-1954 (ATOLL RAIVAVAE)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5680001','CADASTRE 1980 (ATOLL APATAKI)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG7010001','CADASTRE 1997',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0100001','CAP BIENVENUE - PERROUD 1955',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0110001','CAP JULES - PERROUD 1955',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5060001','CLIPPERTON (MARINE 1967)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0130001','CROZET-POSSESSION 1963',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG4070101','CSG 1967 (IGN 1995)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA018','DANGER 1950 (SAINT-PIERRE-ET-MIQUELON)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5050001','EFATE-IGN 1957',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA034','EPF 1952 (ILE DES PETRELS)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG3790001','EUROPA (MHM 1954)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA122','EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA125','EVRF2007 (EUROPEAN VERTICAL REFERENCE FRAME 2007)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5690001','FG 1949 (ATOLL APATAKI)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG3800001','GLORIEUSES (MHG 1977)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG4260001','GUADELOUPE - FORT MARIGOT',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA051','HUAHINE_SAU 2001',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA026','IGN 1962 (KERGUELEN)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5630001','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA028','IGN 1966 (TAHITI)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5870001','IGN 1978 (ATOLL MURUROA) TUAMOTU',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA027','IGN 1984 (ILE UVEA OU WALLIS)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA014','IGN 1987 (MARTINIQUE)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA006','IGN 1988 (GUADELOUPE)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA008','IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA007','IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA012','IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA009','IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA033','IGN 1989 (REUNION)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA037','IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA053','IGN 2008 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0300001','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5970001','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0140001','ILE AMSTERDAM 1963',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0150001','ILE SAINT-PAUL 1969',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG3810001','JUAN DE NOVA (MHM 1953)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0060001','KERGUELEN - K0 (IGN 1962)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5590001','MANGAREVA 1951',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA047','MAUPITI_SAU 2001',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5880001','MGT 1947 (ATOLL RANGIROA OU RAIROA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5700001','MGT 1948 (ATOLL APATAKI)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5780001','MGT 1949 (ATOLL HAO)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5730001','MGT 1950 (ATOLL FANGATAUFA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5850001','MGT 1951 (ATOLL MURUROA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5570001','MGT 1955 (TUBUAI)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5550001','MHEFO 1955 (ATOLL RAPA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5600001','MHEFO 1955 (FATU HUKU)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5640001','MHEFO 1955 (MOHOTANI)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5860001','MHOI 1962 (ATOLL MURUROA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5800001','MHPF 1958 (ATOLL HAO)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5840001','MHPF 1959 (ATOLL MURUROA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5890001','MHPF 1959 (ATOLL RANGIROA OU RAIROA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5920001','MHPF 1960 (ATOLL TIKEHAU)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5610001','MHPF 1960 (HIVA OA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5660001','MHPF 1963 (ATOLL AMANU)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5740001','MHPF 1964 (ATOLL FANGATAUFA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5750001','MHPF 1965-1 (ATOLL FANGATAUFA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5760001','MHPF 1965-2 (ATOLL FANGATAUFA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5900001','MHPF 1966-1968 (ATOLL RANGIROA OU RAIROA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5770001','MHPF 1966 (ATOLL FANGATAUFA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5540001','MHPF 1966 (ATOLL RAIVAVAE)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5790001','MHPF 1967 (ATOLLS HAO ET AMANU)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5620001','MHPF 1967 (HIVA OA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0270001','MHPF 1967 (MANGAREVA - AGAKAUITAI - AUKENA - MEKIRO) GAMBIER',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5910001','MHPF 1969 (ATOLLS TAKAROA ET TAKAPOTO)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5580001','MHPF 1969 (TUBUAI) ILES AUSTRALES',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0290001','MHPF70 (KAUEHI) TUAMOTU',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA029','MOOREA 1981 (MOOREA_SAU 2001)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0340001','MOP 1983 (MAUPITI)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5720001','MOP84 (FANGATAUFA 1984)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5960001','MOP86 (APATAKI - RAPA - HAO) TUAMOTU',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0870001','MOP88 (TIKEHAU) TUAMOTU',NULL,NULL,'EPSG','7043','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0280001','MOP90 (TETIAROA) ILES DE LA SOCIETE',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5980001','MOP92 (ANAA) TUAMOTU',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA001','NGF-BOURDALOUE',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA003','NGF-IGN 1969',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA011','NGF-IGN 1978',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA002','NGF-LALLEMAND',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5650001','NGT 1949 (ATOLL AMANU)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA054','NGWF FUTUNA',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA041','NGWF WALLIS (MOP 1996)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA016','NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA010','NIVELLEMENT GENERAL DE LA CORSE (NGC)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA036','NIVELLEMENT GENERAL DE LIFOU (IGN 1991 LF)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA035','NIVELLEMENT GENERAL DE MARE (IGN 1991 MR)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA019','NIVELLEMENT GENERAL DE NOUVELLE-CALEDONIE (NGNC)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA109','NORMAL NULL (NIVELLEMENT GENERAL DU LUXEMBOURG NG-L)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG7080001','NOUMEA 74 (TRIANGULATION DE NOUMEA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5040001','NOUVELLE CALEDONIE - GOMEN TERME NORD',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0120001','PORT-MARTIN - PERROUD 1955',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA049','RAIATEA_SAU 2001',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG3170201','REUNION - PITON DES NEIGES (IGN 1992)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG3170301','REUNION - PITON DES NEIGES (IGN 2008)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0310001','SAT84 (RURUTU) ILES AUSTRALES',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5560001','SEQ 1980 (ATOLL RAPA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5710001','SHM 1947-1950 (ATOLL FAKARAVA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5820001','SHM 1947-1950 (ATOLL HIKUERU)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5830001','SHM 1947-1950 (ATOLL MAKEMO)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5930001','SHM 1947-1950 (ATOLL TIKEHAU)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5670001','SHM 1947 (ATOLL ANAA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5810001','SHM 1949 (ATOLL HARAIKI)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5940001','SHM 1969 (ATOLL TUREIA)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA038','SHOM 1953 (MAYOTTE)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA042','SHOM 1977 (ILES GLORIEUSES - CANAL DE MOZAMBIQUE)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA020','SHOM 1978 (ILE DES PINS)',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG7100001','ST 84 ILE DES PINS',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG7090001','ST 87 OUVEA',NULL,NULL,'EPSG','7030','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "vertical_datum" VALUES('IGNF','REA050','TAHAA_SAU 2001',NULL,NULL,'EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG5250001','TANNA BLOC SUD',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG3820001','TROMELIN (SGM 1956)',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "geodetic_datum" VALUES('IGNF','REG0160001','WALLIS-UVEA MOP1976',NULL,NULL,'EPSG','7022','EPSG','8901','EPSG','1262',NULL,0); INSERT INTO "area" VALUES('IGNF','1','AMANU (ARCHIPEL DES TUAMOTU)','AMANU (ARCHIPEL DES TUAMOTU)',-18,-17.58,-141,-140.58,0); INSERT INTO "geodetic_crs" VALUES('IGNF','AMANU63','Amanu MHPF 1963 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5660001','IGNF','1',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','AMANU49','Amanu NGT 1949 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5650001','IGNF','1',NULL,0); INSERT INTO "area" VALUES('IGNF','2','ANAA (ARCHIPEL DES TUAMOTU)','ANAA (ARCHIPEL DES TUAMOTU)',-17.5,-17.32,-145.6,-145.37,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ANAA92','Anaa (MOP92) cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5980001','IGNF','2',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ANAA47','Anaa SHM 1947 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5670001','IGNF','2',NULL,0); INSERT INTO "area" VALUES('IGNF','3','APATAKI (ARCHIPEL DES TUAMOTU)','APATAKI (ARCHIPEL DES TUAMOTU)',-15.63,-15.29,-146.46,-146.18,0); INSERT INTO "geodetic_crs" VALUES('IGNF','APAT80','Apataki Cadastre 1980 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5680001','IGNF','3',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CADA80','Apataki Cadastre 1980 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5680001','IGNF','3',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','APAT49','Apataki FG 1949 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5690001','IGNF','3',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','APAT48','Apataki MGT 1948 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5700001','IGNF','3',NULL,0); INSERT INTO "area" VALUES('IGNF','4','FRANCE METROPOLITAINE (CORSE COMPRISE)','FRANCE METROPOLITAINE (CORSE COMPRISE)',41,52,-5.5,10,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ATIG','ATIG cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6901','IGNF','4',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ATI','ATIG cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6901','IGNF','4',NULL,0); INSERT INTO "area" VALUES('IGNF','5','ILE DE MAYOTTE','ILE DE MAYOTTE',-13.05,-12.5,44.95,45.4,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CAD97','Cadastre 1997 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG7010001','IGNF','5',NULL,0); INSERT INTO "area" VALUES('IGNF','6','CAP BIENVENUE (TERRE ADELIE)','CAP BIENVENUE (TERRE ADELIE)',-67,-66.5,140.33,140.67,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CAPBP55','Cap Bienvenue - Perroud 1955 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0100001','IGNF','6',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','BIEN55','Cap Bienvenue - Perroud 1955 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0100001','IGNF','6',NULL,0); INSERT INTO "area" VALUES('IGNF','7','CAP JULES (TERRE ADELIE)','CAP JULES (TERRE ADELIE)',-67,-66.5,140.75,141,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CAPJP55','Cap Jules - Perroud 1955 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0110001','IGNF','7',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','JULES55','Cap Jules - Perroud 1955 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0110001','IGNF','7',NULL,0); INSERT INTO "area" VALUES('IGNF','8','ILE CLIPPERTON','ILE CLIPPERTON',10.17,10.5,-109.5,-109,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CLIP67','Clipperton (Marine 1967) cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5060001','IGNF','8',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MAYO50','Combani cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6632','IGNF','5',NULL,0); INSERT INTO "area" VALUES('IGNF','9','ILES CROZET (ARCHIPEL)','ILES CROZET (ARCHIPEL)',-46.75,-45.75,50,52.5,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CROZ63','Crozet-Possession 1963 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0130001','IGNF','9',NULL,0); INSERT INTO "area" VALUES('IGNF','10','GUYANE FRANCAISE','GUYANE FRANCAISE',2.05,5.95,-54.95,-51.05,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CSG67','CSG 1967 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6623','IGNF','10',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','C67I95','CSG67 (IGN 1995) CARTESIENNES GEOCENTRIQUES',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG4070101','IGNF','10',NULL,0); INSERT INTO "area" VALUES('IGNF','11','EUROPE DE L''OUEST ED50','EUROPE DE L''OUEST ED50',34,72,-10,32,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ED50','ED50 CARTESIENNES GEOCENTRIQUES',NULL,NULL,'geocentric','EPSG','6500','EPSG','6230','IGNF','11',NULL,0); INSERT INTO "area" VALUES('IGNF','12','EFATE (ARCHIPEL DU VANUATU)','EFATE (ARCHIPEL DU VANUATU)',-18,-17.25,168,168.67,0); INSERT INTO "geodetic_crs" VALUES('IGNF','EFATE57','Efate - IGN 1957 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5050001','IGNF','12',NULL,0); INSERT INTO "area" VALUES('IGNF','13','EIAO, HIVA OA, MOHOTANI (ARCHIPEL DES MARQUISES)','EIAO, HIVA OA, MOHOTANI (ARCHIPEL DES MARQUISES)',-10.05,-7.89,-140.74,-138.78,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MARQUI72','Eiao Hiva Oa Motohani cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5970001','IGNF','13',NULL,0); INSERT INTO "area" VALUES('IGNF','14','EUROPE (ETRS89)','EUROPE (ETRS89)',27.5,71.5,-25,45.5,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ETRS89','ETRS89 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6258','IGNF','14',NULL,0); INSERT INTO "area" VALUES('IGNF','15','ILE EUROPA','ILE EUROPA',-22.33,-22,40.25,40.5,0); INSERT INTO "geodetic_crs" VALUES('IGNF','EUROPA54','Europa MHM 1954 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG3790001','IGNF','15',NULL,0); INSERT INTO "area" VALUES('IGNF','16','FAKARAVA (ARCHIPEL DES TUAMOTU)','FAKARAVA (ARCHIPEL DES TUAMOTU)',-16.58,-16,-146,-145.25,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FAKA50','Fakarava SHM 1947-1950 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5710001','IGNF','16',NULL,0); INSERT INTO "area" VALUES('IGNF','17','FANGATAUFA (ARCHIPEL DES TUAMOTU)','FANGATAUFA (ARCHIPEL DES TUAMOTU)',-22.33,-22.15,-138.83,-138.58,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA50','Fangataufa MGT 1950 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5730001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA64','Fangataufa MHPF 1964 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5740001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA651','Fangataufa MHPF 1965-1 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5750001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA652','Fangataufa MHPF 1965-2 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5760001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA66','Fangataufa MHPF 1966 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5770001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA84','Fangataufa MOP 1984 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5720001','IGNF','17',NULL,0); INSERT INTO "area" VALUES('IGNF','18','FATU HUKU (ARCHIPEL DES MARQUISES)','FATU HUKU (ARCHIPEL DES MARQUISES)',-9.44,-9.43,-138.94,-138.92,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FATU55','Fatu Huku MHEFO 1955 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5600001','IGNF','18',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MHEFO55F','Fatu Huku MHEFO 1955 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5600001','IGNF','18',NULL,0); INSERT INTO "area" VALUES('IGNF','19','MANGAREVA, AGAKAUITAI, AUKENA, MEKIRO (ILES GAMBIER)','MANGAREVA, AGAKAUITAI, AUKENA, MEKIRO (ILES GAMBIER)',-23.18,-23.07,-135.04,-134.89,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MHPF67','Gambier MHPF 1967 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0270001','IGNF','19',NULL,0); INSERT INTO "area" VALUES('IGNF','20','ILES GLORIEUSES','ILES GLORIEUSES',-11.62,-11.43,47.25,47.47,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GLOR77MHG','Glorieuses (MHG 1977) cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG3800001','IGNF','20',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GLOR77CAR','Glorieuses (MHG 1977) cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG3800001','IGNF','20',NULL,0); INSERT INTO "area" VALUES('IGNF','21','GRANDE TERRE (NOUVELLE-CALEDONIE)','GRANDE TERRE (NOUVELLE-CALEDONIE)',-22.75,-19.5,163.5,167.67,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GTN51','GOMEN TERME NORD 1951 CARTESIENNES',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5040001','IGNF','21',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NC51','GOMEN TERME NORD 1951 CARTESIENNES',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5040001','IGNF','21',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','IGN72','Grande Terre - Ile des Pins IGN 72 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6634','IGNF','21',NULL,0); INSERT INTO "area" VALUES('IGNF','22','ILES DE SAINT-MARTIN ET SAINT-BARTHELEMY (GUADELOUPE)','ILES DE SAINT-MARTIN ET SAINT-BARTHELEMY (GUADELOUPE)',17.82,18.18,-63.18,-62.25,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GUADFM','Guadeloupe Fort Marigot cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG4260001','IGNF','22',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GUADFM49','Guadeloupe Fort Marigot cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG4260001','IGNF','22',NULL,0); INSERT INTO "area" VALUES('IGNF','23','GRANDE-TERRE, BASSE-TERRE, MARIE-GALANTE, LA DESIRADE, LES SAINTES (GUADELOUPE)','GRANDE-TERRE, BASSE-TERRE, MARIE-GALANTE, LA DESIRADE, LES SAINTES (GUADELOUPE)',15.82,16.6,-61.83,-60.77,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GUADANN','Guadeloupe Sainte-Anne cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6622','IGNF','23',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GUAD48','Guadeloupe Sainte-Anne cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6622','IGNF','23',NULL,0); INSERT INTO "area" VALUES('IGNF','24','HAO ET AMANU (ARCHIPEL DES TUAMOTU)','HAO ET AMANU (ARCHIPEL DES TUAMOTU)',-18.5,-17.58,-141.17,-140.58,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HAOAM67','Hao Amanu MHPF 1967 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5790001','IGNF','24',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HAO67','Hao Amanu MHPF 1967 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5790001','IGNF','24',NULL,0); INSERT INTO "area" VALUES('IGNF','25','HAO (ARCHIPEL DES TUAMOTU)','HAO (ARCHIPEL DES TUAMOTU)',-18.5,-18,-141.17,-140.58,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HAO49','Hao MGT 1949 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5780001','IGNF','25',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HAO58','Hao MHPF 1958 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5800001','IGNF','25',NULL,0); INSERT INTO "area" VALUES('IGNF','26','HARAIKI (ARCHIPEL DES TUAMOTU)','HARAIKI (ARCHIPEL DES TUAMOTU)',-17.58,-17.42,-143.58,-143.33,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HARA49','Haraiki SHM 1949 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5810001','IGNF','26',NULL,0); INSERT INTO "area" VALUES('IGNF','27','HIKUERU (ARCHIPEL DES TUAMOTU)','HIKUERU (ARCHIPEL DES TUAMOTU)',-17.83,-17.42,-142.83,-142.42,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HIKU50','Hikureu SHM 1947-1950 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5820001','IGNF','27',NULL,0); INSERT INTO "area" VALUES('IGNF','28','HIVA OA (ARCHIPEL DES MARQUISES)','HIVA OA (ARCHIPEL DES MARQUISES)',-9.87,-9.6,-139.25,-138.58,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HIVA60','Hiva Oa MHPF 1960 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5610001','IGNF','28',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HIVA67','Hiva Oa MHPF 1967 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5620001','IGNF','28',NULL,0); INSERT INTO "area" VALUES('IGNF','29','HIVA OA, TAHUATA, MOHOTANI (ARCHIPEL DES MARQUISES)','HIVA OA, TAHUATA, MOHOTANI (ARCHIPEL DES MARQUISES)',-9.88,-9.65,-139.2,-138.75,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ATUO63','Hiva Oa Tahuata Motohani IGN 1963 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5630001','IGNF','29',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','IGN63','Hiva Oa Tahuata Motohani IGN 1963 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5630001','IGNF','29',NULL,0); INSERT INTO "area" VALUES('IGNF','30','ILE AMSTERDAM','ILE AMSTERDAM',-37.92,-37.75,77.45,77.63,0); INSERT INTO "geodetic_crs" VALUES('IGNF','AMST63','Ile Amsterdam 1963 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0140001','IGNF','30',NULL,0); INSERT INTO "area" VALUES('IGNF','31','ILE DES PINS (NOUVELLE-CALEDONIE)','ILE DES PINS (NOUVELLE-CALEDONIE)',-22.8,-22.44,167.29,167.62,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ST84','Ile des Pins ST84 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG7100001','IGNF','31',NULL,0); INSERT INTO "area" VALUES('IGNF','32','ILE JUAN DE NOVA','ILE JUAN DE NOVA',-17.17,-17,42.67,42.83,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NOVA53','Juan de Nova MHM 1953 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG3810001','IGNF','32',NULL,0); INSERT INTO "area" VALUES('IGNF','33','KAUHEI (ARCHIPEL DES TUAMOTU)','KAUHEI (ARCHIPEL DES TUAMOTU)',-16,-15.67,-145.33,-145,0); INSERT INTO "geodetic_crs" VALUES('IGNF','KAUE70','Kauehi MHPF70 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0290001','IGNF','33',NULL,0); INSERT INTO "area" VALUES('IGNF','34','KERGUELEN','KERGUELEN',-50.5,-48,67,71,0); INSERT INTO "geodetic_crs" VALUES('IGNF','KERG62K0','Kerguelen - K0 IGN 1962 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0060001','IGNF','34',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','KERG62CAR','Kerguelen - K0 IGN 1962 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0060001','IGNF','34',NULL,0); INSERT INTO "area" VALUES('IGNF','35','LIFOU (ILES LOYAUTE)','LIFOU (ILES LOYAUTE)',-21.22,-20.65,166.96,167.51,0); INSERT INTO "geodetic_crs" VALUES('IGNF','LIFOU56','Lifou IGN 1956 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6633','IGNF','35',NULL,0); INSERT INTO "area" VALUES('IGNF','36','MAKEMO (ARCHIPEL DES TUAMOTU)','MAKEMO (ARCHIPEL DES TUAMOTU)',-16.83,-16.33,-144,-143.33,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MAKE50','Makemo SHM 1947-1950 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5830001','IGNF','36',NULL,0); INSERT INTO "area" VALUES('IGNF','37','MANGAREVA (ILES GAMBIER)','MANGAREVA (ILES GAMBIER)',-23.45,-22.83,-135.33,-134.58,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MANGA51','Mangareva 1951 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5590001','IGNF','37',NULL,0); INSERT INTO "area" VALUES('IGNF','38','MARE (ILES LOYAUTE)','MARE (ILES LOYAUTE)',-21.69,-21.29,167.69,168.18,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MARE53','Mare IGN 1953 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6641','IGNF','38',NULL,0); INSERT INTO "area" VALUES('IGNF','39','MARTINIQUE','MARTINIQUE',14.27,15,-61.25,-60.75,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MARTFD','Martinique Fort-Desaix cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6625','IGNF','39',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MART38','Martinique Fort-Desaix cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6625','IGNF','39',NULL,0); INSERT INTO "area" VALUES('IGNF','40','MAUPITI','MAUPITI',-16.75,-16.25,-152.5,-152,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MAUPITI','Maupiti MOP 1983 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0340001','IGNF','40',NULL,0); INSERT INTO "area" VALUES('IGNF','41','MOHOTANI (ARCHIPEL DES MARQUISES)','MOHOTANI (ARCHIPEL DES MARQUISES)',-10.08,-9.83,-138.92,-138.67,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MOHO55','Mohotani MHEFO 1955 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5640001','IGNF','41',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MHEFO55M','Mohotani MHEFO 1955 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5640001','IGNF','41',NULL,0); INSERT INTO "area" VALUES('IGNF','42','MOOREA (ARCHIPEL DE LA SOCIETE)','MOOREA (ARCHIPEL DE LA SOCIETE)',-17.75,-17.25,-150,-149.75,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MOOREA87','MOOREA 1987 CARTESIENNES GEOCENTRIQUES',NULL,NULL,'geocentric','EPSG','6500','EPSG','6691','IGNF','42',NULL,0); INSERT INTO "area" VALUES('IGNF','43','MURUROA (ARCHIPEL DES TUAMOTU)','MURUROA (ARCHIPEL DES TUAMOTU)',-22,-21.67,-139.17,-138.58,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MURU78','Mururoa IGN 1978 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5870001','IGNF','43',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MURU51','Mururoa MGT 1951 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5850001','IGNF','43',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MURU62','Mururoa MHOI 1962 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5860001','IGNF','43',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MURU59','Mururoa MHPF 1959 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5840001','IGNF','43',NULL,0); INSERT INTO "area" VALUES('IGNF','44','NOUMEA (NOUVELLE-CALEDONIE)','NOUMEA (NOUVELLE-CALEDONIE)',-22.36,-22.14,166.36,166.54,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NEA74','Noumea 1974 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG7080001','IGNF','44',NULL,0); INSERT INTO "area" VALUES('IGNF','45','LUXEMBOURG (pays_cid : 137)','LUXEMBOURG (pays_cid : 137)',49.45,50.18,5.73,6.53,0); INSERT INTO "geodetic_crs" VALUES('IGNF','LURES','Nouvelle Triangulation Luxembourg cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6181','IGNF','45',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','LUREF','Nouvelle Triangulation Luxembourg cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6181','IGNF','45',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NTF','NTF cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6275','IGNF','4',NULL,0); INSERT INTO "area" VALUES('IGNF','46','NUKU HIVA, UA HUKA ET UA POU (ARCHIPEL DES MARQUISES)','NUKU HIVA, UA HUKA ET UA POU (ARCHIPEL DES MARQUISES)',-9.5,-8.77,-140.27,-139.48,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NUKU72','Nuku Hiva IGN 1972 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6630','IGNF','46',NULL,0); INSERT INTO "area" VALUES('IGNF','47','OUVEA (ILES LOYAUTE)','OUVEA (ILES LOYAUTE)',-20.78,-20.25,166.11,166.71,0); INSERT INTO "geodetic_crs" VALUES('IGNF','OUVE72','Ouvea MHNC 1972 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6634','IGNF','47',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','OUVEA72','Ouvea MHNC 1972 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6634','IGNF','47',NULL,0); INSERT INTO "area" VALUES('IGNF','48','ILE DES PETRELS (TERRE ADELIE)','ILE DES PETRELS (TERRE ADELIE)',-68,-66.17,139.67,140.17,0); INSERT INTO "geodetic_crs" VALUES('IGNF','PETRELS72','Petrels IGN 1972 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6636','IGNF','48',NULL,0); INSERT INTO "area" VALUES('IGNF','49','ARCHIPEL POINTE GEOLOGIE (TERRE ADELIE)','ARCHIPEL POINTE GEOLOGIE (TERRE ADELIE)',-66.72,-66.6,139.67,140.12,0); INSERT INTO "geodetic_crs" VALUES('IGNF','PGP50','Pointe Geologie Perroud 1950 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6637','IGNF','49',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TERA50','Pointe Geologie Perroud 1950 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6637','IGNF','49',NULL,0); INSERT INTO "area" VALUES('IGNF','50','PORT-MARTIN (TERRE ADELIE)','PORT-MARTIN (TERRE ADELIE)',-67,-66.5,141,141.83,0); INSERT INTO "geodetic_crs" VALUES('IGNF','PMARP55','Port Martin Perroud 1955 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0120001','IGNF','50',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','PMAR55','Port Martin Perroud 1955 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0120001','IGNF','50',NULL,0); INSERT INTO "area" VALUES('IGNF','51','RAIATEA, TAHAA (ARCHIPEL DE LA SOCIETE)','RAIATEA, TAHAA (ARCHIPEL DE LA SOCIETE)',-17,-16.5,-151.67,-151.33,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAHAA53','Raiatea Tahaa Bora Bora Huahine 1953 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0300001','IGNF','51',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RAIA53','Raiatea Tahaa Bora Bora Huahine 1953 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0300001','IGNF','51',NULL,0); INSERT INTO "area" VALUES('IGNF','52','RAIVAVAE (ARCHIPEL DES AUSTRALES)','RAIVAVAE (ARCHIPEL DES AUSTRALES)',-23.92,-23.75,-147.75,-147.58,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RAIV54','Raivavae cadastre 1953-1954 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5530001','IGNF','52',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RAIV66','Raivavae MHPF 1966 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5540001','IGNF','52',NULL,0); INSERT INTO "area" VALUES('IGNF','53','RANGIROA (ARCHIPEL DES TUAMOTU)','RANGIROA (ARCHIPEL DES TUAMOTU)',-14.83,-14.42,-148,-147.15,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RANGI47','Rangiroa MGT 1947 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5880001','IGNF','53',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RANGI59','Rangiroa MHPF 1959 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5890001','IGNF','53',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RANGI68','Rangiroa MHPF 1966-1968 cartesiennes geocent.',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5900001','IGNF','53',NULL,0); INSERT INTO "area" VALUES('IGNF','54','RAPA (ARCHIPEL DES AUSTRALES)','RAPA (ARCHIPEL DES AUSTRALES)',-27.75,-27.5,-144.5,-144.25,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RAPA55','Rapa MHEFO 1955 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5550001','IGNF','54',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RAPA80','Rapa SEQ 1980 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5560001','IGNF','54',NULL,0); INSERT INTO "area" VALUES('IGNF','55','ILES WALLIS, FUTUNA ET ALOFI','ILES WALLIS, FUTUNA ET ALOFI',-14.39,-13.16,-179.98,-176.3,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGWF96','RESEAU GEODESIQUE DE WALLIS ET FUTUNA 1996 CARTESIENNES GEOCENTRIQUES',NULL,NULL,'geocentric','EPSG','6500','EPSG','1223','IGNF','55',NULL,0); INSERT INTO "area" VALUES('IGNF','56','ILE DE LA REUNION','ILE DE LA REUNION',-21.42,-20.75,55.17,55.92,0); INSERT INTO "geodetic_crs" VALUES('IGNF','REUN49','Reunion Piton des Neiges 1949 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6626','IGNF','56',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','REUN47','Reunion Piton des Neiges 1949 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6626','IGNF','56',NULL,0); INSERT INTO "area" VALUES('IGNF','57','ANTILLES FRANCAISES','ANTILLES FRANCAISES',14.25,18.2,-63.2,-60.73,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGAF09','RGAF09 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','1073','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGF93','RGF93 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6171','IGNF','4',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGFG95','RGFG95 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6624','IGNF','10',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGM04','RGM04 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','1036','IGNF','5',NULL,0); INSERT INTO "area" VALUES('IGNF','58','NOUVELLE-CALEDONIE','NOUVELLE-CALEDONIE',-26.65,-14.6,156.1,174.5,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGNC','RGNC cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6645','IGNF','58',NULL,0); INSERT INTO "area" VALUES('IGNF','59','POLYNESIE FRANCAISE','POLYNESIE FRANCAISE',-28,-7,-156,-134,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGPF','RGPF cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6687','IGNF','59',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGR92','RGR92 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6627','IGNF','56',NULL,0); INSERT INTO "area" VALUES('IGNF','60','SAINT-PIERRE-ET-MIQUELON','SAINT-PIERRE-ET-MIQUELON',46.7,47.2,-56.49,-56.1,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGSPM06','RGSPM06 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','1038','IGNF','60',NULL,0); INSERT INTO "area" VALUES('IGNF','61','TERRES AUSTRALES ET ANTARCTIQUES FRANCAISES (TAAF)','TERRES AUSTRALES ET ANTARCTIQUES FRANCAISES (TAAF)',-90,-11,39,142,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGTAAF07','RGTAAF07 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','1113','IGNF','61',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RRAF','RRAF cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6640','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS84GUAD','RRAF cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6640','IGNF','57',NULL,0); INSERT INTO "area" VALUES('IGNF','62','RURUTU (ARCHIPEL DES AUSTRALES)','RURUTU (ARCHIPEL DES AUSTRALES)',-22.58,-22.25,-151.5,-151.33,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RUSAT84','Rurutu SAT84 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0310001','IGNF','62',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','SAT84','Rurutu SAT84 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0310001','IGNF','62',NULL,0); INSERT INTO "area" VALUES('IGNF','63','ILE SAINT-PAUL','ILE SAINT-PAUL',-38.77,-38.67,77.48,77.58,0); INSERT INTO "geodetic_crs" VALUES('IGNF','STPL69','Saint-Paul 1969 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0150001','IGNF','63',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ST87','ST 87 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG7090001','IGNF','47',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','STPM50','St Pierre Miquelon 1950 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','EPSG','6638','IGNF','60',NULL,0); INSERT INTO "area" VALUES('IGNF','64','TAHAA (ARCHIPEL DE LA SOCIETE)','TAHAA (ARCHIPEL DE LA SOCIETE)',-16.7,-16.53,-151.58,-151.38,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAHAA','Tahaa 1951 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6629','IGNF','64',NULL,0); INSERT INTO "area" VALUES('IGNF','65','TAHITI (ARCHIPEL DE LA SOCIETE)','TAHITI (ARCHIPEL DE LA SOCIETE)',-18,-17,-150,-149,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAHI79','Tahiti IGN 1979 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6690','IGNF','65',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAHI51','TAHITI TERME NORD CARTESIENNES GEOCENTRIQUES',NULL,NULL,'geocentric','EPSG','6500','EPSG','6628','IGNF','65',NULL,0); INSERT INTO "area" VALUES('IGNF','66','TAKAROA ET TAKAPOTO (ARCHIPEL DES TUAMOTU)','TAKAROA ET TAKAPOTO (ARCHIPEL DES TUAMOTU)',-14.75,-14.25,-145.33,-144.75,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAKA69','Takaroa Takapoto SHM 1969 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5910001','IGNF','66',NULL,0); INSERT INTO "area" VALUES('IGNF','67','TANNA (ARCHIPEL DU VANUATU)','TANNA (ARCHIPEL DU VANUATU)',-19.67,-19.08,169.17,169.83,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TANNA','Tanna Bloc Sud 1957 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5250001','IGNF','67',NULL,0); INSERT INTO "area" VALUES('IGNF','68','TETIAROA (ARCHIPEL DE LA SOCIETE)','TETIAROA (ARCHIPEL DE LA SOCIETE)',-17.1,-17.02,-149.6,-149.53,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TETIA90','Tetiaroa (MOP90) cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0280001','IGNF','68',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MOP90','Tetiaroa (MOP90) cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0280001','IGNF','68',NULL,0); INSERT INTO "area" VALUES('IGNF','69','TIKEHAU (ARCHIPEL DES TUAMOTU)','TIKEHAU (ARCHIPEL DES TUAMOTU)',-15.2,-14.83,-148.5,-148,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TIKE60','Tikehau MHPF 1960 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5920001','IGNF','69',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TIKE50','Tikehau SHM 1947-1950 cartesiennes',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5930001','IGNF','69',NULL,0); INSERT INTO "area" VALUES('IGNF','70','ILE TROMELIN','ILE TROMELIN',-15.9,-15.87,54.51,54.53,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TROM56','Tromelin SGM 1956 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG3820001','IGNF','70',NULL,0); INSERT INTO "area" VALUES('IGNF','71','APATAKI, RAPA et HAO','APATAKI, RAPA et HAO',-27.75,-15.293,-146.4644,-140.5833,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TUAM86','TUAMOTU (MOP86) CARTESIENNES',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5960001','IGNF','71',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','APAT86','TUAMOTU (MOP86) CARTESIENNES',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5960001','IGNF','71',NULL,0); INSERT INTO "area" VALUES('IGNF','72','TUBUAI (ARCHIPEL DES AUSTRALES)','TUBUAI (ARCHIPEL DES AUSTRALES)',-23.45,-23.25,-149.58,-149.33,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TUBU55','Tubuai MGT 1955 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5570001','IGNF','72',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TUBU69','Tubuai MHPF 1969 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5580001','IGNF','72',NULL,0); INSERT INTO "area" VALUES('IGNF','73','TUREIA (ARCHIPEL DES TUAMOTU)','TUREIA (ARCHIPEL DES TUAMOTU)',-21,-20.67,-139.83,-138.83,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TURI69','Tureia SHM 1969 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG5940001','IGNF','73',NULL,0); INSERT INTO "area" VALUES('IGNF','74','ILE D''UVEA (WALLIS)','ILE D''UVEA (WALLIS)',-13.42,-13.17,-176.3,-176.1,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WALL76','Wallis - Uvea MOP 1976 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','IGNF','REG0160001','IGNF','74',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WALL78','Wallis - Uvea Shom 1978 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6639','IGNF','74',NULL,0); INSERT INTO "area" VALUES('IGNF','75','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE',-90,90,-180,180,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS72','WGS72 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6322','IGNF','75',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS84','WGS84 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6326','IGNF','75',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RRAF91','WGS84 cartesiennes geocentriques',NULL,NULL,'geocentric','EPSG','6500','EPSG','6326','IGNF','75',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','AMANU63G','Amanu (MHPF 1963) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5660001','IGNF','1',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','AMANU49G','Amanu (NGT 1949) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5650001','IGNF','1',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','AMST63G','Amsterdam 1963 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0140001','IGNF','30',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ANAA92GEO','Anaa (MOP92) geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG5980001','IGNF','2',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ANAA92G','Anaa (MOP92) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5980001','IGNF','2',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ANAA47G','Anaa (SHM 1947) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5670001','IGNF','2',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','APAT80G','Apataki (Cadastre 1980) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5680001','IGNF','3',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CADA80G','Apataki (Cadastre 1980) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5680001','IGNF','3',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','APAT49G','Apataki (FG 1949) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5690001','IGNF','3',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','APAT48G','Apataki (MGT 1948) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5700001','IGNF','3',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ATIGG','ATIG geographiques grades Paris (gr)',NULL,NULL,'geographic 2D','EPSG','6425','EPSG','6901','IGNF','4',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CAD97G','Cadastre 1997 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG7010001','IGNF','5',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CAD97GEO','Cadastre 1997 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG7010001','IGNF','5',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CAPBP55G','Cap Bienvenue geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0100001','IGNF','6',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','BIEN55G','Cap Bienvenue geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0100001','IGNF','6',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CAPJP55G','Cap Jules geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0110001','IGNF','7',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','JULES55G','Cap Jules geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0110001','IGNF','7',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CLIP67G','Clipperton 1967 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5060001','IGNF','8',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MAYO50GEO','Combani geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6632','IGNF','5',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MAYO50G','Combani triangulation IGN 1950 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6632','IGNF','5',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CROZ63GEO','Crozet - Possession 1963 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG0130001','IGNF','9',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CROZ63G','Crozet Possession 1963 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0130001','IGNF','9',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CSG67G','CSG67 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6623','IGNF','10',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','CSG67GEO','CSG67 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6623','IGNF','10',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','C67IG95G','CSG67 (IGN 1995) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG4070101','IGNF','10',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ED50G','ED50 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6230','IGNF','11',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ED50GEO','ED50 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6230','IGNF','11',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','EFATE57G','Efate geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5050001','IGNF','12',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','EFATE57GEO','Efate geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG5050001','IGNF','12',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ETRS89G','ETRS89 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6258','IGNF','14',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ETRS89GEO','ETRS89 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6258','IGNF','14',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','EUROPA54G','Europa geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG3790001','IGNF','15',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FAKA50G','Fakarava (SHM 1947-1950) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5710001','IGNF','16',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA50G','Fangataufa (MGT 1950) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5730001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA64G','Fangataufa (MHPF 1964) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5740001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANG651G','Fangataufa (MHPF 1965-1) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5750001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA651G','Fangataufa (MHPF 1965-1) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5750001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANG652G','Fangataufa (MHPF 1965-2) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5760001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA652G','Fangataufa (MHPF 1965-2) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5760001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA66G','Fangataufa (MHPF 1966) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5770001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FANGA84G','Fangataufa (MOP84) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5720001','IGNF','17',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','FATU55FG','Fatu Huku (MHEFO 1955) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5600001','IGNF','18',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MHEFO55FG','Fatu Huku (MHEFO 1955) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5600001','IGNF','18',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GLOR77G','Glorieuses geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG3800001','IGNF','20',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GTN51G','Gomen Terme Nord 1951 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5040001','IGNF','21',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NC51G','Gomen Terme Nord 1951 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5040001','IGNF','21',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GUADFMG','Guadeloupe Fort-Marigot geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG4260001','IGNF','22',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GUAFM48G','Guadeloupe Fort-Marigot geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG4260001','IGNF','22',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GUADFM49GEO','Guadeloupe Fort-Marigot geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG4260001','IGNF','22',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GUADANNG','Guadeloupe Sainte-Anne geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6622','IGNF','23',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GUAD48G','Guadeloupe Sainte-Anne geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6622','IGNF','23',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','GUAD48GEO','Guadeloupe Sainte-Anne geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6622','IGNF','23',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HAOAM67G','Hao Amanu (MHPF 1967) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5790001','IGNF','24',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HAOAMA67G','Hao Amanu (MHPF 1967) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5790001','IGNF','24',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HAO49G','Hao (MGT 1949) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5780001','IGNF','25',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HAO58G','Hao (MHPF 1958) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5800001','IGNF','25',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HARA49G','Haraiki (SHM 1949) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5810001','IGNF','26',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HIKU50G','Hikueru (SHM 1947-1950) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5820001','IGNF','27',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HIVA60G','Hiva Oa (MHPF 1960) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5610001','IGNF','28',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','HIVA67G','Hiva Oa (MHPF 1967) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5620001','IGNF','28',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ATUO63G','IGN 1963 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5630001','IGNF','29',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','IGN63G','IGN 1963 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5630001','IGNF','29',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAHAA53G','IGN53 Societe geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0300001','IGNF','51',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RAIA53G','IGN53 Societe geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0300001','IGNF','51',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','IGN63GEO','IGN63 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG5630001','IGNF','29',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','IGN72GEO','IGN72 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6634','IGNF','21',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','IGN72G','IGN72 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6634','IGNF','21',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','AMST63GEO','Ile Amsterdam 1963 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG0140001','IGNF','30',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','STPL69GEO','Ile Saint-Paul 1969 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG0150001','IGNF','63',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NOVA53G','Juan de Nova geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG3810001','IGNF','32',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','KAUE70G','Kauehi (MHPF70) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0290001','IGNF','33',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','KERG62G','Kerguelen geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0060001','IGNF','34',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','KERG62GEO','Kerguelen - K0 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG0060001','IGNF','34',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','LNGPGG','Lambert Nord de Guerre grades Paris',NULL,NULL,'geographic 2D','EPSG','6425','EPSG','6902','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','SYSLNG','Lambert Nord de Guerre grades Paris',NULL,NULL,'geographic 2D','EPSG','6425','EPSG','6902','EPSG','1262',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','LIFOU56G','Lifou IGN 56 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6633','IGNF','35',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MAKE50G','Makemo (SHM 1947-1950) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5830001','IGNF','36',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MANGA51G','Mangareva 1951 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5590001','IGNF','37',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MARE53G','Mare IGN53 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6641','IGNF','38',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MARQUI72G','Marquises (IGN72) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5970001','IGNF','13',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MARTFDG','Martinique Fort-Desaix geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6625','IGNF','39',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MART38G','Martinique Fort-Desaix geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6625','IGNF','39',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MART38GEO','Martinique Fort-Desaix geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6625','IGNF','39',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MAUPITIG','Maupiti (MOP 1983) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0340001','IGNF','40',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RANGI47GEO','MGT 1947 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG5880001','IGNF','53',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MHPF67G','MHPF 1967 GEOGRAPHIQUES (DMS)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0270001','IGNF','19',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MOHO55G','Mohotani (MHEFO 1955) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5640001','IGNF','41',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MHEFO55MG','Mohotani (MHEFO 1955) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5640001','IGNF','41',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MOOREA87GEO','Moorea 1987 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6691','IGNF','42',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MOOREA87G','Moorea 1987 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6691','IGNF','42',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WALL78GEO','MOP 1978 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6639','IGNF','74',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MURU78G','Mururoa (IGN 1978) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5870001','IGNF','43',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MURU51G','Mururoa (MGT 1951) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5850001','IGNF','43',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MURU62G','Mururoa (MHOI 1962) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5860001','IGNF','43',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MURU59G','Mururoa (MHPF 1959) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5840001','IGNF','43',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NEA74G','NEA74 NOUMEA geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG7080001','IGNF','44',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','LURESG','NOUVELLE TRIANGULATION DU DUCHE DU LUXEMBOURG GEOGRAPHIQUES (DMS)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6181','IGNF','45',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','LUXGEO','NOUVELLE TRIANGULATION DU DUCHE DU LUXEMBOURG GEOGRAPHIQUES (DMS)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6181','IGNF','45',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NTFG','NTF GEOGRAPHIQUES GREENWICH (DMS)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6275','IGNF','4',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NTFPGRAD','NTF geographiques Paris (gr)',NULL,NULL,'geographic 2D','EPSG','6425','EPSG','6807','IGNF','4',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NTFP','NTF geographiques Paris (gr)',NULL,NULL,'geographic 2D','EPSG','6425','EPSG','6807','IGNF','4',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NUKU72GEO','Nuku Hiva 1972 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6630','IGNF','46',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','NUKU72G','Nuku Hiva 1972 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6630','IGNF','46',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','OUVE72G','Ouvea MHNC 1972 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6634','IGNF','47',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','OUVEA72G','Ouvea MHNC 1972 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6634','IGNF','47',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','PETRELS72G','Petrels geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6636','IGNF','48',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','PDN92G','PITON DES NEIGES (1992) GEOGRAPHIQUES (DMS)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG3170201','IGNF','56',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','PDN08G','PITON DES NEIGES (2008) GEOGRAPHIQUES (DMS)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG3170301','IGNF','56',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TERA50GEO','Pointe Geologie Perroud 1950 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6637','IGNF','49',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','PGP50G','Pointe Geologie Perroud 1950 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6637','IGNF','49',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TERA50G','Pointe Geologie Perroud 1950 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6637','IGNF','49',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','PMARP55G','Port Martin geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0120001','IGNF','50',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','PMAR55G','Port Martin geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0120001','IGNF','50',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RAIV54G','Raivavae (Cadastre) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5530001','IGNF','52',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RAIV66G','Raivavae (MHPF 1966) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5540001','IGNF','52',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RANGI47G','Rangiroa (MGT 1947) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5880001','IGNF','53',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RANGI59G','Rangiroa (MHPF 1959) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5890001','IGNF','53',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RANGI68G','Rangiroa (MHPF 1966-68) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5900001','IGNF','53',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RAPA55G','Rapa (MHEFO 1955) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5550001','IGNF','54',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RAPA80G','Rapa (SEQ 1980) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5560001','IGNF','54',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGWF96GDD','RESEAU GEODESIQUE DE WALLIS ET FUTUNA 1996 GEOGRAPHIQUES (DD)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1223','IGNF','55',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGWF96GEODD','RESEAU GEODESIQUE DE WALLIS ET FUTUNA 1996 GEOGRAPHIQUES (DD)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1223','IGNF','55',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGWF96GEO','RESEAU GEODESIQUE DE WALLIS ET FUTUNA 1996 GEOGRAPHIQUES (DMS)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1223','IGNF','55',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGWF96G','RESEAU GEODESIQUE DE WALLIS ET FUTUNA 1996 GEOGRAPHIQUES (DMS)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1223','IGNF','55',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','REUN47GEO','Reunion Piton des Neiges geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6626','IGNF','56',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','REUN49G','Reunion Piton des Neiges geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6626','IGNF','56',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','REUN47G','Reunion Piton des Neiges geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6626','IGNF','56',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGAF09GDD','RGAF09 geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1073','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGAF09GEODD','RGAF09 geographiques (dd)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1073','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGAF09G','RGAF09 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1073','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGAF09GEO','RGAF09 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1073','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGF93GEODD','RGF93 geographiques (dd)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6171','IGNF','4',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGF93GDD','RGF93 geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6171','IGNF','4',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGF93GEO','RGF93 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6171','IGNF','4',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGF93G','RGF93 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6171','IGNF','4',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGFG95GDD','RGFG95 geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6624','IGNF','10',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGFG95GEODD','RGFG95 geographiques (dd)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6624','IGNF','10',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGFG95G','RGFG95 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6624','IGNF','10',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGFG95GEO','RGFG95 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6624','IGNF','10',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGM04GEODD','RGM04 geographiques (dd)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1036','IGNF','5',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGM04GDD','RGM04 geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1036','IGNF','5',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGM04G','RGM04 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1036','IGNF','5',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGM04GEO','RGM04 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1036','IGNF','5',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGNCGEODD','RGNC GEOGRAPHIQUES (DD)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6645','IGNF','58',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGNCG','RGNC geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6645','IGNF','58',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGNCGEO','RGNC geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6645','IGNF','58',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGPFGDD','RGPF geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6687','IGNF','59',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGPFGEO','RGPF geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6687','IGNF','59',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGPFG','RGPF geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6687','IGNF','59',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGR92GEODD','RGR92 geographiques (dd)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6627','IGNF','56',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGR92GDD','RGR92 geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6627','IGNF','56',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGR92GEO','RGR92 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6627','IGNF','56',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGR92G','RGR92 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6627','IGNF','56',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGSPM06GDD','RGSPM06 geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1038','IGNF','60',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGSPM06GEODD','RGSPM06 geographiques (dd)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1038','IGNF','60',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGSPM06GEO','RGSPM06 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1038','IGNF','60',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGSPM06G','RGSPM06 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1038','IGNF','60',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGTAAFGEODD','RGTAAF07 geographiques (dd)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1113','IGNF','61',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGTAAF07GDD','RGTAAF07 geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1113','IGNF','61',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGTAAFGEO','RGTAAF07 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','1113','IGNF','61',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RGTAAF07G','RGTAAF07 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','1113','IGNF','61',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RRAFGDD','RRAF geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6640','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS84MARTGDD','RRAF geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6640','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RRAFGEODD','RRAF geographiques (dd)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6640','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','W84MARTGEODD','RRAF geographiques (dd)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6640','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RRAFGEO','RRAF geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6640','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS84GUADGEO','RRAF geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6640','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RRAFG','RRAF geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6640','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS84MARTG','RRAF geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6640','IGNF','57',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','RUSAT84G','Rurutu (SAT84) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0310001','IGNF','62',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','SAT84G','Rurutu (SAT84) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0310001','IGNF','62',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','STPL69G','Saint-Paul geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0150001','IGNF','63',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ST84G','ST 84 ILE DES PINS geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG7100001','IGNF','31',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ST87G','ST 87 OUVEA geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG7090001','IGNF','47',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','ST87GEO','ST 87 OUVEA geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG7090001','IGNF','47',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','STPM50GEO','St Pierre Miquelon 1950 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6638','IGNF','60',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','STPM50G','St Pierre Miquelon 1950 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6638','IGNF','60',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAHAAG','Tahaa geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6629','IGNF','64',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAHAAGEO','Tahaa geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6629','IGNF','64',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAHI79GEO','Tahiti (IGN79) geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6690','IGNF','65',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAHI79G','Tahiti (IGN79) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6690','IGNF','65',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAHI51G','TAHITI TERME NORD GEOGRAPHIQUES (DMS)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6628','IGNF','65',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TAKA69G','Takaroa Takapoto (SHM 1969) geo. (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5910001','IGNF','66',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TANNAG','Tanna geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5250001','IGNF','67',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TETIA90G','Tetiaroa (MOP90) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0280001','IGNF','68',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','MOP90G','Tetiaroa (MOP90) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0280001','IGNF','68',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TIKE60G','Tikehau (MHPF 1960) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5920001','IGNF','69',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TIKE88GEO','TIKEHAU (MOP88) GEOGRAPHIQUES (DMS)',NULL,NULL,'geographic 3D','EPSG','6426','IGNF','REG0870001','IGNF','69',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TIKE88G','TIKEHAU (MOP88) GEOGRAPHIQUES (DMS)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0870001','IGNF','69',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TIKE50G','Tikehau (SHM 1947-1950) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5930001','IGNF','69',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TROM56G','Tromelin geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG3820001','IGNF','70',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TUAM86G','Tuamotu (MOP86) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5960001','IGNF','71',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','APAT86G','Tuamotu (MOP86) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5960001','IGNF','71',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TUBU55G','Tubuai (MGT 1955) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5570001','IGNF','72',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TUBU69G','Tubuai (MHPF 1969) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5580001','IGNF','72',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','TURI69G','Tureia (SHM 1969) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG5940001','IGNF','73',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WALL76G','Wallis (MOP 1976) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','IGNF','REG0160001','IGNF','74',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WALL78G','Wallis (MOP 1978) geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6639','IGNF','74',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS72G','WGS72 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6322','IGNF','75',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS72GEO','WGS72 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6322','IGNF','75',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS84GEODD','WGS84 geographiques (dd)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6326','IGNF','75',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS84GDD','WGS84 geographiques (dd)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6326','IGNF','75',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS84GEO','WGS84 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6326','IGNF','75',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS84RRAFGEO','WGS84 geographiques (dms)',NULL,NULL,'geographic 3D','EPSG','6426','EPSG','6326','IGNF','75',NULL,0); INSERT INTO "geodetic_crs" VALUES('IGNF','WGS84G','WGS84 geographiques (dms)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6326','IGNF','75',NULL,0); INSERT INTO "area" VALUES('IGNF','76','BORA BORA (ARCHIPEL DE LA SOCIETE)','BORA BORA (ARCHIPEL DE LA SOCIETE)',-16.58,-16.42,-151.83,-151.67,0); INSERT INTO "vertical_crs" VALUES('IGNF','BORA01','BORA_SAU 2001',NULL,NULL,'EPSG','6499','IGNF','REA052','IGNF','76',0); INSERT INTO "vertical_crs" VALUES('IGNF','STPM50_V','DANGER 1950 (SAINT-PIERRE-ET-MIQUELON)',NULL,NULL,'EPSG','6499','IGNF','REA018','IGNF','60',0); INSERT INTO "vertical_crs" VALUES('IGNF','PETRELS52','EPF 1952 (ILE DES PETRELS)',NULL,NULL,'EPSG','6499','IGNF','REA034','IGNF','48',0); INSERT INTO "area" VALUES('IGNF','77','EUROPE (RESEAU VERTICAL UNIFIE)','EUROPE (RESEAU VERTICAL UNIFIE)',36,71.2,-10,32,0); INSERT INTO "vertical_crs" VALUES('IGNF','EVRF2000','EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'EPSG','6499','IGNF','REA122','IGNF','77',0); INSERT INTO "vertical_crs" VALUES('IGNF','EVRF2007','EVRF2007 (EUROPEAN VERTICAL REFERENCE FRAME 2007)',NULL,NULL,'EPSG','6499','IGNF','REA125','IGNF','77',0); INSERT INTO "area" VALUES('IGNF','78','HUAHINE (ARCHIPEL DE LA SOCIETE)','HUAHINE (ARCHIPEL DE LA SOCIETE)',-17,-16.5,-151.5,-150.75,0); INSERT INTO "vertical_crs" VALUES('IGNF','HUAH01','HUAHINE_SAU 2001',NULL,NULL,'EPSG','6499','IGNF','REA051','IGNF','78',0); INSERT INTO "vertical_crs" VALUES('IGNF','KERG62','IGN 1962 (KERGUELEN)',NULL,NULL,'EPSG','6499','IGNF','REA026','IGNF','34',0); INSERT INTO "vertical_crs" VALUES('IGNF','TAHITI66','IGN 1966 (TAHITI)',NULL,NULL,'EPSG','6499','IGNF','REA028','IGNF','65',0); INSERT INTO "vertical_crs" VALUES('IGNF','UVEA84','IGN 1984 (ILE UVEA)',NULL,NULL,'EPSG','6499','IGNF','REA027','IGNF','74',0); INSERT INTO "vertical_crs" VALUES('IGNF','MART87','IGN 1987 (MARTINIQUE)',NULL,NULL,'EPSG','6499','IGNF','REA014','IGNF','39',0); INSERT INTO "area" VALUES('IGNF','79','GRANDE-TERRE ET BASSE-TERRE (GUADELOUPE)','GRANDE-TERRE ET BASSE-TERRE (GUADELOUPE)',15.88,16.63,-61.85,-61.08,0); INSERT INTO "vertical_crs" VALUES('IGNF','GUAD88','IGN 1988 (GUADELOUPE)',NULL,NULL,'EPSG','6499','IGNF','REA006','IGNF','79',0); INSERT INTO "area" VALUES('IGNF','80','ILE DES SAINTES (GUADELOUPE)','ILE DES SAINTES (GUADELOUPE)',15.8,15.93,-61.7,-61.48,0); INSERT INTO "vertical_crs" VALUES('IGNF','GUAD88LS','IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,NULL,'EPSG','6499','IGNF','REA008','IGNF','80',0); INSERT INTO "area" VALUES('IGNF','81','ILE DE MARIE-GALANTE (GUADELOUPE)','ILE DE MARIE-GALANTE (GUADELOUPE)',15.8,16.13,-61.4,-61.08,0); INSERT INTO "vertical_crs" VALUES('IGNF','GUAD88MG','IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,NULL,'EPSG','6499','IGNF','REA007','IGNF','81',0); INSERT INTO "area" VALUES('IGNF','82','ILE DE SAINT-BARTHELEMY','ILE DE SAINT-BARTHELEMY',17.8,18.03,-63,-62.73,0); INSERT INTO "vertical_crs" VALUES('IGNF','GUAD88SB','IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,NULL,'EPSG','6499','IGNF','REA012','IGNF','82',0); INSERT INTO "area" VALUES('IGNF','83','ILE DE SAINT-MARTIN (GUADELOUPE)','ILE DE SAINT-MARTIN (GUADELOUPE)',18,18.2,-63.2,-62.5,0); INSERT INTO "vertical_crs" VALUES('IGNF','GUAD88SM','IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,NULL,'EPSG','6499','IGNF','REA009','IGNF','83',0); INSERT INTO "vertical_crs" VALUES('IGNF','REUN89','IGN 1989 (REUNION)',NULL,NULL,'EPSG','6499','IGNF','REA033','IGNF','56',0); INSERT INTO "area" VALUES('IGNF','84','ILE DE LA DESIRADE (GUADELOUPE)','ILE DE LA DESIRADE (GUADELOUPE)',16.25,16.4,-61.2,-60.75,0); INSERT INTO "vertical_crs" VALUES('IGNF','GUAD92LD','IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'EPSG','6499','IGNF','REA037','IGNF','84',0); INSERT INTO "vertical_crs" VALUES('IGNF','GUAD2008LD','IGN 2008 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'EPSG','6499','IGNF','REA053','IGNF','84',0); INSERT INTO "vertical_crs" VALUES('IGNF','MAUPITI01','MAUPITI_SAU 2001',NULL,NULL,'EPSG','6499','IGNF','REA047','IGNF','40',0); INSERT INTO "vertical_crs" VALUES('IGNF','MOOREA81','MOOREA 1981 (MOOREA_SAU 2001)',NULL,NULL,'EPSG','6499','IGNF','REA029','IGNF','42',0); INSERT INTO "area" VALUES('IGNF','85','FRANCE CONTINENTALE (CORSE EXCLUE)','FRANCE CONTINENTALE (CORSE EXCLUE)',42,51.5,-5.5,8.5,0); INSERT INTO "vertical_crs" VALUES('IGNF','BOURD','NGF-BOURDALOUE',NULL,NULL,'EPSG','6499','IGNF','REA001','IGNF','85',0); INSERT INTO "vertical_crs" VALUES('IGNF','IGN69','NGF-IGN 1969',NULL,NULL,'EPSG','6499','IGNF','REA003','IGNF','85',0); INSERT INTO "area" VALUES('IGNF','86','CORSE','CORSE',41.2,43.5,8,10,0); INSERT INTO "vertical_crs" VALUES('IGNF','IGN78C','NGF-IGN 1978',NULL,NULL,'EPSG','6499','IGNF','REA011','IGNF','86',0); INSERT INTO "vertical_crs" VALUES('IGNF','NGF84','NGF-LALLEMAND',NULL,NULL,'EPSG','6499','IGNF','REA002','IGNF','85',0); INSERT INTO "area" VALUES('IGNF','87','ILES FUTUNA ET ALOFI (ILES HORN)','ILES FUTUNA ET ALOFI (ILES HORN)',-14.39,-14.23,-179.98,-178.2,0); INSERT INTO "vertical_crs" VALUES('IGNF','FUTUNA1997','NGWF ILES HORN (FUTUNA ET ALOFI)',NULL,NULL,'EPSG','6499','IGNF','REA054','IGNF','87',0); INSERT INTO "vertical_crs" VALUES('IGNF','WALLIS96','NGWF WALLIS (MOP 1996)',NULL,NULL,'EPSG','6499','IGNF','REA041','IGNF','74',0); INSERT INTO "vertical_crs" VALUES('IGNF','GUYA77','NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'EPSG','6499','IGNF','REA016','IGNF','10',0); INSERT INTO "vertical_crs" VALUES('IGNF','NGC48','NIVELLEMENT GENERAL DE LA CORSE (NGC)',NULL,NULL,'EPSG','6499','IGNF','REA010','IGNF','86',0); INSERT INTO "vertical_crs" VALUES('IGNF','LIFOU91','NIVELLEMENT GENERAL DE LIFOU (IGN 1991 LF)',NULL,NULL,'EPSG','6499','IGNF','REA036','IGNF','35',0); INSERT INTO "vertical_crs" VALUES('IGNF','MARE91','NIVELLEMENT GENERAL DE MARE (IGN 1991 MR)',NULL,NULL,'EPSG','6499','IGNF','REA035','IGNF','38',0); INSERT INTO "vertical_crs" VALUES('IGNF','NCAL69','NIVELLEMENT GENERAL DE NOUVELLE-CALEDONIE (NGNC)',NULL,NULL,'EPSG','6499','IGNF','REA019','IGNF','21',0); INSERT INTO "vertical_crs" VALUES('IGNF','NNLUX','NIVELLEMENT GENERAL DU LUXEMBOURG',NULL,NULL,'EPSG','6499','IGNF','REA109','IGNF','45',0); INSERT INTO "vertical_crs" VALUES('IGNF','RAIA01','RAIATEA_SAU 2001',NULL,NULL,'EPSG','6499','IGNF','REA049','IGNF','51',0); INSERT INTO "vertical_crs" VALUES('IGNF','MAYO53','SHOM 1953 (MAYOTTE)',NULL,NULL,'EPSG','6499','IGNF','REA038','IGNF','5',0); INSERT INTO "vertical_crs" VALUES('IGNF','GLOR77','SHOM 1977 (ILES GLORIEUSES - CANAL DE MOZAMBIQUE)',NULL,NULL,'EPSG','6499','IGNF','REA042','IGNF','20',0); INSERT INTO "vertical_crs" VALUES('IGNF','PINS78','SHOM 1978 (ILE DES PINS)',NULL,NULL,'EPSG','6499','IGNF','REA020','IGNF','31',0); INSERT INTO "vertical_crs" VALUES('IGNF','SHOM1984WF','SHOM 1984 (WALLIS ET FUTUNA)',NULL,NULL,'EPSG','6499','IGNF','REA027','IGNF','74',0); INSERT INTO "vertical_crs" VALUES('IGNF','TAHAA01','TAHAA_SAU 2001',NULL,NULL,'EPSG','6499','IGNF','REA050','IGNF','64',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG682','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers NOUVELLE TRIANGULATION DE LA FRANCE (NTF)',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATIG','IGNF','NTF','IGNF','4',NULL,1286,83,-254,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG682_ATI_NTF','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers NOUVELLE TRIANGULATION DE LA FRANCE (NTF)',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATI','IGNF','NTF','IGNF','4',NULL,1286,83,-254,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG682_ATIGG_TO_NTFG','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers NOUVELLE TRIANGULATION DE LA FRANCE (NTF)',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','NTFG','IGNF','4',NULL,1286,83,-254,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG683','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers NOUVELLE TRIANGULATION DE LA FRANCE (NTF)',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATIG','IGNF','NTF','IGNF','85',NULL,1295,82,-263,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG683_ATI_NTF','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers NOUVELLE TRIANGULATION DE LA FRANCE (NTF)',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATI','IGNF','NTF','IGNF','85',NULL,1295,82,-263,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG683_ATIGG_TO_NTFG','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers NOUVELLE TRIANGULATION DE LA FRANCE (NTF)',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','NTFG','IGNF','85',NULL,1295,82,-263,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATIG','IGNF','WGS84','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATIG_RRAF91','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATIG','IGNF','RRAF91','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATIG_4978','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATIG','EPSG','4978','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATI_WGS84','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATI','IGNF','WGS84','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATI_RRAF91','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATI','IGNF','RRAF91','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATI_4978','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATI','EPSG','4978','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATIGG_TO_WGS84GEODD','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','WGS84GEODD','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATIGG_TO_WGS84GDD','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','WGS84GDD','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATIGG_TO_WGS84GEO','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','WGS84GEO','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATIGG_TO_WGS84RRAFGEO','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','WGS84RRAFGEO','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATIGG_TO_WGS84G','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','WGS84G','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG681_ATIGG_TO_4326','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','EPSG','4326','IGNF','4',NULL,1118,23,66,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATIG','IGNF','WGS84','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATIG_RRAF91','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATIG','IGNF','RRAF91','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATIG_4978','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATIG','EPSG','4978','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATI_WGS84','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATI','IGNF','WGS84','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATI_RRAF91','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATI','IGNF','RRAF91','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATI_4978','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ATI','EPSG','4978','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATIGG_TO_WGS84GEODD','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','WGS84GEODD','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATIGG_TO_WGS84GDD','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','WGS84GDD','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATIGG_TO_WGS84GEO','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','WGS84GEO','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATIGG_TO_WGS84RRAFGEO','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','WGS84RRAFGEO','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATIGG_TO_WGS84G','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','IGNF','WGS84G','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG684_ATIGG_TO_4326','ANCIENNE TRIANGULATION DES INGENIEURS GEOGRAPHES (ATIG) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ATIGG','EPSG','4326','IGNF','85',NULL,1127,22,57,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','88','ILE DE BORA-BORA','ILE DE BORA-BORA',-16.75,-16.25,-152.0,-151.5,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1149','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers BORA_SAU 2001',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGPFGEO','IGNF','BORA01','IGNF','88',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf02-Bora.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','89','MAYOTTE','MAYOTTE',-13.05,-12.5,44.95,45.4,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG786','CADASTRE 1997 vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','CAD97','IGNF','RGM04','IGNF','89',NULL,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG786_CAD97G_TO_RGM04GEODD','CADASTRE 1997 vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CAD97G','IGNF','RGM04GEODD','IGNF','89',NULL,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG786_CAD97G_TO_RGM04GDD','CADASTRE 1997 vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CAD97G','IGNF','RGM04GDD','IGNF','89',NULL,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG786_CAD97G_TO_RGM04G','CADASTRE 1997 vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CAD97G','IGNF','RGM04G','IGNF','89',NULL,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG786_CAD97G_TO_RGM04GEO','CADASTRE 1997 vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CAD97G','IGNF','RGM04GEO','IGNF','89',NULL,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG786_CAD97GEO_TO_RGM04GEODD','CADASTRE 1997 vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CAD97GEO','IGNF','RGM04GEODD','IGNF','89',NULL,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG786_CAD97GEO_TO_RGM04GDD','CADASTRE 1997 vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CAD97GEO','IGNF','RGM04GDD','IGNF','89',NULL,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG786_CAD97GEO_TO_RGM04G','CADASTRE 1997 vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CAD97GEO','IGNF','RGM04G','IGNF','89',NULL,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG786_CAD97GEO_TO_RGM04GEO','CADASTRE 1997 vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CAD97GEO','IGNF','RGM04GEO','IGNF','89',NULL,-381.788,-57.501,-256.673,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG787','COMBANI vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','MAYO50','IGNF','RGM04','IGNF','89',NULL,-599.928,-275.552,-195.665,'EPSG','9001',-0.0835,-0.4715,0.0602,'EPSG','9104',49.2814,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG787_MAYO50GEO_TO_RGM04GEODD','COMBANI vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MAYO50GEO','IGNF','RGM04GEODD','IGNF','89',NULL,-599.928,-275.552,-195.665,'EPSG','9001',-0.0835,-0.4715,0.0602,'EPSG','9104',49.2814,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG787_MAYO50GEO_TO_RGM04GDD','COMBANI vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MAYO50GEO','IGNF','RGM04GDD','IGNF','89',NULL,-599.928,-275.552,-195.665,'EPSG','9001',-0.0835,-0.4715,0.0602,'EPSG','9104',49.2814,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG787_MAYO50GEO_TO_RGM04G','COMBANI vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MAYO50GEO','IGNF','RGM04G','IGNF','89',NULL,-599.928,-275.552,-195.665,'EPSG','9001',-0.0835,-0.4715,0.0602,'EPSG','9104',49.2814,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG787_MAYO50GEO_TO_RGM04GEO','COMBANI vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MAYO50GEO','IGNF','RGM04GEO','IGNF','89',NULL,-599.928,-275.552,-195.665,'EPSG','9001',-0.0835,-0.4715,0.0602,'EPSG','9104',49.2814,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG787_MAYO50G_TO_RGM04GEODD','COMBANI vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MAYO50G','IGNF','RGM04GEODD','IGNF','89',NULL,-599.928,-275.552,-195.665,'EPSG','9001',-0.0835,-0.4715,0.0602,'EPSG','9104',49.2814,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG787_MAYO50G_TO_RGM04GDD','COMBANI vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MAYO50G','IGNF','RGM04GDD','IGNF','89',NULL,-599.928,-275.552,-195.665,'EPSG','9001',-0.0835,-0.4715,0.0602,'EPSG','9104',49.2814,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG787_MAYO50G_TO_RGM04G','COMBANI vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MAYO50G','IGNF','RGM04G','IGNF','89',NULL,-599.928,-275.552,-195.665,'EPSG','9001',-0.0835,-0.4715,0.0602,'EPSG','9104',49.2814,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG787_MAYO50G_TO_RGM04GEO','COMBANI vers RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MAYO50G','IGNF','RGM04GEO','IGNF','89',NULL,-599.928,-275.552,-195.665,'EPSG','9001',-0.0835,-0.4715,0.0602,'EPSG','9104',49.2814,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MAYO50','IGNF','WGS84','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50_RRAF91','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MAYO50','IGNF','RRAF91','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50_4978','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MAYO50','EPSG','4978','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50GEO_TO_WGS84GEODD','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50GEO','IGNF','WGS84GEODD','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50GEO_TO_WGS84GDD','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50GEO','IGNF','WGS84GDD','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50GEO_TO_WGS84GEO','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50GEO','IGNF','WGS84GEO','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50GEO_TO_WGS84RRAFGEO','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50GEO','IGNF','WGS84RRAFGEO','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50GEO_TO_WGS84G','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50GEO','IGNF','WGS84G','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50GEO_TO_4326','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50GEO','EPSG','4326','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50G_TO_WGS84GEODD','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50G','IGNF','WGS84GEODD','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50G_TO_WGS84GDD','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50G','IGNF','WGS84GDD','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50G_TO_WGS84GEO','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50G','IGNF','WGS84GEO','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50G_TO_WGS84RRAFGEO','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50G','IGNF','WGS84RRAFGEO','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50G_TO_WGS84G','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50G','IGNF','WGS84G','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG642_MAYO50G_TO_4326','COMBANI vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAYO50G','EPSG','4326','IGNF','89',NULL,-382,-59,-262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','CSG67','IGNF','WGS84','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67_RRAF91','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','CSG67','IGNF','RRAF91','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67_4978','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','CSG67','EPSG','4978','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67G_TO_WGS84GEODD','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67G','IGNF','WGS84GEODD','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67G_TO_WGS84GDD','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67G','IGNF','WGS84GDD','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67G_TO_WGS84GEO','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67G','IGNF','WGS84GEO','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67G_TO_WGS84RRAFGEO','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67G','IGNF','WGS84RRAFGEO','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67G_TO_WGS84G','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67G','IGNF','WGS84G','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67G_TO_4326','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67G','EPSG','4326','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67GEO_TO_WGS84GEODD','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67GEO','IGNF','WGS84GEODD','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67GEO_TO_WGS84GDD','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67GEO','IGNF','WGS84GDD','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67GEO_TO_WGS84GEO','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67GEO','IGNF','WGS84GEO','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67GEO_TO_WGS84RRAFGEO','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67GEO','IGNF','WGS84RRAFGEO','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67GEO_TO_WGS84G','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67GEO','IGNF','WGS84G','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG590_CSG67GEO_TO_4326','CSG 1967 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','CSG67GEO','EPSG','4326','EPSG','1262',NULL,-186,230,110,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','90','GUYANE','GUYANE',2.05,5.95,-54.95,-51.05,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG417','CSG 1967 (IGN 1995) vers RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','C67I95','IGNF','RGFG95','IGNF','90',NULL,-193.066,236.993,105.447,'EPSG','9001',0.4814,-0.8074,0.1276,'EPSG','9104',1.5649,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG417_C67IG95G_TO_RGFG95GDD','CSG 1967 (IGN 1995) vers RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','C67IG95G','IGNF','RGFG95GDD','IGNF','90',NULL,-193.066,236.993,105.447,'EPSG','9001',0.4814,-0.8074,0.1276,'EPSG','9104',1.5649,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG417_C67IG95G_TO_RGFG95GEODD','CSG 1967 (IGN 1995) vers RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','C67IG95G','IGNF','RGFG95GEODD','IGNF','90',NULL,-193.066,236.993,105.447,'EPSG','9001',0.4814,-0.8074,0.1276,'EPSG','9104',1.5649,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG417_C67IG95G_TO_RGFG95G','CSG 1967 (IGN 1995) vers RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','C67IG95G','IGNF','RGFG95G','IGNF','90',NULL,-193.066,236.993,105.447,'EPSG','9001',0.4814,-0.8074,0.1276,'EPSG','9104',1.5649,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG417_C67IG95G_TO_RGFG95GEO','CSG 1967 (IGN 1995) vers RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','C67IG95G','IGNF','RGFG95GEO','IGNF','90',NULL,-193.066,236.993,105.447,'EPSG','9001',0.4814,-0.8074,0.1276,'EPSG','9104',1.5649,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1156','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers DANGER 1950 (SAINT-PIERRE-ET-MIQUELON)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGSPM06GEO','IGNF','STPM50_V','IGNF','60',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggspm06v1.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','91','FRANCE','FRANCE',41,52,-5.5,10,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','WGS72','IGNF','WGS84','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72_RRAF91','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','WGS72','IGNF','RRAF91','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72_4978','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','WGS72','EPSG','4978','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72G_TO_WGS84GEODD','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72G','IGNF','WGS84GEODD','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72G_TO_WGS84GDD','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72G','IGNF','WGS84GDD','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72G_TO_WGS84GEO','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72G','IGNF','WGS84GEO','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72G_TO_WGS84RRAFGEO','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72G','IGNF','WGS84RRAFGEO','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72G_TO_WGS84G','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72G','IGNF','WGS84G','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72G_TO_4326','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72G','EPSG','4326','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72GEO_TO_WGS84GEODD','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72GEO','IGNF','WGS84GEODD','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72GEO_TO_WGS84GDD','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72GEO','IGNF','WGS84GDD','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72GEO_TO_WGS84GEO','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72GEO','IGNF','WGS84GEO','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72GEO_TO_WGS84RRAFGEO','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72GEO','IGNF','WGS84RRAFGEO','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72GEO_TO_WGS84G','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72GEO','IGNF','WGS84G','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG348_WGS72GEO_TO_4326','DOD WORLD GEODETIC SYSTEM 1972 (WGS 72) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WGS72GEO','EPSG','4326','IGNF','91',NULL,0,12,6,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','92','VANUATU','VANUATU',-18,-17.25,168,168.67,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','EFATE57','IGNF','WGS84','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57_RRAF91','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','EFATE57','IGNF','RRAF91','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57_4978','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','EFATE57','EPSG','4978','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57G_TO_WGS84GEODD','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57G','IGNF','WGS84GEODD','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57G_TO_WGS84GDD','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57G','IGNF','WGS84GDD','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57G_TO_WGS84GEO','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57G','IGNF','WGS84GEO','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57G_TO_WGS84RRAFGEO','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57G','IGNF','WGS84RRAFGEO','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57G_TO_WGS84G','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57G','IGNF','WGS84G','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57G_TO_4326','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57G','EPSG','4326','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57GEO_TO_WGS84GEODD','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57GEO','IGNF','WGS84GEODD','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57GEO_TO_WGS84GDD','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57GEO','IGNF','WGS84GDD','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57GEO_TO_WGS84GEO','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57GEO','IGNF','WGS84GEO','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57GEO_TO_WGS84RRAFGEO','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57GEO','IGNF','WGS84RRAFGEO','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57GEO_TO_WGS84G','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57GEO','IGNF','WGS84G','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG518_EFATE57GEO_TO_4326','EFATE-IGN 1957 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','EFATE57GEO','EPSG','4326','IGNF','92',NULL,-127,-769,472,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ETRS89','IGNF','WGS84','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89_RRAF91','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ETRS89','IGNF','RRAF91','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89_4978','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ETRS89','EPSG','4978','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89G_TO_WGS84GEODD','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89G','IGNF','WGS84GEODD','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89G_TO_WGS84GDD','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89G','IGNF','WGS84GDD','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89G_TO_WGS84GEO','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89G','IGNF','WGS84GEO','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89G_TO_WGS84RRAFGEO','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89G','IGNF','WGS84RRAFGEO','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89G_TO_WGS84G','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89G','IGNF','WGS84G','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89G_TO_4326','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89G','EPSG','4326','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89GEO_TO_WGS84GEODD','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89GEO','IGNF','WGS84GEODD','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89GEO_TO_WGS84GDD','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89GEO','IGNF','WGS84GDD','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89GEO_TO_WGS84GEO','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89GEO','IGNF','WGS84GEO','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89GEO_TO_WGS84RRAFGEO','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89GEO','IGNF','WGS84RRAFGEO','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89GEO_TO_WGS84G','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89GEO','IGNF','WGS84G','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1214_ETRS89GEO_TO_4326','ETRS 89 vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ETRS89GEO','EPSG','4326','IGNF','14',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ED50','IGNF','WGS84','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50_RRAF91','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ED50','IGNF','RRAF91','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50_4978','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ED50','EPSG','4978','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50G_TO_WGS84GEODD','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50G','IGNF','WGS84GEODD','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50GEO_TO_WGS84GEODD','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50GEO','IGNF','WGS84GEODD','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50G_TO_WGS84GDD','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50G','IGNF','WGS84GDD','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50GEO_TO_WGS84GDD','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50GEO','IGNF','WGS84GDD','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50G_TO_WGS84GEO','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50G','IGNF','WGS84GEO','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50G_TO_WGS84RRAFGEO','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50G','IGNF','WGS84RRAFGEO','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50GEO_TO_WGS84GEO','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50GEO','IGNF','WGS84GEO','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50GEO_TO_WGS84RRAFGEO','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50GEO','IGNF','WGS84RRAFGEO','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50G_TO_WGS84G','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50G','IGNF','WGS84G','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50G_TO_4326','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50G','EPSG','4326','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50GEO_TO_WGS84G','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50GEO','IGNF','WGS84G','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG709_ED50GEO_TO_4326','EUROPE 1950 (ED50) vers WGS 84',NULL,'NATIONALE, HISTORIQUE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ED50GEO','EPSG','4326','IGNF','91',NULL,-84,-97,-117,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','93','GUADELOUPE (ILES ST-MARTIN ET ST-BARTHELEMY)','GUADELOUPE (ILES ST-MARTIN ET ST-BARTHELEMY)',17.82,18.18,-63.18,-62.25,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','GUADFM','IGNF','RRAF','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM_WGS84GUAD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','GUADFM','IGNF','WGS84GUAD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM49_RRAF','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','GUADFM49','IGNF','RRAF','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM49_WGS84GUAD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','GUADFM49','IGNF','WGS84GUAD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFMG_TO_RRAFGDD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFMG','IGNF','RRAFGDD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFMG_TO_WGS84MARTGDD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFMG','IGNF','WGS84MARTGDD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUAFM48G_TO_RRAFGDD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAFM48G','IGNF','RRAFGDD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUAFM48G_TO_WGS84MARTGDD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAFM48G','IGNF','WGS84MARTGDD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFMG_TO_RRAFGEODD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFMG','IGNF','RRAFGEODD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFMG_TO_W84MARTGEODD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFMG','IGNF','W84MARTGEODD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUAFM48G_TO_RRAFGEODD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAFM48G','IGNF','RRAFGEODD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUAFM48G_TO_W84MARTGEODD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAFM48G','IGNF','W84MARTGEODD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFMG_TO_RRAFGEO','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFMG','IGNF','RRAFGEO','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFMG_TO_WGS84GUADGEO','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFMG','IGNF','WGS84GUADGEO','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUAFM48G_TO_RRAFGEO','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAFM48G','IGNF','RRAFGEO','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUAFM48G_TO_WGS84GUADGEO','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAFM48G','IGNF','WGS84GUADGEO','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFMG_TO_RRAFG','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFMG','IGNF','RRAFG','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFMG_TO_WGS84MARTG','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFMG','IGNF','WGS84MARTG','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUAFM48G_TO_RRAFG','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAFM48G','IGNF','RRAFG','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUAFM48G_TO_WGS84MARTG','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAFM48G','IGNF','WGS84MARTG','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM49GEO_TO_RRAFGDD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFM49GEO','IGNF','RRAFGDD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM49GEO_TO_WGS84MARTGDD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFM49GEO','IGNF','WGS84MARTGDD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM49GEO_TO_RRAFGEODD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFM49GEO','IGNF','RRAFGEODD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM49GEO_TO_W84MARTGEODD','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFM49GEO','IGNF','W84MARTGEODD','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM49GEO_TO_RRAFGEO','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFM49GEO','IGNF','RRAFGEO','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM49GEO_TO_WGS84GUADGEO','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFM49GEO','IGNF','WGS84GUADGEO','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM49GEO_TO_RRAFG','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFM49GEO','IGNF','RRAFG','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG464_GUADFM49GEO_TO_WGS84MARTG','GUADELOUPE - FORT MARIGOT vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADFM49GEO','IGNF','WGS84MARTG','IGNF','93',NULL,136.596,248.148,-429.789,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','94','BASSE TERRE - GRANDE TERRE','BASSE TERRE - GRANDE TERRE',15.88,16.63,-61.85,-61.08,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','GUADANN','IGNF','WGS84','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUADANN_RRAF91','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','GUADANN','IGNF','RRAF91','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUADANN_4978','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','GUADANN','EPSG','4978','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48_WGS84','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','GUAD48','IGNF','WGS84','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48_RRAF91','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','GUAD48','IGNF','RRAF91','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48_4978','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','GUAD48','EPSG','4978','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUADANNG_TO_WGS84GEODD','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADANNG','IGNF','WGS84GEODD','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48G_TO_WGS84GEODD','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48G','IGNF','WGS84GEODD','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUADANNG_TO_WGS84GDD','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADANNG','IGNF','WGS84GDD','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48G_TO_WGS84GDD','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48G','IGNF','WGS84GDD','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUADANNG_TO_WGS84GEO','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADANNG','IGNF','WGS84GEO','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUADANNG_TO_WGS84RRAFGEO','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADANNG','IGNF','WGS84RRAFGEO','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48G_TO_WGS84GEO','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48G','IGNF','WGS84GEO','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48G_TO_WGS84RRAFGEO','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48G','IGNF','WGS84RRAFGEO','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUADANNG_TO_WGS84G','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADANNG','IGNF','WGS84G','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUADANNG_TO_4326','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUADANNG','EPSG','4326','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48G_TO_WGS84G','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48G','IGNF','WGS84G','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48G_TO_4326','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48G','EPSG','4326','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48GEO_TO_WGS84GEODD','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48GEO','IGNF','WGS84GEODD','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48GEO_TO_WGS84GDD','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48GEO','IGNF','WGS84GDD','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48GEO_TO_WGS84GEO','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48GEO','IGNF','WGS84GEO','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48GEO_TO_WGS84RRAFGEO','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48GEO','IGNF','WGS84RRAFGEO','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48GEO_TO_WGS84G','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48GEO','IGNF','WGS84G','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG592_GUAD48GEO_TO_4326','GUADELOUPE - STE ANNE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','GUAD48GEO','EPSG','4326','IGNF','94',NULL,-467,-16,-300,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','95','GUADELOUPE (TOUTES ILES SAUF ST-BARTHELEMY ET ST-MARTIN)','GUADELOUPE (TOUTES ILES SAUF ST-BARTHELEMY ET ST-MARTIN)',15.82,16.6,-61.83,-60.77,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','GUADANN','IGNF','RRAF','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUADANN_WGS84GUAD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','GUADANN','IGNF','WGS84GUAD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48_RRAF','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','GUAD48','IGNF','RRAF','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48_WGS84GUAD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','GUAD48','IGNF','WGS84GUAD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUADANNG_TO_RRAFGDD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUADANNG','IGNF','RRAFGDD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUADANNG_TO_WGS84MARTGDD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUADANNG','IGNF','WGS84MARTGDD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48G_TO_RRAFGDD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48G','IGNF','RRAFGDD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48G_TO_WGS84MARTGDD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48G','IGNF','WGS84MARTGDD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUADANNG_TO_RRAFGEODD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUADANNG','IGNF','RRAFGEODD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUADANNG_TO_W84MARTGEODD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUADANNG','IGNF','W84MARTGEODD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48G_TO_RRAFGEODD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48G','IGNF','RRAFGEODD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48G_TO_W84MARTGEODD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48G','IGNF','W84MARTGEODD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUADANNG_TO_RRAFGEO','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUADANNG','IGNF','RRAFGEO','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUADANNG_TO_WGS84GUADGEO','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUADANNG','IGNF','WGS84GUADGEO','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48G_TO_RRAFGEO','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48G','IGNF','RRAFGEO','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48G_TO_WGS84GUADGEO','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48G','IGNF','WGS84GUADGEO','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUADANNG_TO_RRAFG','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUADANNG','IGNF','RRAFG','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUADANNG_TO_WGS84MARTG','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUADANNG','IGNF','WGS84MARTG','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48G_TO_RRAFG','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48G','IGNF','RRAFG','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48G_TO_WGS84MARTG','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48G','IGNF','WGS84MARTG','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48GEO_TO_RRAFGDD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48GEO','IGNF','RRAFGDD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48GEO_TO_WGS84MARTGDD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48GEO','IGNF','WGS84MARTGDD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48GEO_TO_RRAFGEODD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48GEO','IGNF','RRAFGEODD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48GEO_TO_W84MARTGEODD','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48GEO','IGNF','W84MARTGEODD','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48GEO_TO_RRAFGEO','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48GEO','IGNF','RRAFGEO','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48GEO_TO_WGS84GUADGEO','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48GEO','IGNF','WGS84GUADGEO','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48GEO_TO_RRAFG','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48GEO','IGNF','RRAFG','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG465_GUAD48GEO_TO_WGS84MARTG','GUADELOUPE - STE ANNE vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','GUAD48GEO','IGNF','WGS84MARTG','IGNF','95',NULL,-472.29,-5.63,-304.12,'EPSG','9001',0.4362,-0.8374,0.2563,'EPSG','9104',1.8984,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','96','ILE DE HUAHINE','ILE DE HUAHINE',-17.0,-16.5,-151.5,-150.75,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1150','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers HUAHINE_SAU 2001',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGPFGEO','IGNF','HUAH01','IGNF','96',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf02-Huahine.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','97','GRANDE TERRE DES ILES KERGUELEN','GRANDE TERRE DES ILES KERGUELEN',-50.5,-48.0,67.0,71.0,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1148','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers IGN 1962 (KERGUELEN)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGTAAFGEO','IGNF','KERG62','IGNF','97',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggker08v2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','98','HIVA OA, TAHUATA, MOHOTANI','HIVA OA, TAHUATA, MOHOTANI',-9.88,-9.65,-139.2,-138.75,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','ATUO63','IGNF','RGPF','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006_IGN63_RGPF','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','IGN63','IGNF','RGPF','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006_ATUO63G_TO_RGPFGDD','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','ATUO63G','IGNF','RGPFGDD','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006_IGN63G_TO_RGPFGDD','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63G','IGNF','RGPFGDD','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006_ATUO63G_TO_RGPFGEO','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','ATUO63G','IGNF','RGPFGEO','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006_IGN63G_TO_RGPFGEO','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63G','IGNF','RGPFGEO','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006_ATUO63G_TO_RGPFG','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','ATUO63G','IGNF','RGPFG','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006_IGN63G_TO_RGPFG','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63G','IGNF','RGPFG','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006_IGN63GEO_TO_RGPFGDD','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63GEO','IGNF','RGPFGDD','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006_IGN63GEO_TO_RGPFGEO','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63GEO','IGNF','RGPFGEO','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1006_IGN63GEO_TO_RGPFG','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63GEO','IGNF','RGPFG','IGNF','98',NULL,410.721,55.049,80.746,'EPSG','9001',-2.5779,-2.3514,-0.6664,'EPSG','9104',17.3311,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','99','TAHUATA','TAHUATA',-10.05,-9.85,-139.2,-139,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','ATUO63','IGNF','RGPF','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008_IGN63_RGPF','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','IGN63','IGNF','RGPF','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008_ATUO63G_TO_RGPFGDD','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','ATUO63G','IGNF','RGPFGDD','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008_IGN63G_TO_RGPFGDD','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63G','IGNF','RGPFGDD','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008_ATUO63G_TO_RGPFGEO','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','ATUO63G','IGNF','RGPFGEO','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008_IGN63G_TO_RGPFGEO','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63G','IGNF','RGPFGEO','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008_ATUO63G_TO_RGPFG','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','ATUO63G','IGNF','RGPFG','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008_IGN63G_TO_RGPFG','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63G','IGNF','RGPFG','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008_IGN63GEO_TO_RGPFGDD','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63GEO','IGNF','RGPFGDD','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008_IGN63GEO_TO_RGPFGEO','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63GEO','IGNF','RGPFGEO','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1008_IGN63GEO_TO_RGPFG','IGN 1963 (HIVA OA - TAHUATA - MOHOTANI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','IGN63GEO','IGNF','RGPFG','IGNF','99',NULL,374.715,-58.407,-0.957,'EPSG','9001',-16.2111,-11.4626,-5.5357,'EPSG','9104',-0.5409,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','100','ILE DE FAKARAVA','ILE DE FAKARAVA',-16.65,-15.95,-145.9,-145.3,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1185','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers IGN 1966 (TAHITI)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGPFGEO','IGNF','TAHITI66','IGNF','100',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf08-Fakarava.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','101','ILE DE TAHITI','ILE DE TAHITI',-18.0,-17.0,-149.69,-149.0,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1195','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers IGN 1966 (TAHITI)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGPFGEO','IGNF','TAHITI66','IGNF','101',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf10-Tahiti.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','102','NUKU HIVA','NUKU HIVA',-9,-8.7,-140.3,-140,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1007','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','NUKU72','IGNF','RGPF','IGNF','102',NULL,165.732,216.720,180.505,'EPSG','9001',-0.6434,-0.4512,-0.0791,'EPSG','9104',7.4204,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1007_NUKU72GEO_TO_RGPFGDD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72GEO','IGNF','RGPFGDD','IGNF','102',NULL,165.732,216.720,180.505,'EPSG','9001',-0.6434,-0.4512,-0.0791,'EPSG','9104',7.4204,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1007_NUKU72GEO_TO_RGPFGEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72GEO','IGNF','RGPFGEO','IGNF','102',NULL,165.732,216.720,180.505,'EPSG','9001',-0.6434,-0.4512,-0.0791,'EPSG','9104',7.4204,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1007_NUKU72GEO_TO_RGPFG','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72GEO','IGNF','RGPFG','IGNF','102',NULL,165.732,216.720,180.505,'EPSG','9001',-0.6434,-0.4512,-0.0791,'EPSG','9104',7.4204,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1007_NUKU72G_TO_RGPFGDD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72G','IGNF','RGPFGDD','IGNF','102',NULL,165.732,216.720,180.505,'EPSG','9001',-0.6434,-0.4512,-0.0791,'EPSG','9104',7.4204,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1007_NUKU72G_TO_RGPFGEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72G','IGNF','RGPFGEO','IGNF','102',NULL,165.732,216.720,180.505,'EPSG','9001',-0.6434,-0.4512,-0.0791,'EPSG','9104',7.4204,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1007_NUKU72G_TO_RGPFG','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72G','IGNF','RGPFG','IGNF','102',NULL,165.732,216.720,180.505,'EPSG','9001',-0.6434,-0.4512,-0.0791,'EPSG','9104',7.4204,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','103','UA HUKA','UA HUKA',-9.09,-8.75,-139.65,-139.25,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1009','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','NUKU72','IGNF','RGPF','IGNF','103',NULL,1363.785,1362.687,398.811,'EPSG','9001',-4.5322,-6.7579,-1.0574,'EPSG','9104',268.361,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1009_NUKU72GEO_TO_RGPFGDD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72GEO','IGNF','RGPFGDD','IGNF','103',NULL,1363.785,1362.687,398.811,'EPSG','9001',-4.5322,-6.7579,-1.0574,'EPSG','9104',268.361,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1009_NUKU72GEO_TO_RGPFGEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72GEO','IGNF','RGPFGEO','IGNF','103',NULL,1363.785,1362.687,398.811,'EPSG','9001',-4.5322,-6.7579,-1.0574,'EPSG','9104',268.361,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1009_NUKU72GEO_TO_RGPFG','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72GEO','IGNF','RGPFG','IGNF','103',NULL,1363.785,1362.687,398.811,'EPSG','9001',-4.5322,-6.7579,-1.0574,'EPSG','9104',268.361,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1009_NUKU72G_TO_RGPFGDD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72G','IGNF','RGPFGDD','IGNF','103',NULL,1363.785,1362.687,398.811,'EPSG','9001',-4.5322,-6.7579,-1.0574,'EPSG','9104',268.361,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1009_NUKU72G_TO_RGPFGEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72G','IGNF','RGPFGEO','IGNF','103',NULL,1363.785,1362.687,398.811,'EPSG','9001',-4.5322,-6.7579,-1.0574,'EPSG','9104',268.361,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1009_NUKU72G_TO_RGPFG','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72G','IGNF','RGPFG','IGNF','103',NULL,1363.785,1362.687,398.811,'EPSG','9001',-4.5322,-6.7579,-1.0574,'EPSG','9104',268.361,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','104','UA POU','UA POU',-9.75,-9.15,-140.25,-139.91,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1010','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','NUKU72','IGNF','RGPF','IGNF','104',NULL,259.551,297.612,197.833,'EPSG','9001',1.4866,2.1224,0.4612,'EPSG','9104',27.0249,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1010_NUKU72GEO_TO_RGPFGDD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72GEO','IGNF','RGPFGDD','IGNF','104',NULL,259.551,297.612,197.833,'EPSG','9001',1.4866,2.1224,0.4612,'EPSG','9104',27.0249,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1010_NUKU72GEO_TO_RGPFGEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72GEO','IGNF','RGPFGEO','IGNF','104',NULL,259.551,297.612,197.833,'EPSG','9001',1.4866,2.1224,0.4612,'EPSG','9104',27.0249,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1010_NUKU72GEO_TO_RGPFG','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72GEO','IGNF','RGPFG','IGNF','104',NULL,259.551,297.612,197.833,'EPSG','9001',1.4866,2.1224,0.4612,'EPSG','9104',27.0249,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1010_NUKU72G_TO_RGPFGDD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72G','IGNF','RGPFGDD','IGNF','104',NULL,259.551,297.612,197.833,'EPSG','9001',1.4866,2.1224,0.4612,'EPSG','9104',27.0249,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1010_NUKU72G_TO_RGPFGEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72G','IGNF','RGPFGEO','IGNF','104',NULL,259.551,297.612,197.833,'EPSG','9001',1.4866,2.1224,0.4612,'EPSG','9104',27.0249,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1010_NUKU72G_TO_RGPFG','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','NUKU72G','IGNF','RGPFG','IGNF','104',NULL,259.551,297.612,197.833,'EPSG','9001',1.4866,2.1224,0.4612,'EPSG','9104',27.0249,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','105','NUKU HIVA - ILES MARQUISES - POLYNESIE FRANCAISE','NUKU HIVA - ILES MARQUISES - POLYNESIE FRANCAISE',-9.5,-8.77,-140.27,-139.48,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','NUKU72','IGNF','WGS84','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72_RRAF91','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','NUKU72','IGNF','RRAF91','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72_4978','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','NUKU72','EPSG','4978','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72GEO_TO_WGS84GEODD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','IGNF','WGS84GEODD','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72GEO_TO_WGS84GDD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','IGNF','WGS84GDD','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72GEO_TO_WGS84GEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','IGNF','WGS84GEO','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72GEO_TO_WGS84RRAFGEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','IGNF','WGS84RRAFGEO','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72GEO_TO_WGS84G','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','IGNF','WGS84G','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72GEO_TO_4326','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','EPSG','4326','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72G_TO_WGS84GEODD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','IGNF','WGS84GEODD','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72G_TO_WGS84GDD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','IGNF','WGS84GDD','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72G_TO_WGS84GEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','IGNF','WGS84GEO','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72G_TO_WGS84RRAFGEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','IGNF','WGS84RRAFGEO','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72G_TO_WGS84G','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','IGNF','WGS84G','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG606_NUKU72G_TO_4326','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','EPSG','4326','IGNF','105',NULL,84,274,65,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','106','NUKU HIVA - MARQUISES','NUKU HIVA - MARQUISES',-9,-8.7,-140.3,-140,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','NUKU72','IGNF','WGS84','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72_RRAF91','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','NUKU72','IGNF','RRAF91','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72_4978','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','NUKU72','EPSG','4978','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72GEO_TO_WGS84GEODD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','IGNF','WGS84GEODD','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72GEO_TO_WGS84GDD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','IGNF','WGS84GDD','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72GEO_TO_WGS84GEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','IGNF','WGS84GEO','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72GEO_TO_WGS84RRAFGEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','IGNF','WGS84RRAFGEO','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72GEO_TO_WGS84G','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','IGNF','WGS84G','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72GEO_TO_4326','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72GEO','EPSG','4326','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72G_TO_WGS84GEODD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','IGNF','WGS84GEODD','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72G_TO_WGS84GDD','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','IGNF','WGS84GDD','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72G_TO_WGS84GEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','IGNF','WGS84GEO','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72G_TO_WGS84RRAFGEO','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','IGNF','WGS84RRAFGEO','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72G_TO_WGS84G','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','IGNF','WGS84G','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG751_NUKU72G_TO_4326','IGN 1972 (NUKU HIVA - UA HUKA - UA POU) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NUKU72G','EPSG','4326','IGNF','106',NULL,130.85,185.17,174.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1176','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1987 (MARTINIQUE)',NULL,'NATIONALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','MART87','IGNF','39',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAMART2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1241','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1987 (MARTINIQUE)',NULL,'NATIONALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','MART87','IGNF','39',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAMART2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1155','WGS 84 (RRAF) vers IGN 1987 (MARTINIQUE)',NULL,'NATIONALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RRAFGEO','IGNF','MART87','IGNF','39',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggm00v2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','107','GUADELOUPE GRANDE-TERRE + BASSE-TERRE','GUADELOUPE GRANDE-TERRE + BASSE-TERRE',15.875,16.625,-61.9,-61.075,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1177','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1988 (GUADELOUPE)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD88','IGNF','107',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAGTBT2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','108','GUADELOUPE (GRANDE-TERRE ET BASSE-TERRE)','GUADELOUPE (GRANDE-TERRE ET BASSE-TERRE)',15.875,16.589,-61.9,-61.072,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1242','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1988 (GUADELOUPE)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD88','IGNF','108',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAGTBT2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1165','WGS 84 (RRAF) vers IGN 1988 (GUADELOUPE)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RRAFGEO','IGNF','GUAD88','IGNF','107',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggg00v2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','109','ARCHIPEL DES SAINTES (GUADELOUPE)','ARCHIPEL DES SAINTES (GUADELOUPE)',15.8,15.925,-61.7,-61.475,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1180','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD88LS','IGNF','109',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RALS2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1245','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD88LS','IGNF','109',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RALS2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1167','WGS 84 (RRAF) vers IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RRAFGEO','IGNF','GUAD88LS','IGNF','109',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggg00_lsv2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1247','WGS 84 (RRAF) vers IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RRAFGEO','IGNF','GUAD88LS','IGNF','109',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggg00_lsv2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'2.1.0',0); INSERT INTO "area" VALUES('IGNF','110','ILE DE MARIE-GALANTE','ILE DE MARIE-GALANTE',15.8,16.125,-61.4,-61.075,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1178','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD88MG','IGNF','110',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAMG2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1244','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD88MG','IGNF','110',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAMG2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','111','SAINT BARTHELEMY','SAINT BARTHELEMY',17.8,18.025,-63.0,-62.725,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1181','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD88SB','IGNF','111',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/gg10_sbv2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','112','SAINT-BARTHELEMY','SAINT-BARTHELEMY',17.8,18.025,-63.0,-62.725,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1249','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD88SB','IGNF','112',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/gg10_sbv2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'2.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1169','WGS 84 (RRAF) vers IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RRAFGEO','IGNF','GUAD88SB','IGNF','112',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggg00_sbv2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','113','SAINT-MARTIN (PARTIE FRANCAISE)','SAINT-MARTIN (PARTIE FRANCAISE)',18.0,18.2,-63.2,-62.9,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1182','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD88SM','IGNF','113',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/gg10_smv2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1248','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD88SM','IGNF','113',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/gg10_smv2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'2.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1154','WGS 84 (RRAF) vers IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RRAFGEO','IGNF','GUAD88SM','IGNF','113',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggg00_smv2.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1160','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers IGN 1989 (REUNION)',NULL,'NATIONALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGR92GEO','IGNF','REUN89','IGNF','56',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAR07_bl.gra',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','114','ILE DE LA DESIRADE','ILE DE LA DESIRADE',16.25,16.4,-61.2,-60.75,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1179','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD92LD','IGNF','114',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RALD2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1166','WGS 84 (RRAF) vers IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RRAFGEO','IGNF','GUAD92LD','IGNF','114',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RALDW842016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1243','RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009) vers IGN 2008 LD (GUADELOUPE / LA DESIRADE)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGAF09GEODD','IGNF','GUAD2008LD','IGNF','114',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RALD2016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1246','WGS 84 (RRAF) vers IGN 2008 LD (GUADELOUPE / LA DESIRADE)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RRAFGEO','IGNF','GUAD2008LD','IGNF','114',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RALDW842016.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','115','RAIATEA','RAIATEA',-16.94,-16.54,-151.59,-151.32,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG779','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','TAHAA53','IGNF','RGPF','IGNF','115',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG779_RAIA53_RGPF','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','RAIA53','IGNF','RGPF','IGNF','115',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG779_TAHAA53G_TO_RGPFGDD','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFGDD','IGNF','115',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG779_RAIA53G_TO_RGPFGDD','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFGDD','IGNF','115',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG779_TAHAA53G_TO_RGPFGEO','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFGEO','IGNF','115',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG779_RAIA53G_TO_RGPFGEO','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFGEO','IGNF','115',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG779_TAHAA53G_TO_RGPFG','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFG','IGNF','115',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG779_RAIA53G_TO_RGPFG','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFG','IGNF','115',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','116','TAHAA','TAHAA',-16.7,-16.53,-151.58,-151.38,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG780','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','TAHAA53','IGNF','RGPF','IGNF','116',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG780_RAIA53_RGPF','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','RAIA53','IGNF','RGPF','IGNF','116',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG780_TAHAA53G_TO_RGPFGDD','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFGDD','IGNF','116',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG780_RAIA53G_TO_RGPFGDD','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFGDD','IGNF','116',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG780_TAHAA53G_TO_RGPFGEO','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFGEO','IGNF','116',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG780_RAIA53G_TO_RGPFGEO','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFGEO','IGNF','116',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG780_TAHAA53G_TO_RGPFG','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFG','IGNF','116',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG780_RAIA53G_TO_RGPFG','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFG','IGNF','116',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','117','BORA BORA','BORA BORA',-16.58,-16.42,-151.83,-151.67,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG781','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','TAHAA53','IGNF','RGPF','IGNF','117',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG781_RAIA53_RGPF','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','RAIA53','IGNF','RGPF','IGNF','117',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG781_TAHAA53G_TO_RGPFGDD','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFGDD','IGNF','117',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG781_RAIA53G_TO_RGPFGDD','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFGDD','IGNF','117',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG781_TAHAA53G_TO_RGPFGEO','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFGEO','IGNF','117',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG781_RAIA53G_TO_RGPFGEO','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFGEO','IGNF','117',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG781_TAHAA53G_TO_RGPFG','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFG','IGNF','117',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG781_RAIA53G_TO_RGPFG','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFG','IGNF','117',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','118','HUAHINE','HUAHINE',-17,-16.5,-151.5,-150.75,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG782','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','TAHAA53','IGNF','RGPF','IGNF','118',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG782_RAIA53_RGPF','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','RAIA53','IGNF','RGPF','IGNF','118',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG782_TAHAA53G_TO_RGPFGDD','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFGDD','IGNF','118',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG782_RAIA53G_TO_RGPFGDD','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFGDD','IGNF','118',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG782_TAHAA53G_TO_RGPFGEO','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFGEO','IGNF','118',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG782_RAIA53G_TO_RGPFGEO','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFGEO','IGNF','118',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG782_TAHAA53G_TO_RGPFG','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAA53G','IGNF','RGPFG','IGNF','118',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG782_RAIA53G_TO_RGPFG','IGN53 (IGN RAIATEA-TAHAA) RAIATEA-TAHAA-BORA BORA-HUAHINE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RAIA53G','IGNF','RGPFG','IGNF','118',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','119','ILE DE MARE','ILE DE MARE',-21.69,-21.29,167.69,168.18,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG727','IGN53 MARE - ILES LOYAUTE vers RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','MARE53','IGNF','RGNC','IGNF','119',NULL,-533.321,238.077,-224.713,'EPSG','9001',2.381004,-7.580876,-2.346668,'EPSG','9104',-124.2432,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG727_MARE53G_TO_RGNCGEODD','IGN53 MARE - ILES LOYAUTE vers RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARE53G','IGNF','RGNCGEODD','IGNF','119',NULL,-533.321,238.077,-224.713,'EPSG','9001',2.381004,-7.580876,-2.346668,'EPSG','9104',-124.2432,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG727_MARE53G_TO_RGNCG','IGN53 MARE - ILES LOYAUTE vers RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARE53G','IGNF','RGNCG','IGNF','119',NULL,-533.321,238.077,-224.713,'EPSG','9001',2.381004,-7.580876,-2.346668,'EPSG','9104',-124.2432,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG727_MARE53G_TO_RGNCGEO','IGN53 MARE - ILES LOYAUTE vers RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARE53G','IGNF','RGNCGEO','IGNF','119',NULL,-533.321,238.077,-224.713,'EPSG','9001',2.381004,-7.580876,-2.346668,'EPSG','9104',-124.2432,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','120','MOHOTANI - MARQUISES','MOHOTANI - MARQUISES',-10.08,-9.83,-138.92,-138.67,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG760','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARQUI72','IGNF','WGS84','IGNF','120',NULL,330.91,-13.92,58.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG760_MARQUI72_RRAF91','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARQUI72','IGNF','RRAF91','IGNF','120',NULL,330.91,-13.92,58.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG760_MARQUI72_4978','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARQUI72','EPSG','4978','IGNF','120',NULL,330.91,-13.92,58.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG760_MARQUI72G_TO_WGS84GEODD','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84GEODD','IGNF','120',NULL,330.91,-13.92,58.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG760_MARQUI72G_TO_WGS84GDD','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84GDD','IGNF','120',NULL,330.91,-13.92,58.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG760_MARQUI72G_TO_WGS84GEO','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84GEO','IGNF','120',NULL,330.91,-13.92,58.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG760_MARQUI72G_TO_WGS84RRAFGEO','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84RRAFGEO','IGNF','120',NULL,330.91,-13.92,58.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG760_MARQUI72G_TO_WGS84G','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84G','IGNF','120',NULL,330.91,-13.92,58.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG760_MARQUI72G_TO_4326','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','EPSG','4326','IGNF','120',NULL,330.91,-13.92,58.56,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','121','HIVA OA - MARQUISES','HIVA OA - MARQUISES',-9.87,-9.6,-139.25,-138.58,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG761','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARQUI72','IGNF','WGS84','IGNF','121',NULL,327.84,-14.96,59.33,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG761_MARQUI72_RRAF91','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARQUI72','IGNF','RRAF91','IGNF','121',NULL,327.84,-14.96,59.33,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG761_MARQUI72_4978','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARQUI72','EPSG','4978','IGNF','121',NULL,327.84,-14.96,59.33,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG761_MARQUI72G_TO_WGS84GEODD','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84GEODD','IGNF','121',NULL,327.84,-14.96,59.33,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG761_MARQUI72G_TO_WGS84GDD','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84GDD','IGNF','121',NULL,327.84,-14.96,59.33,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG761_MARQUI72G_TO_WGS84GEO','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84GEO','IGNF','121',NULL,327.84,-14.96,59.33,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG761_MARQUI72G_TO_WGS84RRAFGEO','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84RRAFGEO','IGNF','121',NULL,327.84,-14.96,59.33,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG761_MARQUI72G_TO_WGS84G','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84G','IGNF','121',NULL,327.84,-14.96,59.33,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG761_MARQUI72G_TO_4326','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','EPSG','4326','IGNF','121',NULL,327.84,-14.96,59.33,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','122','EIAO - MARQUISES','EIAO - MARQUISES',-8.06,-7.95,-140.73,-140.63,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG762','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARQUI72','IGNF','WGS84','IGNF','122',NULL,333.71,-71.31,247.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG762_MARQUI72_RRAF91','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARQUI72','IGNF','RRAF91','IGNF','122',NULL,333.71,-71.31,247.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG762_MARQUI72_4978','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARQUI72','EPSG','4978','IGNF','122',NULL,333.71,-71.31,247.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG762_MARQUI72G_TO_WGS84GEODD','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84GEODD','IGNF','122',NULL,333.71,-71.31,247.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG762_MARQUI72G_TO_WGS84GDD','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84GDD','IGNF','122',NULL,333.71,-71.31,247.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG762_MARQUI72G_TO_WGS84GEO','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84GEO','IGNF','122',NULL,333.71,-71.31,247.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG762_MARQUI72G_TO_WGS84RRAFGEO','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84RRAFGEO','IGNF','122',NULL,333.71,-71.31,247.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG762_MARQUI72G_TO_WGS84G','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','IGNF','WGS84G','IGNF','122',NULL,333.71,-71.31,247.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG762_MARQUI72G_TO_4326','IGN72 (EIAO - HIVA OA - MOHOTANI) MARQUISES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARQUI72G','EPSG','4326','IGNF','122',NULL,333.71,-71.31,247.72,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','123','NOUVELLE-CALEDONIE - GRANDE TERRE','NOUVELLE-CALEDONIE - GRANDE TERRE',-22.75,-19.5,163.5,167.67,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','IGN72','IGNF','WGS84','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72_RRAF91','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','IGN72','IGNF','RRAF91','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72_4978','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','IGN72','EPSG','4978','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72GEO_TO_WGS84GEODD','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72GEO','IGNF','WGS84GEODD','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72GEO_TO_WGS84GDD','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72GEO','IGNF','WGS84GDD','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72GEO_TO_WGS84GEO','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72GEO','IGNF','WGS84GEO','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72GEO_TO_WGS84RRAFGEO','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72GEO','IGNF','WGS84RRAFGEO','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72GEO_TO_WGS84G','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72GEO','IGNF','WGS84G','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72GEO_TO_4326','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72GEO','EPSG','4326','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72G_TO_WGS84GEODD','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72G','IGNF','WGS84GEODD','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72G_TO_WGS84GDD','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72G','IGNF','WGS84GDD','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72G_TO_WGS84GEO','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72G','IGNF','WGS84GEO','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72G_TO_WGS84RRAFGEO','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72G','IGNF','WGS84RRAFGEO','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72G_TO_WGS84G','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72G','IGNF','WGS84G','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG677_IGN72G_TO_4326','IGN72 GRANDE-TERRE / ILE DES PINS vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','IGN72G','EPSG','4326','IGNF','123',NULL,-13,-348,292,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG783','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','TAHI79','IGNF','RGPF','IGNF','101',NULL,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.8770,'EPSG','9104',11.4741,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG783_TAHI79GEO_TO_RGPFGDD','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHI79GEO','IGNF','RGPFGDD','IGNF','101',NULL,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.8770,'EPSG','9104',11.4741,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG783_TAHI79GEO_TO_RGPFGEO','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHI79GEO','IGNF','RGPFGEO','IGNF','101',NULL,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.8770,'EPSG','9104',11.4741,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG783_TAHI79GEO_TO_RGPFG','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHI79GEO','IGNF','RGPFG','IGNF','101',NULL,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.8770,'EPSG','9104',11.4741,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG783_TAHI79G_TO_RGPFGDD','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHI79G','IGNF','RGPFGDD','IGNF','101',NULL,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.8770,'EPSG','9104',11.4741,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG783_TAHI79G_TO_RGPFGEO','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHI79G','IGNF','RGPFGEO','IGNF','101',NULL,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.8770,'EPSG','9104',11.4741,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG783_TAHI79G_TO_RGPFG','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHI79G','IGNF','RGPFG','IGNF','101',NULL,221.525,152.948,176.768,'EPSG','9001',2.3847,1.3896,0.8770,'EPSG','9104',11.4741,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','124','TAHITI - SOCIETE','TAHITI - SOCIETE',-18,-17,-150,-149,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TAHI79','IGNF','WGS84','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79_RRAF91','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TAHI79','IGNF','RRAF91','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79_4978','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TAHI79','EPSG','4978','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79GEO_TO_WGS84GEODD','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79GEO','IGNF','WGS84GEODD','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79GEO_TO_WGS84GDD','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79GEO','IGNF','WGS84GDD','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79GEO_TO_WGS84GEO','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79GEO','IGNF','WGS84GEO','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79GEO_TO_WGS84RRAFGEO','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79GEO','IGNF','WGS84RRAFGEO','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79GEO_TO_WGS84G','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79GEO','IGNF','WGS84G','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79GEO_TO_4326','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79GEO','EPSG','4326','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79G_TO_WGS84GEODD','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79G','IGNF','WGS84GEODD','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79G_TO_WGS84GDD','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79G','IGNF','WGS84GDD','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79G_TO_WGS84GEO','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79G','IGNF','WGS84GEO','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79G_TO_WGS84RRAFGEO','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79G','IGNF','WGS84RRAFGEO','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79G_TO_WGS84G','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79G','IGNF','WGS84G','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG757_TAHI79G_TO_4326','IGN79 (TAHITI 1979) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI79G','EPSG','4326','IGNF','124',NULL,160.61,116.05,153.69,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','125','KERGUELEN (TAAF)','KERGUELEN (TAAF)',-50.5,-48,67,71,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG195','KERGUELEN - K0 (IGN 1962) vers DOD WORLD GEODETIC SYSTEM 1972 (WGS 72)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','KERG62K0','IGNF','WGS72','IGNF','125',NULL,155,-191,99,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG195_KERG62CAR_WGS72','KERGUELEN - K0 (IGN 1962) vers DOD WORLD GEODETIC SYSTEM 1972 (WGS 72)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','KERG62CAR','IGNF','WGS72','IGNF','125',NULL,155,-191,99,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG195_KERG62G_TO_WGS72G','KERGUELEN - K0 (IGN 1962) vers DOD WORLD GEODETIC SYSTEM 1972 (WGS 72)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62G','IGNF','WGS72G','IGNF','125',NULL,155,-191,99,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG195_KERG62G_TO_WGS72GEO','KERGUELEN - K0 (IGN 1962) vers DOD WORLD GEODETIC SYSTEM 1972 (WGS 72)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62G','IGNF','WGS72GEO','IGNF','125',NULL,155,-191,99,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG195_KERG62GEO_TO_WGS72G','KERGUELEN - K0 (IGN 1962) vers DOD WORLD GEODETIC SYSTEM 1972 (WGS 72)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62GEO','IGNF','WGS72G','IGNF','125',NULL,155,-191,99,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG195_KERG62GEO_TO_WGS72GEO','KERGUELEN - K0 (IGN 1962) vers DOD WORLD GEODETIC SYSTEM 1972 (WGS 72)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62GEO','IGNF','WGS72GEO','IGNF','125',NULL,155,-191,99,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','126','ILES KERGUELEN','ILES KERGUELEN',-50.5,-48,67,71,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG825','KERGUELEN - K0 (IGN 1962) vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE A CARACTERE LEGAL','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','KERG62K0','IGNF','RGTAAF07','IGNF','126',NULL,144.899,-186.770,100.923,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG825_KERG62CAR_RGTAAF07','KERGUELEN - K0 (IGN 1962) vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE A CARACTERE LEGAL','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','KERG62CAR','IGNF','RGTAAF07','IGNF','126',NULL,144.899,-186.770,100.923,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG825_KERG62G_TO_RGTAAFGEODD','KERGUELEN - K0 (IGN 1962) vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE A CARACTERE LEGAL','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62G','IGNF','RGTAAFGEODD','IGNF','126',NULL,144.899,-186.770,100.923,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG825_KERG62G_TO_RGTAAF07GDD','KERGUELEN - K0 (IGN 1962) vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE A CARACTERE LEGAL','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62G','IGNF','RGTAAF07GDD','IGNF','126',NULL,144.899,-186.770,100.923,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG825_KERG62G_TO_RGTAAFGEO','KERGUELEN - K0 (IGN 1962) vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE A CARACTERE LEGAL','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62G','IGNF','RGTAAFGEO','IGNF','126',NULL,144.899,-186.770,100.923,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG825_KERG62G_TO_RGTAAF07G','KERGUELEN - K0 (IGN 1962) vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE A CARACTERE LEGAL','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62G','IGNF','RGTAAF07G','IGNF','126',NULL,144.899,-186.770,100.923,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG825_KERG62GEO_TO_RGTAAFGEODD','KERGUELEN - K0 (IGN 1962) vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE A CARACTERE LEGAL','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62GEO','IGNF','RGTAAFGEODD','IGNF','126',NULL,144.899,-186.770,100.923,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG825_KERG62GEO_TO_RGTAAF07GDD','KERGUELEN - K0 (IGN 1962) vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE A CARACTERE LEGAL','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62GEO','IGNF','RGTAAF07GDD','IGNF','126',NULL,144.899,-186.770,100.923,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG825_KERG62GEO_TO_RGTAAFGEO','KERGUELEN - K0 (IGN 1962) vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE A CARACTERE LEGAL','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62GEO','IGNF','RGTAAFGEO','IGNF','126',NULL,144.899,-186.770,100.923,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG825_KERG62GEO_TO_RGTAAF07G','KERGUELEN - K0 (IGN 1962) vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE A CARACTERE LEGAL','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KERG62GEO','IGNF','RGTAAF07G','IGNF','126',NULL,144.899,-186.770,100.923,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','MARTFD','IGNF','RRAF','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MARTFD_WGS84GUAD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','MARTFD','IGNF','WGS84GUAD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38_RRAF','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','MART38','IGNF','RRAF','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38_WGS84GUAD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','MART38','IGNF','WGS84GUAD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MARTFDG_TO_RRAFGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARTFDG','IGNF','RRAFGDD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MARTFDG_TO_WGS84MARTGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARTFDG','IGNF','WGS84MARTGDD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38G_TO_RRAFGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38G','IGNF','RRAFGDD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38G_TO_WGS84MARTGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38G','IGNF','WGS84MARTGDD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MARTFDG_TO_RRAFGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARTFDG','IGNF','RRAFGEODD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MARTFDG_TO_W84MARTGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARTFDG','IGNF','W84MARTGEODD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38G_TO_RRAFGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38G','IGNF','RRAFGEODD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38G_TO_W84MARTGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38G','IGNF','W84MARTGEODD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MARTFDG_TO_RRAFGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARTFDG','IGNF','RRAFGEO','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MARTFDG_TO_WGS84GUADGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARTFDG','IGNF','WGS84GUADGEO','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38G_TO_RRAFGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38G','IGNF','RRAFGEO','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38G_TO_WGS84GUADGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38G','IGNF','WGS84GUADGEO','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MARTFDG_TO_RRAFG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARTFDG','IGNF','RRAFG','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MARTFDG_TO_WGS84MARTG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MARTFDG','IGNF','WGS84MARTG','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38G_TO_RRAFG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38G','IGNF','RRAFG','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38G_TO_WGS84MARTG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38G','IGNF','WGS84MARTG','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38GEO_TO_RRAFGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38GEO','IGNF','RRAFGDD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38GEO_TO_WGS84MARTGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38GEO','IGNF','WGS84MARTGDD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38GEO_TO_RRAFGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38GEO','IGNF','RRAFGEODD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38GEO_TO_W84MARTGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38GEO','IGNF','W84MARTGEODD','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38GEO_TO_RRAFGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38GEO','IGNF','RRAFGEO','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38GEO_TO_WGS84GUADGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38GEO','IGNF','WGS84GUADGEO','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38GEO_TO_RRAFG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38GEO','IGNF','RRAFG','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG467_MART38GEO_TO_WGS84MARTG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MART38GEO','IGNF','WGS84MARTG','IGNF','39',NULL,126.926,547.939,130.409,'EPSG','9001',-2.7867,5.1612,-0.8584,'EPSG','9104',13.8227,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARTFD','IGNF','RRAF','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MARTFD_WGS84GUAD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MARTFD','IGNF','WGS84GUAD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38_RRAF','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MART38','IGNF','RRAF','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38_WGS84GUAD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MART38','IGNF','WGS84GUAD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MARTFDG_TO_RRAFGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARTFDG','IGNF','RRAFGDD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MARTFDG_TO_WGS84MARTGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARTFDG','IGNF','WGS84MARTGDD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38G_TO_RRAFGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38G','IGNF','RRAFGDD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38G_TO_WGS84MARTGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38G','IGNF','WGS84MARTGDD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MARTFDG_TO_RRAFGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARTFDG','IGNF','RRAFGEODD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MARTFDG_TO_W84MARTGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARTFDG','IGNF','W84MARTGEODD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38G_TO_RRAFGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38G','IGNF','RRAFGEODD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38G_TO_W84MARTGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38G','IGNF','W84MARTGEODD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MARTFDG_TO_RRAFGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARTFDG','IGNF','RRAFGEO','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MARTFDG_TO_WGS84GUADGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARTFDG','IGNF','WGS84GUADGEO','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38G_TO_RRAFGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38G','IGNF','RRAFGEO','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38G_TO_WGS84GUADGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38G','IGNF','WGS84GUADGEO','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MARTFDG_TO_RRAFG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARTFDG','IGNF','RRAFG','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MARTFDG_TO_WGS84MARTG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MARTFDG','IGNF','WGS84MARTG','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38G_TO_RRAFG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38G','IGNF','RRAFG','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38G_TO_WGS84MARTG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38G','IGNF','WGS84MARTG','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38GEO_TO_RRAFGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38GEO','IGNF','RRAFGDD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38GEO_TO_WGS84MARTGDD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38GEO','IGNF','WGS84MARTGDD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38GEO_TO_RRAFGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38GEO','IGNF','RRAFGEODD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38GEO_TO_W84MARTGEODD','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38GEO','IGNF','W84MARTGEODD','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38GEO_TO_RRAFGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38GEO','IGNF','RRAFGEO','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38GEO_TO_WGS84GUADGEO','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38GEO','IGNF','WGS84GUADGEO','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38GEO_TO_RRAFG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38GEO','IGNF','RRAFG','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG591_MART38GEO_TO_WGS84MARTG','MARTINIQUE - FORT DESAIX vers WGS 84 (RRAF)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MART38GEO','IGNF','WGS84MARTG','IGNF','39',NULL,186,482,151,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','127','ILE DE MAUPITI','ILE DE MAUPITI',-16.75,-16.25,-152.5,-152,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1138','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers MAUPITI_SAU 2001',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGPFGEO','IGNF','MAUPITI01','IGNF','127',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf02-Maupiti.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','128','FATU HIVA','FATU HIVA',-10.6,-10.4,-138.7,138.6,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1005','MHEFO 1955 (FATU HUKU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','FATU55','IGNF','RGPF','IGNF','128',NULL,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1005_MHEFO55F_RGPF','MHEFO 1955 (FATU HUKU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','MHEFO55F','IGNF','RGPF','IGNF','128',NULL,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1005_FATU55FG_TO_RGPFGDD','MHEFO 1955 (FATU HUKU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','FATU55FG','IGNF','RGPFGDD','IGNF','128',NULL,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1005_MHEFO55FG_TO_RGPFGDD','MHEFO 1955 (FATU HUKU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MHEFO55FG','IGNF','RGPFGDD','IGNF','128',NULL,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1005_FATU55FG_TO_RGPFGEO','MHEFO 1955 (FATU HUKU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','FATU55FG','IGNF','RGPFGEO','IGNF','128',NULL,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1005_MHEFO55FG_TO_RGPFGEO','MHEFO 1955 (FATU HUKU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MHEFO55FG','IGNF','RGPFGEO','IGNF','128',NULL,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1005_FATU55FG_TO_RGPFG','MHEFO 1955 (FATU HUKU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','FATU55FG','IGNF','RGPFG','IGNF','128',NULL,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1005_MHEFO55FG_TO_RGPFG','MHEFO 1955 (FATU HUKU) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MHEFO55FG','IGNF','RGPFG','IGNF','128',NULL,347.103,1078.125,2623.922,'EPSG','9001',33.8875,-70.6773,9.3943,'EPSG','9104',186.074,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','129','RAIVAVAE','RAIVAVAE',-23.92,-23.75,-147.75,-147.58,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1020','MHPF 1966 (ATOLL RAIVAVAE) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RAIV66','IGNF','RGPF','IGNF','129',NULL,248.078,264.693,-207.097,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1020_RAIV66G_TO_RGPFGDD','MHPF 1966 (ATOLL RAIVAVAE) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RAIV66G','IGNF','RGPFGDD','IGNF','129',NULL,248.078,264.693,-207.097,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1020_RAIV66G_TO_RGPFGEO','MHPF 1966 (ATOLL RAIVAVAE) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RAIV66G','IGNF','RGPFGEO','IGNF','129',NULL,248.078,264.693,-207.097,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1020_RAIV66G_TO_RGPFG','MHPF 1966 (ATOLL RAIVAVAE) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RAIV66G','IGNF','RGPFG','IGNF','129',NULL,248.078,264.693,-207.097,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','130','MANGAREVA - GAMBIER','MANGAREVA - GAMBIER',-23.45,-22.83,-135.33,-134.58,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG756','MHPF 1967 (MANGAREVA - AGAKAUITAI - AUKENA - MEKIRO) GAMBIER vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MHPF67','IGNF','WGS84','IGNF','130',NULL,338.08,212.58,-296.17,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG756_MHPF67_RRAF91','MHPF 1967 (MANGAREVA - AGAKAUITAI - AUKENA - MEKIRO) GAMBIER vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MHPF67','IGNF','RRAF91','IGNF','130',NULL,338.08,212.58,-296.17,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG756_MHPF67_4978','MHPF 1967 (MANGAREVA - AGAKAUITAI - AUKENA - MEKIRO) GAMBIER vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MHPF67','EPSG','4978','IGNF','130',NULL,338.08,212.58,-296.17,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG756_MHPF67G_TO_WGS84GEODD','MHPF 1967 (MANGAREVA - AGAKAUITAI - AUKENA - MEKIRO) GAMBIER vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MHPF67G','IGNF','WGS84GEODD','IGNF','130',NULL,338.08,212.58,-296.17,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG756_MHPF67G_TO_WGS84GDD','MHPF 1967 (MANGAREVA - AGAKAUITAI - AUKENA - MEKIRO) GAMBIER vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MHPF67G','IGNF','WGS84GDD','IGNF','130',NULL,338.08,212.58,-296.17,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG756_MHPF67G_TO_WGS84GEO','MHPF 1967 (MANGAREVA - AGAKAUITAI - AUKENA - MEKIRO) GAMBIER vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MHPF67G','IGNF','WGS84GEO','IGNF','130',NULL,338.08,212.58,-296.17,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG756_MHPF67G_TO_WGS84RRAFGEO','MHPF 1967 (MANGAREVA - AGAKAUITAI - AUKENA - MEKIRO) GAMBIER vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MHPF67G','IGNF','WGS84RRAFGEO','IGNF','130',NULL,338.08,212.58,-296.17,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG756_MHPF67G_TO_WGS84G','MHPF 1967 (MANGAREVA - AGAKAUITAI - AUKENA - MEKIRO) GAMBIER vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MHPF67G','IGNF','WGS84G','IGNF','130',NULL,338.08,212.58,-296.17,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG756_MHPF67G_TO_4326','MHPF 1967 (MANGAREVA - AGAKAUITAI - AUKENA - MEKIRO) GAMBIER vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MHPF67G','EPSG','4326','IGNF','130',NULL,338.08,212.58,-296.17,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','131','TUBUAI - AUSTRALES','TUBUAI - AUSTRALES',-23.45,-23.25,-149.58,-149.33,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG766','MHPF 1969 (TUBUAI) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUBU69','IGNF','WGS84','IGNF','131',NULL,237.17,171.61,-77.84,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG766_TUBU69_RRAF91','MHPF 1969 (TUBUAI) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUBU69','IGNF','RRAF91','IGNF','131',NULL,237.17,171.61,-77.84,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG766_TUBU69_4978','MHPF 1969 (TUBUAI) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUBU69','EPSG','4978','IGNF','131',NULL,237.17,171.61,-77.84,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG766_TUBU69G_TO_WGS84GEODD','MHPF 1969 (TUBUAI) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUBU69G','IGNF','WGS84GEODD','IGNF','131',NULL,237.17,171.61,-77.84,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG766_TUBU69G_TO_WGS84GDD','MHPF 1969 (TUBUAI) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUBU69G','IGNF','WGS84GDD','IGNF','131',NULL,237.17,171.61,-77.84,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG766_TUBU69G_TO_WGS84GEO','MHPF 1969 (TUBUAI) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUBU69G','IGNF','WGS84GEO','IGNF','131',NULL,237.17,171.61,-77.84,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG766_TUBU69G_TO_WGS84RRAFGEO','MHPF 1969 (TUBUAI) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUBU69G','IGNF','WGS84RRAFGEO','IGNF','131',NULL,237.17,171.61,-77.84,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG766_TUBU69G_TO_WGS84G','MHPF 1969 (TUBUAI) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUBU69G','IGNF','WGS84G','IGNF','131',NULL,237.17,171.61,-77.84,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG766_TUBU69G_TO_4326','MHPF 1969 (TUBUAI) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUBU69G','EPSG','4326','IGNF','131',NULL,237.17,171.61,-77.84,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','132','KAUEHI - TUAMOTU','KAUEHI - TUAMOTU',-16,-15.67,-145.33,-145,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG754','MHPF70 (KAUEHI) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','KAUE70','IGNF','WGS84','IGNF','132',NULL,126.74,300.10,-75.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG754_KAUE70_RRAF91','MHPF70 (KAUEHI) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','KAUE70','IGNF','RRAF91','IGNF','132',NULL,126.74,300.10,-75.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG754_KAUE70_4978','MHPF70 (KAUEHI) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','KAUE70','EPSG','4978','IGNF','132',NULL,126.74,300.10,-75.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG754_KAUE70G_TO_WGS84GEODD','MHPF70 (KAUEHI) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KAUE70G','IGNF','WGS84GEODD','IGNF','132',NULL,126.74,300.10,-75.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG754_KAUE70G_TO_WGS84GDD','MHPF70 (KAUEHI) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KAUE70G','IGNF','WGS84GDD','IGNF','132',NULL,126.74,300.10,-75.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG754_KAUE70G_TO_WGS84GEO','MHPF70 (KAUEHI) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KAUE70G','IGNF','WGS84GEO','IGNF','132',NULL,126.74,300.10,-75.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG754_KAUE70G_TO_WGS84RRAFGEO','MHPF70 (KAUEHI) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KAUE70G','IGNF','WGS84RRAFGEO','IGNF','132',NULL,126.74,300.10,-75.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG754_KAUE70G_TO_WGS84G','MHPF70 (KAUEHI) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KAUE70G','IGNF','WGS84G','IGNF','132',NULL,126.74,300.10,-75.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG754_KAUE70G_TO_4326','MHPF70 (KAUEHI) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','KAUE70G','EPSG','4326','IGNF','132',NULL,126.74,300.10,-75.49,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','133','ILE DE MOOREA','ILE DE MOOREA',-17.7000000000,-17.3500000000,-150.0500000000,-149.6500000000,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1189','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers MOOREA 1981 (MOOREA_SAU 2001)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGPFGEO','IGNF','MOOREA81','IGNF','133',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf10-Moorea.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1011','MOOREA 1987 vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','MOOREA87','IGNF','RGPF','IGNF','133',NULL,218.697,151.257,176.995,'EPSG','9001',3.5048,2.0040,1.2810,'EPSG','9104',10.9910,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1011_MOOREA87GEO_TO_RGPFGDD','MOOREA 1987 vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MOOREA87GEO','IGNF','RGPFGDD','IGNF','133',NULL,218.697,151.257,176.995,'EPSG','9001',3.5048,2.0040,1.2810,'EPSG','9104',10.9910,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1011_MOOREA87GEO_TO_RGPFGEO','MOOREA 1987 vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MOOREA87GEO','IGNF','RGPFGEO','IGNF','133',NULL,218.697,151.257,176.995,'EPSG','9001',3.5048,2.0040,1.2810,'EPSG','9104',10.9910,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1011_MOOREA87GEO_TO_RGPFG','MOOREA 1987 vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MOOREA87GEO','IGNF','RGPFG','IGNF','133',NULL,218.697,151.257,176.995,'EPSG','9001',3.5048,2.0040,1.2810,'EPSG','9104',10.9910,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1011_MOOREA87G_TO_RGPFGDD','MOOREA 1987 vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MOOREA87G','IGNF','RGPFGDD','IGNF','133',NULL,218.697,151.257,176.995,'EPSG','9001',3.5048,2.0040,1.2810,'EPSG','9104',10.9910,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1011_MOOREA87G_TO_RGPFGEO','MOOREA 1987 vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MOOREA87G','IGNF','RGPFGEO','IGNF','133',NULL,218.697,151.257,176.995,'EPSG','9001',3.5048,2.0040,1.2810,'EPSG','9104',10.9910,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1011_MOOREA87G_TO_RGPFG','MOOREA 1987 vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','MOOREA87G','IGNF','RGPFG','IGNF','133',NULL,218.697,151.257,176.995,'EPSG','9001',3.5048,2.0040,1.2810,'EPSG','9104',10.9910,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG785','MOP 1983 (MAUPITI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MAUPITI','IGNF','RGPF','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG785_MAUPITIG_TO_RGPFGDD','MOP 1983 (MAUPITI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAUPITIG','IGNF','RGPFGDD','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG785_MAUPITIG_TO_RGPFGEO','MOP 1983 (MAUPITI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAUPITIG','IGNF','RGPFGEO','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG785_MAUPITIG_TO_RGPFG','MOP 1983 (MAUPITI) vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MAUPITIG','IGNF','RGPFG','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','134','FANGATAUFA - TUAMOTU','FANGATAUFA - TUAMOTU',-22.33,-22.15,-138.83,-138.58,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG749','MOP84 (FANGATAUFA 1984) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','FANGA84','IGNF','WGS84','IGNF','134',NULL,150.57,158.33,118.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG749_FANGA84_RRAF91','MOP84 (FANGATAUFA 1984) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','FANGA84','IGNF','RRAF91','IGNF','134',NULL,150.57,158.33,118.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG749_FANGA84_4978','MOP84 (FANGATAUFA 1984) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','FANGA84','EPSG','4978','IGNF','134',NULL,150.57,158.33,118.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG749_FANGA84G_TO_WGS84GEODD','MOP84 (FANGATAUFA 1984) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','FANGA84G','IGNF','WGS84GEODD','IGNF','134',NULL,150.57,158.33,118.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG749_FANGA84G_TO_WGS84GDD','MOP84 (FANGATAUFA 1984) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','FANGA84G','IGNF','WGS84GDD','IGNF','134',NULL,150.57,158.33,118.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG749_FANGA84G_TO_WGS84GEO','MOP84 (FANGATAUFA 1984) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','FANGA84G','IGNF','WGS84GEO','IGNF','134',NULL,150.57,158.33,118.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG749_FANGA84G_TO_WGS84RRAFGEO','MOP84 (FANGATAUFA 1984) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','FANGA84G','IGNF','WGS84RRAFGEO','IGNF','134',NULL,150.57,158.33,118.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG749_FANGA84G_TO_WGS84G','MOP84 (FANGATAUFA 1984) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','FANGA84G','IGNF','WGS84G','IGNF','134',NULL,150.57,158.33,118.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG749_FANGA84G_TO_4326','MOP84 (FANGATAUFA 1984) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','FANGA84G','EPSG','4326','IGNF','134',NULL,150.57,158.33,118.32,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','135','HAO - TUAMOTU','HAO - TUAMOTU',-18.5,-18,-141.17,-140.58,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUAM86','IGNF','WGS84','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_TUAM86_RRAF91','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUAM86','IGNF','RRAF91','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_TUAM86_4978','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUAM86','EPSG','4978','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_APAT86_WGS84','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','APAT86','IGNF','WGS84','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_APAT86_RRAF91','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','APAT86','IGNF','RRAF91','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_APAT86_4978','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','APAT86','EPSG','4978','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_TUAM86G_TO_WGS84GEODD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84GEODD','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_APAT86G_TO_WGS84GEODD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84GEODD','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_TUAM86G_TO_WGS84GDD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84GDD','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_APAT86G_TO_WGS84GDD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84GDD','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_TUAM86G_TO_WGS84GEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84GEO','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_TUAM86G_TO_WGS84RRAFGEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84RRAFGEO','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_APAT86G_TO_WGS84GEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84GEO','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_APAT86G_TO_WGS84RRAFGEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84RRAFGEO','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_TUAM86G_TO_WGS84G','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84G','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_TUAM86G_TO_4326','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','EPSG','4326','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_APAT86G_TO_WGS84G','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84G','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG763_APAT86G_TO_4326','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','EPSG','4326','IGNF','135',NULL,143.60,197.82,74.05,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','136','RAPA - AUSTRALES','RAPA - AUSTRALES',-27.75,-27.5,-144.5,-144.25,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUAM86','IGNF','WGS84','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_TUAM86_RRAF91','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUAM86','IGNF','RRAF91','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_TUAM86_4978','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUAM86','EPSG','4978','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_APAT86_WGS84','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','APAT86','IGNF','WGS84','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_APAT86_RRAF91','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','APAT86','IGNF','RRAF91','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_APAT86_4978','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','APAT86','EPSG','4978','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_TUAM86G_TO_WGS84GEODD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84GEODD','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_APAT86G_TO_WGS84GEODD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84GEODD','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_TUAM86G_TO_WGS84GDD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84GDD','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_APAT86G_TO_WGS84GDD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84GDD','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_TUAM86G_TO_WGS84GEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84GEO','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_TUAM86G_TO_WGS84RRAFGEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84RRAFGEO','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_APAT86G_TO_WGS84GEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84GEO','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_APAT86G_TO_WGS84RRAFGEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84RRAFGEO','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_TUAM86G_TO_WGS84G','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84G','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_TUAM86G_TO_4326','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','EPSG','4326','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_APAT86G_TO_WGS84G','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84G','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG764_APAT86G_TO_4326','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','EPSG','4326','IGNF','136',NULL,207.14,128.41,38.50,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','137','APATAKI - TUAMOTU','APATAKI - TUAMOTU',-15.63,-15.29,-146.46,-146.18,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUAM86','IGNF','WGS84','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_TUAM86_RRAF91','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUAM86','IGNF','RRAF91','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_TUAM86_4978','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TUAM86','EPSG','4978','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_APAT86_WGS84','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','APAT86','IGNF','WGS84','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_APAT86_RRAF91','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','APAT86','IGNF','RRAF91','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_APAT86_4978','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','APAT86','EPSG','4978','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_TUAM86G_TO_WGS84GEODD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84GEODD','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_APAT86G_TO_WGS84GEODD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84GEODD','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_TUAM86G_TO_WGS84GDD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84GDD','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_APAT86G_TO_WGS84GDD','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84GDD','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_TUAM86G_TO_WGS84GEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84GEO','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_TUAM86G_TO_WGS84RRAFGEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84RRAFGEO','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_APAT86G_TO_WGS84GEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84GEO','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_APAT86G_TO_WGS84RRAFGEO','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84RRAFGEO','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_TUAM86G_TO_WGS84G','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','IGNF','WGS84G','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_TUAM86G_TO_4326','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TUAM86G','EPSG','4326','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_APAT86G_TO_WGS84G','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','IGNF','WGS84G','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG765_APAT86G_TO_4326','MOP86 (APATAKI - RAPA - HAO) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','APAT86G','EPSG','4326','IGNF','137',NULL,216.84,118.81,19.61,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1003','MOP90 (TETIAROA) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TETIA90','IGNF','RGPF','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1003_MOP90_RGPF','MOP90 (TETIAROA) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MOP90','IGNF','RGPF','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1003_TETIA90G_TO_RGPFGDD','MOP90 (TETIAROA) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TETIA90G','IGNF','RGPFGDD','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1003_MOP90G_TO_RGPFGDD','MOP90 (TETIAROA) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MOP90G','IGNF','RGPFGDD','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1003_TETIA90G_TO_RGPFGEO','MOP90 (TETIAROA) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TETIA90G','IGNF','RGPFGEO','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1003_MOP90G_TO_RGPFGEO','MOP90 (TETIAROA) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MOP90G','IGNF','RGPFGEO','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1003_TETIA90G_TO_RGPFG','MOP90 (TETIAROA) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TETIA90G','IGNF','RGPFG','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1003_MOP90G_TO_RGPFG','MOP90 (TETIAROA) ILES DE LA SOCIETE vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MOP90G','IGNF','RGPFG','IGNF','40',NULL,217.037,86.959,23.956,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','138','TETIAROA - SOCIETE','TETIAROA - SOCIETE',-17.1,-17.02,-149.6,-149.53,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TETIA90','IGNF','WGS84','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_TETIA90_RRAF91','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TETIA90','IGNF','RRAF91','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_TETIA90_4978','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TETIA90','EPSG','4978','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_MOP90_WGS84','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MOP90','IGNF','WGS84','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_MOP90_RRAF91','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MOP90','IGNF','RRAF91','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_MOP90_4978','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','MOP90','EPSG','4978','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_TETIA90G_TO_WGS84GEODD','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TETIA90G','IGNF','WGS84GEODD','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_MOP90G_TO_WGS84GEODD','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MOP90G','IGNF','WGS84GEODD','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_TETIA90G_TO_WGS84GDD','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TETIA90G','IGNF','WGS84GDD','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_MOP90G_TO_WGS84GDD','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MOP90G','IGNF','WGS84GDD','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_TETIA90G_TO_WGS84GEO','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TETIA90G','IGNF','WGS84GEO','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_TETIA90G_TO_WGS84RRAFGEO','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TETIA90G','IGNF','WGS84RRAFGEO','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_MOP90G_TO_WGS84GEO','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MOP90G','IGNF','WGS84GEO','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_MOP90G_TO_WGS84RRAFGEO','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MOP90G','IGNF','WGS84RRAFGEO','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_TETIA90G_TO_WGS84G','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TETIA90G','IGNF','WGS84G','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_TETIA90G_TO_4326','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TETIA90G','EPSG','4326','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_MOP90G_TO_WGS84G','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MOP90G','IGNF','WGS84G','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG755_MOP90G_TO_4326','MOP90 (TETIAROA) ILES DE LA SOCIETE vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','MOP90G','EPSG','4326','IGNF','138',NULL,-10.80,-1.80,12.77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','139','ANAA - TUAMOTU','ANAA - TUAMOTU',-17.5,-17.32,-145.6,-145.37,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ANAA92','IGNF','WGS84','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92_RRAF91','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ANAA92','IGNF','RRAF91','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92_4978','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','ANAA92','EPSG','4978','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92GEO_TO_WGS84GEODD','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92GEO','IGNF','WGS84GEODD','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92GEO_TO_WGS84GDD','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92GEO','IGNF','WGS84GDD','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92GEO_TO_WGS84GEO','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92GEO','IGNF','WGS84GEO','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92GEO_TO_WGS84RRAFGEO','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92GEO','IGNF','WGS84RRAFGEO','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92GEO_TO_WGS84G','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92GEO','IGNF','WGS84G','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92GEO_TO_4326','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92GEO','EPSG','4326','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92G_TO_WGS84GEODD','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92G','IGNF','WGS84GEODD','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92G_TO_WGS84GDD','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92G','IGNF','WGS84GDD','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92G_TO_WGS84GEO','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92G','IGNF','WGS84GEO','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92G_TO_WGS84RRAFGEO','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92G','IGNF','WGS84RRAFGEO','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92G_TO_WGS84G','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92G','IGNF','WGS84G','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG759_ANAA92G_TO_4326','MOP92 (ANAA) TUAMOTU vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','ANAA92G','EPSG','4326','IGNF','139',NULL,1.50,3.84,4.81,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','140','EUROPE (EVRF2000)','EUROPE (EVRF2000)',36,71.2,-10,32,0); INSERT INTO "other_transformation" VALUES('IGNF','TSG1250','NGF-IGN 1969 vers EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,'CONTINENTALE, HISTORIQUE','EPSG','9616','Vertical Offset','IGNF','IGN69','IGNF','EVRF2000','IGNF','140',NULL,'EPSG','8603','Vertical Offset',-0.486,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0',0); INSERT INTO "area" VALUES('IGNF','141','EUROPE (EVRF2007)','EUROPE (EVRF2007)',36,71.2,-10,32,0); INSERT INTO "other_transformation" VALUES('IGNF','TSG1251','NGF-IGN 1969 vers EVRF2007 (EUROPEAN VERTICAL REFERENCE FRAME 2007)',NULL,'CONTINENTALE','EPSG','9616','Vertical Offset','IGNF','IGN69','IGNF','EVRF2007','IGNF','141',NULL,'EPSG','8603','Vertical Offset',-0.47,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0',0); INSERT INTO "area" VALUES('IGNF','142','FRANCE CONTINENTALE','FRANCE CONTINENTALE',42.00,51.50,-5.50,8.50,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1164','RGF93 (ETRS89) vers NGF-IGN 1969',NULL,'NATIONALE, HISTORIQUE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGF93GEODD','IGNF','IGN69','IGNF','142',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/metropole/RAF09.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1252','RGF93 (ETRS89) vers NGF-IGN 1969',NULL,'NATIONALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGF93GEODD','IGNF','IGN69','IGNF','142',NULL,'EPSG','8666','Geoid (height correction) model file','https://geodesie.ign.fr/contenu/fichiers/documentation/grilles/metropole/RAF18.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1163','RGF93 (ETRS89) vers NGF-IGN 1978',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGF93GEODD','IGNF','IGN78C','IGNF','86',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/metropole/RAC09.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1161','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGFG95GEO','IGNF','GUYA77','IGNF','10',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggguy15.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG62','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers EUROPE 1950 (ED50)',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','NTF','IGNF','ED50','IGNF','91',NULL,-84,37,437,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG62_NTFG_TO_ED50G','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers EUROPE 1950 (ED50)',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NTFG','IGNF','ED50G','IGNF','91',NULL,-84,37,437,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG62_NTFG_TO_ED50GEO','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers EUROPE 1950 (ED50)',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NTFG','IGNF','ED50GEO','IGNF','91',NULL,-84,37,437,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','143','FRANCE METROPOLITAINE','FRANCE METROPOLITAINE',41.0,52.0,-5.5,10.0,0); INSERT INTO "grid_transformation" VALUES('IGNF','NTFG_TO_RGF93G','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers RGF93 (ETRS89)',NULL,'NATIONALE','EPSG','9615','NTv2','IGNF','NTFG','IGNF','RGF93G','IGNF','143',NULL,'EPSG','8656','Latitude and longitude difference file','ntf_r93.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','IGNF_NTFG_TO_EPSG_4326','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers RGF93 (ETRS89)',NULL,'NATIONALE','EPSG','9615','NTv2','IGNF','NTFG','EPSG','4326','IGNF','143',NULL,'EPSG','8656','Latitude and longitude difference file','ntf_r93.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG399','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','NTF','IGNF','WGS84','IGNF','91',NULL,-168,-60,320,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG399_NTF_RRAF91','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','NTF','IGNF','RRAF91','IGNF','91',NULL,-168,-60,320,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG399_NTF_4978','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers WGS 84',NULL,'NATIONALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','NTF','EPSG','4978','IGNF','91',NULL,-168,-60,320,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG399_NTFG_TO_WGS84GEODD','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NTFG','IGNF','WGS84GEODD','IGNF','91',NULL,-168,-60,320,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG399_NTFG_TO_WGS84GDD','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NTFG','IGNF','WGS84GDD','IGNF','91',NULL,-168,-60,320,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG399_NTFG_TO_WGS84GEO','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NTFG','IGNF','WGS84GEO','IGNF','91',NULL,-168,-60,320,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG399_NTFG_TO_WGS84RRAFGEO','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NTFG','IGNF','WGS84RRAFGEO','IGNF','91',NULL,-168,-60,320,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG399_NTFG_TO_WGS84G','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NTFG','IGNF','WGS84G','IGNF','91',NULL,-168,-60,320,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG399_NTFG_TO_4326','NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers WGS 84',NULL,'NATIONALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','NTFG','EPSG','4326','IGNF','91',NULL,-168,-60,320,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','144','LUXEMBOURG','LUXEMBOURG',49.45,50.18,5.73,6.53,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','LURES','IGNF','WGS84','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LURES_RRAF91','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','LURES','IGNF','RRAF91','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LURES_4978','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','LURES','EPSG','4978','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LUREF_WGS84','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','LUREF','IGNF','WGS84','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LUREF_RRAF91','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','LUREF','IGNF','RRAF91','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LUREF_4978','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','LUREF','EPSG','4978','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LURESG_TO_WGS84GEODD','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LURESG','IGNF','WGS84GEODD','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LUXGEO_TO_WGS84GEODD','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LUXGEO','IGNF','WGS84GEODD','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LURESG_TO_WGS84GDD','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LURESG','IGNF','WGS84GDD','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LUXGEO_TO_WGS84GDD','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LUXGEO','IGNF','WGS84GDD','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LURESG_TO_WGS84GEO','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LURESG','IGNF','WGS84GEO','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LURESG_TO_WGS84RRAFGEO','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LURESG','IGNF','WGS84RRAFGEO','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LUXGEO_TO_WGS84GEO','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LUXGEO','IGNF','WGS84GEO','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LUXGEO_TO_WGS84RRAFGEO','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LUXGEO','IGNF','WGS84RRAFGEO','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LURESG_TO_WGS84G','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LURESG','IGNF','WGS84G','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LURESG_TO_4326','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LURESG','EPSG','4326','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LUXGEO_TO_WGS84G','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LUXGEO','IGNF','WGS84G','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG802_LUXGEO_TO_4326','NOUVELLE TRIANGULATION DU GRAND DUCHE DE LUXEMBOURG (LURES) vers WGS 84',NULL,'NATIONALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','LUXGEO','EPSG','4326','IGNF','144',NULL,-192.986,13.673,-39.309,'EPSG','9001',-0.409900,-2.933200,2.688100,'EPSG','9104',0.43,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "other_transformation" VALUES('IGNF','TSG1240','NTF geographiques Paris (gr) vers NTF GEOGRAPHIQUES GREENWICH (DMS)',NULL,'NATIONALE','EPSG','9601','Longitude rotation','IGNF','NTFPGRAD','IGNF','NTFG','IGNF','143',0.0,'EPSG','8602','Longitude offset',2.5969213,'EPSG','9105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0',0); INSERT INTO "other_transformation" VALUES('IGNF','TSG1240_IGNF_NTFP_TO_IGNF_NTFG','NTF geographiques Paris (gr) vers NTF GEOGRAPHIQUES GREENWICH (DMS)',NULL,'NATIONALE','EPSG','9601','Longitude rotation','IGNF','NTFP','IGNF','NTFG','IGNF','143',0.0,'EPSG','8602','Longitude offset',2.5969213,'EPSG','9105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0',0); INSERT INTO "area" VALUES('IGNF','145','TERRE ADELIE - ILE DES PETRELS','TERRE ADELIE - ILE DES PETRELS',-68,-66.17,139.67,140.17,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG608','PETRELS-IGN 1972 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','PETRELS72','IGNF','WGS84','IGNF','145',NULL,365,194,166,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG608_PETRELS72_RRAF91','PETRELS-IGN 1972 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','PETRELS72','IGNF','RRAF91','IGNF','145',NULL,365,194,166,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG608_PETRELS72_4978','PETRELS-IGN 1972 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','PETRELS72','EPSG','4978','IGNF','145',NULL,365,194,166,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG608_PETRELS72G_TO_WGS84GEODD','PETRELS-IGN 1972 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PETRELS72G','IGNF','WGS84GEODD','IGNF','145',NULL,365,194,166,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG608_PETRELS72G_TO_WGS84GDD','PETRELS-IGN 1972 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PETRELS72G','IGNF','WGS84GDD','IGNF','145',NULL,365,194,166,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG608_PETRELS72G_TO_WGS84GEO','PETRELS-IGN 1972 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PETRELS72G','IGNF','WGS84GEO','IGNF','145',NULL,365,194,166,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG608_PETRELS72G_TO_WGS84RRAFGEO','PETRELS-IGN 1972 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PETRELS72G','IGNF','WGS84RRAFGEO','IGNF','145',NULL,365,194,166,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG608_PETRELS72G_TO_WGS84G','PETRELS-IGN 1972 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PETRELS72G','IGNF','WGS84G','IGNF','145',NULL,365,194,166,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG608_PETRELS72G_TO_4326','PETRELS-IGN 1972 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PETRELS72G','EPSG','4326','IGNF','145',NULL,365,194,166,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','PGP50','IGNF','RGTAAF07','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_TERA50_RGTAAF07','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TERA50','IGNF','RGTAAF07','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_TERA50GEO_TO_RGTAAFGEODD','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50GEO','IGNF','RGTAAFGEODD','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_TERA50GEO_TO_RGTAAF07GDD','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50GEO','IGNF','RGTAAF07GDD','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_TERA50GEO_TO_RGTAAFGEO','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50GEO','IGNF','RGTAAFGEO','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_TERA50GEO_TO_RGTAAF07G','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50GEO','IGNF','RGTAAF07G','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_PGP50G_TO_RGTAAFGEODD','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PGP50G','IGNF','RGTAAFGEODD','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_TERA50G_TO_RGTAAFGEODD','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50G','IGNF','RGTAAFGEODD','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_PGP50G_TO_RGTAAF07GDD','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PGP50G','IGNF','RGTAAF07GDD','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_TERA50G_TO_RGTAAF07GDD','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50G','IGNF','RGTAAF07GDD','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_PGP50G_TO_RGTAAFGEO','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PGP50G','IGNF','RGTAAFGEO','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_TERA50G_TO_RGTAAFGEO','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50G','IGNF','RGTAAFGEO','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_PGP50G_TO_RGTAAF07G','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PGP50G','IGNF','RGTAAF07G','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG815_TERA50G_TO_RGTAAF07G','POINTE GEOLOGIE-PERROUD 1950 vers RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007)',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50G','IGNF','RGTAAF07G','IGNF','48',NULL,324.912,153.282,172.026,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','146','TERRE ADELIE','TERRE ADELIE',-66.72,-66.6,139.67,140.12,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','PGP50','IGNF','WGS84','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_PGP50_RRAF91','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','PGP50','IGNF','RRAF91','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_PGP50_4978','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','PGP50','EPSG','4978','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50_WGS84','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TERA50','IGNF','WGS84','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50_RRAF91','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TERA50','IGNF','RRAF91','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50_4978','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TERA50','EPSG','4978','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50GEO_TO_WGS84GEODD','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50GEO','IGNF','WGS84GEODD','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50GEO_TO_WGS84GDD','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50GEO','IGNF','WGS84GDD','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50GEO_TO_WGS84GEO','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50GEO','IGNF','WGS84GEO','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50GEO_TO_WGS84RRAFGEO','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50GEO','IGNF','WGS84RRAFGEO','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50GEO_TO_WGS84G','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50GEO','IGNF','WGS84G','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50GEO_TO_4326','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50GEO','EPSG','4326','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_PGP50G_TO_WGS84GEODD','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PGP50G','IGNF','WGS84GEODD','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50G_TO_WGS84GEODD','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50G','IGNF','WGS84GEODD','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_PGP50G_TO_WGS84GDD','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PGP50G','IGNF','WGS84GDD','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50G_TO_WGS84GDD','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50G','IGNF','WGS84GDD','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_PGP50G_TO_WGS84GEO','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PGP50G','IGNF','WGS84GEO','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_PGP50G_TO_WGS84RRAFGEO','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PGP50G','IGNF','WGS84RRAFGEO','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50G_TO_WGS84GEO','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50G','IGNF','WGS84GEO','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50G_TO_WGS84RRAFGEO','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50G','IGNF','WGS84RRAFGEO','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_PGP50G_TO_WGS84G','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PGP50G','IGNF','WGS84G','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_PGP50G_TO_4326','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','PGP50G','EPSG','4326','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50G_TO_WGS84G','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50G','IGNF','WGS84G','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG586_TERA50G_TO_4326','POINTE GEOLOGIE-PERROUD 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TERA50G','EPSG','4326','IGNF','146',NULL,324.8,153.6,172.1,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','147','ILE DE RAIATEA','ILE DE RAIATEA',-17.0,-16.5,-151.75,-151.25,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1140','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers RAIATEA_SAU 2001',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGPFGEO','IGNF','RAIA01','IGNF','147',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf02-Raiatea.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGNC','IGNF','WGS84','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNC_RRAF91','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGNC','IGNF','RRAF91','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNC_4978','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGNC','EPSG','4978','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEODD_TO_WGS84GEODD','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEODD','IGNF','WGS84GEODD','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEODD_TO_WGS84GDD','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEODD','IGNF','WGS84GDD','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEODD_TO_WGS84GEO','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEODD','IGNF','WGS84GEO','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEODD_TO_WGS84RRAFGEO','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEODD','IGNF','WGS84RRAFGEO','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEODD_TO_WGS84G','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEODD','IGNF','WGS84G','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEODD_TO_4326','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEODD','EPSG','4326','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCG_TO_WGS84GEODD','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCG','IGNF','WGS84GEODD','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCG_TO_WGS84GDD','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCG','IGNF','WGS84GDD','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCG_TO_WGS84GEO','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCG','IGNF','WGS84GEO','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCG_TO_WGS84RRAFGEO','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCG','IGNF','WGS84RRAFGEO','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCG_TO_WGS84G','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCG','IGNF','WGS84G','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCG_TO_4326','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCG','EPSG','4326','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEO_TO_WGS84GEODD','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEO','IGNF','WGS84GEODD','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEO_TO_WGS84GDD','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEO','IGNF','WGS84GDD','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEO_TO_WGS84GEO','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEO','IGNF','WGS84GEO','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEO_TO_WGS84RRAFGEO','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEO','IGNF','WGS84RRAFGEO','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEO_TO_WGS84G','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEO','IGNF','WGS84G','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1212_RGNCGEO_TO_4326','RESEAU GEODESIQUE DE NOUVELLE-CALEDONIE (RGNC 1991) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGNCGEO','EPSG','4326','IGNF','58',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','REUN49','IGNF','RGR92','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN47_RGR92','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','REUN47','IGNF','RGR92','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN47GEO_TO_RGR92GEODD','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN47GEO','IGNF','RGR92GEODD','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN47GEO_TO_RGR92GDD','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN47GEO','IGNF','RGR92GDD','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN47GEO_TO_RGR92GEO','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN47GEO','IGNF','RGR92GEO','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN47GEO_TO_RGR92G','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN47GEO','IGNF','RGR92G','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN49G_TO_RGR92GEODD','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN49G','IGNF','RGR92GEODD','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN47G_TO_RGR92GEODD','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN47G','IGNF','RGR92GEODD','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN49G_TO_RGR92GDD','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN49G','IGNF','RGR92GDD','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN47G_TO_RGR92GDD','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN47G','IGNF','RGR92GDD','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN49G_TO_RGR92GEO','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN49G','IGNF','RGR92GEO','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN47G_TO_RGR92GEO','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN47G','IGNF','RGR92GEO','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN49G_TO_RGR92G','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN49G','IGNF','RGR92G','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG601_REUN47G_TO_RGR92G','REUNION-PITON DES NEIGES vers RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','REUN47G','IGNF','RGR92G','IGNF','56',NULL,789.524,-626.486,-89.904,'EPSG','9001',0.6006,76.7946,-10.5788,'EPSG','9104',-32.3241,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','REUN49','IGNF','WGS84','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN49_RRAF91','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','REUN49','IGNF','RRAF91','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN49_4978','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','REUN49','EPSG','4978','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47_WGS84','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','REUN47','IGNF','WGS84','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47_RRAF91','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','REUN47','IGNF','RRAF91','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47_4978','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','REUN47','EPSG','4978','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47GEO_TO_WGS84GEODD','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47GEO','IGNF','WGS84GEODD','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47GEO_TO_WGS84GDD','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47GEO','IGNF','WGS84GDD','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47GEO_TO_WGS84GEO','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47GEO','IGNF','WGS84GEO','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47GEO_TO_WGS84RRAFGEO','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47GEO','IGNF','WGS84RRAFGEO','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47GEO_TO_WGS84G','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47GEO','IGNF','WGS84G','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47GEO_TO_4326','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47GEO','EPSG','4326','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN49G_TO_WGS84GEODD','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN49G','IGNF','WGS84GEODD','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47G_TO_WGS84GEODD','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47G','IGNF','WGS84GEODD','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN49G_TO_WGS84GDD','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN49G','IGNF','WGS84GDD','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47G_TO_WGS84GDD','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47G','IGNF','WGS84GDD','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN49G_TO_WGS84GEO','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN49G','IGNF','WGS84GEO','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN49G_TO_WGS84RRAFGEO','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN49G','IGNF','WGS84RRAFGEO','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47G_TO_WGS84GEO','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47G','IGNF','WGS84GEO','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47G_TO_WGS84RRAFGEO','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47G','IGNF','WGS84RRAFGEO','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN49G_TO_WGS84G','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN49G','IGNF','WGS84G','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN49G_TO_4326','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN49G','EPSG','4326','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47G_TO_WGS84G','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47G','IGNF','WGS84G','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG587_REUN47G_TO_4326','REUNION-PITON DES NEIGES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','REUN47G','EPSG','4326','IGNF','56',NULL,94,-948,-1262,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGF93','IGNF','WGS84','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93_RRAF91','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGF93','IGNF','RRAF91','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93_4978','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGF93','EPSG','4978','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEODD_TO_WGS84GEODD','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEODD','IGNF','WGS84GEODD','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEODD_TO_WGS84GDD','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEODD','IGNF','WGS84GDD','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEODD_TO_WGS84GEO','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEODD','IGNF','WGS84GEO','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEODD_TO_WGS84RRAFGEO','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEODD','IGNF','WGS84RRAFGEO','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEODD_TO_WGS84G','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEODD','IGNF','WGS84G','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEODD_TO_4326','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEODD','EPSG','4326','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GDD_TO_WGS84GEODD','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GDD','IGNF','WGS84GEODD','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GDD_TO_WGS84GDD','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GDD','IGNF','WGS84GDD','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GDD_TO_WGS84GEO','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GDD','IGNF','WGS84GEO','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GDD_TO_WGS84RRAFGEO','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GDD','IGNF','WGS84RRAFGEO','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GDD_TO_WGS84G','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GDD','IGNF','WGS84G','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GDD_TO_4326','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GDD','EPSG','4326','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEO_TO_WGS84GEODD','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEO','IGNF','WGS84GEODD','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEO_TO_WGS84GDD','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEO','IGNF','WGS84GDD','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEO_TO_WGS84GEO','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEO','IGNF','WGS84GEO','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEO_TO_WGS84RRAFGEO','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEO','IGNF','WGS84RRAFGEO','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEO_TO_WGS84G','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEO','IGNF','WGS84G','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93GEO_TO_4326','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GEO','EPSG','4326','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93G_TO_WGS84GEODD','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93G','IGNF','WGS84GEODD','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93G_TO_WGS84GDD','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93G','IGNF','WGS84GDD','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93G_TO_WGS84GEO','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93G','IGNF','WGS84GEO','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93G_TO_WGS84RRAFGEO','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93G','IGNF','WGS84RRAFGEO','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93G_TO_WGS84G','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93G','IGNF','WGS84G','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1207_RGF93G_TO_4326','RGF93 (ETRS89) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93G','EPSG','4326','IGNF','143',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGFG95','IGNF','WGS84','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95_RRAF91','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGFG95','IGNF','RRAF91','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95_4978','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGFG95','EPSG','4978','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GDD_TO_WGS84GEODD','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GDD','IGNF','WGS84GEODD','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GDD_TO_WGS84GDD','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GDD','IGNF','WGS84GDD','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GDD_TO_WGS84GEO','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GDD','IGNF','WGS84GEO','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GDD_TO_WGS84RRAFGEO','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GDD','IGNF','WGS84RRAFGEO','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GDD_TO_WGS84G','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GDD','IGNF','WGS84G','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GDD_TO_4326','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GDD','EPSG','4326','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEODD_TO_WGS84GEODD','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEODD','IGNF','WGS84GEODD','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEODD_TO_WGS84GDD','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEODD','IGNF','WGS84GDD','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEODD_TO_WGS84GEO','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEODD','IGNF','WGS84GEO','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEODD_TO_WGS84RRAFGEO','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEODD','IGNF','WGS84RRAFGEO','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEODD_TO_WGS84G','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEODD','IGNF','WGS84G','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEODD_TO_4326','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEODD','EPSG','4326','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95G_TO_WGS84GEODD','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95G','IGNF','WGS84GEODD','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95G_TO_WGS84GDD','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95G','IGNF','WGS84GDD','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95G_TO_WGS84GEO','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95G','IGNF','WGS84GEO','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95G_TO_WGS84RRAFGEO','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95G','IGNF','WGS84RRAFGEO','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95G_TO_WGS84G','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95G','IGNF','WGS84G','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95G_TO_4326','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95G','EPSG','4326','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEO_TO_WGS84GEODD','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEO','IGNF','WGS84GEODD','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEO_TO_WGS84GDD','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEO','IGNF','WGS84GDD','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEO_TO_WGS84GEO','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEO','IGNF','WGS84GEO','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEO_TO_WGS84RRAFGEO','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEO','IGNF','WGS84RRAFGEO','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEO_TO_WGS84G','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEO','IGNF','WGS84G','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1211_RGFG95GEO_TO_4326','RGFG95 (RESEAU GEODESIQUE FRANCAIS DE GUYANE 1995) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGFG95GEO','EPSG','4326','IGNF','10',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGM04','IGNF','WGS84','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04_RRAF91','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGM04','IGNF','RRAF91','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04_4978','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGM04','EPSG','4978','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEODD_TO_WGS84GEODD','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEODD','IGNF','WGS84GEODD','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEODD_TO_WGS84GDD','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEODD','IGNF','WGS84GDD','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEODD_TO_WGS84GEO','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEODD','IGNF','WGS84GEO','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEODD_TO_WGS84RRAFGEO','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEODD','IGNF','WGS84RRAFGEO','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEODD_TO_WGS84G','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEODD','IGNF','WGS84G','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEODD_TO_4326','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEODD','EPSG','4326','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GDD_TO_WGS84GEODD','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GDD','IGNF','WGS84GEODD','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GDD_TO_WGS84GDD','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GDD','IGNF','WGS84GDD','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GDD_TO_WGS84GEO','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GDD','IGNF','WGS84GEO','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GDD_TO_WGS84RRAFGEO','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GDD','IGNF','WGS84RRAFGEO','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GDD_TO_WGS84G','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GDD','IGNF','WGS84G','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GDD_TO_4326','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GDD','EPSG','4326','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04G_TO_WGS84GEODD','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04G','IGNF','WGS84GEODD','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04G_TO_WGS84GDD','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04G','IGNF','WGS84GDD','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04G_TO_WGS84GEO','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04G','IGNF','WGS84GEO','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04G_TO_WGS84RRAFGEO','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04G','IGNF','WGS84RRAFGEO','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04G_TO_WGS84G','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04G','IGNF','WGS84G','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04G_TO_4326','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04G','EPSG','4326','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEO_TO_WGS84GEODD','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEO','IGNF','WGS84GEODD','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEO_TO_WGS84GDD','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEO','IGNF','WGS84GDD','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEO_TO_WGS84GEO','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEO','IGNF','WGS84GEO','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEO_TO_WGS84RRAFGEO','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEO','IGNF','WGS84RRAFGEO','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEO_TO_WGS84G','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEO','IGNF','WGS84G','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1208_RGM04GEO_TO_4326','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGM04GEO','EPSG','4326','IGNF','89',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGPF','IGNF','WGS84','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPF_RRAF91','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGPF','IGNF','RRAF91','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPF_4978','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGPF','EPSG','4978','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGDD_TO_WGS84GEODD','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGDD','IGNF','WGS84GEODD','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGDD_TO_WGS84GDD','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGDD','IGNF','WGS84GDD','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGDD_TO_WGS84GEO','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGDD','IGNF','WGS84GEO','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGDD_TO_WGS84RRAFGEO','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGDD','IGNF','WGS84RRAFGEO','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGDD_TO_WGS84G','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGDD','IGNF','WGS84G','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGDD_TO_4326','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGDD','EPSG','4326','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGEO_TO_WGS84GEODD','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGEO','IGNF','WGS84GEODD','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGEO_TO_WGS84GDD','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGEO','IGNF','WGS84GDD','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGEO_TO_WGS84GEO','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGEO','IGNF','WGS84GEO','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGEO_TO_WGS84RRAFGEO','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGEO','IGNF','WGS84RRAFGEO','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGEO_TO_WGS84G','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGEO','IGNF','WGS84G','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFGEO_TO_4326','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFGEO','EPSG','4326','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFG_TO_WGS84GEODD','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFG','IGNF','WGS84GEODD','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFG_TO_WGS84GDD','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFG','IGNF','WGS84GDD','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFG_TO_WGS84GEO','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFG','IGNF','WGS84GEO','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFG_TO_WGS84RRAFGEO','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFG','IGNF','WGS84RRAFGEO','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFG_TO_WGS84G','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFG','IGNF','WGS84G','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1213_RGPFG_TO_4326','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGPFG','EPSG','4326','IGNF','59',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','RGR92','IGNF','REUN49','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92_REUN47','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','RGR92','IGNF','REUN47','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92GEODD_TO_REUN47GEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92GEODD','IGNF','REUN47GEO','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92GEODD_TO_REUN49G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92GEODD','IGNF','REUN49G','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92GEODD_TO_REUN47G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92GEODD','IGNF','REUN47G','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92GDD_TO_REUN47GEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92GDD','IGNF','REUN47GEO','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92GDD_TO_REUN49G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92GDD','IGNF','REUN49G','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92GDD_TO_REUN47G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92GDD','IGNF','REUN47G','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92GEO_TO_REUN47GEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92GEO','IGNF','REUN47GEO','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92GEO_TO_REUN49G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92GEO','IGNF','REUN49G','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92GEO_TO_REUN47G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92GEO','IGNF','REUN47G','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92G_TO_REUN47GEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92G','IGNF','REUN47GEO','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92G_TO_REUN49G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92G','IGNF','REUN49G','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG355_RGR92G_TO_REUN47G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers REUNION-PITON DES NEIGES',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RGR92G','IGNF','REUN47G','IGNF','56',NULL,-789.990,627.333,89.685,'EPSG','9001',-0.6072,-76.8019,10.5680,'EPSG','9104',32.2083,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','148','REUNION','REUNION',-21.42,-20.75,55.17,55.92,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGR92','IGNF','WGS84','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92_RRAF91','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGR92','IGNF','RRAF91','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92_4978','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGR92','EPSG','4978','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEODD_TO_WGS84GEODD','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEODD','IGNF','WGS84GEODD','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEODD_TO_WGS84GDD','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEODD','IGNF','WGS84GDD','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEODD_TO_WGS84GEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEODD','IGNF','WGS84GEO','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEODD_TO_WGS84RRAFGEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEODD','IGNF','WGS84RRAFGEO','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEODD_TO_WGS84G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEODD','IGNF','WGS84G','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEODD_TO_4326','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEODD','EPSG','4326','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GDD_TO_WGS84GEODD','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GDD','IGNF','WGS84GEODD','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GDD_TO_WGS84GDD','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GDD','IGNF','WGS84GDD','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GDD_TO_WGS84GEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GDD','IGNF','WGS84GEO','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GDD_TO_WGS84RRAFGEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GDD','IGNF','WGS84RRAFGEO','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GDD_TO_WGS84G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GDD','IGNF','WGS84G','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GDD_TO_4326','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GDD','EPSG','4326','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEO_TO_WGS84GEODD','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEO','IGNF','WGS84GEODD','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEO_TO_WGS84GDD','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEO','IGNF','WGS84GDD','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEO_TO_WGS84GEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEO','IGNF','WGS84GEO','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEO_TO_WGS84RRAFGEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEO','IGNF','WGS84RRAFGEO','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEO_TO_WGS84G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEO','IGNF','WGS84G','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92GEO_TO_4326','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92GEO','EPSG','4326','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92G_TO_WGS84GEODD','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92G','IGNF','WGS84GEODD','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92G_TO_WGS84GDD','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92G','IGNF','WGS84GDD','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92G_TO_WGS84GEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92G','IGNF','WGS84GEO','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92G_TO_WGS84RRAFGEO','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92G','IGNF','WGS84RRAFGEO','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92G_TO_WGS84G','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92G','IGNF','WGS84G','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG731_RGR92G_TO_4326','RGR92 (RESEAU GEODESIQUE DE LA REUNION 1992) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGR92G','EPSG','4326','IGNF','148',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGSPM06','IGNF','WGS84','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06_RRAF91','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGSPM06','IGNF','RRAF91','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06_4978','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGSPM06','EPSG','4978','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GDD_TO_WGS84GEODD','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GDD','IGNF','WGS84GEODD','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GDD_TO_WGS84GDD','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GDD','IGNF','WGS84GDD','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GDD_TO_WGS84GEO','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GDD','IGNF','WGS84GEO','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GDD_TO_WGS84RRAFGEO','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GDD','IGNF','WGS84RRAFGEO','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GDD_TO_WGS84G','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GDD','IGNF','WGS84G','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GDD_TO_4326','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GDD','EPSG','4326','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEODD_TO_WGS84GEODD','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEODD','IGNF','WGS84GEODD','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEODD_TO_WGS84GDD','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEODD','IGNF','WGS84GDD','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEODD_TO_WGS84GEO','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEODD','IGNF','WGS84GEO','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEODD_TO_WGS84RRAFGEO','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEODD','IGNF','WGS84RRAFGEO','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEODD_TO_WGS84G','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEODD','IGNF','WGS84G','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEODD_TO_4326','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEODD','EPSG','4326','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEO_TO_WGS84GEODD','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEO','IGNF','WGS84GEODD','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEO_TO_WGS84GDD','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEO','IGNF','WGS84GDD','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEO_TO_WGS84GEO','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEO','IGNF','WGS84GEO','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEO_TO_WGS84RRAFGEO','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEO','IGNF','WGS84RRAFGEO','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEO_TO_WGS84G','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEO','IGNF','WGS84G','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06GEO_TO_4326','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06GEO','EPSG','4326','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06G_TO_WGS84GEODD','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06G','IGNF','WGS84GEODD','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06G_TO_WGS84GDD','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06G','IGNF','WGS84GDD','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06G_TO_WGS84GEO','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06G','IGNF','WGS84GEO','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06G_TO_WGS84RRAFGEO','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06G','IGNF','WGS84RRAFGEO','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06G_TO_WGS84G','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06G','IGNF','WGS84G','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1209_RGSPM06G_TO_4326','RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGSPM06G','EPSG','4326','IGNF','60',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','149','TAAF','TAAF',-90,-11,39,142,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGTAAF07','IGNF','WGS84','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07_RRAF91','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGTAAF07','IGNF','RRAF91','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07_4978','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGTAAF07','EPSG','4978','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEODD_TO_WGS84GEODD','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEODD','IGNF','WGS84GEODD','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEODD_TO_WGS84GDD','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEODD','IGNF','WGS84GDD','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEODD_TO_WGS84GEO','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEODD','IGNF','WGS84GEO','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEODD_TO_WGS84RRAFGEO','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEODD','IGNF','WGS84RRAFGEO','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEODD_TO_WGS84G','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEODD','IGNF','WGS84G','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEODD_TO_4326','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEODD','EPSG','4326','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07GDD_TO_WGS84GEODD','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07GDD','IGNF','WGS84GEODD','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07GDD_TO_WGS84GDD','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07GDD','IGNF','WGS84GDD','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07GDD_TO_WGS84GEO','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07GDD','IGNF','WGS84GEO','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07GDD_TO_WGS84RRAFGEO','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07GDD','IGNF','WGS84RRAFGEO','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07GDD_TO_WGS84G','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07GDD','IGNF','WGS84G','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07GDD_TO_4326','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07GDD','EPSG','4326','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEO_TO_WGS84GEODD','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEO','IGNF','WGS84GEODD','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEO_TO_WGS84GDD','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEO','IGNF','WGS84GDD','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEO_TO_WGS84GEO','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEO','IGNF','WGS84GEO','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEO_TO_WGS84RRAFGEO','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEO','IGNF','WGS84RRAFGEO','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEO_TO_WGS84G','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEO','IGNF','WGS84G','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAFGEO_TO_4326','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAFGEO','EPSG','4326','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07G_TO_WGS84GEODD','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07G','IGNF','WGS84GEODD','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07G_TO_WGS84GDD','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07G','IGNF','WGS84GDD','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07G_TO_WGS84GEO','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07G','IGNF','WGS84GEO','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07G_TO_WGS84RRAFGEO','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07G','IGNF','WGS84RRAFGEO','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07G_TO_WGS84G','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07G','IGNF','WGS84G','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1210_RGTAAF07G_TO_4326','RGTAAF07 (RESEAU GEODESIQUE DES TAAF 2007) vers WGS 84',NULL,'SYSTEMES GEODESIQUES ASSIMILABLES SUR LEUR ETENDUE COMMUNE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGTAAF07G','EPSG','4326','IGNF','149',NULL,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','150','RURUTU - AUSTRALES','RURUTU - AUSTRALES',-22.58,-22.25,-151.5,-151.33,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RUSAT84','IGNF','WGS84','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_RUSAT84_RRAF91','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RUSAT84','IGNF','RRAF91','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_RUSAT84_4978','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RUSAT84','EPSG','4978','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_SAT84_WGS84','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','SAT84','IGNF','WGS84','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_SAT84_RRAF91','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','SAT84','IGNF','RRAF91','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_SAT84_4978','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','SAT84','EPSG','4978','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_RUSAT84G_TO_WGS84GEODD','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RUSAT84G','IGNF','WGS84GEODD','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_SAT84G_TO_WGS84GEODD','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','SAT84G','IGNF','WGS84GEODD','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_RUSAT84G_TO_WGS84GDD','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RUSAT84G','IGNF','WGS84GDD','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_SAT84G_TO_WGS84GDD','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','SAT84G','IGNF','WGS84GDD','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_RUSAT84G_TO_WGS84GEO','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RUSAT84G','IGNF','WGS84GEO','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_RUSAT84G_TO_WGS84RRAFGEO','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RUSAT84G','IGNF','WGS84RRAFGEO','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_SAT84G_TO_WGS84GEO','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','SAT84G','IGNF','WGS84GEO','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_SAT84G_TO_WGS84RRAFGEO','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','SAT84G','IGNF','WGS84RRAFGEO','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_RUSAT84G_TO_WGS84G','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RUSAT84G','IGNF','WGS84G','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_RUSAT84G_TO_4326','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RUSAT84G','EPSG','4326','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_SAT84G_TO_WGS84G','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','SAT84G','IGNF','WGS84G','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG752_SAT84G_TO_4326','SAT84 (RURUTU) ILES AUSTRALES vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','SAT84G','EPSG','4326','IGNF','150',NULL,202.13,174.60,-15.74,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1159','RGM04 (RESEAU GEODESIQUE DE MAYOTTE 2004) vers SHOM 1953 (MAYOTTE)',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGM04GEODD','IGNF','MAYO53','IGNF','89',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggm04v1.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG795','ST-PIERRE-ET-MIQUELON 1950 vers RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','STPM50','IGNF','RGSPM06','IGNF','60',NULL,-95.593,573.763,173.442,'EPSG','9001',-0.9602,1.2510,-1.3918,'EPSG','9104',42.6265,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG795_STPM50GEO_TO_RGSPM06GDD','ST-PIERRE-ET-MIQUELON 1950 vers RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','STPM50GEO','IGNF','RGSPM06GDD','IGNF','60',NULL,-95.593,573.763,173.442,'EPSG','9001',-0.9602,1.2510,-1.3918,'EPSG','9104',42.6265,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG795_STPM50GEO_TO_RGSPM06GEODD','ST-PIERRE-ET-MIQUELON 1950 vers RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','STPM50GEO','IGNF','RGSPM06GEODD','IGNF','60',NULL,-95.593,573.763,173.442,'EPSG','9001',-0.9602,1.2510,-1.3918,'EPSG','9104',42.6265,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG795_STPM50GEO_TO_RGSPM06GEO','ST-PIERRE-ET-MIQUELON 1950 vers RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','STPM50GEO','IGNF','RGSPM06GEO','IGNF','60',NULL,-95.593,573.763,173.442,'EPSG','9001',-0.9602,1.2510,-1.3918,'EPSG','9104',42.6265,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG795_STPM50GEO_TO_RGSPM06G','ST-PIERRE-ET-MIQUELON 1950 vers RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','STPM50GEO','IGNF','RGSPM06G','IGNF','60',NULL,-95.593,573.763,173.442,'EPSG','9001',-0.9602,1.2510,-1.3918,'EPSG','9104',42.6265,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG795_STPM50G_TO_RGSPM06GDD','ST-PIERRE-ET-MIQUELON 1950 vers RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','STPM50G','IGNF','RGSPM06GDD','IGNF','60',NULL,-95.593,573.763,173.442,'EPSG','9001',-0.9602,1.2510,-1.3918,'EPSG','9104',42.6265,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG795_STPM50G_TO_RGSPM06GEODD','ST-PIERRE-ET-MIQUELON 1950 vers RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','STPM50G','IGNF','RGSPM06GEODD','IGNF','60',NULL,-95.593,573.763,173.442,'EPSG','9001',-0.9602,1.2510,-1.3918,'EPSG','9104',42.6265,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG795_STPM50G_TO_RGSPM06GEO','ST-PIERRE-ET-MIQUELON 1950 vers RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','STPM50G','IGNF','RGSPM06GEO','IGNF','60',NULL,-95.593,573.763,173.442,'EPSG','9001',-0.9602,1.2510,-1.3918,'EPSG','9104',42.6265,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG795_STPM50G_TO_RGSPM06G','ST-PIERRE-ET-MIQUELON 1950 vers RGSPM06 (RESEAU GEODESIQUE DE SAINT-PIERRE-ET-MIQUELON 2006)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','STPM50G','IGNF','RGSPM06G','IGNF','60',NULL,-95.593,573.763,173.442,'EPSG','9001',-0.9602,1.2510,-1.3918,'EPSG','9104',42.6265,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','151','SAINT-PIERRE ET MIQUELON','SAINT-PIERRE ET MIQUELON',46.7,47.2,-56.49,-56.1,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','STPM50','IGNF','WGS84','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50_RRAF91','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','STPM50','IGNF','RRAF91','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50_4978','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','STPM50','EPSG','4978','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50GEO_TO_WGS84GEODD','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50GEO','IGNF','WGS84GEODD','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50GEO_TO_WGS84GDD','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50GEO','IGNF','WGS84GDD','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50GEO_TO_WGS84GEO','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50GEO','IGNF','WGS84GEO','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50GEO_TO_WGS84RRAFGEO','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50GEO','IGNF','WGS84RRAFGEO','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50GEO_TO_WGS84G','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50GEO','IGNF','WGS84G','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50GEO_TO_4326','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50GEO','EPSG','4326','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50G_TO_WGS84GEODD','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50G','IGNF','WGS84GEODD','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50G_TO_WGS84GDD','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50G','IGNF','WGS84GDD','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50G_TO_WGS84GEO','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50G','IGNF','WGS84GEO','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50G_TO_WGS84RRAFGEO','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50G','IGNF','WGS84RRAFGEO','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50G_TO_WGS84G','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50G','IGNF','WGS84G','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG812_STPM50G_TO_4326','ST-PIERRE-ET-MIQUELON 1950 vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','STPM50G','EPSG','4326','IGNF','151',NULL,11.363,424.148,373.130,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','152','BORA BORA, HUAHINE, RAIATEA, TAHAA','BORA BORA, HUAHINE, RAIATEA, TAHAA',-17,-16.25,-152,-150.75,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1004','TAHAA vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','TAHAA','IGNF','RGPF','IGNF','152',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1004_TAHAAG_TO_RGPFGDD','TAHAA vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAAG','IGNF','RGPFGDD','IGNF','152',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1004_TAHAAG_TO_RGPFGEO','TAHAA vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAAG','IGNF','RGPFGEO','IGNF','152',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1004_TAHAAG_TO_RGPFG','TAHAA vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAAG','IGNF','RGPFG','IGNF','152',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1004_TAHAAGEO_TO_RGPFGDD','TAHAA vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAAGEO','IGNF','RGPFGDD','IGNF','152',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1004_TAHAAGEO_TO_RGPFGEO','TAHAA vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAAGEO','IGNF','RGPFGEO','IGNF','152',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG1004_TAHAAGEO_TO_RGPFG','TAHAA vers RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','TAHAAGEO','IGNF','RGPFG','IGNF','152',NULL,72.438,345.918,79.486,'EPSG','9001',-1.6045,-0.8823,-0.5565,'EPSG','9104',1.3746,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','153','TAHAA-ILES DE LA SOCIETE','TAHAA-ILES DE LA SOCIETE',-16.7,-16.53,-151.58,-151.38,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TAHAA','IGNF','WGS84','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAA_RRAF91','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TAHAA','IGNF','RRAF91','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAA_4978','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TAHAA','EPSG','4978','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAG_TO_WGS84GEODD','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAG','IGNF','WGS84GEODD','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAG_TO_WGS84GDD','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAG','IGNF','WGS84GDD','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAG_TO_WGS84GEO','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAG','IGNF','WGS84GEO','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAG_TO_WGS84RRAFGEO','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAG','IGNF','WGS84RRAFGEO','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAG_TO_WGS84G','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAG','IGNF','WGS84G','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAG_TO_4326','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAG','EPSG','4326','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAGEO_TO_WGS84GEODD','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAGEO','IGNF','WGS84GEODD','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAGEO_TO_WGS84GDD','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAGEO','IGNF','WGS84GDD','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAGEO_TO_WGS84GEO','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAGEO','IGNF','WGS84GEO','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAGEO_TO_WGS84RRAFGEO','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAGEO','IGNF','WGS84RRAFGEO','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAGEO_TO_WGS84G','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAGEO','IGNF','WGS84G','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG595_TAHAAGEO_TO_4326','TAHAA vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHAAGEO','EPSG','4326','IGNF','153',NULL,65,342,77,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','154','ILE DE TAHAA','ILE DE TAHAA',-16.75,-16.5,-151.75,-151.25,0); INSERT INTO "grid_transformation" VALUES('IGNF','TSG1141','RGPF (RESEAU GEODESIQUE DE POLYNESIE FRANCAISE) vers TAHAA_SAU 2001',NULL,'LOCALE','EPSG','9664','Geographic3D to GravityRelatedHeight (IGN1997)','IGNF','RGPFGEO','IGNF','TAHAA01','IGNF','154',NULL,'EPSG','8666','Geoid (height correction) model file','http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf02-Tahaa.mnt',NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','155','TAHITI','TAHITI',-18,-17,-150,-149,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG594','TAHITI-TERME NORD vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TAHI51','IGNF','WGS84','IGNF','155',NULL,162,117,154,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG594_TAHI51_RRAF91','TAHITI-TERME NORD vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TAHI51','IGNF','RRAF91','IGNF','155',NULL,162,117,154,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG594_TAHI51_4978','TAHITI-TERME NORD vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TAHI51','EPSG','4978','IGNF','155',NULL,162,117,154,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG594_TAHI51G_TO_WGS84GEODD','TAHITI-TERME NORD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI51G','IGNF','WGS84GEODD','IGNF','155',NULL,162,117,154,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG594_TAHI51G_TO_WGS84GDD','TAHITI-TERME NORD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI51G','IGNF','WGS84GDD','IGNF','155',NULL,162,117,154,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG594_TAHI51G_TO_WGS84GEO','TAHITI-TERME NORD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI51G','IGNF','WGS84GEO','IGNF','155',NULL,162,117,154,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG594_TAHI51G_TO_WGS84RRAFGEO','TAHITI-TERME NORD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI51G','IGNF','WGS84RRAFGEO','IGNF','155',NULL,162,117,154,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG594_TAHI51G_TO_WGS84G','TAHITI-TERME NORD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI51G','IGNF','WGS84G','IGNF','155',NULL,162,117,154,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG594_TAHI51G_TO_4326','TAHITI-TERME NORD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TAHI51G','EPSG','4326','IGNF','155',NULL,162,117,154,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','156','VANUATU - ILE TANNA','VANUATU - ILE TANNA',-19.67,-19.08,169.17,169.83,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG675','TANNA BLOC SUD vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TANNA','IGNF','WGS84','IGNF','156',NULL,-139,-967,436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG675_TANNA_RRAF91','TANNA BLOC SUD vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TANNA','IGNF','RRAF91','IGNF','156',NULL,-139,-967,436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG675_TANNA_4978','TANNA BLOC SUD vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','TANNA','EPSG','4978','IGNF','156',NULL,-139,-967,436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG675_TANNAG_TO_WGS84GEODD','TANNA BLOC SUD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TANNAG','IGNF','WGS84GEODD','IGNF','156',NULL,-139,-967,436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG675_TANNAG_TO_WGS84GDD','TANNA BLOC SUD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TANNAG','IGNF','WGS84GDD','IGNF','156',NULL,-139,-967,436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG675_TANNAG_TO_WGS84GEO','TANNA BLOC SUD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TANNAG','IGNF','WGS84GEO','IGNF','156',NULL,-139,-967,436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG675_TANNAG_TO_WGS84RRAFGEO','TANNA BLOC SUD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TANNAG','IGNF','WGS84RRAFGEO','IGNF','156',NULL,-139,-967,436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG675_TANNAG_TO_WGS84G','TANNA BLOC SUD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TANNAG','IGNF','WGS84G','IGNF','156',NULL,-139,-967,436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG675_TANNAG_TO_4326','TANNA BLOC SUD vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','TANNAG','EPSG','4326','IGNF','156',NULL,-139,-967,436,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','157','WALLIS ET FUTUNA','WALLIS ET FUTUNA',-13.42,-13.17,-176.3,-176.1,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','WALL78','IGNF','WGS84','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78_RRAF91','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','WALL78','IGNF','RRAF91','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78_4978','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','1031','Geocentric translations (geocentric domain)','IGNF','WALL78','EPSG','4978','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78GEO_TO_WGS84GEODD','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78GEO','IGNF','WGS84GEODD','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78GEO_TO_WGS84GDD','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78GEO','IGNF','WGS84GDD','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78GEO_TO_WGS84GEO','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78GEO','IGNF','WGS84GEO','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78GEO_TO_WGS84RRAFGEO','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78GEO','IGNF','WGS84RRAFGEO','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78GEO_TO_WGS84G','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78GEO','IGNF','WGS84G','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78GEO_TO_4326','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78GEO','EPSG','4326','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78G_TO_WGS84GEODD','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78G','IGNF','WGS84GEODD','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78G_TO_WGS84GDD','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78G','IGNF','WGS84GDD','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78G_TO_WGS84GEO','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78G','IGNF','WGS84GEO','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78G_TO_WGS84RRAFGEO','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78G','IGNF','WGS84RRAFGEO','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78G_TO_WGS84G','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78G','IGNF','WGS84G','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG609_WALL78G_TO_4326','WALLIS-UVEA SHOM 1978 (MOP1978) vers WGS 84',NULL,'LOCALE','EPSG','9603','Geocentric translations (geog2D domain)','IGNF','WALL78G','EPSG','4326','IGNF','157',NULL,253,-133,-127,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','RRAF','IGNF','RGAF09','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84GUAD_RGAF09','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','WGS84GUAD','IGNF','RGAF09','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGDD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09GDD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84MARTGDD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09GDD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGDD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09GEODD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84MARTGDD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09GEODD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGDD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09G','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84MARTGDD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09G','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGDD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09GEO','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84MARTGDD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09GEO','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGEODD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09GDD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_W84MARTGEODD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09GDD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGEODD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09GEODD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_W84MARTGEODD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09GEODD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGEODD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09G','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_W84MARTGEODD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09G','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGEODD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09GEO','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_W84MARTGEODD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09GEO','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGEO_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09GDD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84GUADGEO_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09GDD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGEO_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09GEODD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84GUADGEO_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09GEODD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGEO_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09G','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84GUADGEO_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09G','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFGEO_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09GEO','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84GUADGEO_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09GEO','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFG_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09GDD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84MARTG_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09GDD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFG_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09GEODD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84MARTG_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09GEODD','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFG_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09G','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84MARTG_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09G','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_RRAFG_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09GEO','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG818_WGS84MARTG_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09GEO','IGNF','39',NULL,0.7696,-0.8692,-12.0631,'EPSG','9001',-0.32511,-0.21041,-0.02390,'EPSG','9104',0.2829,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','158','SAINT-MARTIN ET SAINT-BARTHELEMY','SAINT-MARTIN ET SAINT-BARTHELEMY',17.82,18.18,-63.18,-62.25,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','RRAF','IGNF','RGAF09','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84GUAD_RGAF09','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','WGS84GUAD','IGNF','RGAF09','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGDD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09GDD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84MARTGDD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09GDD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGDD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09GEODD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84MARTGDD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09GEODD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGDD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09G','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84MARTGDD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09G','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGDD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09GEO','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84MARTGDD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09GEO','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGEODD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09GDD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_W84MARTGEODD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09GDD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGEODD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09GEODD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_W84MARTGEODD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09GEODD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGEODD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09G','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_W84MARTGEODD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09G','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGEODD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09GEO','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_W84MARTGEODD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09GEO','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGEO_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09GDD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84GUADGEO_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09GDD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGEO_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09GEODD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84GUADGEO_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09GEODD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGEO_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09G','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84GUADGEO_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09G','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFGEO_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09GEO','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84GUADGEO_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09GEO','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFG_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09GDD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84MARTG_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09GDD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFG_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09GEODD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84MARTG_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09GEODD','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFG_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09G','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84MARTG_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09G','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_RRAFG_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09GEO','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG819_WGS84MARTG_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09GEO','IGNF','158',NULL,14.6642,5.2493,0.1981,'EPSG','9001',-0.06838,0.09141,-0.58131,'EPSG','9104',-0.4067,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "area" VALUES('IGNF','159','GUADELOUPE','GUADELOUPE',15.82,16.6,-61.83,-60.77,0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','RRAF','IGNF','RGAF09','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84GUAD_RGAF09','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','1033','Position Vector transformation (geocentric domain)','IGNF','WGS84GUAD','IGNF','RGAF09','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGDD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09GDD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84MARTGDD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09GDD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGDD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09GEODD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84MARTGDD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09GEODD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGDD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09G','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84MARTGDD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09G','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGDD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGDD','IGNF','RGAF09GEO','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84MARTGDD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTGDD','IGNF','RGAF09GEO','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGEODD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09GDD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_W84MARTGEODD_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09GDD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGEODD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09GEODD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_W84MARTGEODD_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09GEODD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGEODD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09G','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_W84MARTGEODD_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09G','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGEODD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEODD','IGNF','RGAF09GEO','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_W84MARTGEODD_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','W84MARTGEODD','IGNF','RGAF09GEO','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGEO_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09GDD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84GUADGEO_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09GDD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGEO_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09GEODD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84GUADGEO_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09GEODD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGEO_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09G','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84GUADGEO_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09G','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFGEO_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFGEO','IGNF','RGAF09GEO','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84GUADGEO_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84GUADGEO','IGNF','RGAF09GEO','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFG_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09GDD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84MARTG_TO_RGAF09GDD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09GDD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFG_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09GEODD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84MARTG_TO_RGAF09GEODD','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09GEODD','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFG_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09G','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84MARTG_TO_RGAF09G','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09G','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_RRAFG_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','RRAFG','IGNF','RGAF09GEO','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "helmert_transformation" VALUES('IGNF','TSG820_WGS84MARTG_TO_RGAF09GEO','WGS 84 (RRAF) vers RGAF09 (RESEAU GEODESIQUE DES ANTILLES FRANCAISES 2009)',NULL,'LOCALE','EPSG','9606','Position Vector transformation (geog2D domain)','IGNF','WGS84MARTG','IGNF','RGAF09GEO','IGNF','159',NULL,1.2239,2.4156,-1.7598,'EPSG','9001',0.03800,-0.16101,-0.04925,'EPSG','9104',0.2387,'EPSG', '9202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0.0',0); INSERT INTO "conversion" VALUES('IGNF','PRC0307248','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC034338','UTM SUD FUSEAU 43',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9813548','EQUIRECTANGULAIRE AMSTERDAM SAINT-PAUL',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',-38.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306336','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306251','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9814568','EQUIRECTANGULAIRE ANTILLES FRANCAISES',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',15.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306554','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC060623','BONNE FRANCE - ETAT MAJOR',NULL,NULL,'EPSG','1262','EPSG','9827','Bonne','EPSG','8801','Latitude of natural origin',50.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0338366','UTM SUD FUSEAU 38',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0212179','UTM NORD FUSEAU 12',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-111.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0338118','UTM SUD FUSEAU 38',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC033935','UTM SUD FUSEAU 39',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9801422','EQUIRECTANGULAIRE CROZET',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',-46.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0221400','UTM NORD FUSEAU 21',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0222401','UTM NORD FUSEAU 22',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0221137','UTM NORD FUSEAU 21',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0222138','UTM NORD FUSEAU 22',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC023086','UTM NORD FUSEAU 30',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC023288','UTM NORD FUSEAU 32',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC023187','UTM NORD FUSEAU 31',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0359176','UTM SUD FUSEAU 59',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC991495','ETRS89 LAMBERT AZIMUTHAL EQUAL AREA (LAEA)',NULL,NULL,'EPSG','1262','EPSG','9820','Lambert Azimuthal Equal Area','EPSG','8801','Latitude of natural origin',52.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',10.0,'EPSG','9102','EPSG','8806','False easting',4321000.0,'EPSG','9001','EPSG','8807','False northing',3210000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC813596','ETRS89 LAMBERT CONFORMAL CONIC',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',52.0,'EPSG','9102','EPSG','8822','Longitude of false origin',10.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',35.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',65.0,'EPSG','9102','EPSG','8826','Easting at false origin',4000000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2800000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC022697','UTM NORD FUSEAU 26',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC022798','UTM NORD FUSEAU 27',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC022899','UTM NORD FUSEAU 28',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0229100','UTM NORD FUSEAU 29',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0230101','UTM NORD FUSEAU 30',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0231102','UTM NORD FUSEAU 31',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0232103','UTM NORD FUSEAU 32',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0233104','UTM NORD FUSEAU 33',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',15.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0234105','UTM NORD FUSEAU 34',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',21.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0235106','UTM NORD FUSEAU 35',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',27.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0236107','UTM NORD FUSEAU 36',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',33.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0237108','UTM NORD FUSEAU 37',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0238109','UTM NORD FUSEAU 38',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0701121','MERCATOR DIRECTE',NULL,NULL,'EPSG','1262','EPSG','9804','Mercator (variant A)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',20000000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0337572','UTM SUD FUSEAU 37',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306261','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307269','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307272','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307275','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307278','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307264','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9802423','EQUIRECTANGULAIRE FRANCE',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',46.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0701124','MERCATOR DIRECTE',NULL,NULL,'EPSG','1262','EPSG','9804','Mercator (variant A)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',20000000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0338125','UTM SUD FUSEAU 38',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0358566','UTM SUD FUSEAU 58',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0220150','UTM NORD FUSEAU 20',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0220147','UTM NORD FUSEAU 20',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9805425','EQUIRECTANGULAIRE GUYANE',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',4.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307283','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307286','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307289','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307292','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307235','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307238','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307241','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030567','UTM SUD FUSEAU 5',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0149208','LAMBERT NOUVELLE-CALEDONIE',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-21.5,'EPSG','9102','EPSG','8822','Longitude of false origin',166.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-20.6666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-22.3333333333,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0358209','UTM SUD FUSEAU 58',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0338564','UTM SUD FUSEAU 38',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030664','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC034219','UTM SUD FUSEAU 42',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9812426','EQUIRECTANGULAIRE KERGUELEN',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',-49.5,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC013591','LAMBERT NORD DE GUERRE',NULL,NULL,'EPSG','1262','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',55.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',6.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99950908,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0358182','UTM SUD FUSEAU 58',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307295','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0308230','UTM SUD FUSEAU 8',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0358186','UTM SUD FUSEAU 58',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0220144','UTM NORD FUSEAU 20',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030582','UTM SUD FUSEAU 5',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9807428','EQUIRECTANGULAIRE MAYOTTE',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',-12.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030858','UTM SUD FUSEAU 8',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030679','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307307','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307303','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307298','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9203409','LAMBERT NOUMEA 2',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-22.2697222222,'EPSG','9102','EPSG','8822','Longitude of false origin',166.4425,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-22.2447222222,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-22.2947222222,'EPSG','9102','EPSG','8826','Easting at false origin',8.313,'EPSG','9001','EPSG','8827','Northing at false origin',-2.354,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9809429','EQUIRECTANGULAIRE N. CALEDONIE',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',-22.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0406569','GAUSS-KRUGER (G-K) LUXEMBOURG',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',49.8333333333,'EPSG','9102','EPSG','8802','Longitude of natural origin',6.16666666667,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',80000.0,'EPSG','9001','EPSG','8807','False northing',100000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC011814','LAMBERT GRAND CHAMP',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',0.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.0,'EPSG','9102','EPSG','8826','Easting at false origin',600000.0,'EPSG','9001','EPSG','8827','Northing at false origin',600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC01015','LAMBERT I NORD',NULL,NULL,'EPSG','1262','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',55.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99987734,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC01316','LAMBERT I CARTO',NULL,NULL,'EPSG','1262','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',55.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99987734,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',1200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC01027','LAMBERT II CENTRE',NULL,NULL,'EPSG','1262','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',52.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99987742,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC01328','LAMBERT II CARTO',NULL,NULL,'EPSG','1262','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',52.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99987742,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',2200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC012013','LAMBERT II ETENDU',NULL,NULL,'EPSG','1262','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',52.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99987742,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',2200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC01039','LAMBERT III SUD',NULL,NULL,'EPSG','1262','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.9998775,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC013310','LAMBERT III CARTO',NULL,NULL,'EPSG','1262','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',49.0,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.9998775,'EPSG','9201','EPSG','8806','False easting',600000.0,'EPSG','9001','EPSG','8807','False northing',3200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC010411','LAMBERT IV CORSE',NULL,NULL,'EPSG','1262','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.85,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99994471,'EPSG','9201','EPSG','8806','False easting',234.358,'EPSG','9001','EPSG','8807','False northing',185861.369,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC013412','LAMBERT IV CARTO',NULL,NULL,'EPSG','1262','EPSG','9801','Lambert Conic Conformal (1SP)','EPSG','8801','Latitude of natural origin',46.85,'EPSG','9105','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9105','EPSG','8805','Scale factor at natural origin',0.99994471,'EPSG','9201','EPSG','8806','False easting',234.358,'EPSG','9001','EPSG','8807','False northing',4185861.369,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307212','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0358195','UTM SUD FUSEAU 58',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0508542','GAUSS LABORDE REUNION',NULL,NULL,'EPSG','1262','PROJ','gstm','Gauss Schreiber Transverse Mercator','EPSG','8801','Latitude of natural origin',-21.1166666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',55.5333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',160000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0508546','GAUSS LABORDE REUNION',NULL,NULL,'EPSG','1262','PROJ','gstm','Gauss Schreiber Transverse Mercator','EPSG','8801','Latitude of natural origin',-21.1166666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',55.5333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',160000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9811430','EQUIRECTANGULAIRE POLYNESIE',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',-15.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306215','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306218','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306311','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306314','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306317','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0301588','UTM SUD FUSEAU 1',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0508114','GAUSS LABORDE REUNION',NULL,NULL,'EPSG','1262','PROJ','gstm','Gauss Schreiber Transverse Mercator','EPSG','8801','Latitude of natural origin',-21.1166666667,'EPSG','9102','EPSG','8802','Longitude of natural origin',55.5333333333,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',160000.0,'EPSG','9001','EPSG','8807','False northing',50000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9806431','EQUIRECTANGULAIRE LA REUNION',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',-21.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0220527','UTM NORD FUSEAU 20',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC8142383','CC42 (CONIQUE CONFORME ZONE 1)',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',42.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',41.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',42.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',1200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC8143384','CC43 (CONIQUE CONFORME ZONE 2)',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',43.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',42.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',43.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',2200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC8144385','CC44 (CONIQUE CONFORME ZONE 3)',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',44.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',43.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',44.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',3200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC8145386','CC45 (CONIQUE CONFORME ZONE 4)',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',45.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',45.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',4200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC8146387','CC46 (CONIQUE CONFORME ZONE 5)',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',45.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',46.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',5200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC8147388','CC47 (CONIQUE CONFORME ZONE 6)',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',47.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',46.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',47.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC8148389','CC48 (CONIQUE CONFORME ZONE 7)',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',48.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',47.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',48.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',7200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC8149390','CC49 (CONIQUE CONFORME ZONE 8)',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',49.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',48.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',8200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC8150391','CC50 (CONIQUE CONFORME ZONE 9)',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',50.0,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',49.25,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',50.75,'EPSG','9102','EPSG','8826','Easting at false origin',1700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',9200000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC014052','LAMBERT-93',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',46.5,'EPSG','9102','EPSG','8822','Longitude of false origin',3.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',44.0,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',49.0,'EPSG','9102','EPSG','8826','Easting at false origin',700000.0,'EPSG','9001','EPSG','8827','Northing at false origin',6600000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0231393','UTM NORD FUSEAU 31',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0232394','UTM NORD FUSEAU 32',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0230392','UTM NORD FUSEAU 30',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0221157','UTM NORD FUSEAU 21',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0222158','UTM NORD FUSEAU 22',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0338372','UTM SUD FUSEAU 38',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',45.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0149202','LAMBERT NOUVELLE-CALEDONIE',NULL,NULL,'EPSG','1262','EPSG','9802','Lambert Conic Conformal (2SP)','EPSG','8821','Latitude of false origin',-21.5,'EPSG','9102','EPSG','8822','Longitude of false origin',166.0,'EPSG','9102','EPSG','8823','Latitude of 1st standard parallel',-20.6666666667,'EPSG','9102','EPSG','8824','Latitude of 2nd standard parallel',-22.3333333333,'EPSG','9102','EPSG','8826','Easting at false origin',400000.0,'EPSG','9001','EPSG','8827','Northing at false origin',300000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0357203','UTM SUD FUSEAU 57',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',159.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0358204','UTM SUD FUSEAU 58',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0359205','UTM SUD FUSEAU 59',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030574','UTM SUD FUSEAU 5',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030675','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030776','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0308576','UTM SUD FUSEAU 8',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0340361','UTM SUD FUSEAU 40',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0221378','UTM NORD FUSEAU 21',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0337418','UTM SUD FUSEAU 37',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',39.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0339419','UTM SUD FUSEAU 39',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0342420','UTM SUD FUSEAU 42',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0343421','UTM SUD FUSEAU 43',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0353563','UTM SUD FUSEAU 53',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',135.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0220170','UTM NORD FUSEAU 20',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-63.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030570','UTM SUD FUSEAU 5',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC034341','UTM SUD FUSEAU 43',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9808432','EQUIRECTANGULAIRE SPM',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',47.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0358407','UTM SUD FUSEAU 58',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0358405','UTM SUD FUSEAU 58',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',165.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0221141','UTM NORD FUSEAU 21',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-57.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0305187','UTM SUD FUSEAU 5',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-153.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030655','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306172','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306320','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0359190','UTM SUD FUSEAU 59',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',171.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC090126','STEREOGRAPHIQUE POLAIRE SUD TERRE-ADELIE (TANGENTE)',NULL,NULL,'EPSG','1262','EPSG','9810','Polar Stereographic (variant A)','EPSG','8801','Latitude of natural origin',-90.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',140.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.960272946,'EPSG','9201','EPSG','8806','False easting',300000.0,'EPSG','9001','EPSG','8807','False northing',-2299363.482,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030661','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306323','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306585','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306326','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0701131','MERCATOR DIRECTE',NULL,NULL,'EPSG','1262','EPSG','9804','Mercator (variant A)','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',1.0,'EPSG','9201','EPSG','8806','False easting',20000000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306330','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307331','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0306227','UTM SUD FUSEAU 6',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-147.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0307308','UTM SUD FUSEAU 7',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-141.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9810433','EQUIRECTANGULAIRE WALLISFUTUNA',NULL,NULL,'EPSG','1262','EPSG','1028','Equidistant Cylindrical','EPSG','8823','Latitude of 1st standard parallel',-14.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030144','UTM SUD FUSEAU 1',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC030147','UTM SUD FUSEAU 1',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0230345','UTM NORD FUSEAU 30',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0231346','UTM NORD FUSEAU 31',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0232348','UTM NORD FUSEAU 32',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0301545','UTM SUD FUSEAU 1',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC7001567','MILLER GEOPORTAIL',NULL,NULL,'EPSG','1262','PROJ','mill','PROJ mill',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0230353','UTM NORD FUSEAU 30',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0231354','UTM NORD FUSEAU 31',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',3.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0232355','UTM NORD FUSEAU 32',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',9.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0301550','UTM SUD FUSEAU 1',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',-177.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0339578','UTM SUD FUSEAU 39',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',51.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0342579','UTM SUD FUSEAU 42',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',69.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC0343580','UTM SUD FUSEAU 43',NULL,NULL,'EPSG','1886','EPSG','9807','Transverse Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',75.0,'EPSG','9102','EPSG','8805','Scale factor at natural origin',0.9996,'EPSG','9201','EPSG','8806','False easting',500000.0,'EPSG','9001','EPSG','8807','False northing',10000000.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "conversion" VALUES('IGNF','PRC9601581','PSEUDO MERCATOR (POPULAR VISUALISATION)',NULL,NULL,'EPSG','1262','EPSG','1024','Popular Visualisation Pseudo Mercator','EPSG','8801','Latitude of natural origin',0.0,'EPSG','9102','EPSG','8802','Longitude of natural origin',0.0,'EPSG','9102','EPSG','8806','False easting',0.0,'EPSG','9001','EPSG','8807','False northing',0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "area" VALUES('IGNF','160','AMANU (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7','AMANU (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7',-18,-17.58,-141,-140.58,0); INSERT INTO "projected_crs" VALUES('IGNF','AMANU63UTM7S','Amanu (MHPF 1963) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','AMANU63G','IGNF','PRC0307248','IGNF','160',NULL,0); INSERT INTO "area" VALUES('IGNF','161','ILE AMSTERDAM - UTM SUD FUSEAU 43','ILE AMSTERDAM - UTM SUD FUSEAU 43',-37.92,-37.75,77.45,77.63,0); INSERT INTO "projected_crs" VALUES('IGNF','AMST63UTM43S','Amsterdam 1963 UTM Sud fuseau 43',NULL,NULL,'EPSG','4499','IGNF','AMST63G','IGNF','PRC034338','IGNF','161',NULL,0); INSERT INTO "area" VALUES('IGNF','162','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - ILES AMSTERDAM ET SAINT-PAUL','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - ILES AMSTERDAM ET SAINT-PAUL',-38.77,-37.75,77.45,77.63,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84EQGPASP','Amsterdam Saint-Paul projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC9813548','IGNF','162',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALASP','Amsterdam Saint-Paul projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC9813548','IGNF','162',NULL,0); INSERT INTO "area" VALUES('IGNF','163','ANAA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6','ANAA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6',-17.5,-17.32,-145.6,-145.37,0); INSERT INTO "projected_crs" VALUES('IGNF','ANAA92UTM6S','Anaa (MOP92) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','ANAA92G','IGNF','PRC0306336','IGNF','163',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','ANAA47UTM6S','Anaa (SHM 1947) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','ANAA47G','IGNF','PRC0306251','IGNF','163',NULL,0); INSERT INTO "area" VALUES('IGNF','164','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - ANTILLES FRANCAISES','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - ANTILLES FRANCAISES',14.25,18.2,-63.2,-60.73,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84GPAF','ANTILLES FRANCAISES PROJECTION GEOPORTAIL',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC9814568','IGNF','164',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALANF','ANTILLES FRANCAISES PROJECTION GEOPORTAIL',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC9814568','IGNF','164',NULL,0); INSERT INTO "area" VALUES('IGNF','165','APATAKI (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6','APATAKI (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6',-15.63,-15.29,-146.46,-146.18,0); INSERT INTO "projected_crs" VALUES('IGNF','APAT80UTM6S','Apataki (Cadastre 1980) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','APAT80G','IGNF','PRC0306554','IGNF','165',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','ATIGBONNE','ATIG Bonne France Etat Major',NULL,NULL,'EPSG','4499','IGNF','ATIGG','IGNF','PRC060623','IGNF','4',NULL,0); INSERT INTO "area" VALUES('IGNF','166','ILE DE MAYOTTE - UTM SUD FUSEAU 38','ILE DE MAYOTTE - UTM SUD FUSEAU 38',-13.05,-12.5,44.95,45.4,0); INSERT INTO "projected_crs" VALUES('IGNF','CAD97UTM38S','Cadastre 1997 UTM Sud fuseau 38',NULL,NULL,'EPSG','4499','IGNF','CAD97G','IGNF','PRC0338366','IGNF','166',NULL,0); INSERT INTO "area" VALUES('IGNF','167','ILE CLIPPERTON - UTM NORD FUSEAU 12','ILE CLIPPERTON - UTM NORD FUSEAU 12',10.17,10.5,-109.5,-109,0); INSERT INTO "projected_crs" VALUES('IGNF','CLIP67UTM12','Clipperton 1967 UTM Nord fuseau 12',NULL,NULL,'EPSG','4499','IGNF','CLIP67G','IGNF','PRC0212179','IGNF','167',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','CLIP57UTM12','Clipperton 1967 UTM Nord fuseau 12',NULL,NULL,'EPSG','4499','IGNF','CLIP67G','IGNF','PRC0212179','IGNF','167',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','MAYO50UTM38S','Combani UTM Sud fuseau 38',NULL,NULL,'EPSG','4499','IGNF','MAYO50G','IGNF','PRC0338118','IGNF','166',NULL,0); INSERT INTO "area" VALUES('IGNF','168','ILES CROZET (ARCHIPEL) - UTM SUD FUSEAU 39','ILES CROZET (ARCHIPEL) - UTM SUD FUSEAU 39',-46.75,-45.75,50,52.5,0); INSERT INTO "projected_crs" VALUES('IGNF','CROZ63UTM39S','CROZET POSSESSION 1963 UTM SUD FUSEAU 39',NULL,NULL,'EPSG','4499','IGNF','CROZ63G','IGNF','PRC033935','IGNF','168',NULL,0); INSERT INTO "area" VALUES('IGNF','169','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - ILES CROZET (ARCHIPEL)','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - ILES CROZET (ARCHIPEL)',-46.75,-45.75,50,52.5,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84EQGPCRZ','Crozet projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC9801422','IGNF','169',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALCRZ','Crozet projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC9801422','IGNF','169',NULL,0); INSERT INTO "area" VALUES('IGNF','170','GUYANE FRANCAISE - UTM NORD FUSEAU 21','GUYANE FRANCAISE - UTM NORD FUSEAU 21',2.05,5.95,-54.95,-54,0); INSERT INTO "projected_crs" VALUES('IGNF','C67IG95UTM21','CSG67(IGN 1995) UTM Nord fuseau 21',NULL,NULL,'EPSG','4499','IGNF','C67IG95G','IGNF','PRC0221400','IGNF','170',NULL,0); INSERT INTO "area" VALUES('IGNF','171','GUYANE FRANCAISE - UTM NORD FUSEAU 22','GUYANE FRANCAISE - UTM NORD FUSEAU 22',2.05,5.95,-54,-51.05,0); INSERT INTO "projected_crs" VALUES('IGNF','C67IG95UTM22','CSG67 (IGN 1995) UTM Nord fuseau 22',NULL,NULL,'EPSG','4499','IGNF','C67IG95G','IGNF','PRC0222401','IGNF','171',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','CSG67UTM21','CSG67 UTM Nord fuseau 21',NULL,NULL,'EPSG','4499','IGNF','CSG67G','IGNF','PRC0221137','IGNF','170',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','CSG67UTM22','CSG67 UTM Nord fuseau 22',NULL,NULL,'EPSG','4499','IGNF','CSG67G','IGNF','PRC0222138','IGNF','171',NULL,0); INSERT INTO "area" VALUES('IGNF','172','EUROPE DE L''OUEST ED50 - UTM NORD FUSEAU 30','EUROPE DE L''OUEST ED50 - UTM NORD FUSEAU 30',34,72,-6,0,0); INSERT INTO "projected_crs" VALUES('IGNF','ED50UTM30','ED50 UTM fuseau 30',NULL,NULL,'EPSG','4499','IGNF','ED50G','IGNF','PRC023086','IGNF','172',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM30','ED50 UTM fuseau 30',NULL,NULL,'EPSG','4499','IGNF','ED50G','IGNF','PRC023086','IGNF','172',NULL,0); INSERT INTO "area" VALUES('IGNF','173','EUROPE DE L''OUEST ED50 - UTM NORD FUSEAU 32','EUROPE DE L''OUEST ED50 - UTM NORD FUSEAU 32',34,72,6,12,0); INSERT INTO "projected_crs" VALUES('IGNF','ED50UTM32','ED50 UTM fuseau 32',NULL,NULL,'EPSG','4499','IGNF','ED50G','IGNF','PRC023288','IGNF','173',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM32','ED50 UTM fuseau 32',NULL,NULL,'EPSG','4499','IGNF','ED50G','IGNF','PRC023288','IGNF','173',NULL,0); INSERT INTO "area" VALUES('IGNF','174','EUROPE DE L''OUEST ED50 - UTM NORD FUSEAU 31','EUROPE DE L''OUEST ED50 - UTM NORD FUSEAU 31',34,72,0,6,0); INSERT INTO "projected_crs" VALUES('IGNF','ED50UTM31','ED50 UTM NORD FUSEAU 31',NULL,NULL,'EPSG','4499','IGNF','ED50G','IGNF','PRC023187','IGNF','174',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM31','ED50 UTM NORD FUSEAU 31',NULL,NULL,'EPSG','4499','IGNF','ED50G','IGNF','PRC023187','IGNF','174',NULL,0); INSERT INTO "area" VALUES('IGNF','175','EFATE (ARCHIPEL DU VANUATU) - UTM SUD FUSEAU 59','EFATE (ARCHIPEL DU VANUATU) - UTM SUD FUSEAU 59',-18,-17.25,168,168.67,0); INSERT INTO "projected_crs" VALUES('IGNF','EFAT57UTM59S','Efate UTM Sud fuseau 59',NULL,NULL,'EPSG','4499','IGNF','EFATE57G','IGNF','PRC0359176','IGNF','175',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','EFATE57UT59S','Efate UTM Sud fuseau 59',NULL,NULL,'EPSG','4499','IGNF','EFATE57G','IGNF','PRC0359176','IGNF','175',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89LAEA','ETRS89 Lambert Azimutal Equal Area',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC991495','IGNF','14',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89LCC','ETRS89 Lambert Conformal Conic',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC813596','IGNF','14',NULL,0); INSERT INTO "area" VALUES('IGNF','176','EUROPE (ETRS89) - UTM NORD FUSEAU 26','EUROPE (ETRS89) - UTM NORD FUSEAU 26',27.5,71.5,-25,-24,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM26','ETRS89 UTM Nord fuseau 26',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC022697','IGNF','176',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM26ETRS89','ETRS89 UTM Nord fuseau 26',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC022697','IGNF','176',NULL,0); INSERT INTO "area" VALUES('IGNF','177','EUROPE (ETRS89) - UTM NORD FUSEAU 27','EUROPE (ETRS89) - UTM NORD FUSEAU 27',27.5,71.5,-24,-18,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM27','ETRS89 UTM Nord fuseau 27',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC022798','IGNF','177',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM27ETRS89','ETRS89 UTM Nord fuseau 27',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC022798','IGNF','177',NULL,0); INSERT INTO "area" VALUES('IGNF','178','EUROPE (ETRS89) - UTM NORD FUSEAU 28','EUROPE (ETRS89) - UTM NORD FUSEAU 28',27.5,71.5,-18,-12,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM28','ETRS89 UTM Nord fuseau 28',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC022899','IGNF','178',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM28ETRS89','ETRS89 UTM Nord fuseau 28',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC022899','IGNF','178',NULL,0); INSERT INTO "area" VALUES('IGNF','179','EUROPE (ETRS89) - UTM NORD FUSEAU 29','EUROPE (ETRS89) - UTM NORD FUSEAU 29',27.5,71.5,-12,-6,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM29','ETRS89 UTM Nord fuseau 29',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0229100','IGNF','179',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM29ETRS89','ETRS89 UTM Nord fuseau 29',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0229100','IGNF','179',NULL,0); INSERT INTO "area" VALUES('IGNF','180','EUROPE (ETRS89) - UTM NORD FUSEAU 30','EUROPE (ETRS89) - UTM NORD FUSEAU 30',27.5,71.5,-6,0,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM30','ETRS89 UTM Nord fuseau 30',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0230101','IGNF','180',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM30ETRS89','ETRS89 UTM Nord fuseau 30',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0230101','IGNF','180',NULL,0); INSERT INTO "area" VALUES('IGNF','181','EUROPE (ETRS89) - UTM NORD FUSEAU 31','EUROPE (ETRS89) - UTM NORD FUSEAU 31',27.5,71.5,0,6,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM31','ETRS89 UTM Nord fuseau 31',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0231102','IGNF','181',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM31ETRS89','ETRS89 UTM Nord fuseau 31',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0231102','IGNF','181',NULL,0); INSERT INTO "area" VALUES('IGNF','182','EUROPE (ETRS89) - UTM NORD FUSEAU 32','EUROPE (ETRS89) - UTM NORD FUSEAU 32',27.5,71.5,6,12,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM32','ETRS89 UTM Nord fuseau 32',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0232103','IGNF','182',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM32ETRS89','ETRS89 UTM Nord fuseau 32',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0232103','IGNF','182',NULL,0); INSERT INTO "area" VALUES('IGNF','183','EUROPE (ETRS89) - UTM NORD FUSEAU 33','EUROPE (ETRS89) - UTM NORD FUSEAU 33',27.5,71.5,12,18,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM33','ETRS89 UTM Nord fuseau 33',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0233104','IGNF','183',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM33ETRS89','ETRS89 UTM Nord fuseau 33',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0233104','IGNF','183',NULL,0); INSERT INTO "area" VALUES('IGNF','184','EUROPE (ETRS89) - UTM NORD FUSEAU 34','EUROPE (ETRS89) - UTM NORD FUSEAU 34',27.5,71.5,18,24,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM34','ETRS89 UTM Nord fuseau 34',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0234105','IGNF','184',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM34ETRS89','ETRS89 UTM Nord fuseau 34',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0234105','IGNF','184',NULL,0); INSERT INTO "area" VALUES('IGNF','185','EUROPE (ETRS89) - UTM NORD FUSEAU 35','EUROPE (ETRS89) - UTM NORD FUSEAU 35',27.5,71.5,24,30,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM35','ETRS89 UTM Nord fuseau 35',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0235106','IGNF','185',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM35ETRS89','ETRS89 UTM Nord fuseau 35',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0235106','IGNF','185',NULL,0); INSERT INTO "area" VALUES('IGNF','186','EUROPE (ETRS89) - UTM NORD FUSEAU 36','EUROPE (ETRS89) - UTM NORD FUSEAU 36',27.5,71.5,30,36,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM36','ETRS89 UTM Nord fuseau 36',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0236107','IGNF','186',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM36ETRS89','ETRS89 UTM Nord fuseau 36',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0236107','IGNF','186',NULL,0); INSERT INTO "area" VALUES('IGNF','187','EUROPE (ETRS89) - UTM NORD FUSEAU 37','EUROPE (ETRS89) - UTM NORD FUSEAU 37',27.5,71.5,36,42,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM37','ETRS89 UTM Nord fuseau 37',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0237108','IGNF','187',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM37ETRS89','ETRS89 UTM Nord fuseau 37',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0237108','IGNF','187',NULL,0); INSERT INTO "area" VALUES('IGNF','188','EUROPE (ETRS89) - UTM NORD FUSEAU 38','EUROPE (ETRS89) - UTM NORD FUSEAU 38',27.5,71.5,42,45.5,0); INSERT INTO "projected_crs" VALUES('IGNF','ETRS89UTM38','ETRS89 UTM Nord fuseau 38',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0238109','IGNF','188',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM38ETRS89','ETRS89 UTM Nord fuseau 38',NULL,NULL,'EPSG','4499','IGNF','ETRS89G','IGNF','PRC0238109','IGNF','188',NULL,0); INSERT INTO "area" VALUES('IGNF','189','ILE EUROPA - MERCATOR DIRECTE','ILE EUROPA - MERCATOR DIRECTE',-22.33,-22,40.25,40.5,0); INSERT INTO "projected_crs" VALUES('IGNF','EUROPA54MD','Europa Mercator directe',NULL,NULL,'EPSG','4499','IGNF','EUROPA54G','IGNF','PRC0701121','IGNF','189',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','EURO54UTM37S','EUROPA MHM 1954 UTM SUD FUSEAU 37',NULL,NULL,'EPSG','4499','IGNF','EUROPA54G','IGNF','PRC0337572','IGNF','15',NULL,0); INSERT INTO "area" VALUES('IGNF','190','FAKARAVA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6','FAKARAVA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6',-16.58,-16,-146,-145.25,0); INSERT INTO "projected_crs" VALUES('IGNF','FAKA50UTM6S','Fakarava (SHM 1947-1950) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','FAKA50G','IGNF','PRC0306261','IGNF','190',NULL,0); INSERT INTO "area" VALUES('IGNF','191','FANGATAUFA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7','FANGATAUFA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7',-22.33,-22.15,-138.83,-138.58,0); INSERT INTO "projected_crs" VALUES('IGNF','FANGA64UTM7S','Fangataufa (MHPF 1964) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','FANGA64G','IGNF','PRC0307269','IGNF','191',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','FANG651UTM7S','Fangataufa (MHPF 1965-1) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','FANG651G','IGNF','PRC0307272','IGNF','191',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','FANGA651U7S','Fangataufa (MHPF 1965-1) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','FANG651G','IGNF','PRC0307272','IGNF','191',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','FANG652UTM7S','Fangataufa (MHPF 1965-2) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','FANG652G','IGNF','PRC0307275','IGNF','191',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','FANGA652U7S','Fangataufa (MHPF 1965-2) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','FANG652G','IGNF','PRC0307275','IGNF','191',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','FANGA66UTM7S','Fangataufa (MHPF 1966) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','FANGA66G','IGNF','PRC0307278','IGNF','191',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','FANGA84UTM7S','Fangataufa (MOP84) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','FANGA84G','IGNF','PRC0307264','IGNF','191',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93EQGPFR','France Metropolitaine projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC9802423','IGNF','4',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALFXX','France Metropolitaine projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC9802423','IGNF','4',NULL,0); INSERT INTO "area" VALUES('IGNF','192','ILES GLORIEUSES - MERCATOR DIRECTE','ILES GLORIEUSES - MERCATOR DIRECTE',-11.62,-11.43,47.25,47.47,0); INSERT INTO "projected_crs" VALUES('IGNF','GLOR77MD','Glorieuses Mercator directe',NULL,NULL,'EPSG','4499','IGNF','GLOR77G','IGNF','PRC0701124','IGNF','192',NULL,0); INSERT INTO "area" VALUES('IGNF','193','ILES GLORIEUSES - UTM SUD FUSEAU 38','ILES GLORIEUSES - UTM SUD FUSEAU 38',-11.62,-11.43,47.25,47.47,0); INSERT INTO "projected_crs" VALUES('IGNF','GLOR77UTM38S','GLORIEUSES MHG 1977 UTM SUD FUSEAU 38',NULL,NULL,'EPSG','4499','IGNF','GLOR77G','IGNF','PRC0338125','IGNF','193',NULL,0); INSERT INTO "area" VALUES('IGNF','194','GRANDE TERRE (NOUVELLE-CALEDONIE) - UTM SUD FUSEAU 58','GRANDE TERRE (NOUVELLE-CALEDONIE) - UTM SUD FUSEAU 58',-22.75,-19.5,163.5,167.67,0); INSERT INTO "projected_crs" VALUES('IGNF','GTN51UTM58S','GOMEN TERME NORD 1951 UTM SUD FUSEAU 58',NULL,NULL,'EPSG','4499','IGNF','GTN51G','IGNF','PRC0358566','IGNF','194',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','NC51UTM58S','GOMEN TERME NORD 1951 UTM SUD FUSEAU 58',NULL,NULL,'EPSG','4499','IGNF','GTN51G','IGNF','PRC0358566','IGNF','194',NULL,0); INSERT INTO "area" VALUES('IGNF','195','ILES DE SAINT-MARTIN ET SAINT-BARTHELEMY (GUADELOUPE) - UTM NORD FUSEAU 20','ILES DE SAINT-MARTIN ET SAINT-BARTHELEMY (GUADELOUPE) - UTM NORD FUSEAU 20',17.82,18.18,-63.18,-62.25,0); INSERT INTO "projected_crs" VALUES('IGNF','GUADFMUTM20','Guadeloupe Fort-Marigot UTM Nord fuseau 20',NULL,NULL,'EPSG','4499','IGNF','GUADFMG','IGNF','PRC0220150','IGNF','195',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GUADFM49U20','Guadeloupe Fort-Marigot UTM Nord fuseau 20',NULL,NULL,'EPSG','4499','IGNF','GUADFMG','IGNF','PRC0220150','IGNF','195',NULL,0); INSERT INTO "area" VALUES('IGNF','196','GRANDE-TERRE, BASSE-TERRE, MARIE-GALANTE, LA DESIRADE, LES SAINTES (GUADELOUPE) - UTM NORD FUSEAU 20','GRANDE-TERRE, BASSE-TERRE, MARIE-GALANTE, LA DESIRADE, LES SAINTES (GUADELOUPE) - UTM NORD FUSEAU 20',15.82,16.6,-61.83,-60.77,0); INSERT INTO "projected_crs" VALUES('IGNF','GUADANNUTM20','Guadeloupe Ste Anne UTM Nord fuseau 20',NULL,NULL,'EPSG','4499','IGNF','GUADANNG','IGNF','PRC0220147','IGNF','196',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GUAD48UTM20','Guadeloupe Ste Anne UTM Nord fuseau 20',NULL,NULL,'EPSG','4499','IGNF','GUADANNG','IGNF','PRC0220147','IGNF','196',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGFG95EQGPGU','Guyane Francaise projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGFG95G','IGNF','PRC9805425','IGNF','10',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALGUF','Guyane Francaise projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGFG95G','IGNF','PRC9805425','IGNF','10',NULL,0); INSERT INTO "area" VALUES('IGNF','197','HAO ET AMANU (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7','HAO ET AMANU (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7',-18.5,-17.58,-141.17,-140.58,0); INSERT INTO "projected_crs" VALUES('IGNF','HAOAM67UTM7S','Hao Amanu (MHPF 1967) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','HAOAM67G','IGNF','PRC0307283','IGNF','197',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','HAO67UTM7S','Hao Amanu (MHPF 1967) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','HAOAM67G','IGNF','PRC0307283','IGNF','197',NULL,0); INSERT INTO "area" VALUES('IGNF','198','HAO (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7','HAO (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7',-18.5,-18,-141.17,-140.58,0); INSERT INTO "projected_crs" VALUES('IGNF','HAO58UTM7S','Hao (MHPF 1958) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','HAO58G','IGNF','PRC0307286','IGNF','198',NULL,0); INSERT INTO "area" VALUES('IGNF','199','HARAIKI (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7','HARAIKI (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7',-17.58,-17.42,-143.58,-143.33,0); INSERT INTO "projected_crs" VALUES('IGNF','HARA49UTM7S','Haraiki (SHM 1949) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','HARA49G','IGNF','PRC0307289','IGNF','199',NULL,0); INSERT INTO "area" VALUES('IGNF','200','HIKUERU (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7','HIKUERU (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7',-17.83,-17.42,-142.83,-142.42,0); INSERT INTO "projected_crs" VALUES('IGNF','HIKU50UTM7S','Hikueru (SHM 1947-1950) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','HIKU50G','IGNF','PRC0307292','IGNF','200',NULL,0); INSERT INTO "area" VALUES('IGNF','201','HIVA OA (ARCHIPEL DES MARQUISES) - UTM SUD FUSEAU 7','HIVA OA (ARCHIPEL DES MARQUISES) - UTM SUD FUSEAU 7',-9.87,-9.6,-139.25,-138.58,0); INSERT INTO "projected_crs" VALUES('IGNF','HIVA60UTM7S','Hiva Oa (MHPF 1960) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','HIVA60G','IGNF','PRC0307235','IGNF','201',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','HIVA67UTM7S','Hiva Oa (MHPF 1967) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','HIVA67G','IGNF','PRC0307238','IGNF','201',NULL,0); INSERT INTO "area" VALUES('IGNF','202','HIVA OA, TAHUATA, MOHOTANI (ARCHIPEL DES MARQUISES) - UTM SUD FUSEAU 7','HIVA OA, TAHUATA, MOHOTANI (ARCHIPEL DES MARQUISES) - UTM SUD FUSEAU 7',-9.88,-9.65,-139.2,-138.75,0); INSERT INTO "projected_crs" VALUES('IGNF','ATUO63UTM7S','IGN 1963 UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','ATUO63G','IGNF','PRC0307241','IGNF','202',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','IGN63UTM7S','IGN 1963 UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','ATUO63G','IGNF','PRC0307241','IGNF','202',NULL,0); INSERT INTO "area" VALUES('IGNF','203','RAIATEA, TAHAA (ARCHIPEL DE LA SOCIETE) - UTM SUD FUSEAU 5','RAIATEA, TAHAA (ARCHIPEL DE LA SOCIETE) - UTM SUD FUSEAU 5',-17,-16.5,-151.67,-151.33,0); INSERT INTO "projected_crs" VALUES('IGNF','TAHAA53UTM5S','IGN53 Societe UTM Sud fuseau 5',NULL,NULL,'EPSG','4499','IGNF','TAHAA53G','IGNF','PRC030567','IGNF','203',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RAIA53UTM5S','IGN53 Societe UTM Sud fuseau 5',NULL,NULL,'EPSG','4499','IGNF','TAHAA53G','IGNF','PRC030567','IGNF','203',NULL,0); INSERT INTO "area" VALUES('IGNF','204','GRANDE TERRE (NOUVELLE-CALEDONIE) - NOUVELLE-CALEDONIE','GRANDE TERRE (NOUVELLE-CALEDONIE) - NOUVELLE-CALEDONIE',-22.75,-19.5,163.5,167.67,0); INSERT INTO "projected_crs" VALUES('IGNF','IGN72LAMBNC','IGN72 Lambert Nouvelle-Caledonie',NULL,NULL,'EPSG','4400','IGNF','IGN72G','IGNF','PRC0149208','IGNF','204',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','IGN72LAM','IGN72 Lambert Nouvelle-Caledonie',NULL,NULL,'EPSG','4400','IGNF','IGN72G','IGNF','PRC0149208','IGNF','204',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','IGN72UTM58S','IGN72 UTM Sud fuseau 58',NULL,NULL,'EPSG','4499','IGNF','IGN72G','IGNF','PRC0358209','IGNF','194',NULL,0); INSERT INTO "area" VALUES('IGNF','205','ILE JUAN DE NOVA - UTM SUD FUSEAU 38','ILE JUAN DE NOVA - UTM SUD FUSEAU 38',-17.17,-17,42.67,42.83,0); INSERT INTO "projected_crs" VALUES('IGNF','NOVA53UTM38S','JUAN DE NOVA MHM 1953 UTM SUD FUSEAU 38',NULL,NULL,'EPSG','4499','IGNF','NOVA53G','IGNF','PRC0338564','IGNF','205',NULL,0); INSERT INTO "area" VALUES('IGNF','206','KAUHEI (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6','KAUHEI (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6',-16,-15.67,-145.33,-145,0); INSERT INTO "projected_crs" VALUES('IGNF','KAUE70UTM6S','Kauehi (MHPF70) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','KAUE70G','IGNF','PRC030664','IGNF','206',NULL,0); INSERT INTO "area" VALUES('IGNF','207','KERGUELEN - UTM SUD FUSEAU 42','KERGUELEN - UTM SUD FUSEAU 42',-50.5,-48,67,71,0); INSERT INTO "projected_crs" VALUES('IGNF','KERG62UTM42S','KERGUELEN K0 IGN 1962 UTM SUD FUSEAU 42',NULL,NULL,'EPSG','4499','IGNF','KERG62G','IGNF','PRC034219','IGNF','207',NULL,0); INSERT INTO "area" VALUES('IGNF','208','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - KERGUELEN','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - KERGUELEN',-50.5,-48,67,71,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84EQGPKER','Kerguelen projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC9812426','IGNF','208',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALKER','Kerguelen projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC9812426','IGNF','208',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LNGLNG','Lambert Nord de Guerre Lambert Nord de Guerre',NULL,NULL,'EPSG','4499','IGNF','LNGPGG','IGNF','PRC013591','EPSG','1262',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','SYSLN','Lambert Nord de Guerre Lambert Nord de Guerre',NULL,NULL,'EPSG','4499','IGNF','LNGPGG','IGNF','PRC013591','EPSG','1262',NULL,0); INSERT INTO "area" VALUES('IGNF','209','LIFOU (ILES LOYAUTE) - UTM SUD FUSEAU 58','LIFOU (ILES LOYAUTE) - UTM SUD FUSEAU 58',-21.22,-20.65,166.96,167.51,0); INSERT INTO "projected_crs" VALUES('IGNF','LIFOU56UT58S','Lifou IGN 56 UTM Sud fuseau 58',NULL,NULL,'EPSG','4499','IGNF','LIFOU56G','IGNF','PRC0358182','IGNF','209',NULL,0); INSERT INTO "area" VALUES('IGNF','210','MAKEMO (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7','MAKEMO (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7',-16.83,-16.33,-144,-143.33,0); INSERT INTO "projected_crs" VALUES('IGNF','MAKE50UTM7S','Makemo (SHM 1947-1950) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','MAKE50G','IGNF','PRC0307295','IGNF','210',NULL,0); INSERT INTO "area" VALUES('IGNF','211','MANGAREVA (ILES GAMBIER) - UTM SUD FUSEAU 8','MANGAREVA (ILES GAMBIER) - UTM SUD FUSEAU 8',-23.45,-22.83,-135.33,-134.58,0); INSERT INTO "projected_crs" VALUES('IGNF','MANGA51UTM8S','Mangareva 1951 UTM Sud fuseau 8',NULL,NULL,'EPSG','4499','IGNF','MANGA51G','IGNF','PRC0308230','IGNF','211',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','MANGA51U8S','Mangareva 1951 UTM Sud fuseau 8',NULL,NULL,'EPSG','4499','IGNF','MANGA51G','IGNF','PRC0308230','IGNF','211',NULL,0); INSERT INTO "area" VALUES('IGNF','212','MARE (ILES LOYAUTE) - UTM SUD FUSEAU 58','MARE (ILES LOYAUTE) - UTM SUD FUSEAU 58',-21.69,-21.29,167.69,168,0); INSERT INTO "projected_crs" VALUES('IGNF','MARE53UTM58S','Mare IGN53 UTM Sud fuseau 58',NULL,NULL,'EPSG','4499','IGNF','MARE53G','IGNF','PRC0358186','IGNF','212',NULL,0); INSERT INTO "area" VALUES('IGNF','213','MARTINIQUE - UTM NORD FUSEAU 20','MARTINIQUE - UTM NORD FUSEAU 20',14.27,15,-61.25,-60.75,0); INSERT INTO "projected_crs" VALUES('IGNF','MARTFDUTM20','Martinique Fort-Desaix UTM Nord fuseau 20',NULL,NULL,'EPSG','4499','IGNF','MARTFDG','IGNF','PRC0220144','IGNF','213',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','MART38UTM20','Martinique Fort-Desaix UTM Nord fuseau 20',NULL,NULL,'EPSG','4499','IGNF','MARTFDG','IGNF','PRC0220144','IGNF','213',NULL,0); INSERT INTO "area" VALUES('IGNF','214','MAUPITI - UTM SUD FUSEAU 5','MAUPITI - UTM SUD FUSEAU 5',-16.75,-16.25,-152.5,-152,0); INSERT INTO "projected_crs" VALUES('IGNF','MAUPITIUTM5S','Maupiti (MOP 1983) UTM Sud fuseau 5',NULL,NULL,'EPSG','4499','IGNF','MAUPITIG','IGNF','PRC030582','IGNF','214',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGM04EQGPMYT','Mayotte projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGM04G','IGNF','PRC9807428','IGNF','5',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALMYT','Mayotte projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGM04G','IGNF','PRC9807428','IGNF','5',NULL,0); INSERT INTO "area" VALUES('IGNF','215','MANGAREVA, AGAKAUITAI, AUKENA, MEKIRO (ILES GAMBIER) - UTM SUD FUSEAU 8','MANGAREVA, AGAKAUITAI, AUKENA, MEKIRO (ILES GAMBIER) - UTM SUD FUSEAU 8',-23.18,-23.07,-135.04,-134.89,0); INSERT INTO "projected_crs" VALUES('IGNF','MHPF67UTM8S','MHPF 1967 UTM SUD FUSEAU 8',NULL,NULL,'EPSG','4499','IGNF','MHPF67G','IGNF','PRC030858','IGNF','215',NULL,0); INSERT INTO "area" VALUES('IGNF','216','MOOREA (ARCHIPEL DE LA SOCIETE) - UTM SUD FUSEAU 6','MOOREA (ARCHIPEL DE LA SOCIETE) - UTM SUD FUSEAU 6',-17.75,-17.25,-150,-149.75,0); INSERT INTO "projected_crs" VALUES('IGNF','MOORE87UTM6S','Moorea 1987 UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','MOOREA87G','IGNF','PRC030679','IGNF','216',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','MOOREA87U6S','Moorea 1987 UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','MOOREA87G','IGNF','PRC030679','IGNF','216',NULL,0); INSERT INTO "area" VALUES('IGNF','217','MURUROA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7','MURUROA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7',-22,-21.67,-139.17,-138.58,0); INSERT INTO "projected_crs" VALUES('IGNF','MURU78UTM7S','Mururoa (IGN 1978) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','MURU78G','IGNF','PRC0307307','IGNF','217',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','MURU62UTM7S','Mururoa (MHOI 1962) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','MURU62G','IGNF','PRC0307303','IGNF','217',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','MURU59UTM7S','Mururoa (MHPF 1959) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','MURU59G','IGNF','PRC0307298','IGNF','217',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','NEA74LBTNM2','NEA74 NOUMEA Lambert Noumea 2',NULL,NULL,'EPSG','4499','IGNF','NEA74G','IGNF','PRC9203409','IGNF','44',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGNC91EQGPNC','Nouvelle Caledonie projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGNCG','IGNF','PRC9809429','IGNF','58',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALNCL','Nouvelle Caledonie projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGNCG','IGNF','PRC9809429','IGNF','58',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LURESGKL','NOUVELLE TRIANGULATION DU DUCHE DU LUXEMBOURG GAUSS KRUGER LUXEMBOURG',NULL,NULL,'EPSG','4530','IGNF','LURESG','IGNF','PRC0406569','IGNF','45',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LUXGAUSSK','NOUVELLE TRIANGULATION DU DUCHE DU LUXEMBOURG GAUSS KRUGER LUXEMBOURG',NULL,NULL,'EPSG','4530','IGNF','LURESG','IGNF','PRC0406569','IGNF','45',NULL,0); INSERT INTO "area" VALUES('IGNF','218','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT GRAND CHAMP','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT GRAND CHAMP',41.310015543796,51.299958070717,-4.05379920354209,10,0); INSERT INTO "projected_crs" VALUES('IGNF','NTFLAMBGC','NTF Lambert Grand Champ',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC011814','IGNF','218',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMBGC','NTF Lambert Grand Champ',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC011814','IGNF','218',NULL,0); INSERT INTO "area" VALUES('IGNF','219','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT I NORD','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT I NORD',48.1498888194584,51.299958070717,-4.05379920354209,10,0); INSERT INTO "projected_crs" VALUES('IGNF','NTFLAMB1','NTF Lambert I',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC01015','IGNF','219',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMB1','NTF Lambert I',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC01015','IGNF','219',NULL,0); INSERT INTO "area" VALUES('IGNF','220','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT I CARTO','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT I CARTO',48.1498888194584,51.299958070717,-4.05379920354209,10,0); INSERT INTO "projected_crs" VALUES('IGNF','NTFLAMB1C','NTF Lambert I carto',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC01316','IGNF','220',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMB1C','NTF Lambert I carto',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC01316','IGNF','220',NULL,0); INSERT INTO "area" VALUES('IGNF','221','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT II CENTRE','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT II CENTRE',45.4499226513968,48.1499671938551,-4.05373473460064,10,0); INSERT INTO "projected_crs" VALUES('IGNF','NTFLAMB2','NTF Lambert II',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC01027','IGNF','221',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMB2','NTF Lambert II',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC01027','IGNF','221',NULL,0); INSERT INTO "area" VALUES('IGNF','222','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT II CARTO','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT II CARTO',45.4499226513968,48.1499671938551,-4.05373473460064,10,0); INSERT INTO "projected_crs" VALUES('IGNF','NTFLAMB2C','NTF Lambert II carto',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC01328','IGNF','222',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMB2C','NTF Lambert II carto',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC01328','IGNF','222',NULL,0); INSERT INTO "area" VALUES('IGNF','223','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT II ETENDU','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT II ETENDU',41.310015543796,50.8499576445959,-4.05378927743516,10,0); INSERT INTO "projected_crs" VALUES('IGNF','NTFLAMB2E','NTF Lambert II etendu',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC012013','IGNF','223',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMBE','NTF Lambert II etendu',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC012013','IGNF','223',NULL,0); INSERT INTO "area" VALUES('IGNF','224','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT III SUD','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT III SUD',42.2999888396489,45.4499976673229,-4.05368768512203,10,0); INSERT INTO "projected_crs" VALUES('IGNF','NTFLAMB3','NTF Lambert III',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC01039','IGNF','224',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMB3','NTF Lambert III',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC01039','IGNF','224',NULL,0); INSERT INTO "area" VALUES('IGNF','225','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT III CARTO','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT III CARTO',42.2999888396489,45.4499976673229,-4.05368768512203,10,0); INSERT INTO "projected_crs" VALUES('IGNF','NTFLAMB3C','NTF Lambert III carto',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC013310','IGNF','225',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMB3C','NTF Lambert III carto',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC013310','IGNF','225',NULL,0); INSERT INTO "area" VALUES('IGNF','226','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT IV CORSE','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT IV CORSE',41.3100821709321,43.0200472881681,7.7367772754414,10,0); INSERT INTO "projected_crs" VALUES('IGNF','NTFLAMB4','NTF Lambert IV',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC010411','IGNF','226',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMB4','NTF Lambert IV',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC010411','IGNF','226',NULL,0); INSERT INTO "area" VALUES('IGNF','227','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT IV CARTO','FRANCE METROPOLITAINE (CORSE COMPRISE) - LAMBERT IV CARTO',41.3100821709321,43.0200472881681,7.7367772754414,10,0); INSERT INTO "projected_crs" VALUES('IGNF','NTFLAMB4C','NTF Lambert IV carto',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC013412','IGNF','227',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMB4C','NTF Lambert IV carto',NULL,NULL,'EPSG','4499','IGNF','NTFPGRAD','IGNF','PRC013412','IGNF','227',NULL,0); INSERT INTO "area" VALUES('IGNF','228','NUKU HIVA, UA HUKA ET UA POU (ARCHIPEL DES MARQUISES) - UTM SUD FUSEAU 7','NUKU HIVA, UA HUKA ET UA POU (ARCHIPEL DES MARQUISES) - UTM SUD FUSEAU 7',-9.5,-8.77,-140.27,-139.48,0); INSERT INTO "projected_crs" VALUES('IGNF','NUKU72UTM7S','Nuku Hiva UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','NUKU72G','IGNF','PRC0307212','IGNF','228',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','NUKU72U7S','Nuku Hiva UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','NUKU72G','IGNF','PRC0307212','IGNF','228',NULL,0); INSERT INTO "area" VALUES('IGNF','229','OUVEA (ILES LOYAUTE) - UTM SUD FUSEAU 58','OUVEA (ILES LOYAUTE) - UTM SUD FUSEAU 58',-20.78,-20.25,166.11,166.71,0); INSERT INTO "projected_crs" VALUES('IGNF','OUVE72UTM58S','Ouvea MHNC 1972 UTM Sud fuseau 58',NULL,NULL,'EPSG','4499','IGNF','OUVE72G','IGNF','PRC0358195','IGNF','229',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','OUVEA72U58S','Ouvea MHNC 1972 UTM Sud fuseau 58',NULL,NULL,'EPSG','4499','IGNF','OUVE72G','IGNF','PRC0358195','IGNF','229',NULL,0); INSERT INTO "area" VALUES('IGNF','230','ILE DE LA REUNION - GAUSS LABORDE REUNION','ILE DE LA REUNION - GAUSS LABORDE REUNION',-21.42,-20.76,55.17,55.92,0); INSERT INTO "projected_crs" VALUES('IGNF','PDN92GAUSSL','Piton des Neiges (1992) Gauss Laborde Reunion',NULL,NULL,'EPSG','4499','IGNF','PDN92G','IGNF','PRC0508542','IGNF','230',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','PDN08GAUSSL','Piton des Neiges (2008) Gauss Laborde Reunion',NULL,NULL,'EPSG','4499','IGNF','PDN08G','IGNF','PRC0508546','IGNF','230',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGPFEQGPPF','Polynesie Francaise projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGPFG','IGNF','PRC9811430','IGNF','59',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALPYF','Polynesie Francaise projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGPFG','IGNF','PRC9811430','IGNF','59',NULL,0); INSERT INTO "area" VALUES('IGNF','231','RAIVAVAE (ARCHIPEL DES AUSTRALES) - UTM SUD FUSEAU 6','RAIVAVAE (ARCHIPEL DES AUSTRALES) - UTM SUD FUSEAU 6',-23.92,-23.75,-147.75,-147.58,0); INSERT INTO "projected_crs" VALUES('IGNF','RAIV54UTM6S','Raivavae (Cadastre) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','RAIV54G','IGNF','PRC0306215','IGNF','231',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RAIV66UTM6S','Raivavae (MHPF 1966) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','RAIV66G','IGNF','PRC0306218','IGNF','231',NULL,0); INSERT INTO "area" VALUES('IGNF','232','RANGIROA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6','RANGIROA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6',-14.83,-14.42,-148,-147.15,0); INSERT INTO "projected_crs" VALUES('IGNF','RANGI47UTM6S','Rangiroa (MGT 1947) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','RANGI47G','IGNF','PRC0306311','IGNF','232',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RANGI47U6S','Rangiroa (MGT 1947) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','RANGI47G','IGNF','PRC0306311','IGNF','232',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RANGI59UTM6S','Rangiroa (MHPF 1959) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','RANGI59G','IGNF','PRC0306314','IGNF','232',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RANGI59U6S','Rangiroa (MHPF 1959) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','RANGI59G','IGNF','PRC0306314','IGNF','232',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RANGI68UTM6S','Rangiroa (MHPF 1966-68) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','RANGI68G','IGNF','PRC0306317','IGNF','232',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RANGI68U6S','Rangiroa (MHPF 1966-68) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','RANGI68G','IGNF','PRC0306317','IGNF','232',NULL,0); INSERT INTO "area" VALUES('IGNF','233','ILES WALLIS, FUTUNA ET ALOFI - UTM SUD FUSEAU 1','ILES WALLIS, FUTUNA ET ALOFI - UTM SUD FUSEAU 1',-14.39,-13.16,-179.98,-176.3,0); INSERT INTO "projected_crs" VALUES('IGNF','RGWF96UTM1S','RESEAU GEODESIQUE DE WALLIS ET FUTUNA 1996 UTM SUD FUSEAU 1',NULL,NULL,'EPSG','4499','IGNF','RGWF96GEO','IGNF','PRC0301588','IGNF','233',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','REUN49GAUSSL','Reunion Piton des Neiges Gauss Laborde',NULL,NULL,'EPSG','4499','IGNF','REUN49G','IGNF','PRC0508114','IGNF','230',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','REUN47GAUSSL','Reunion Piton des Neiges Gauss Laborde',NULL,NULL,'EPSG','4499','IGNF','REUN49G','IGNF','PRC0508114','IGNF','230',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGR92EQGPREU','Reunion projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGR92G','IGNF','PRC9806431','IGNF','56',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALREU','Reunion projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGR92G','IGNF','PRC9806431','IGNF','56',NULL,0); INSERT INTO "area" VALUES('IGNF','234','ANTILLES FRANCAISES - UTM NORD FUSEAU 20','ANTILLES FRANCAISES - UTM NORD FUSEAU 20',14.25,18.2,-63.2,-60.73,0); INSERT INTO "projected_crs" VALUES('IGNF','RGAF09UTM20','RGAF09 UTM Nord Fuseau 20',NULL,NULL,'EPSG','4499','IGNF','RGAF09G','IGNF','PRC0220527','IGNF','234',NULL,0); INSERT INTO "area" VALUES('IGNF','235','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC42 (CONIQUE CONFORME ZONE 1)','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC42 (CONIQUE CONFORME ZONE 1)',41,43,-5.5,10,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93CC42','RGF93 CC42 zone 1',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC8142383','IGNF','235',NULL,0); INSERT INTO "area" VALUES('IGNF','236','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC43 (CONIQUE CONFORME ZONE 2)','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC43 (CONIQUE CONFORME ZONE 2)',42,44,-5.5,10,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93CC43','RGF93 CC43 zone 2',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC8143384','IGNF','236',NULL,0); INSERT INTO "area" VALUES('IGNF','237','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC44 (CONIQUE CONFORME ZONE 3)','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC44 (CONIQUE CONFORME ZONE 3)',43,45,-5.5,10,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93CC44','RGF93 CC44 zone 3',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC8144385','IGNF','237',NULL,0); INSERT INTO "area" VALUES('IGNF','238','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC45 (CONIQUE CONFORME ZONE 4)','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC45 (CONIQUE CONFORME ZONE 4)',44,46,-5.5,10,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93CC45','RGF93 CC45 zone 4',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC8145386','IGNF','238',NULL,0); INSERT INTO "area" VALUES('IGNF','239','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC46 (CONIQUE CONFORME ZONE 5)','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC46 (CONIQUE CONFORME ZONE 5)',45,47,-5.5,10,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93CC46','RGF93 CC46 zone 5',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC8146387','IGNF','239',NULL,0); INSERT INTO "area" VALUES('IGNF','240','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC47 (CONIQUE CONFORME ZONE 6)','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC47 (CONIQUE CONFORME ZONE 6)',46,48,-5.5,10,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93CC47','RGF93 CC47 zone 6',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC8147388','IGNF','240',NULL,0); INSERT INTO "area" VALUES('IGNF','241','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC48 (CONIQUE CONFORME ZONE 7)','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC48 (CONIQUE CONFORME ZONE 7)',47,49,-5.5,10,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93CC48','RGF93 CC48 zone 7',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC8148389','IGNF','241',NULL,0); INSERT INTO "area" VALUES('IGNF','242','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC49 (CONIQUE CONFORME ZONE 8)','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC49 (CONIQUE CONFORME ZONE 8)',48,50,-5.5,10,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93CC49','RGF93 CC49 zone 8',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC8149390','IGNF','242',NULL,0); INSERT INTO "area" VALUES('IGNF','243','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC50 (CONIQUE CONFORME ZONE 9)','FRANCE METROPOLITAINE (CORSE COMPRISE) - CC50 (CONIQUE CONFORME ZONE 9)',49,51,-5.5,10,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93CC50','RGF93 CC50 zone 9',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC8150391','IGNF','243',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93LAMB93','RGF93 Lambert 93',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC014052','IGNF','4',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','LAMB93','RGF93 Lambert 93',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC014052','IGNF','4',NULL,0); INSERT INTO "area" VALUES('IGNF','244','FRANCE METROPOLITAINE (CORSE COMPRISE) - UTM NORD FUSEAU 31','FRANCE METROPOLITAINE (CORSE COMPRISE) - UTM NORD FUSEAU 31',41,52,0,6,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93UTM31','RGF93 UTM fuseau 31',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC0231393','IGNF','244',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM31RGF93','RGF93 UTM fuseau 31',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC0231393','IGNF','244',NULL,0); INSERT INTO "area" VALUES('IGNF','245','FRANCE METROPOLITAINE (CORSE COMPRISE) - UTM NORD FUSEAU 32','FRANCE METROPOLITAINE (CORSE COMPRISE) - UTM NORD FUSEAU 32',41,52,6,10,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93UTM32','RGF93 UTM fuseau 32',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC0232394','IGNF','245',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM32RGF93','RGF93 UTM fuseau 32',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC0232394','IGNF','245',NULL,0); INSERT INTO "area" VALUES('IGNF','246','FRANCE METROPOLITAINE (CORSE COMPRISE) - UTM NORD FUSEAU 30','FRANCE METROPOLITAINE (CORSE COMPRISE) - UTM NORD FUSEAU 30',41,52,-5.5,0,0); INSERT INTO "projected_crs" VALUES('IGNF','RGF93UTM30','RGF93 UTM NORD FUSEAU 30',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC0230392','IGNF','246',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM30RGF93','RGF93 UTM NORD FUSEAU 30',NULL,NULL,'EPSG','4499','IGNF','RGF93G','IGNF','PRC0230392','IGNF','246',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGFG95UTM21','RGFG95 UTM Nord f.21',NULL,NULL,'EPSG','4499','IGNF','RGFG95G','IGNF','PRC0221157','IGNF','170',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM21RGFG95','RGFG95 UTM Nord f.21',NULL,NULL,'EPSG','4499','IGNF','RGFG95G','IGNF','PRC0221157','IGNF','170',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGFG95UTM22','RGFG95 UTM Nord f.22',NULL,NULL,'EPSG','4499','IGNF','RGFG95G','IGNF','PRC0222158','IGNF','171',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM22RGFG95','RGFG95 UTM Nord f.22',NULL,NULL,'EPSG','4499','IGNF','RGFG95G','IGNF','PRC0222158','IGNF','171',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGM04UTM38S','RGM04 UTM Sud fuseau 38',NULL,NULL,'EPSG','4499','IGNF','RGM04G','IGNF','PRC0338372','IGNF','166',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGNCLAMBNC','RGNC Lambert Nouvelle-Caledonie',NULL,NULL,'EPSG','4499','IGNF','RGNCG','IGNF','PRC0149202','IGNF','58',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGNCLAM','RGNC Lambert Nouvelle-Caledonie',NULL,NULL,'EPSG','4499','IGNF','RGNCG','IGNF','PRC0149202','IGNF','58',NULL,0); INSERT INTO "area" VALUES('IGNF','247','NOUVELLE-CALEDONIE - UTM SUD FUSEAU 57','NOUVELLE-CALEDONIE - UTM SUD FUSEAU 57',-26.65,-14.6,156.1,162,0); INSERT INTO "projected_crs" VALUES('IGNF','RGNCUTM57S','RGNC UTM Sud fuseau 57',NULL,NULL,'EPSG','4499','IGNF','RGNCG','IGNF','PRC0357203','IGNF','247',NULL,0); INSERT INTO "area" VALUES('IGNF','248','NOUVELLE-CALEDONIE - UTM SUD FUSEAU 58','NOUVELLE-CALEDONIE - UTM SUD FUSEAU 58',-26.65,-14.6,162,168,0); INSERT INTO "projected_crs" VALUES('IGNF','RGNCUTM58S','RGNC UTM Sud fuseau 58',NULL,NULL,'EPSG','4499','IGNF','RGNCG','IGNF','PRC0358204','IGNF','248',NULL,0); INSERT INTO "area" VALUES('IGNF','249','NOUVELLE-CALEDONIE - UTM SUD FUSEAU 59','NOUVELLE-CALEDONIE - UTM SUD FUSEAU 59',-26.65,-14.6,168,174,0); INSERT INTO "projected_crs" VALUES('IGNF','RGNCUTM59S','RGNC UTM Sud fuseau 59',NULL,NULL,'EPSG','4499','IGNF','RGNCG','IGNF','PRC0359205','IGNF','249',NULL,0); INSERT INTO "area" VALUES('IGNF','250','POLYNESIE FRANCAISE - UTM SUD FUSEAU 5','POLYNESIE FRANCAISE - UTM SUD FUSEAU 5',-28,-7,-156,-150,0); INSERT INTO "projected_crs" VALUES('IGNF','RGPFUTM5S','RGPF UTM Sud fuseau 5',NULL,NULL,'EPSG','4499','IGNF','RGPFG','IGNF','PRC030574','IGNF','250',NULL,0); INSERT INTO "area" VALUES('IGNF','251','POLYNESIE FRANCAISE - UTM SUD FUSEAU 6','POLYNESIE FRANCAISE - UTM SUD FUSEAU 6',-28,-7,-150,-144,0); INSERT INTO "projected_crs" VALUES('IGNF','RGPFUTM6S','RGPF UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','RGPFG','IGNF','PRC030675','IGNF','251',NULL,0); INSERT INTO "area" VALUES('IGNF','252','POLYNESIE FRANCAISE - UTM SUD FUSEAU 7','POLYNESIE FRANCAISE - UTM SUD FUSEAU 7',-28,-7,-144,-138,0); INSERT INTO "projected_crs" VALUES('IGNF','RGPFUTM7S','RGPF UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','RGPFG','IGNF','PRC030776','IGNF','252',NULL,0); INSERT INTO "area" VALUES('IGNF','253','POLYNESIE FRANCAISE - UTM SUD FUSEAU 8','POLYNESIE FRANCAISE - UTM SUD FUSEAU 8',-28,-7,-138,-134,0); INSERT INTO "projected_crs" VALUES('IGNF','RGPFUTM8S','RGPF UTM SUD FUSEAU 8',NULL,NULL,'EPSG','4499','IGNF','RGPFG','IGNF','PRC0308576','IGNF','253',NULL,0); INSERT INTO "area" VALUES('IGNF','254','ILE DE LA REUNION - UTM SUD FUSEAU 40','ILE DE LA REUNION - UTM SUD FUSEAU 40',-21.42,-20.75,55.17,55.92,0); INSERT INTO "projected_crs" VALUES('IGNF','RGR92UTM40S','RGR92 UTM 40 Sud',NULL,NULL,'EPSG','4499','IGNF','RGR92G','IGNF','PRC0340361','IGNF','254',NULL,0); INSERT INTO "area" VALUES('IGNF','255','SAINT-PIERRE-ET-MIQUELON - UTM NORD FUSEAU 21','SAINT-PIERRE-ET-MIQUELON - UTM NORD FUSEAU 21',46.7,47.2,-56.49,-56.1,0); INSERT INTO "projected_crs" VALUES('IGNF','RGSPM06U21','RGSPM06 UTM Nord fuseau 21',NULL,NULL,'EPSG','4499','IGNF','RGSPM06G','IGNF','PRC0221378','IGNF','255',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGTAAFUTM37S','RGTAAF07 UTM Sud fuseau 37',NULL,NULL,'EPSG','4499','IGNF','RGTAAF07G','IGNF','PRC0337418','IGNF','61',NULL,0); INSERT INTO "area" VALUES('IGNF','256','TERRES AUSTRALES ET ANTARCTIQUES FRANCAISES (TAAF) - UTM SUD FUSEAU 39','TERRES AUSTRALES ET ANTARCTIQUES FRANCAISES (TAAF) - UTM SUD FUSEAU 39',-80,-11,48,54,0); INSERT INTO "projected_crs" VALUES('IGNF','RGTAAFUTM39S','RGTAAF07 UTM Sud fuseau 39',NULL,NULL,'EPSG','4499','IGNF','RGTAAF07G','IGNF','PRC0339419','IGNF','256',NULL,0); INSERT INTO "area" VALUES('IGNF','257','TERRES AUSTRALES ET ANTARCTIQUES FRANCAISES (TAAF) - UTM SUD FUSEAU 42','TERRES AUSTRALES ET ANTARCTIQUES FRANCAISES (TAAF) - UTM SUD FUSEAU 42',-80,-11,66,72,0); INSERT INTO "projected_crs" VALUES('IGNF','RGTAAFUTM42S','RGTAAF07 UTM Sud fuseau 42',NULL,NULL,'EPSG','4499','IGNF','RGTAAF07G','IGNF','PRC0342420','IGNF','257',NULL,0); INSERT INTO "area" VALUES('IGNF','258','TERRES AUSTRALES ET ANTARCTIQUES FRANCAISES (TAAF) - UTM SUD FUSEAU 43','TERRES AUSTRALES ET ANTARCTIQUES FRANCAISES (TAAF) - UTM SUD FUSEAU 43',-80,-11,72,78,0); INSERT INTO "projected_crs" VALUES('IGNF','RGTAAFUTM43S','RGTAAF07 UTM Sud fuseau 43',NULL,NULL,'EPSG','4499','IGNF','RGTAAF07G','IGNF','PRC0343421','IGNF','258',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGTAAFUTM53S','RGTAAF07 UTM SUD FUSEAU 53',NULL,NULL,'EPSG','4499','IGNF','RGTAAF07G','IGNF','PRC0353563','IGNF','61',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RRAFUTM20','RRAF UTM Nord fuseau 20',NULL,NULL,'EPSG','4499','IGNF','RRAFG','IGNF','PRC0220170','IGNF','234',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM20W84MART','RRAF UTM Nord fuseau 20',NULL,NULL,'EPSG','4499','IGNF','RRAFG','IGNF','PRC0220170','IGNF','234',NULL,0); INSERT INTO "area" VALUES('IGNF','259','RURUTU (ARCHIPEL DES AUSTRALES) - UTM SUD FUSEAU 5','RURUTU (ARCHIPEL DES AUSTRALES) - UTM SUD FUSEAU 5',-22.58,-22.25,-151.5,-151.33,0); INSERT INTO "projected_crs" VALUES('IGNF','RUSAT84UTM5S','Rurutu (SAT84) UTM Sud fuseau 5',NULL,NULL,'EPSG','4499','IGNF','RUSAT84G','IGNF','PRC030570','IGNF','259',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','SAT84UTM5S','Rurutu (SAT84) UTM Sud fuseau 5',NULL,NULL,'EPSG','4499','IGNF','RUSAT84G','IGNF','PRC030570','IGNF','259',NULL,0); INSERT INTO "area" VALUES('IGNF','260','ILE SAINT-PAUL - UTM SUD FUSEAU 43','ILE SAINT-PAUL - UTM SUD FUSEAU 43',-38.77,-38.67,77.48,77.58,0); INSERT INTO "projected_crs" VALUES('IGNF','STPL69UTM43S','Saint-Paul UTM Sud fuseau 43',NULL,NULL,'EPSG','4499','IGNF','STPL69G','IGNF','PRC034341','IGNF','260',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','RGSPM06EQGP','Saint-Pierre-et-Miquelon Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGSPM06G','IGNF','PRC9808432','IGNF','60',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALSPM','Saint-Pierre-et-Miquelon Geoportail',NULL,NULL,'EPSG','4499','IGNF','RGSPM06G','IGNF','PRC9808432','IGNF','60',NULL,0); INSERT INTO "area" VALUES('IGNF','261','ILE DES PINS (NOUVELLE-CALEDONIE) - UTM SUD FUSEAU 58','ILE DES PINS (NOUVELLE-CALEDONIE) - UTM SUD FUSEAU 58',-22.8,-22.44,167.29,167.62,0); INSERT INTO "projected_crs" VALUES('IGNF','ST84UTM58S','ST 84 ILE DES PINS UTM Sud fuseau 58',NULL,NULL,'EPSG','4499','IGNF','ST84G','IGNF','PRC0358407','IGNF','261',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','ST87UTM58S','ST 87 OUVEA UTM Sud fuseau 58',NULL,NULL,'EPSG','4499','IGNF','ST87G','IGNF','PRC0358405','IGNF','229',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','STPM50UTM21','St-Pierre-et-Miquelon UTM Nord f.21',NULL,NULL,'EPSG','4499','IGNF','STPM50G','IGNF','PRC0221141','IGNF','255',NULL,0); INSERT INTO "area" VALUES('IGNF','262','TAHAA (ARCHIPEL DE LA SOCIETE) - UTM SUD FUSEAU 5','TAHAA (ARCHIPEL DE LA SOCIETE) - UTM SUD FUSEAU 5',-16.7,-16.53,-151.58,-151.38,0); INSERT INTO "projected_crs" VALUES('IGNF','TAHAAUTM5S','Tahaa UTM Sud fuseau 5',NULL,NULL,'EPSG','4499','IGNF','TAHAAG','IGNF','PRC0305187','IGNF','262',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','TAHAAUTM05S','Tahaa UTM Sud fuseau 5',NULL,NULL,'EPSG','4499','IGNF','TAHAAG','IGNF','PRC0305187','IGNF','262',NULL,0); INSERT INTO "area" VALUES('IGNF','263','TAHITI (ARCHIPEL DE LA SOCIETE) - UTM SUD FUSEAU 6','TAHITI (ARCHIPEL DE LA SOCIETE) - UTM SUD FUSEAU 6',-18,-17,-150,-149,0); INSERT INTO "projected_crs" VALUES('IGNF','TAHI79UTM6S','Tahiti (IGN79) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','TAHI79G','IGNF','PRC030655','IGNF','263',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','TAHI51UTM6S','TAHITI TERME NORD UTM SUD FUSEAU 6',NULL,NULL,'EPSG','4499','IGNF','TAHI51G','IGNF','PRC0306172','IGNF','263',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','TAHI51UTM06S','TAHITI TERME NORD UTM SUD FUSEAU 6',NULL,NULL,'EPSG','4499','IGNF','TAHI51G','IGNF','PRC0306172','IGNF','263',NULL,0); INSERT INTO "area" VALUES('IGNF','264','TAKAROA ET TAKAPOTO (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6','TAKAROA ET TAKAPOTO (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6',-14.75,-14.25,-145.33,-144.75,0); INSERT INTO "projected_crs" VALUES('IGNF','TAKA69UTM6S','Takaroa Takapoto (SHM 1969) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','TAKA69G','IGNF','PRC0306320','IGNF','264',NULL,0); INSERT INTO "area" VALUES('IGNF','265','TANNA (ARCHIPEL DU VANUATU) - UTM SUD FUSEAU 59','TANNA (ARCHIPEL DU VANUATU) - UTM SUD FUSEAU 59',-19.67,-19.08,169.17,169.83,0); INSERT INTO "projected_crs" VALUES('IGNF','TANNAUTM59S','Tanna UTM Sud fuseau 59',NULL,NULL,'EPSG','4499','IGNF','TANNAG','IGNF','PRC0359190','IGNF','265',NULL,0); INSERT INTO "area" VALUES('IGNF','266','ARCHIPEL POINTE GEOLOGIE (TERRE ADELIE) - STEREOGRAPHIQUE POLAIRE SUD TERRE ADELIE','ARCHIPEL POINTE GEOLOGIE (TERRE ADELIE) - STEREOGRAPHIQUE POLAIRE SUD TERRE ADELIE',-66.72,-66.6,139.67,140.12,0); INSERT INTO "projected_crs" VALUES('IGNF','PGP50STEREPS','TERRE ADELIE POINTE GEOLOGIE PERROUD STEREO POLAIRE SUD (TANGENTE)',NULL,NULL,'EPSG','4499','IGNF','PGP50G','IGNF','PRC090126','IGNF','266',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','TERA50STEREO','TERRE ADELIE POINTE GEOLOGIE PERROUD STEREO POLAIRE SUD (TANGENTE)',NULL,NULL,'EPSG','4499','IGNF','PGP50G','IGNF','PRC090126','IGNF','266',NULL,0); INSERT INTO "area" VALUES('IGNF','267','TETIAROA (ARCHIPEL DE LA SOCIETE) - UTM SUD FUSEAU 6','TETIAROA (ARCHIPEL DE LA SOCIETE) - UTM SUD FUSEAU 6',-17.1,-17.02,-149.6,-149.53,0); INSERT INTO "projected_crs" VALUES('IGNF','TETIA90UTM6S','Tetiaroa (MOP90) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','TETIA90G','IGNF','PRC030661','IGNF','267',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','MOP90UTM6S','Tetiaroa (MOP90) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','TETIA90G','IGNF','PRC030661','IGNF','267',NULL,0); INSERT INTO "area" VALUES('IGNF','268','TIKEHAU (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6','TIKEHAU (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 6',-15.2,-14.83,-148.5,-148,0); INSERT INTO "projected_crs" VALUES('IGNF','TIKE60UTM6S','Tikehau (MHPF 1960) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','TIKE60G','IGNF','PRC0306323','IGNF','268',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','TIKE88UTM6S','TIKEHAU (MOP88) UTM SUD FUSEAU 6',NULL,NULL,'EPSG','4499','IGNF','TIKE88G','IGNF','PRC0306585','IGNF','268',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','TIKE50UTM6S','Tikehau (SHM 1947-1950) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','TIKE50G','IGNF','PRC0306326','IGNF','268',NULL,0); INSERT INTO "area" VALUES('IGNF','269','ILE TROMELIN - MERCATOR DIRECTE','ILE TROMELIN - MERCATOR DIRECTE',-15.9,-15.87,54.51,54.53,0); INSERT INTO "projected_crs" VALUES('IGNF','TROM56MD','TROMELIN SGM 1956 MERCATOR DIRECTE',NULL,NULL,'EPSG','4499','IGNF','TROM56G','IGNF','PRC0701131','IGNF','269',NULL,0); INSERT INTO "area" VALUES('IGNF','270','APATAKI, RAPA et HAO - UTM SUD FUSEAU 6','APATAKI, RAPA et HAO - UTM SUD FUSEAU 6',-27.75,-15.293,-146.4644,-144,0); INSERT INTO "projected_crs" VALUES('IGNF','TUAM86UTM6S','Tuamotu (MOP86) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','TUAM86G','IGNF','PRC0306330','IGNF','270',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','APAT86UTM6S','Tuamotu (MOP86) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','TUAM86G','IGNF','PRC0306330','IGNF','270',NULL,0); INSERT INTO "area" VALUES('IGNF','271','APATAKI, RAPA et HAO - UTM SUD FUSEAU 7','APATAKI, RAPA et HAO - UTM SUD FUSEAU 7',-27.75,-15.293,-144,-140.5833,0); INSERT INTO "projected_crs" VALUES('IGNF','TUAM86UTM7S','Tuamotu (MOP86) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','TUAM86G','IGNF','PRC0307331','IGNF','271',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','APAT86UTM7S','Tuamotu (MOP86) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','TUAM86G','IGNF','PRC0307331','IGNF','271',NULL,0); INSERT INTO "area" VALUES('IGNF','272','TUBUAI (ARCHIPEL DES AUSTRALES) - UTM SUD FUSEAU 6','TUBUAI (ARCHIPEL DES AUSTRALES) - UTM SUD FUSEAU 6',-23.45,-23.25,-149.58,-149.33,0); INSERT INTO "projected_crs" VALUES('IGNF','TUBU69UTM6S','Tubuai (MHPF 1969) UTM Sud fuseau 6',NULL,NULL,'EPSG','4499','IGNF','TUBU69G','IGNF','PRC0306227','IGNF','272',NULL,0); INSERT INTO "area" VALUES('IGNF','273','TUREIA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7','TUREIA (ARCHIPEL DES TUAMOTU) - UTM SUD FUSEAU 7',-21,-20.67,-139.83,-138.83,0); INSERT INTO "projected_crs" VALUES('IGNF','TURI69UTM7S','Tureia (SHM 1969) UTM Sud fuseau 7',NULL,NULL,'EPSG','4499','IGNF','TURI69G','IGNF','PRC0307308','IGNF','273',NULL,0); INSERT INTO "area" VALUES('IGNF','274','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - ILES WALLIS, FUTUNA ET ALOFI','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - ILES WALLIS, FUTUNA ET ALOFI',-14.39,-13.16,-179.98,-176.3,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84EQGPWF','Wallis et Futuna projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC9810433','IGNF','274',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','GEOPORTALWLF','Wallis et Futuna projection Geoportail',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC9810433','IGNF','274',NULL,0); INSERT INTO "area" VALUES('IGNF','275','ILE D''UVEA (WALLIS) - UTM SUD FUSEAU 1','ILE D''UVEA (WALLIS) - UTM SUD FUSEAU 1',-13.42,-13.17,-176.3,-176.1,0); INSERT INTO "projected_crs" VALUES('IGNF','WALL76UTM1S','Wallis (MOP 1976) UTM Sud fuseau 1',NULL,NULL,'EPSG','4499','IGNF','WALL76G','IGNF','PRC030144','IGNF','275',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','WALL78UTM1S','Wallis (MOP 1978) UTM Sud fuseau 1',NULL,NULL,'EPSG','4499','IGNF','WALL78G','IGNF','PRC030147','IGNF','275',NULL,0); INSERT INTO "area" VALUES('IGNF','276','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM NORD FUSEAU 30','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM NORD FUSEAU 30',0,80,-6,0,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS72UTM30','WGS72 UTM fuseau 30',NULL,NULL,'EPSG','4499','IGNF','WGS72G','IGNF','PRC0230345','IGNF','276',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM30W72','WGS72 UTM fuseau 30',NULL,NULL,'EPSG','4499','IGNF','WGS72G','IGNF','PRC0230345','IGNF','276',NULL,0); INSERT INTO "area" VALUES('IGNF','277','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM NORD FUSEAU 31','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM NORD FUSEAU 31',0,80,0,6,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS72UTM31','WGS72 UTM fuseau 31',NULL,NULL,'EPSG','4499','IGNF','WGS72G','IGNF','PRC0231346','IGNF','277',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM31W72','WGS72 UTM fuseau 31',NULL,NULL,'EPSG','4499','IGNF','WGS72G','IGNF','PRC0231346','IGNF','277',NULL,0); INSERT INTO "area" VALUES('IGNF','278','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM NORD FUSEAU 32','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM NORD FUSEAU 32',0,80,6,12,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS72UTM32','WGS72 UTM fuseau 32',NULL,NULL,'EPSG','4499','IGNF','WGS72G','IGNF','PRC0232348','IGNF','278',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM32W72','WGS72 UTM fuseau 32',NULL,NULL,'EPSG','4499','IGNF','WGS72G','IGNF','PRC0232348','IGNF','278',NULL,0); INSERT INTO "area" VALUES('IGNF','279','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM SUD FUSEAU 1','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM SUD FUSEAU 1',-80,0,-180,-174,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS72UTM1S','WGS72 UTM Sud Fuseau 1',NULL,NULL,'EPSG','4499','IGNF','WGS72G','IGNF','PRC0301545','IGNF','279',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84MILLGP','WGS84 PROJECTION MILLER GEOPORTAIL',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC7001567','IGNF','75',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','MILLER','WGS84 PROJECTION MILLER GEOPORTAIL',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC7001567','IGNF','75',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84UTM30','WGS84 UTM fuseau 30',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0230353','IGNF','276',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM30W84','WGS84 UTM fuseau 30',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0230353','IGNF','276',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84UTM31','WGS84 UTM fuseau 31',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0231354','IGNF','277',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM31W84','WGS84 UTM fuseau 31',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0231354','IGNF','277',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84UTM32','WGS84 UTM NORD FUSEAU 32',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0232355','IGNF','278',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM32W84','WGS84 UTM NORD FUSEAU 32',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0232355','IGNF','278',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84UTM1S','WGS84 UTM Sud Fuseau 1',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0301550','IGNF','279',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM01SW84','WGS84 UTM Sud Fuseau 1',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0301550','IGNF','279',NULL,0); INSERT INTO "area" VALUES('IGNF','280','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM SUD FUSEAU 39','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM SUD FUSEAU 39',-80,0,48,54,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84UTM39S','WGS84 UTM SUD FUSEAU 39',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0339578','IGNF','280',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM39SW84','WGS84 UTM SUD FUSEAU 39',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0339578','IGNF','280',NULL,0); INSERT INTO "area" VALUES('IGNF','281','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM SUD FUSEAU 42','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM SUD FUSEAU 42',-80,0,66,72,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84UTM42S','WGS84 UTM SUD FUSEAU 42',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0342579','IGNF','281',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM42SW84','WGS84 UTM SUD FUSEAU 42',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0342579','IGNF','281',NULL,0); INSERT INTO "area" VALUES('IGNF','282','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM SUD FUSEAU 43','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - UTM SUD FUSEAU 43',-80,0,72,78,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84UTM43S','WGS84 UTM SUD FUSEAU 43',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0343580','IGNF','282',NULL,0); INSERT INTO "projected_crs" VALUES('IGNF','UTM43SW84','WGS84 UTM SUD FUSEAU 43',NULL,NULL,'EPSG','4499','IGNF','WGS84G','IGNF','PRC0343580','IGNF','282',NULL,0); INSERT INTO "area" VALUES('IGNF','283','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - PSEUDO MERCATOR (POPULAR VISUALISATION)','PLANETE TERRE ET SON ENVIRONNEMENT PROCHE - PSEUDO MERCATOR (POPULAR VISUALISATION)',-85,85,-180,180,0); INSERT INTO "projected_crs" VALUES('IGNF','WGS84WMSV','WGS84 WEB MERCATOR SPHERIQUE (VISUALISATION)',NULL,NULL,'EPSG','4400','IGNF','WGS84G','IGNF','PRC9601581','IGNF','283',NULL,0); INSERT INTO "compound_crs" VALUES('IGNF','ATIGBONNE.BOURD','ATIG Bonne France Etat Major et NGF-BOURDALOUE',NULL,NULL,'IGNF','ATIGBONNE','IGNF','BOURD','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','ATIGBONNE.NGF84','ATIG Bonne France Etat Major et NGF-LALLEMAND',NULL,NULL,'IGNF','ATIGBONNE','IGNF','NGF84','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','ATIGG.BOURD','ATIG geographiques grades Paris (gr) et NGF-BOURDALOUE',NULL,NULL,'IGNF','ATIGG','IGNF','BOURD','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','ATIGG.NGF84','ATIG geographiques grades Paris (gr) et NGF-LALLEMAND',NULL,NULL,'IGNF','ATIGG','IGNF','NGF84','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','CAD97G.MAYO53','Cadastre 1997 geographiques (dms) et SHOM 1953 (MAYOTTE)',NULL,NULL,'IGNF','CAD97G','IGNF','MAYO53','IGNF','5',0); INSERT INTO "compound_crs" VALUES('IGNF','CAD97UTM38S.MAYO53','Cadastre 1997 UTM Sud fuseau 38 et SHOM 1953 (MAYOTTE)',NULL,NULL,'IGNF','CAD97UTM38S','IGNF','MAYO53','IGNF','5',0); INSERT INTO "compound_crs" VALUES('IGNF','MAYO50G.MAYO53','Combani triangulation IGN 1950 geographiques (dms) et SHOM 1953 (MAYOTTE)',NULL,NULL,'IGNF','MAYO50G','IGNF','MAYO53','IGNF','5',0); INSERT INTO "compound_crs" VALUES('IGNF','MAYO50UTM38S.MAYO53','Combani UTM Sud fuseau 38 et SHOM 1953 (MAYOTTE)',NULL,NULL,'IGNF','MAYO50UTM38S','IGNF','MAYO53','IGNF','5',0); INSERT INTO "compound_crs" VALUES('IGNF','CSG67G.GUYA77','CSG67 geographiques (dms) et NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'IGNF','CSG67G','IGNF','GUYA77','IGNF','10',0); INSERT INTO "compound_crs" VALUES('IGNF','C67IG95G.GUYA77','CSG67 (IGN 1995) geographiques (dms) et NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'IGNF','C67IG95G','IGNF','GUYA77','IGNF','10',0); INSERT INTO "compound_crs" VALUES('IGNF','C67IG95UTM21.GUYA77','CSG67(IGN 1995) UTM Nord fuseau 21 et NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'IGNF','C67IG95UTM21','IGNF','GUYA77','IGNF','170',0); INSERT INTO "compound_crs" VALUES('IGNF','C67IG95UTM22.GUYA77','CSG67 (IGN 1995) UTM Nord fuseau 22 et NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'IGNF','C67IG95UTM22','IGNF','GUYA77','IGNF','171',0); INSERT INTO "compound_crs" VALUES('IGNF','CSG67UTM21.GUYA77','CSG67 UTM Nord fuseau 21 et NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'IGNF','CSG67UTM21','IGNF','GUYA77','IGNF','170',0); INSERT INTO "compound_crs" VALUES('IGNF','CSG67UTM22.GUYA77','CSG67 UTM Nord fuseau 22 et NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'IGNF','CSG67UTM22','IGNF','GUYA77','IGNF','171',0); INSERT INTO "compound_crs" VALUES('IGNF','ED50G.IGN69','ED50 geographiques (dms) et NGF-IGN 1969',NULL,NULL,'IGNF','ED50G','IGNF','IGN69','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','ED50G.IGN78C','ED50 geographiques (dms) et NGF-IGN 1978',NULL,NULL,'IGNF','ED50G','IGNF','IGN78C','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','ED50G.NGF84','ED50 geographiques (dms) et NGF-LALLEMAND',NULL,NULL,'IGNF','ED50G','IGNF','NGF84','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','ED50G.NGC48','ED50 geographiques (dms) et NIVELLEMENT GENERAL DE LA CORSE (NGC)',NULL,NULL,'IGNF','ED50G','IGNF','NGC48','IGNF','86',0); INSERT INTO "area" VALUES('IGNF','284','FRANCE CONTINENTALE (CORSE EXCLUE) - UTM NORD FUSEAU 30','FRANCE CONTINENTALE (CORSE EXCLUE) - UTM NORD FUSEAU 30',42,51.5,-5.5,0,0); INSERT INTO "compound_crs" VALUES('IGNF','ED50UTM30.IGN69','ED50 UTM fuseau 30 et NGF-IGN 1969',NULL,NULL,'IGNF','ED50UTM30','IGNF','IGN69','IGNF','284',0); INSERT INTO "compound_crs" VALUES('IGNF','ED50UTM30.NGF84','ED50 UTM fuseau 30 et NGF-LALLEMAND',NULL,NULL,'IGNF','ED50UTM30','IGNF','NGF84','IGNF','284',0); INSERT INTO "area" VALUES('IGNF','285','FRANCE CONTINENTALE (CORSE EXCLUE) - UTM NORD FUSEAU 32','FRANCE CONTINENTALE (CORSE EXCLUE) - UTM NORD FUSEAU 32',42,51.5,6,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','ED50UTM32.IGN69','ED50 UTM fuseau 32 et NGF-IGN 1969',NULL,NULL,'IGNF','ED50UTM32','IGNF','IGN69','IGNF','285',0); INSERT INTO "compound_crs" VALUES('IGNF','ED50UTM32.IGN78C','ED50 UTM fuseau 32 et NGF-IGN 1978',NULL,NULL,'IGNF','ED50UTM32','IGNF','IGN78C','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','ED50UTM32.NGF84','ED50 UTM fuseau 32 et NGF-LALLEMAND',NULL,NULL,'IGNF','ED50UTM32','IGNF','NGF84','IGNF','285',0); INSERT INTO "compound_crs" VALUES('IGNF','ED50UTM32.NGC48','ED50 UTM fuseau 32 et NIVELLEMENT GENERAL DE LA CORSE (NGC)',NULL,NULL,'IGNF','ED50UTM32','IGNF','NGC48','IGNF','86',0); INSERT INTO "area" VALUES('IGNF','286','FRANCE CONTINENTALE (CORSE EXCLUE) - UTM NORD FUSEAU 31','FRANCE CONTINENTALE (CORSE EXCLUE) - UTM NORD FUSEAU 31',42,51.5,0,6,0); INSERT INTO "compound_crs" VALUES('IGNF','ED50UTM31.IGN69','ED50 UTM NORD FUSEAU 31 et NGF-IGN 1969',NULL,NULL,'IGNF','ED50UTM31','IGNF','IGN69','IGNF','286',0); INSERT INTO "compound_crs" VALUES('IGNF','ED50UTM31.NGF84','ED50 UTM NORD FUSEAU 31 et NGF-LALLEMAND',NULL,NULL,'IGNF','ED50UTM31','IGNF','NGF84','IGNF','286',0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89G.EVRF2000','ETRS89 geographiques (dms) et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89G','IGNF','EVRF2000','IGNF','77',0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89LAEA.EVRF2000','ETRS89 Lambert Azimutal Equal Area et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89LAEA','IGNF','EVRF2000','IGNF','77',0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89LCC.EVRF2000','ETRS89 Lambert Conformal Conic et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89LCC','IGNF','EVRF2000','IGNF','77',0); INSERT INTO "area" VALUES('IGNF','287','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 29','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 29',36,71.2,-10,-6,0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89UTM29.EVRF2000','ETRS89 UTM Nord fuseau 29 et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89UTM29','IGNF','EVRF2000','IGNF','287',0); INSERT INTO "area" VALUES('IGNF','288','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 30','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 30',36,71.2,-6,0,0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89UTM30.EVRF2000','ETRS89 UTM Nord fuseau 30 et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89UTM30','IGNF','EVRF2000','IGNF','288',0); INSERT INTO "area" VALUES('IGNF','289','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 31','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 31',36,71.2,0,6,0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89UTM31.EVRF2000','ETRS89 UTM Nord fuseau 31 et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89UTM31','IGNF','EVRF2000','IGNF','289',0); INSERT INTO "area" VALUES('IGNF','290','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 32','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 32',36,71.2,6,12,0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89UTM32.EVRF2000','ETRS89 UTM Nord fuseau 32 et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89UTM32','IGNF','EVRF2000','IGNF','290',0); INSERT INTO "area" VALUES('IGNF','291','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 33','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 33',36,71.2,12,18,0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89UTM33.EVRF2000','ETRS89 UTM Nord fuseau 33 et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89UTM33','IGNF','EVRF2000','IGNF','291',0); INSERT INTO "area" VALUES('IGNF','292','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 34','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 34',36,71.2,18,24,0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89UTM34.EVRF2000','ETRS89 UTM Nord fuseau 34 et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89UTM34','IGNF','EVRF2000','IGNF','292',0); INSERT INTO "area" VALUES('IGNF','293','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 35','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 35',36,71.2,24,30,0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89UTM35.EVRF2000','ETRS89 UTM Nord fuseau 35 et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89UTM35','IGNF','EVRF2000','IGNF','293',0); INSERT INTO "area" VALUES('IGNF','294','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 36','EUROPE (RESEAU VERTICAL UNIFIE) - UTM NORD FUSEAU 36',36,71.2,30,32,0); INSERT INTO "compound_crs" VALUES('IGNF','ETRS89UTM36.EVRF2000','ETRS89 UTM Nord fuseau 36 et EVRF2000 (UELN-95/98)(EUROPEAN VERTICAL REFERENCE FRAME)',NULL,NULL,'IGNF','ETRS89UTM36','IGNF','EVRF2000','IGNF','294',0); INSERT INTO "compound_crs" VALUES('IGNF','GLOR77G.GLOR77','Glorieuses geographiques (dms) et SHOM 1977 (ILES GLORIEUSES - CANAL DE MOZAMBIQUE)',NULL,NULL,'IGNF','GLOR77G','IGNF','GLOR77','IGNF','20',0); INSERT INTO "compound_crs" VALUES('IGNF','GLOR77MD.GLOR77','Glorieuses Mercator directe et SHOM 1977 (ILES GLORIEUSES - CANAL DE MOZAMBIQUE)',NULL,NULL,'IGNF','GLOR77MD','IGNF','GLOR77','IGNF','20',0); INSERT INTO "compound_crs" VALUES('IGNF','GLOR77UTM38S.GLOR77','GLORIEUSES MHG 1977 UTM SUD FUSEAU 38 et SHOM 1977 (ILES GLORIEUSES - CANAL DE MOZAMBIQUE)',NULL,NULL,'IGNF','GLOR77UTM38S','IGNF','GLOR77','IGNF','20',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADFMG.GUAD88SB','Guadeloupe Fort-Marigot geographiques (dms) et IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,NULL,'IGNF','GUADFMG','IGNF','GUAD88SB','IGNF','82',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADFMG.GUAD88SM','Guadeloupe Fort-Marigot geographiques (dms) et IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,NULL,'IGNF','GUADFMG','IGNF','GUAD88SM','IGNF','83',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADFMUTM20.GUAD88SB','Guadeloupe Fort-Marigot UTM Nord fuseau 20 et IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,NULL,'IGNF','GUADFMUTM20','IGNF','GUAD88SB','IGNF','82',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADFMUTM20.GUAD88SM','Guadeloupe Fort-Marigot UTM Nord fuseau 20 et IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,NULL,'IGNF','GUADFMUTM20','IGNF','GUAD88SM','IGNF','83',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADANNG.GUAD88','Guadeloupe Sainte-Anne geographiques (dms) et IGN 1988 (GUADELOUPE)',NULL,NULL,'IGNF','GUADANNG','IGNF','GUAD88','IGNF','79',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADANNG.GUAD88LS','Guadeloupe Sainte-Anne geographiques (dms) et IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,NULL,'IGNF','GUADANNG','IGNF','GUAD88LS','IGNF','80',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADANNG.GUAD88MG','Guadeloupe Sainte-Anne geographiques (dms) et IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,NULL,'IGNF','GUADANNG','IGNF','GUAD88MG','IGNF','81',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADANNG.GUAD92LD','Guadeloupe Sainte-Anne geographiques (dms) et IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'IGNF','GUADANNG','IGNF','GUAD92LD','IGNF','84',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADANNUTM20.GUAD88','Guadeloupe Ste Anne UTM Nord fuseau 20 et IGN 1988 (GUADELOUPE)',NULL,NULL,'IGNF','GUADANNUTM20','IGNF','GUAD88','IGNF','79',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADANNUTM20.GUAD88LS','Guadeloupe Ste Anne UTM Nord fuseau 20 et IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,NULL,'IGNF','GUADANNUTM20','IGNF','GUAD88LS','IGNF','80',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADANNUTM20.GUAD88MG','Guadeloupe Ste Anne UTM Nord fuseau 20 et IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,NULL,'IGNF','GUADANNUTM20','IGNF','GUAD88MG','IGNF','81',0); INSERT INTO "compound_crs" VALUES('IGNF','GUADANNUTM20.GUAD92LD','Guadeloupe Ste Anne UTM Nord fuseau 20 et IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'IGNF','GUADANNUTM20','IGNF','GUAD92LD','IGNF','84',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHAA53G.BORA01','IGN53 Societe geographiques (dms) et BORA_SAU 2001',NULL,NULL,'IGNF','TAHAA53G','IGNF','BORA01','IGNF','76',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHAA53G.HUAH01','IGN53 Societe geographiques (dms) et HUAHINE_SAU 2001',NULL,NULL,'IGNF','TAHAA53G','IGNF','HUAH01','IGNF','51',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHAA53G.RAIA01','IGN53 Societe geographiques (dms) et RAIATEA_SAU 2001',NULL,NULL,'IGNF','TAHAA53G','IGNF','RAIA01','IGNF','51',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHAA53UTM5S.BORA01','IGN53 Societe UTM Sud fuseau 5 et BORA_SAU 2001',NULL,NULL,'IGNF','TAHAA53UTM5S','IGNF','BORA01','IGNF','76',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHAA53UTM5S.HUAH01','IGN53 Societe UTM Sud fuseau 5 et HUAHINE_SAU 2001',NULL,NULL,'IGNF','TAHAA53UTM5S','IGNF','HUAH01','IGNF','51',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHAA53UTM5S.RAIA01','IGN53 Societe UTM Sud fuseau 5 et RAIATEA_SAU 2001',NULL,NULL,'IGNF','TAHAA53UTM5S','IGNF','RAIA01','IGNF','51',0); INSERT INTO "compound_crs" VALUES('IGNF','IGN72G.NCAL69','IGN72 geographiques (dms) et NIVELLEMENT GENERAL DE NOUVELLE-CALEDONIE (NGNC)',NULL,NULL,'IGNF','IGN72G','IGNF','NCAL69','IGNF','21',0); INSERT INTO "compound_crs" VALUES('IGNF','IGN72UTM58S.NCAL69','IGN72 UTM Sud fuseau 58 et NIVELLEMENT GENERAL DE NOUVELLE-CALEDONIE (NGNC)',NULL,NULL,'IGNF','IGN72UTM58S','IGNF','NCAL69','IGNF','21',0); INSERT INTO "compound_crs" VALUES('IGNF','KERG62G.KERG62','Kerguelen geographiques (dms) et IGN 1962 (KERGUELEN)',NULL,NULL,'IGNF','KERG62G','IGNF','KERG62','IGNF','34',0); INSERT INTO "compound_crs" VALUES('IGNF','KERG62UTM42S.KERG62','KERGUELEN K0 IGN 1962 UTM SUD FUSEAU 42 et IGN 1962 (KERGUELEN)',NULL,NULL,'IGNF','KERG62UTM42S','IGNF','KERG62','IGNF','34',0); INSERT INTO "compound_crs" VALUES('IGNF','LIFOU56G.LIFOU91','Lifou IGN 56 geographiques (dms) et NIVELLEMENT GENERAL DE LIFOU (IGN 1991 LF)',NULL,NULL,'IGNF','LIFOU56G','IGNF','LIFOU91','IGNF','35',0); INSERT INTO "compound_crs" VALUES('IGNF','LIFOU56UT58S.LIFOU91','Lifou IGN 56 UTM Sud fuseau 58 et NIVELLEMENT GENERAL DE LIFOU (IGN 1991 LF)',NULL,NULL,'IGNF','LIFOU56UT58S','IGNF','LIFOU91','IGNF','35',0); INSERT INTO "compound_crs" VALUES('IGNF','MARE53G.MARE91','Mare IGN53 geographiques (dms) et NIVELLEMENT GENERAL DE MARE (IGN 1991 MR)',NULL,NULL,'IGNF','MARE53G','IGNF','MARE91','IGNF','38',0); INSERT INTO "compound_crs" VALUES('IGNF','MARE53UTM58S.MARE91','Mare IGN53 UTM Sud fuseau 58 et NIVELLEMENT GENERAL DE MARE (IGN 1991 MR)',NULL,NULL,'IGNF','MARE53UTM58S','IGNF','MARE91','IGNF','212',0); INSERT INTO "compound_crs" VALUES('IGNF','MARTFDG.MART87','Martinique Fort-Desaix geographiques (dms) et IGN 1987 (MARTINIQUE)',NULL,NULL,'IGNF','MARTFDG','IGNF','MART87','IGNF','39',0); INSERT INTO "compound_crs" VALUES('IGNF','MARTFDUTM20.MART87','Martinique Fort-Desaix UTM Nord fuseau 20 et IGN 1987 (MARTINIQUE)',NULL,NULL,'IGNF','MARTFDUTM20','IGNF','MART87','IGNF','39',0); INSERT INTO "compound_crs" VALUES('IGNF','MAUPITIG.MAUPITI01','Maupiti (MOP 1983) geographiques (dms) et MAUPITI_SAU 2001',NULL,NULL,'IGNF','MAUPITIG','IGNF','MAUPITI01','IGNF','40',0); INSERT INTO "compound_crs" VALUES('IGNF','MAUPITIUTM5S.MAUPITI01','Maupiti (MOP 1983) UTM Sud fuseau 5 et MAUPITI_SAU 2001',NULL,NULL,'IGNF','MAUPITIUTM5S','IGNF','MAUPITI01','IGNF','40',0); INSERT INTO "compound_crs" VALUES('IGNF','MOOREA87G.MOOREA81','Moorea 1987 geographiques (dms) et MOOREA 1981 (MOOREA_SAU 2001)',NULL,NULL,'IGNF','MOOREA87G','IGNF','MOOREA81','IGNF','42',0); INSERT INTO "compound_crs" VALUES('IGNF','MOORE87UTM6S.MOOREA81','Moorea 1987 UTM Sud fuseau 6 et MOOREA 1981 (MOOREA_SAU 2001)',NULL,NULL,'IGNF','MOORE87UTM6S','IGNF','MOOREA81','IGNF','42',0); INSERT INTO "compound_crs" VALUES('IGNF','NEA74G.NCAL69','NEA74 NOUMEA geographiques (dms) et NIVELLEMENT GENERAL DE NOUVELLE-CALEDONIE (NGNC)',NULL,NULL,'IGNF','NEA74G','IGNF','NCAL69','IGNF','44',0); INSERT INTO "compound_crs" VALUES('IGNF','NEA74LBTNM2.NCAL69','NEA74 NOUMEA Lambert Noumea 2 et NIVELLEMENT GENERAL DE NOUVELLE-CALEDONIE (NGNC)',NULL,NULL,'IGNF','NEA74LBTNM2','IGNF','NCAL69','IGNF','44',0); INSERT INTO "compound_crs" VALUES('IGNF','LURESGKL.NNLUX','NOUVELLE TRIANGULATION DU DUCHE DU LUXEMBOURG GAUSS KRUGER LUXEMBOURG et NIVELLEMENT GENERAL DU LUXEMBOURG',NULL,NULL,'IGNF','LURESGKL','IGNF','NNLUX','IGNF','45',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFPGRAD.BOURD','NTF geographiques Paris (gr) et NGF-BOURDALOUE',NULL,NULL,'IGNF','NTFPGRAD','IGNF','BOURD','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFPGRAD.IGN69','NTF geographiques Paris (gr) et NGF-IGN 1969',NULL,NULL,'IGNF','NTFPGRAD','IGNF','IGN69','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFPGRAD.IGN78C','NTF geographiques Paris (gr) et NGF-IGN 1978',NULL,NULL,'IGNF','NTFPGRAD','IGNF','IGN78C','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFPGRAD.NGF84','NTF geographiques Paris (gr) et NGF-LALLEMAND',NULL,NULL,'IGNF','NTFPGRAD','IGNF','NGF84','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFPGRAD.NGC48','NTF geographiques Paris (gr) et NIVELLEMENT GENERAL DE LA CORSE (NGC)',NULL,NULL,'IGNF','NTFPGRAD','IGNF','NGC48','IGNF','86',0); INSERT INTO "area" VALUES('IGNF','295','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT I CARTO','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT I CARTO',48.1498888194584,51.2999493112821,-4.05379920354209,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB1C.IGN69','NTF Lambert I carto et NGF-IGN 1969',NULL,NULL,'IGNF','NTFLAMB1C','IGNF','IGN69','IGNF','295',0); INSERT INTO "area" VALUES('IGNF','296','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT I NORD','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT I NORD',48.1498888194584,51.2999493112821,-4.05379920354209,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB1.BOURD','NTF Lambert I et NGF-BOURDALOUE',NULL,NULL,'IGNF','NTFLAMB1','IGNF','BOURD','IGNF','296',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB1.IGN69','NTF Lambert I et NGF-IGN 1969',NULL,NULL,'IGNF','NTFLAMB1','IGNF','IGN69','IGNF','296',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB1.NGF84','NTF Lambert I et NGF-LALLEMAND',NULL,NULL,'IGNF','NTFLAMB1','IGNF','NGF84','IGNF','296',0); INSERT INTO "area" VALUES('IGNF','297','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT II CARTO','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT II CARTO',45.4499226513968,48.1499588287054,-4.05373473460064,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB2C.IGN69','NTF Lambert II carto et NGF-IGN 1969',NULL,NULL,'IGNF','NTFLAMB2C','IGNF','IGN69','IGNF','297',0); INSERT INTO "area" VALUES('IGNF','298','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT II ETENDU','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT II ETENDU',42,50.8499489398734,-4.05378927743516,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB2E.BOURD','NTF Lambert II etendu et NGF-BOURDALOUE',NULL,NULL,'IGNF','NTFLAMB2E','IGNF','BOURD','IGNF','298',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB2E.IGN69','NTF Lambert II etendu et NGF-IGN 1969',NULL,NULL,'IGNF','NTFLAMB2E','IGNF','IGN69','IGNF','298',0); INSERT INTO "area" VALUES('IGNF','299','CORSE - LAMBERT II ETENDU','CORSE - LAMBERT II ETENDU',41.3100751867312,43.5,8,10,0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB2E.IGN78C','NTF Lambert II etendu et NGF-IGN 1978',NULL,NULL,'IGNF','NTFLAMB2E','IGNF','IGN78C','IGNF','299',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB2E.NGF84','NTF Lambert II etendu et NGF-LALLEMAND',NULL,NULL,'IGNF','NTFLAMB2E','IGNF','NGF84','IGNF','298',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB2E.NGC48','NTF Lambert II etendu et NIVELLEMENT GENERAL DE LA CORSE (NGC)',NULL,NULL,'IGNF','NTFLAMB2E','IGNF','NGC48','IGNF','299',0); INSERT INTO "area" VALUES('IGNF','300','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT II CENTRE','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT II CENTRE',45.4499226513968,48.1499588287054,-4.05373473460064,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB2.BOURD','NTF Lambert II et NGF-BOURDALOUE',NULL,NULL,'IGNF','NTFLAMB2','IGNF','BOURD','IGNF','300',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB2.IGN69','NTF Lambert II et NGF-IGN 1969',NULL,NULL,'IGNF','NTFLAMB2','IGNF','IGN69','IGNF','300',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB2.NGF84','NTF Lambert II et NGF-LALLEMAND',NULL,NULL,'IGNF','NTFLAMB2','IGNF','NGF84','IGNF','300',0); INSERT INTO "area" VALUES('IGNF','301','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT III CARTO','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT III CARTO',42.2999888396489,45.4499896606067,-4.05368768512203,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB3C.IGN69','NTF Lambert III carto et NGF-IGN 1969',NULL,NULL,'IGNF','NTFLAMB3C','IGNF','IGN69','IGNF','301',0); INSERT INTO "area" VALUES('IGNF','302','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT III SUD','FRANCE CONTINENTALE (CORSE EXCLUE) - LAMBERT III SUD',42.2999888396489,45.4499896606067,-4.05368768512203,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB3.BOURD','NTF Lambert III et NGF-BOURDALOUE',NULL,NULL,'IGNF','NTFLAMB3','IGNF','BOURD','IGNF','302',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB3.IGN69','NTF Lambert III et NGF-IGN 1969',NULL,NULL,'IGNF','NTFLAMB3','IGNF','IGN69','IGNF','302',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB3.NGF84','NTF Lambert III et NGF-LALLEMAND',NULL,NULL,'IGNF','NTFLAMB3','IGNF','NGF84','IGNF','302',0); INSERT INTO "area" VALUES('IGNF','303','CORSE - LAMBERT IV CARTO','CORSE - LAMBERT IV CARTO',41.3100829886572,43.0200472881681,8,10,0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB4C.IGN78C','NTF Lambert IV carto et NGF-IGN 1978',NULL,NULL,'IGNF','NTFLAMB4C','IGNF','IGN78C','IGNF','303',0); INSERT INTO "area" VALUES('IGNF','304','CORSE - LAMBERT IV CORSE','CORSE - LAMBERT IV CORSE',41.3100829886572,43.0200472881681,8,10,0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB4.IGN78C','NTF Lambert IV et NGF-IGN 1978',NULL,NULL,'IGNF','NTFLAMB4','IGNF','IGN78C','IGNF','304',0); INSERT INTO "compound_crs" VALUES('IGNF','NTFLAMB4.NGC48','NTF Lambert IV et NIVELLEMENT GENERAL DE LA CORSE (NGC)',NULL,NULL,'IGNF','NTFLAMB4','IGNF','NGC48','IGNF','304',0); INSERT INTO "compound_crs" VALUES('IGNF','PDN92GAUSSL.REUN89','Piton des Neiges (1992) Gauss Laborde Reunion et IGN 1989 (REUNION)',NULL,NULL,'IGNF','PDN92GAUSSL','IGNF','REUN89','IGNF','230',0); INSERT INTO "compound_crs" VALUES('IGNF','PDN08GAUSSL.REUN89','Piton des Neiges (2008) Gauss Laborde Reunion et IGN 1989 (REUNION)',NULL,NULL,'IGNF','PDN08GAUSSL','IGNF','REUN89','IGNF','230',0); INSERT INTO "compound_crs" VALUES('IGNF','RGWF96GEO.FUTUNA1997','RESEAU GEODESIQUE DE WALLIS ET FUTUNA 1996 GEOGRAPHIQUES (DMS) et NGWF ILES HORN (FUTUNA ET ALOFI)',NULL,NULL,'IGNF','RGWF96G','IGNF','FUTUNA1997','IGNF','87',0); INSERT INTO "compound_crs" VALUES('IGNF','RGWF96GEO.WALLIS96','RESEAU GEODESIQUE DE WALLIS ET FUTUNA 1996 GEOGRAPHIQUES (DMS) et NGWF WALLIS (MOP 1996)',NULL,NULL,'IGNF','RGWF96G','IGNF','WALLIS96','IGNF','74',0); INSERT INTO "compound_crs" VALUES('IGNF','RGWF96UTM1S.FUTUNA1997','RESEAU GEODESIQUE DE WALLIS ET FUTUNA 1996 UTM SUD FUSEAU 1 et NGWF ILES HORN (FUTUNA ET ALOFI)',NULL,NULL,'IGNF','RGWF96UTM1S','IGNF','FUTUNA1997','IGNF','87',0); INSERT INTO "compound_crs" VALUES('IGNF','RGWF96UTM1S.WALLIS96','RESEAU GEODESIQUE DE WALLIS ET FUTUNA 1996 UTM SUD FUSEAU 1 et NGWF WALLIS (MOP 1996)',NULL,NULL,'IGNF','RGWF96UTM1S','IGNF','WALLIS96','IGNF','74',0); INSERT INTO "compound_crs" VALUES('IGNF','REUN49GAUSSL.REUN89','Reunion Piton des Neiges Gauss Laborde et IGN 1989 (REUNION)',NULL,NULL,'IGNF','REUN49GAUSSL','IGNF','REUN89','IGNF','230',0); INSERT INTO "compound_crs" VALUES('IGNF','REUN49G.REUN89','Reunion Piton des Neiges geographiques (dms) et IGN 1989 (REUNION)',NULL,NULL,'IGNF','REUN49G','IGNF','REUN89','IGNF','56',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09GDD.MART87','RGAF09 geographiques (dd) et IGN 1987 (MARTINIQUE)',NULL,NULL,'IGNF','RGAF09GDD','IGNF','MART87','IGNF','39',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09GDD.GUAD88','RGAF09 geographiques (dd) et IGN 1988 (GUADELOUPE)',NULL,NULL,'IGNF','RGAF09GDD','IGNF','GUAD88','IGNF','79',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09GDD.GUAD88LS','RGAF09 geographiques (dd) et IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,NULL,'IGNF','RGAF09GDD','IGNF','GUAD88LS','IGNF','80',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09GDD.GUAD88MG','RGAF09 geographiques (dd) et IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,NULL,'IGNF','RGAF09GDD','IGNF','GUAD88MG','IGNF','81',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09GDD.GUAD88SB','RGAF09 geographiques (dd) et IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,NULL,'IGNF','RGAF09GDD','IGNF','GUAD88SB','IGNF','82',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09GDD.GUAD88SM','RGAF09 geographiques (dd) et IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,NULL,'IGNF','RGAF09GDD','IGNF','GUAD88SM','IGNF','83',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09GDD.GUAD92LD','RGAF09 geographiques (dd) et IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'IGNF','RGAF09GDD','IGNF','GUAD92LD','IGNF','84',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09GDD.GUAD2008LD','RGAF09 geographiques (dd) et IGN 2008 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'IGNF','RGAF09GDD','IGNF','GUAD2008LD','IGNF','84',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09G.MART87','RGAF09 geographiques (dms) et IGN 1987 (MARTINIQUE)',NULL,NULL,'IGNF','RGAF09G','IGNF','MART87','IGNF','39',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09G.GUAD88','RGAF09 geographiques (dms) et IGN 1988 (GUADELOUPE)',NULL,NULL,'IGNF','RGAF09G','IGNF','GUAD88','IGNF','79',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09G.GUAD88LS','RGAF09 geographiques (dms) et IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,NULL,'IGNF','RGAF09G','IGNF','GUAD88LS','IGNF','80',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09G.GUAD88MG','RGAF09 geographiques (dms) et IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,NULL,'IGNF','RGAF09G','IGNF','GUAD88MG','IGNF','81',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09G.GUAD88SB','RGAF09 geographiques (dms) et IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,NULL,'IGNF','RGAF09G','IGNF','GUAD88SB','IGNF','82',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09G.GUAD88SM','RGAF09 geographiques (dms) et IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,NULL,'IGNF','RGAF09G','IGNF','GUAD88SM','IGNF','83',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09G.GUAD92LD','RGAF09 geographiques (dms) et IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'IGNF','RGAF09G','IGNF','GUAD92LD','IGNF','84',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09G.GUAD2008LD','RGAF09 geographiques (dms) et IGN 2008 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'IGNF','RGAF09G','IGNF','GUAD2008LD','IGNF','84',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09UTM20.MART87','RGAF09 UTM Nord Fuseau 20 et IGN 1987 (MARTINIQUE)',NULL,NULL,'IGNF','RGAF09UTM20','IGNF','MART87','IGNF','39',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09UTM20.GUAD88','RGAF09 UTM Nord Fuseau 20 et IGN 1988 (GUADELOUPE)',NULL,NULL,'IGNF','RGAF09UTM20','IGNF','GUAD88','IGNF','79',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09UTM20.GUAD88LS','RGAF09 UTM Nord Fuseau 20 et IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,NULL,'IGNF','RGAF09UTM20','IGNF','GUAD88LS','IGNF','80',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09UTM20.GUAD88MG','RGAF09 UTM Nord Fuseau 20 et IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,NULL,'IGNF','RGAF09UTM20','IGNF','GUAD88MG','IGNF','81',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09UTM20.GUAD88SB','RGAF09 UTM Nord Fuseau 20 et IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,NULL,'IGNF','RGAF09UTM20','IGNF','GUAD88SB','IGNF','82',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09UTM20.GUAD88SM','RGAF09 UTM Nord Fuseau 20 et IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,NULL,'IGNF','RGAF09UTM20','IGNF','GUAD88SM','IGNF','83',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09UTM20.GUAD92LD','RGAF09 UTM Nord Fuseau 20 et IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'IGNF','RGAF09UTM20','IGNF','GUAD92LD','IGNF','84',0); INSERT INTO "compound_crs" VALUES('IGNF','RGAF09UTM20.GUAD2008LD','RGAF09 UTM Nord Fuseau 20 et IGN 2008 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'IGNF','RGAF09UTM20','IGNF','GUAD2008LD','IGNF','84',0); INSERT INTO "area" VALUES('IGNF','305','FRANCE CONTINENTALE (CORSE EXCLUE) - CC42 (CONIQUE CONFORME ZONE 1)','FRANCE CONTINENTALE (CORSE EXCLUE) - CC42 (CONIQUE CONFORME ZONE 1)',42,43,-5.5,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC42.IGN69','RGF93 CC42 zone 1 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93CC42','IGNF','IGN69','IGNF','305',0); INSERT INTO "area" VALUES('IGNF','306','CORSE - CC42 (CONIQUE CONFORME ZONE 1)','CORSE - CC42 (CONIQUE CONFORME ZONE 1)',41.2,43,8,10,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC42.IGN78C','RGF93 CC42 zone 1 et NGF-IGN 1978',NULL,NULL,'IGNF','RGF93CC42','IGNF','IGN78C','IGNF','306',0); INSERT INTO "area" VALUES('IGNF','307','FRANCE CONTINENTALE (CORSE EXCLUE) - CC43 (CONIQUE CONFORME ZONE 2)','FRANCE CONTINENTALE (CORSE EXCLUE) - CC43 (CONIQUE CONFORME ZONE 2)',42,44,-5.5,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC43.IGN69','RGF93 CC43 zone 2 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93CC43','IGNF','IGN69','IGNF','307',0); INSERT INTO "area" VALUES('IGNF','308','CORSE - CC43 (CONIQUE CONFORME ZONE 2)','CORSE - CC43 (CONIQUE CONFORME ZONE 2)',42,43.5,8,10,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC43.IGN78C','RGF93 CC43 zone 2 et NGF-IGN 1978',NULL,NULL,'IGNF','RGF93CC43','IGNF','IGN78C','IGNF','308',0); INSERT INTO "area" VALUES('IGNF','309','FRANCE CONTINENTALE (CORSE EXCLUE) - CC44 (CONIQUE CONFORME ZONE 3)','FRANCE CONTINENTALE (CORSE EXCLUE) - CC44 (CONIQUE CONFORME ZONE 3)',43,45,-5.5,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC44.IGN69','RGF93 CC44 zone 3 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93CC44','IGNF','IGN69','IGNF','309',0); INSERT INTO "area" VALUES('IGNF','310','FRANCE CONTINENTALE (CORSE EXCLUE) - CC45 (CONIQUE CONFORME ZONE 4)','FRANCE CONTINENTALE (CORSE EXCLUE) - CC45 (CONIQUE CONFORME ZONE 4)',44,46,-5.5,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC45.IGN69','RGF93 CC45 zone 4 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93CC45','IGNF','IGN69','IGNF','310',0); INSERT INTO "area" VALUES('IGNF','311','FRANCE CONTINENTALE (CORSE EXCLUE) - CC46 (CONIQUE CONFORME ZONE 5)','FRANCE CONTINENTALE (CORSE EXCLUE) - CC46 (CONIQUE CONFORME ZONE 5)',45,47,-5.5,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC46.IGN69','RGF93 CC46 zone 5 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93CC46','IGNF','IGN69','IGNF','311',0); INSERT INTO "area" VALUES('IGNF','312','FRANCE CONTINENTALE (CORSE EXCLUE) - CC47 (CONIQUE CONFORME ZONE 6)','FRANCE CONTINENTALE (CORSE EXCLUE) - CC47 (CONIQUE CONFORME ZONE 6)',46,48,-5.5,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC47.IGN69','RGF93 CC47 zone 6 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93CC47','IGNF','IGN69','IGNF','312',0); INSERT INTO "area" VALUES('IGNF','313','FRANCE CONTINENTALE (CORSE EXCLUE) - CC48 (CONIQUE CONFORME ZONE 7)','FRANCE CONTINENTALE (CORSE EXCLUE) - CC48 (CONIQUE CONFORME ZONE 7)',47,49,-5.5,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC48.IGN69','RGF93 CC48 zone 7 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93CC48','IGNF','IGN69','IGNF','313',0); INSERT INTO "area" VALUES('IGNF','314','FRANCE CONTINENTALE (CORSE EXCLUE) - CC49 (CONIQUE CONFORME ZONE 8)','FRANCE CONTINENTALE (CORSE EXCLUE) - CC49 (CONIQUE CONFORME ZONE 8)',48,50,-5.5,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC49.IGN69','RGF93 CC49 zone 8 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93CC49','IGNF','IGN69','IGNF','314',0); INSERT INTO "area" VALUES('IGNF','315','FRANCE CONTINENTALE (CORSE EXCLUE) - CC50 (CONIQUE CONFORME ZONE 9)','FRANCE CONTINENTALE (CORSE EXCLUE) - CC50 (CONIQUE CONFORME ZONE 9)',49,51,-5.5,8.5,0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93CC50.IGN69','RGF93 CC50 zone 9 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93CC50','IGNF','IGN69','IGNF','315',0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93G.IGN69','RGF93 geographiques (dms) et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93G','IGNF','IGN69','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93G.IGN78C','RGF93 geographiques (dms) et NGF-IGN 1978',NULL,NULL,'IGNF','RGF93G','IGNF','IGN78C','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93LAMB93.IGN69','RGF93 Lambert 93 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93LAMB93','IGNF','IGN69','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93LAMB93.IGN78C','RGF93 Lambert 93 et NGF-IGN 1978',NULL,NULL,'IGNF','RGF93LAMB93','IGNF','IGN78C','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93UTM31.IGN69','RGF93 UTM fuseau 31 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93UTM31','IGNF','IGN69','IGNF','286',0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93UTM32.IGN69','RGF93 UTM fuseau 32 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93UTM32','IGNF','IGN69','IGNF','285',0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93UTM32.IGN78C','RGF93 UTM fuseau 32 et NGF-IGN 1978',NULL,NULL,'IGNF','RGF93UTM32','IGNF','IGN78C','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','RGF93UTM30.IGN69','RGF93 UTM NORD FUSEAU 30 et NGF-IGN 1969',NULL,NULL,'IGNF','RGF93UTM30','IGNF','IGN69','IGNF','284',0); INSERT INTO "compound_crs" VALUES('IGNF','RGFG95G.GUYA77','RGFG95 geographiques (dms) et NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'IGNF','RGFG95G','IGNF','GUYA77','IGNF','10',0); INSERT INTO "compound_crs" VALUES('IGNF','RGFG95UTM21.GUYA77','RGFG95 UTM Nord f.21 et NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'IGNF','RGFG95UTM21','IGNF','GUYA77','IGNF','170',0); INSERT INTO "compound_crs" VALUES('IGNF','RGFG95UTM22.GUYA77','RGFG95 UTM Nord f.22 et NIVELLEMENT GENERAL DE GUYANE (NGG) 1977',NULL,NULL,'IGNF','RGFG95UTM22','IGNF','GUYA77','IGNF','171',0); INSERT INTO "compound_crs" VALUES('IGNF','RGM04GDD.MAYO53','RGM04 geographiques (dd) et SHOM 1953 (MAYOTTE)',NULL,NULL,'IGNF','RGM04GDD','IGNF','MAYO53','IGNF','5',0); INSERT INTO "compound_crs" VALUES('IGNF','RGM04G.MAYO53','RGM04 geographiques (dms) et SHOM 1953 (MAYOTTE)',NULL,NULL,'IGNF','RGM04G','IGNF','MAYO53','IGNF','5',0); INSERT INTO "compound_crs" VALUES('IGNF','RGM04UTM38S.MAYO53','RGM04 UTM Sud fuseau 38 et SHOM 1953 (MAYOTTE)',NULL,NULL,'IGNF','RGM04UTM38S','IGNF','MAYO53','IGNF','5',0); INSERT INTO "compound_crs" VALUES('IGNF','RGNCG.LIFOU91','RGNC geographiques (dms) et NIVELLEMENT GENERAL DE LIFOU (IGN 1991 LF)',NULL,NULL,'IGNF','RGNCG','IGNF','LIFOU91','IGNF','35',0); INSERT INTO "compound_crs" VALUES('IGNF','RGNCG.MARE91','RGNC geographiques (dms) et NIVELLEMENT GENERAL DE MARE (IGN 1991 MR)',NULL,NULL,'IGNF','RGNCG','IGNF','MARE91','IGNF','38',0); INSERT INTO "compound_crs" VALUES('IGNF','RGNCG.NCAL69','RGNC geographiques (dms) et NIVELLEMENT GENERAL DE NOUVELLE-CALEDONIE (NGNC)',NULL,NULL,'IGNF','RGNCG','IGNF','NCAL69','IGNF','21',0); INSERT INTO "compound_crs" VALUES('IGNF','RGNCG.PINS78','RGNC geographiques (dms) et SHOM 1978 (ILE DES PINS)',NULL,NULL,'IGNF','RGNCG','IGNF','PINS78','IGNF','31',0); INSERT INTO "compound_crs" VALUES('IGNF','RGNCLAMBNC.LIFOU91','RGNC Lambert Nouvelle-Caledonie et NIVELLEMENT GENERAL DE LIFOU (IGN 1991 LF)',NULL,NULL,'IGNF','RGNCLAMBNC','IGNF','LIFOU91','IGNF','35',0); INSERT INTO "compound_crs" VALUES('IGNF','RGNCLAMBNC.MARE91','RGNC Lambert Nouvelle-Caledonie et NIVELLEMENT GENERAL DE MARE (IGN 1991 MR)',NULL,NULL,'IGNF','RGNCLAMBNC','IGNF','MARE91','IGNF','38',0); INSERT INTO "compound_crs" VALUES('IGNF','RGNCLAMBNC.NCAL69','RGNC Lambert Nouvelle-Caledonie et NIVELLEMENT GENERAL DE NOUVELLE-CALEDONIE (NGNC)',NULL,NULL,'IGNF','RGNCLAMBNC','IGNF','NCAL69','IGNF','21',0); INSERT INTO "compound_crs" VALUES('IGNF','RGNCLAMBNC.PINS78','RGNC Lambert Nouvelle-Caledonie et SHOM 1978 (ILE DES PINS)',NULL,NULL,'IGNF','RGNCLAMBNC','IGNF','PINS78','IGNF','31',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFG.BORA01','RGPF geographiques (dms) et BORA_SAU 2001',NULL,NULL,'IGNF','RGPFG','IGNF','BORA01','IGNF','76',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFG.HUAH01','RGPF geographiques (dms) et HUAHINE_SAU 2001',NULL,NULL,'IGNF','RGPFG','IGNF','HUAH01','IGNF','78',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFG.MAUPITI01','RGPF geographiques (dms) et MAUPITI_SAU 2001',NULL,NULL,'IGNF','RGPFG','IGNF','MAUPITI01','IGNF','40',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFG.MOOREA81','RGPF geographiques (dms) et MOOREA 1981 (MOOREA_SAU 2001)',NULL,NULL,'IGNF','RGPFG','IGNF','MOOREA81','IGNF','42',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFG.RAIA01','RGPF geographiques (dms) et RAIATEA_SAU 2001',NULL,NULL,'IGNF','RGPFG','IGNF','RAIA01','IGNF','51',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFG.TAHAA01','RGPF geographiques (dms) et TAHAA_SAU 2001',NULL,NULL,'IGNF','RGPFG','IGNF','TAHAA01','IGNF','64',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFUTM5S.BORA01','RGPF UTM Sud fuseau 5 et BORA_SAU 2001',NULL,NULL,'IGNF','RGPFUTM5S','IGNF','BORA01','IGNF','76',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFUTM5S.HUAH01','RGPF UTM Sud fuseau 5 et HUAHINE_SAU 2001',NULL,NULL,'IGNF','RGPFUTM5S','IGNF','HUAH01','IGNF','78',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFUTM5S.MAUPITI01','RGPF UTM Sud fuseau 5 et MAUPITI_SAU 2001',NULL,NULL,'IGNF','RGPFUTM5S','IGNF','MAUPITI01','IGNF','40',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFUTM5S.RAIA01','RGPF UTM Sud fuseau 5 et RAIATEA_SAU 2001',NULL,NULL,'IGNF','RGPFUTM5S','IGNF','RAIA01','IGNF','51',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFUTM5S.TAHAA01','RGPF UTM Sud fuseau 5 et TAHAA_SAU 2001',NULL,NULL,'IGNF','RGPFUTM5S','IGNF','TAHAA01','IGNF','64',0); INSERT INTO "compound_crs" VALUES('IGNF','RGPFUTM6S.MOOREA81','RGPF UTM Sud fuseau 6 et MOOREA 1981 (MOOREA_SAU 2001)',NULL,NULL,'IGNF','RGPFUTM6S','IGNF','MOOREA81','IGNF','42',0); INSERT INTO "compound_crs" VALUES('IGNF','RGR92G.REUN89','RGR92 geographiques (dms) et IGN 1989 (REUNION)',NULL,NULL,'IGNF','RGR92G','IGNF','REUN89','IGNF','56',0); INSERT INTO "compound_crs" VALUES('IGNF','RGR92UTM40S.REUN89','RGR92 UTM 40 Sud et IGN 1989 (REUNION)',NULL,NULL,'IGNF','RGR92UTM40S','IGNF','REUN89','IGNF','56',0); INSERT INTO "compound_crs" VALUES('IGNF','RGSPM06G.STPM50','RGSPM06 geographiques (dms) et DANGER 1950 (SAINT-PIERRE-ET-MIQUELON)',NULL,NULL,'IGNF','RGSPM06G','IGNF','STPM50_V','IGNF','60',0); INSERT INTO "compound_crs" VALUES('IGNF','RGSPM06U21.STPM50','RGSPM06 UTM Nord fuseau 21 et DANGER 1950 (SAINT-PIERRE-ET-MIQUELON)',NULL,NULL,'IGNF','RGSPM06U21','IGNF','STPM50_V','IGNF','60',0); INSERT INTO "compound_crs" VALUES('IGNF','RGTAAF07GDD.KERG62','RGTAAF07 geographiques (dd) et IGN 1962 (KERGUELEN)',NULL,NULL,'IGNF','RGTAAF07GDD','IGNF','KERG62','IGNF','34',0); INSERT INTO "compound_crs" VALUES('IGNF','RGTAAF07G.KERG62','RGTAAF07 geographiques (dms) et IGN 1962 (KERGUELEN)',NULL,NULL,'IGNF','RGTAAF07G','IGNF','KERG62','IGNF','34',0); INSERT INTO "compound_crs" VALUES('IGNF','RGTAAFUTM42S.KERG62','RGTAAF07 UTM Sud fuseau 42 et IGN 1962 (KERGUELEN)',NULL,NULL,'IGNF','RGTAAFUTM42S','IGNF','KERG62','IGNF','34',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFG.MART87','RRAF geographiques (dms) et IGN 1987 (MARTINIQUE)',NULL,NULL,'IGNF','RRAFG','IGNF','MART87','IGNF','39',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFG.GUAD88','RRAF geographiques (dms) et IGN 1988 (GUADELOUPE)',NULL,NULL,'IGNF','RRAFG','IGNF','GUAD88','IGNF','79',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFG.GUAD88LS','RRAF geographiques (dms) et IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,NULL,'IGNF','RRAFG','IGNF','GUAD88LS','IGNF','80',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFG.GUAD88MG','RRAF geographiques (dms) et IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,NULL,'IGNF','RRAFG','IGNF','GUAD88MG','IGNF','81',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFG.GUAD88SB','RRAF geographiques (dms) et IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,NULL,'IGNF','RRAFG','IGNF','GUAD88SB','IGNF','82',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFG.GUAD88SM','RRAF geographiques (dms) et IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,NULL,'IGNF','RRAFG','IGNF','GUAD88SM','IGNF','83',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFG.GUAD92LD','RRAF geographiques (dms) et IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'IGNF','RRAFG','IGNF','GUAD92LD','IGNF','84',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFUTM20.MART87','RRAF UTM Nord fuseau 20 et IGN 1987 (MARTINIQUE)',NULL,NULL,'IGNF','RRAFUTM20','IGNF','MART87','IGNF','39',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFUTM20.GUAD88','RRAF UTM Nord fuseau 20 et IGN 1988 (GUADELOUPE)',NULL,NULL,'IGNF','RRAFUTM20','IGNF','GUAD88','IGNF','79',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFUTM20.GUAD88LS','RRAF UTM Nord fuseau 20 et IGN 1988 LS (GUADELOUPE / LES SAINTES)',NULL,NULL,'IGNF','RRAFUTM20','IGNF','GUAD88LS','IGNF','80',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFUTM20.GUAD88MG','RRAF UTM Nord fuseau 20 et IGN 1988 MG (GUADELOUPE / MARIE-GALANTE)',NULL,NULL,'IGNF','RRAFUTM20','IGNF','GUAD88MG','IGNF','81',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFUTM20.GUAD88SB','RRAF UTM Nord fuseau 20 et IGN 1988 SB (GUADELOUPE / SAINT-BARTHELEMY)',NULL,NULL,'IGNF','RRAFUTM20','IGNF','GUAD88SB','IGNF','82',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFUTM20.GUAD88SM','RRAF UTM Nord fuseau 20 et IGN 1988 SM (GUADELOUPE / SAINT-MARTIN)',NULL,NULL,'IGNF','RRAFUTM20','IGNF','GUAD88SM','IGNF','83',0); INSERT INTO "compound_crs" VALUES('IGNF','RRAFUTM20.GUAD92LD','RRAF UTM Nord fuseau 20 et IGN 1992 LD (GUADELOUPE / LA DESIRADE)',NULL,NULL,'IGNF','RRAFUTM20','IGNF','GUAD92LD','IGNF','84',0); INSERT INTO "compound_crs" VALUES('IGNF','ST84G.PINS78','ST 84 ILE DES PINS geographiques (dms) et SHOM 1978 (ILE DES PINS)',NULL,NULL,'IGNF','ST84G','IGNF','PINS78','IGNF','31',0); INSERT INTO "compound_crs" VALUES('IGNF','ST84UTM58S.PINS78','ST 84 ILE DES PINS UTM Sud fuseau 58 et SHOM 1978 (ILE DES PINS)',NULL,NULL,'IGNF','ST84UTM58S','IGNF','PINS78','IGNF','31',0); INSERT INTO "compound_crs" VALUES('IGNF','STPM50UTM21.STPM50','St-Pierre-et-Miquelon UTM Nord f.21 et DANGER 1950 (SAINT-PIERRE-ET-MIQUELON)',NULL,NULL,'IGNF','STPM50UTM21','IGNF','STPM50_V','IGNF','60',0); INSERT INTO "compound_crs" VALUES('IGNF','STPM50G.STPM50','St Pierre Miquelon 1950 geographiques (dms) et DANGER 1950 (SAINT-PIERRE-ET-MIQUELON)',NULL,NULL,'IGNF','STPM50G','IGNF','STPM50_V','IGNF','60',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHAAG.TAHAA01','Tahaa geographiques (dms) et TAHAA_SAU 2001',NULL,NULL,'IGNF','TAHAAG','IGNF','TAHAA01','IGNF','64',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHAAUTM5S.TAHAA01','Tahaa UTM Sud fuseau 5 et TAHAA_SAU 2001',NULL,NULL,'IGNF','TAHAAUTM5S','IGNF','TAHAA01','IGNF','64',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHI79G.TAHITI66','Tahiti (IGN79) geographiques (dms) et IGN 1966 (TAHITI)',NULL,NULL,'IGNF','TAHI79G','IGNF','TAHITI66','IGNF','65',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHI79UTM6S.TAHITI66','Tahiti (IGN79) UTM Sud fuseau 6 et IGN 1966 (TAHITI)',NULL,NULL,'IGNF','TAHI79UTM6S','IGNF','TAHITI66','IGNF','65',0); INSERT INTO "compound_crs" VALUES('IGNF','TAHI51UTM6S.TAHITI66','TAHITI TERME NORD UTM SUD FUSEAU 6 et IGN 1966 (TAHITI)',NULL,NULL,'IGNF','TAHI51UTM6S','IGNF','TAHITI66','IGNF','65',0); INSERT INTO "compound_crs" VALUES('IGNF','WALL76G.WALLIS96','Wallis (MOP 1976) geographiques (dms) et NGWF WALLIS (MOP 1996)',NULL,NULL,'IGNF','WALL76G','IGNF','WALLIS96','IGNF','74',0); INSERT INTO "compound_crs" VALUES('IGNF','WALL76UTM1S.WALLIS96','Wallis (MOP 1976) UTM Sud fuseau 1 et NGWF WALLIS (MOP 1996)',NULL,NULL,'IGNF','WALL76UTM1S','IGNF','WALLIS96','IGNF','74',0); INSERT INTO "compound_crs" VALUES('IGNF','WALL78G.WALLIS96','Wallis (MOP 1978) geographiques (dms) et NGWF WALLIS (MOP 1996)',NULL,NULL,'IGNF','WALL78G','IGNF','WALLIS96','IGNF','74',0); INSERT INTO "compound_crs" VALUES('IGNF','WALL78UTM1S.WALLIS96','Wallis (MOP 1978) UTM Sud fuseau 1 et NGWF WALLIS (MOP 1996)',NULL,NULL,'IGNF','WALL78UTM1S','IGNF','WALLIS96','IGNF','74',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS72G.IGN69','WGS72 geographiques (dms) et NGF-IGN 1969',NULL,NULL,'IGNF','WGS72G','IGNF','IGN69','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS72G.IGN78C','WGS72 geographiques (dms) et NGF-IGN 1978',NULL,NULL,'IGNF','WGS72G','IGNF','IGN78C','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS72G.NGC48','WGS72 geographiques (dms) et NIVELLEMENT GENERAL DE LA CORSE (NGC)',NULL,NULL,'IGNF','WGS72G','IGNF','NGC48','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS72UTM30.IGN69','WGS72 UTM fuseau 30 et NGF-IGN 1969',NULL,NULL,'IGNF','WGS72UTM30','IGNF','IGN69','IGNF','284',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS72UTM31.IGN69','WGS72 UTM fuseau 31 et NGF-IGN 1969',NULL,NULL,'IGNF','WGS72UTM31','IGNF','IGN69','IGNF','286',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS72UTM32.IGN69','WGS72 UTM fuseau 32 et NGF-IGN 1969',NULL,NULL,'IGNF','WGS72UTM32','IGNF','IGN69','IGNF','285',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS72UTM32.IGN78C','WGS72 UTM fuseau 32 et NGF-IGN 1978',NULL,NULL,'IGNF','WGS72UTM32','IGNF','IGN78C','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS72UTM32.NGC48','WGS72 UTM fuseau 32 et NIVELLEMENT GENERAL DE LA CORSE (NGC)',NULL,NULL,'IGNF','WGS72UTM32','IGNF','NGC48','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS84GDD.IGN69','WGS84 geographiques (dd) et NGF-IGN 1969',NULL,NULL,'IGNF','WGS84GDD','IGNF','IGN69','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS84GDD.IGN78C','WGS84 geographiques (dd) et NGF-IGN 1978',NULL,NULL,'IGNF','WGS84GDD','IGNF','IGN78C','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS84G.IGN69','WGS84 geographiques (dms) et NGF-IGN 1969',NULL,NULL,'IGNF','WGS84G','IGNF','IGN69','IGNF','85',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS84G.IGN78C','WGS84 geographiques (dms) et NGF-IGN 1978',NULL,NULL,'IGNF','WGS84G','IGNF','IGN78C','IGNF','86',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS84UTM30.IGN69','WGS84 UTM fuseau 30 et NGF-IGN 1969',NULL,NULL,'IGNF','WGS84UTM30','IGNF','IGN69','IGNF','284',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS84UTM31.IGN69','WGS84 UTM fuseau 31 et NGF-IGN 1969',NULL,NULL,'IGNF','WGS84UTM31','IGNF','IGN69','IGNF','286',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS84UTM32.IGN69','WGS84 UTM NORD FUSEAU 32 et NGF-IGN 1969',NULL,NULL,'IGNF','WGS84UTM32','IGNF','IGN69','IGNF','285',0); INSERT INTO "compound_crs" VALUES('IGNF','WGS84UTM32.IGN78C','WGS84 UTM NORD FUSEAU 32 et NGF-IGN 1978',NULL,NULL,'IGNF','WGS84UTM32','IGNF','IGN78C','IGNF','86',0); --- Grid alternatives INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ntf_r93.gsb', -- as referenced by the IGNF registry 'ntf_r93.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf02-Huahine.mnt', -- as referenced by the IGNF registry 'ggpf02-Huahine.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggg00v2.mnt', -- as referenced by the IGNF registry 'ggg00v2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf10-Tahiti.mnt', -- as referenced by the IGNF registry 'ggpf10-Tahiti.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf02-Raiatea.mnt', -- as referenced by the IGNF registry 'ggpf02-Raiatea.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggg00_sbv2.mnt', -- as referenced by the IGNF registry 'ggg00_sbv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/gg10_smv2.mnt', -- as referenced by the IGNF registry 'gg10_smv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAMG2016.mnt', -- as referenced by the IGNF registry 'RAMG2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggker08v2.mnt', -- as referenced by the IGNF registry 'ggker08v2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggspm06v1.mnt', -- as referenced by the IGNF registry 'ggspm06v1.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/gg10_sbv2.mnt', -- as referenced by the IGNF registry 'gg10_sbv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggguy15.mnt', -- as referenced by the IGNF registry 'ggguy15.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/metropole/RAF09.mnt', -- as referenced by the IGNF registry 'RAF09.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf08-Fakarava.mnt', -- as referenced by the IGNF registry 'ggpf08-Fakarava.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggm00v2.mnt', -- as referenced by the IGNF registry 'ggm00v2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf10-Moorea.mnt', -- as referenced by the IGNF registry 'ggpf10-Moorea.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf02-Maupiti.mnt', -- as referenced by the IGNF registry 'ggpf02-Maupiti.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggg00_lsv2.mnt', -- as referenced by the IGNF registry 'ggg00_lsv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggm04v1.mnt', -- as referenced by the IGNF registry 'ggm04v1.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggg00_smv2.mnt', -- as referenced by the IGNF registry 'ggg00_smv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RALD2016.mnt', -- as referenced by the IGNF registry 'RALD2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAR07_bl.gra', -- as referenced by the IGNF registry 'RAR07_bl.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RALS2016.mnt', -- as referenced by the IGNF registry 'RALS2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RALDW842016.mnt', -- as referenced by the IGNF registry 'RALDW842016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf02-Tahaa.mnt', -- as referenced by the IGNF registry 'ggpf02-Tahaa.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAGTBT2016.mnt', -- as referenced by the IGNF registry 'RAGTBT2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/metropole/RAC09.mnt', -- as referenced by the IGNF registry 'RAC09.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/RAMART2016.mnt', -- as referenced by the IGNF registry 'RAMART2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('https://geodesie.ign.fr/contenu/fichiers/documentation/grilles/metropole/RAF18.mnt', -- as referenced by the IGNF registry 'RAF18.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('http://geodesie.ign.fr/contenu/fichiers/documentation/grilles/outremer/ggpf02-Bora.mnt', -- as referenced by the IGNF registry 'ggpf02-Bora.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); --- Null transformations between RRAF and WGS84 adapted from EPSG INSERT INTO "helmert_transformation" VALUES('PROJ','IGNF_RRAF_TO_EPSG_4978','RRAF to WGS 84',NULL,NULL,'EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RRAF','EPSG','4978','IGNF','57',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('PROJ','IGNF_RRAFG_TO_EPSG_4326','RRAFG to WGS 84',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RRAFG','EPSG','4326','IGNF','57',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('PROJ','IGNF_RRAFGDD_TO_EPSG_4326','RRAFGDD to WGS 84',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RRAFGDD','EPSG','4326','IGNF','57',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); --- Null transformations between RGF93 and WGS84 adapted from EPSG INSERT INTO "helmert_transformation" VALUES('PROJ','IGNF_RGF93_TO_EPSG_4978','RGF93 to WGS 84',NULL,NULL,'EPSG','1031','Geocentric translations (geocentric domain)','IGNF','RGF93','EPSG','4978','IGNF','4',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('PROJ','IGNF_RGF93G_TO_EPSG_4326','RGF93G to WGS 84',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93G','EPSG','4326','IGNF','4',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); INSERT INTO "helmert_transformation" VALUES('PROJ','IGNF_RGF93GDD_TO_EPSG_4326','RGF93GDD to WGS 84',NULL,NULL,'EPSG','9603','Geocentric translations (geog2D domain)','IGNF','RGF93GDD','EPSG','4326','IGNF','4',1.0,0.0,0.0,0.0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); --- Concatenated operations INSERT INTO "concatenated_operation" VALUES('IGNF','TSG62_NTFPGRAD_TO_ED50G','Nouvelle Triangulation Francaise Paris grades to ED50G',NULL,'NATIONALE','IGNF','NTFPGRAD','IGNF','ED50G','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG62_NTFPGRAD_TO_ED50G',1,'IGNF','TSG1240'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG62_NTFPGRAD_TO_ED50G',2,'IGNF','TSG62_NTFG_TO_ED50G'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG62_NTFP_TO_ED50G','Nouvelle Triangulation Francaise Paris grades to ED50G',NULL,'NATIONALE','IGNF','NTFP','IGNF','ED50G','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG62_NTFP_TO_ED50G',1,'IGNF','TSG1240_IGNF_NTFP_TO_IGNF_NTFG'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG62_NTFP_TO_ED50G',2,'IGNF','TSG62_NTFG_TO_ED50G'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG62_NTFPGRAD_TO_ED50GEO','Nouvelle Triangulation Francaise Paris grades to ED50GEO',NULL,'NATIONALE','IGNF','NTFPGRAD','IGNF','ED50GEO','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG62_NTFPGRAD_TO_ED50GEO',1,'IGNF','TSG1240'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG62_NTFPGRAD_TO_ED50GEO',2,'IGNF','TSG62_NTFG_TO_ED50GEO'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG62_NTFP_TO_ED50GEO','Nouvelle Triangulation Francaise Paris grades to ED50GEO',NULL,'NATIONALE','IGNF','NTFP','IGNF','ED50GEO','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG62_NTFP_TO_ED50GEO',1,'IGNF','TSG1240_IGNF_NTFP_TO_IGNF_NTFG'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG62_NTFP_TO_ED50GEO',2,'IGNF','TSG62_NTFG_TO_ED50GEO'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84GEODD','Nouvelle Triangulation Francaise Paris grades to WGS84GEODD',NULL,'NATIONALE','IGNF','NTFPGRAD','IGNF','WGS84GEODD','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84GEODD',1,'IGNF','TSG1240'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84GEODD',2,'IGNF','TSG399_NTFG_TO_WGS84GEODD'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFP_TO_WGS84GEODD','Nouvelle Triangulation Francaise Paris grades to WGS84GEODD',NULL,'NATIONALE','IGNF','NTFP','IGNF','WGS84GEODD','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_WGS84GEODD',1,'IGNF','TSG1240_IGNF_NTFP_TO_IGNF_NTFG'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_WGS84GEODD',2,'IGNF','TSG399_NTFG_TO_WGS84GEODD'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84GDD','Nouvelle Triangulation Francaise Paris grades to WGS84GDD',NULL,'NATIONALE','IGNF','NTFPGRAD','IGNF','WGS84GDD','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84GDD',1,'IGNF','TSG1240'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84GDD',2,'IGNF','TSG399_NTFG_TO_WGS84GDD'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFP_TO_WGS84GDD','Nouvelle Triangulation Francaise Paris grades to WGS84GDD',NULL,'NATIONALE','IGNF','NTFP','IGNF','WGS84GDD','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_WGS84GDD',1,'IGNF','TSG1240_IGNF_NTFP_TO_IGNF_NTFG'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_WGS84GDD',2,'IGNF','TSG399_NTFG_TO_WGS84GDD'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84GEO','Nouvelle Triangulation Francaise Paris grades to WGS84GEO',NULL,'NATIONALE','IGNF','NTFPGRAD','IGNF','WGS84GEO','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84GEO',1,'IGNF','TSG1240'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84GEO',2,'IGNF','TSG399_NTFG_TO_WGS84GEO'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFP_TO_WGS84GEO','Nouvelle Triangulation Francaise Paris grades to WGS84GEO',NULL,'NATIONALE','IGNF','NTFP','IGNF','WGS84GEO','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_WGS84GEO',1,'IGNF','TSG1240_IGNF_NTFP_TO_IGNF_NTFG'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_WGS84GEO',2,'IGNF','TSG399_NTFG_TO_WGS84GEO'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84RRAFGEO','Nouvelle Triangulation Francaise Paris grades to WGS84RRAFGEO',NULL,'NATIONALE','IGNF','NTFPGRAD','IGNF','WGS84RRAFGEO','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84RRAFGEO',1,'IGNF','TSG1240'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84RRAFGEO',2,'IGNF','TSG399_NTFG_TO_WGS84RRAFGEO'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFP_TO_WGS84RRAFGEO','Nouvelle Triangulation Francaise Paris grades to WGS84RRAFGEO',NULL,'NATIONALE','IGNF','NTFP','IGNF','WGS84RRAFGEO','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_WGS84RRAFGEO',1,'IGNF','TSG1240_IGNF_NTFP_TO_IGNF_NTFG'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_WGS84RRAFGEO',2,'IGNF','TSG399_NTFG_TO_WGS84RRAFGEO'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84G','Nouvelle Triangulation Francaise Paris grades to WGS84G',NULL,'NATIONALE','IGNF','NTFPGRAD','IGNF','WGS84G','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84G',1,'IGNF','TSG1240'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_WGS84G',2,'IGNF','TSG399_NTFG_TO_WGS84G'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFP_TO_WGS84G','Nouvelle Triangulation Francaise Paris grades to WGS84G',NULL,'NATIONALE','IGNF','NTFP','IGNF','WGS84G','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_WGS84G',1,'IGNF','TSG1240_IGNF_NTFP_TO_IGNF_NTFG'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_WGS84G',2,'IGNF','TSG399_NTFG_TO_WGS84G'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFPGRAD_TO_4326','Nouvelle Triangulation Francaise Paris grades to 4326',NULL,'NATIONALE','IGNF','NTFPGRAD','EPSG','4326','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_4326',1,'IGNF','TSG1240'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFPGRAD_TO_4326',2,'IGNF','TSG399_NTFG_TO_4326'); INSERT INTO "concatenated_operation" VALUES('IGNF','TSG399_NTFP_TO_4326','Nouvelle Triangulation Francaise Paris grades to 4326',NULL,'NATIONALE','IGNF','NTFP','EPSG','4326','IGNF','91',NULL,'1.0.0',0); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_4326',1,'IGNF','TSG1240_IGNF_NTFP_TO_IGNF_NTFG'); INSERT INTO "concatenated_operation_step" VALUES('IGNF','TSG399_NTFP_TO_4326',2,'IGNF','TSG399_NTFG_TO_4326'); -- This file is hand generated. -- -- NOTE: see also grid_alternatives_generated.sql for automatically generated -- entries. -- ------------------------------------------------------ -- grid_packages ------------------------------------------------------ INSERT INTO grid_packages VALUES ('proj-datumgrid', 'Package with grids of general interest', 'https://download.osgeo.org/proj/proj-datumgrid-1.8.zip', 1, 1); INSERT INTO grid_packages VALUES ('proj-datumgrid-north-america', 'Package with grids of interest for North-America', 'https://download.osgeo.org/proj/proj-datumgrid-north-america-1.3.zip', 1, 1); INSERT INTO grid_packages VALUES ('proj-datumgrid-europe', 'Package with grids of interest for Europe', 'https://download.osgeo.org/proj/proj-datumgrid-europe-1.5.zip', 1, 1); INSERT INTO grid_packages VALUES ('proj-datumgrid-oceania', 'Package with grids of interest for Oceania', 'https://download.osgeo.org/proj/proj-datumgrid-oceania-1.1.zip', 1, 1); -- not released yet at the time of writing INSERT INTO grid_packages VALUES ('proj-datumgrid-world', 'Package with grids of global extent (too large to be included in proj-datumgrid)', 'https://download.osgeo.org/proj/proj-datumgrid-world-1.0.zip', 1, 1); ------------------------------------------------------ -- grid_alternatives ------------------------------------------------------ INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('null', 'null', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('rgf93_ntf.gsb', 'ntf_r93.gsb', -- the PROJ grid is the reverse way of the EPSG one 'NTv2', 'hgridshift', 1, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NTv1_0.gsb', 'ntv1_can.dat', 'NTv1', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NTv2_0.gsb', 'ntv2_0.gsb', -- just a case change 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('May76v20.gsb', 'MAY76V20.gsb', -- just a case change 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('BETA2007.gsb', 'BETA2007.gsb', -- no change. Just document the package 'NTv2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('BWTA2017.gsb', 'BWTA2017.gsb', -- no change. Just document the package 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('SeTa2016.gsb', 'SeTa2016.gsb', -- no change. Just document the package 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NTv2_SN.gsb', 'NTv2_SN.gsb', -- no change. Just document the package 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('AT_GIS_GRID.gsb', 'AT_GIS_GRID.gsb', -- no change. Just document the package 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nzgd2kgrid0005.gsb', 'nzgd2kgrid0005.gsb', -- no change. Just document the package 'NTv2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('OSTN15_NTv2_OSGBtoETRS.gsb', 'OSTN15_NTv2_OSGBtoETRS.gsb', -- no change. Just document the package 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); -- Continental USA VERTCON: NGVD (19)29 height to NAVD (19)88 height INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('vertconw.94', 'vertconw.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('vertconc.94', 'vertconc.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('vertcone.94', 'vertcone.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- EGM models INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('WW15MGH.GRD', 'egm96_15.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('Und_min2.5x2.5_egm2008_isw=82_WGS84_TideFree.gz', 'egm08_25.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-world', NULL, NULL, NULL, NULL); -- Greenland height models INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gr2000g.gri', 'gvr2000.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ggeoid16.gri', 'gvr2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- Denmark height models INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('dvr90.gtx', 'dvr90.gtx', -- no change. Just document the package 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('dnn.gtx', 'dnn.gtx', -- no change. Just document the package 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); -- Faroe islands height models INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('fvr09.gtx', 'fvr09.gtx', -- no change. Just document the package 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); -- Sweden height models INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('SWEN17_RH2000.gtx', 'SWEN17_RH2000.gtx', -- no change. Just document the package 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); -- Ireland: OSGM15 height, Malin head datum -> ETRS89 ellipsoidal heights INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('OSGM15_Malin.gri', 'OSGM15_Malin.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); -- Northern Ireland: OSGM15 height, Belfast height -> ETRS89 ellipsoidal heights INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('OSGM15_Belfast.gri', 'OSGM15_Belfast.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); ---------------------------- -- US GEOID99 height models ---------------------------- INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g1999u01.bin', 'g1999u01.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g1999u02.bin', 'g1999u02.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g1999u03.bin', 'g1999u03.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g1999u04.bin', 'g1999u04.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g1999u05.bin', 'g1999u05.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g1999u06.bin', 'g1999u06.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g1999u07.bin', 'g1999u07.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g1999u08.bin', 'g1999u08.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- Not mapped: -- g1999a01.gtx to g1999a04.gtx : Alaska -- g1999h01.gtx : Hawaii -- g1999p01.gtx : Puerto Rico ---------------------------- -- US GEOID03 height models ---------------------------- INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('geoid03_conus.bin', 'geoid03_conus.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- Not mapped: -- g2003a01.gtx to g2003a04.gtx : Alaska -- g2003h01.gtx : Hawaii ---g2003p01.gtx : Puerto Rico ---------------------------- -- US GEOID06 height models ---------------------------- INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('geoid06_ak.bin', 'geoid06_ak.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); ---------------------------- -- US GEOID09 height models ---------------------------- INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('geoid09_ak.bin', 'geoid09_ak.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('geoid09_conus.bin', 'geoid09_conus.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g2009g01.bin', 'g2009g01.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g2009s01.bin', 'g2009s01.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g2009p01.bin', 'g2009p01.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- Not mapped: -- g2009h01.gtx : Hawaii ---------------------------- -- US GEOID12B height models ---------------------------- -- CONUS INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g2012bu0.bin', 'g2012bu0.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- Alaska INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g2012ba0.bin', 'g2012ba0.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- Puerto Rico INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g2012bp0.bin', 'g2012bp0.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- Guam INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g2012bg0.bin', 'g2012bg0.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- American Samoa INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g2012bs0.bin', 'g2012bs0.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); ---------------------------- -- US GEOID18 height models ---------------------------- INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g2018u0.bin', 'g2018u0.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('g2018p0.bin', 'g2018p0.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); ---------------------------- -- French vertical grids ---------------------------- INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('RAF09.mnt', 'RAF09.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('RAF18.tac', 'RAF18.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('RAC09.mnt', 'RAC09.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ggm00.txt', 'ggm00v2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ggg00.txt', 'ggg00v2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ggg00_mg.txt', 'ggg00_mgv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ggg00_sm.txt', 'ggg00_smv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ggg00_ls.txt', 'ggg00_lsv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ggg00_ld.txt', 'RALDW842016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('RALDW842016.mnt', 'RALDW842016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ggg00_sb.txt', 'ggg00_sbv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gg10_mart.txt', 'RAMART2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('RAMART2016.mnt', 'RAMART2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gg10_gtbt.txt', 'RAGTBT2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('RAGTBT2016.mnt', 'RAGTBT2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gg10_mg.txt', 'RAMG2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('RAMG2016.mnt', 'RAMG2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gg10_sm.txt', 'gg10_smv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gg10_smv2.mnt', 'gg10_smv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gg10_ls.txt', 'RALS2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('RALS2016.mnt', 'RALS2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gg10_ld.txt', 'RALD2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('RALD2016.mnt', 'RALD2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gg10_sb.txt', 'gg10_sbv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gg10_sbv2.mnt', 'gg10_sbv2.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ggguy00.txt', 'ggguy15.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ggr99.txt', 'RAR07_bl.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('GGSPM06v1.mnt', 'ggspm06v1.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('RASPM2018.mnt', 'RASPM2018.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); ---------------------------- -- Australian grids ---------------------------- INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('A66 National (13.09.01).gsb', 'A66_National_13_09_01.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('National 84 (02.07.01).gsb', 'National_84_02_07_01.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('GDA94_GDA2020_conformal.gsb', 'GDA94_GDA2020_conformal.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('GDA94_GDA2020_conformal_and_distortion.gsb', 'GDA94_GDA2020_conformal_and_distortion.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('GDA94_GDA2020_conformal_christmas_island.gsb', 'GDA94_GDA2020_conformal_christmas_island.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('GDA94_GDA2020_conformal_cocos_island.gsb', 'GDA94_GDA2020_conformal_cocos_island.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('AUSGeoid09_GDA94_V1.01_DOV_windows.gsb', -- source file contains undulation in first band, and deflection in 2nd and 3d band 'AUSGeoid09_V1.01.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('AUSGeoid2020_windows_binary.gsb', -- source file contains undulation in first band, and deflection in 2nd and 3d band 'AUSGeoid2020_20180201.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) SELECT grid_name, 'AUSGeoid98.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL FROM grid_transformation WHERE grid_name LIKE '%DAT.htm' AND name LIKE 'GDA94 to AHD height%'; -- Netherlands / RDNAP (non-free grids) INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('naptrans2008.gtx', 'naptrans2008.gtx', 'GTX', 'geoid_like', 0, NULL, -- package name 'https://salsa.debian.org/debian-gis-team/proj-rdnap/raw/upstream/2008/naptrans2008.gtx', 1, -- direct download 0, -- non-freely licensed. See https://salsa.debian.org/debian-gis-team/proj-rdnap/raw/master/debian/copyright NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('rdtrans2008.gsb', 'rdtrans2008.gsb', 'NTv2', 'hgridshift', 0, NULL, -- package name 'https://salsa.debian.org/debian-gis-team/proj-rdnap/raw/upstream/2008/rdtrans2008.gsb', 1, -- direct download 0, -- non-freely licensed. See https://salsa.debian.org/debian-gis-team/proj-rdnap/raw/master/debian/copyright NULL); -- Belgium INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('bd72lb72_etrs89lb08.gsb', 'bd72lb72_etrs89lb08.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); -- Switzerland INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('CHENyx06a.gsb', 'CHENyx06a.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('CHENyx06_ETRS.gsb', 'CHENyx06_ETRS.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); -- Spain INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('100800401.gsb', '100800401.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); -- Portugal INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('DLx_ETRS89_geo.gsb', 'DLx_ETRS89_geo.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('D73_ETRS89_geo.gsb', 'D73_ETRS89_geo.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); -- Canada provincial grids INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('AB_CSRS.DAC', 'ABCSRSV4.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('CRD27_00.GSB', 'CRD27_00.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('CRD93_00.GSB', 'CRD93_00.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NVI93_05.GSB', 'NVI93_05.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('BC_27_05.GSB', 'BC_27_05.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('BC_93_05.GSB', 'BC_93_05.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NB7783v2.gsb', -- case difference on extension ! 'NB7783v2.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NB2783v2.gsb', -- case difference on extension ! 'NB2783v2.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('GS7783.GSB', 'GS7783.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NS778302.gsb', -- case difference on extension ! 'NS778302.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ON27CSv1.GSB', 'ON27CSv1.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ON76CSv1.GSB', 'ON76CSv1.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ON83CSv1.GSB', 'ON83CSv1.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('TOR27CSv1.GSB', 'TO27CSv1.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('PE7783V2.gsb', -- case difference on extension ! 'PE7783V2.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NA27NA83.GSB', 'na27na83.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- two grid names in EPSG point to the same file distributed by NRCan INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NA27SCRS.GSB', 'NA27SCRS.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('QUE27-98.gsb', 'NA27SCRS.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('CQ77NA83.GSB', 'cq77na83.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('CGQ77-98.gsb', 'CQ77SCRS.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- two grid names in EPSG point to the same file distributed by NRCan INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NA83SCRS.GSB', 'NA83SCRS.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('NAD83-98.gsb', 'NA83SCRS.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('SK27-98.gsb', -- case difference on extension ! 'SK27-98.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('SK83-98.gsb', -- case difference on extension ! 'SK83-98.GSB', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('HT2_0.byn', 'HT2_2010v70.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('CGG2013i08a.byn', 'CGG2013ai08.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('CGG2013n83a.byn', 'CGG2013an83.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('CGG2013i83.byn', 'CGG2013i08.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('CGG2013n83.byn', 'CGG2013n83.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- Iceland INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ISN93_ISN2016.gsb', 'ISN93_ISN2016.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ISN2004_ISN2016.gsb', 'ISN2004_ISN2016.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('Icegeoid_ISN2004.gtx', 'Icegeoid_ISN2004.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('Icegeoid_ISN93.gtx', 'Icegeoid_ISN93.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('Icegeoid_ISN2016.gtx', 'Icegeoid_ISN2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); -- New Zealand grid shift models. EPSG names are not for GTX files (at time of writing) INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('auckland-1946-to-nzvd2016-conversion.csv', 'auckht1946-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('bluff-1955-to-nzvd2016-conversion.csv', 'blufht1955-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('dunedin-1958-to-nzvd2016-conversion.csv', 'duneht1958-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('dunedin-bluff-1960-to-nzvd2016-conversion.csv', 'dublht1960-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gisborne-1926-to-nzvd2016-conversion.csv', 'gisbht1926-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('lyttelton-1937-to-nzvd2016-conversion.csv', 'lyttht1937-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('moturiki-1953-to-nzvd2016-conversion.csv', 'motuht1953-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('napier-1962-to-nzvd2016-conversion.csv', 'napiht1962-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nelson-1955-to-nzvd2016-conversion.csv', 'nelsht1955-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('onetreepoint-1964-to-nzvd2016-conversion.csv', 'ontpht1964-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('stewartisland-1977-to-nzvd2016-conversion.csv', 'stisht1977-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('taranaki-1970-to-nzvd2016-conversion.csv', 'taraht1970-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('wellington-1953-to-nzvd2016-conversion.csv', 'wellht1953-nzvd2016.gtx', 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); -- WARNING: this builds the new entries from the above deprecated ones -- A check has been added in commit.sql to verify that a mapping from -- auckht1946-nzvd2016.gtx exists in this table, due to the below insert INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) SELECT proj_grid_name, proj_grid_name, 'GTX', 'vgridshift', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL FROM grid_alternatives WHERE proj_grid_name LIKE '%-nzvd2016.gtx'; -- Superseded INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('New_Zealand_Quasigeoid_2016.csv', 'nzgeoid2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nzgeoid2016.gtx', 'nzgeoid2016.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); -- Superseded INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nzgeoid09.sid', 'nzgeoid2009.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nzgeoid2009.gtx', 'nzgeoid2009.gtx', 'GTX', 'geoid_like', 0, 'proj-datumgrid-oceania', NULL, NULL, NULL, NULL); --- This file has been generated by scripts/build_grid_alternatives_generated.py. DO NOT EDIT ! -- NADCON (NAD27 -> NAD83) entries INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('conus.las', 'conus', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('alaska.las', 'alaska', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('hawaii.las', 'hawaii', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('prvi.las', 'prvi', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('stgeorge.las', 'stgeorge', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('stlrnc.las', 'stlrnc', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('stpaul.las', 'stpaul', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); -- NAD83 -> NAD83(HPGN) entries INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('alhpgn.las', 'alhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('arhpgn.las', 'arhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('azhpgn.las', 'azhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('cnhpgn.las', 'cnhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('cohpgn.las', 'cohpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('cshpgn.las', 'cshpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('emhpgn.las', 'emhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('eshpgn.las', 'eshpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ethpgn.las', 'ethpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('flhpgn.las', 'FL', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('gahpgn.las', 'gahpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('guhpgn.las', 'guhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('hihpgn.las', 'hihpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('iahpgn.las', 'iahpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ilhpgn.las', 'ilhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('inhpgn.las', 'inhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('kshpgn.las', 'kshpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('kyhpgn.las', 'kyhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('lahpgn.las', 'lahpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('mdhpgn.las', 'MD', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('mehpgn.las', 'mehpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('mihpgn.las', 'mihpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('mnhpgn.las', 'mnhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('mohpgn.las', 'mohpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('mshpgn.las', 'mshpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nbhpgn.las', 'nbhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nchpgn.las', 'nchpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ndhpgn.las', 'ndhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nehpgn.las', 'nehpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('njhpgn.las', 'njhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nmhpgn.las', 'nmhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nvhpgn.las', 'nvhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('nyhpgn.las', 'nyhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('ohhpgn.las', 'ohhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('okhpgn.las', 'okhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('pahpgn.las', 'pahpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('pvhpgn.las', 'pvhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('schpgn.las', 'schpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('sdhpgn.las', 'sdhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('tnhpgn.las', 'TN', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('uthpgn.las', 'uthpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('vahpgn.las', 'vahpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('wihpgn.las', 'WI', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('wmhpgn.las', 'wmhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('wohpgn.las', 'WO', 'CTable2', 'hgridshift', 0, 'proj-datumgrid', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('wshpgn.las', 'wshpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('wthpgn.las', 'wthpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('wvhpgn.las', 'wvhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); INSERT INTO grid_alternatives(original_grid_name, proj_grid_name, proj_grid_format, proj_method, inverse_direction, package_name, url, direct_download, open_license, directory) VALUES ('wyhpgn.las', 'wyhpgn.gsb', 'NTv2', 'hgridshift', 0, 'proj-datumgrid-north-america', NULL, NULL, NULL, NULL); -- This file is hand generated. INSERT INTO "geodetic_crs" VALUES('OGC','CRS84','WGS 84 (CRS84)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6326','EPSG','1262',NULL,0); INSERT INTO "other_transformation" VALUES('PROJ','CRS84_TO_EPSG_4326','OGC:CRS84 to WGS 84',NULL,NULL,'EPSG','9843','Axis Order Reversal (2D)','OGC','CRS84','EPSG','4326','EPSG','1262',0.0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); -- alias of EPSG:3857 INSERT INTO "projected_crs" VALUES('EPSG','900913','Google Maps Global Mercator',NULL,NULL,'EPSG','4499','EPSG','4326','EPSG','3856','EPSG','3544',NULL,1); -- ('EPSG','7001','ETRS89 to NAP height (1)') lacks an interpolationCRS with Amersfoort / EPSG:4289 -- See https://salsa.debian.org/debian-gis-team/proj-rdnap/blob/debian/2008-8/Use%20of%20RDTRANS2008%20and%20NAPTRANS2008.pdf -- "The naptrans2008 VDatum-grid is referenced to the Bessel-1841 ellipsoid" CREATE TABLE dummy(foo); CREATE TRIGGER check_grid_transformation_epsg_7001 BEFORE INSERT ON dummy FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'grid_transformation EPSG:7001 entry is not ETRS89 to NAP height (1)') WHERE NOT EXISTS(SELECT 1 FROM grid_transformation WHERE auth_name = 'EPSG' AND code = '7001' AND name = 'ETRS89 to NAP height (1)'); SELECT RAISE(ABORT, 'grid_transformation EPSG:7001 entry has already an interpolationCRS') WHERE EXISTS(SELECT 1 FROM grid_transformation WHERE auth_name = 'EPSG' AND code = '7001' AND interpolation_crs_auth_name IS NOT NULL); END; INSERT INTO dummy DEFAULT VALUES; DROP TRIGGER check_grid_transformation_epsg_7001; DROP TABLE dummy; UPDATE grid_transformation SET interpolation_crs_auth_name = 'EPSG', interpolation_crs_code = '4289' WHERE auth_name = 'EPSG' AND code = '7001'; -- EPSG:1312 'NAD27 to NAD83 (3)' / NTv1_0.gsb has a accuracy of 1m whereas -- EPSG:1313 'NAD27 to NAD83 (4)' / NTv2_0.gsb has a accuracy of 1.5m -- so we will never select automatically NTv2_0.gsb. Worse the advertize -- accuracy of the NTv1 method UPDATE grid_transformation SET accuracy = 2.0 WHERE auth_name = 'EPSG' AND code = '1312'; -- Same for EPSG:1462 vs EPSG:1573 UPDATE grid_transformation SET accuracy = 2.0 WHERE auth_name = 'EPSG' AND code = '1462'; -- Define the allowed authorities, and their precedence, when researching a -- coordinate operation INSERT INTO authority_to_authority_preference(source_auth_name, target_auth_name, allowed_authorities) VALUES ('any', 'EPSG', 'PROJ,EPSG,any' ); INSERT INTO authority_to_authority_preference(source_auth_name, target_auth_name, allowed_authorities) VALUES ('EPSG', 'EPSG', 'PROJ,EPSG' ); INSERT INTO authority_to_authority_preference(source_auth_name, target_auth_name, allowed_authorities) VALUES ('PROJ', 'EPSG', 'PROJ,EPSG' ); INSERT INTO authority_to_authority_preference(source_auth_name, target_auth_name, allowed_authorities) VALUES ('IGNF', 'EPSG', 'PROJ,IGNF,EPSG' ); INSERT INTO authority_to_authority_preference(source_auth_name, target_auth_name, allowed_authorities) VALUES ('ESRI', 'EPSG', 'PROJ,ESRI,EPSG' ); -- Custom ellipsoids (from proj -le) INSERT INTO "ellipsoid" VALUES('PROJ','ANDRAE','Andrae 1876 (Denmark, Iceland)',NULL,'PROJ','EARTH',6377104.43,'EPSG','9001',300.0,NULL,0); INSERT INTO "ellipsoid" VALUES('PROJ','CPM','Comité international des poids et mesures 1799',NULL,'PROJ','EARTH',6375738.7,'EPSG','9001',334.29,NULL,0); INSERT INTO "ellipsoid" VALUES('PROJ','DELMBR','Delambre 1810 (Belgium)',NULL,'PROJ','EARTH',6376428.0,'EPSG','9001',311.5,NULL,0); INSERT INTO "ellipsoid" VALUES('PROJ','KAULA','Kaula 1961',NULL,'PROJ','EARTH',6378163.0,'EPSG','9001',298.24,NULL,0); INSERT INTO "ellipsoid" VALUES('PROJ','LERCH','Lerch 1979',NULL,'PROJ','EARTH',6378139.0,'EPSG','9001',298.257,NULL,0); INSERT INTO "ellipsoid" VALUES('PROJ','MERIT','MERIT 1983',NULL,'PROJ','EARTH',6378137.0,'EPSG','9001',298.257,NULL,0); INSERT INTO "ellipsoid" VALUES('PROJ','MPRTS','Maupertius 1738',NULL,'PROJ','EARTH',6397300.0,'EPSG','9001',191.0,NULL,0); INSERT INTO "ellipsoid" VALUES('PROJ','NEW_INTL','New International 1967',NULL,'PROJ','EARTH',6378157.5,'EPSG','9001',NULL,6356772.2,0); INSERT INTO "ellipsoid" VALUES('PROJ','WGS60','WGS 60',NULL,'PROJ','EARTH',6378165.0,'EPSG','9001',298.3,NULL,0); -- Extra ellipsoids from IAU2000 dictionary (see https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/OGC_IAU2000_WKT_v2/naifcodes_radii_m_wAsteroids_IAU2000.csv) INSERT INTO "ellipsoid" VALUES('PROJ','EARTH2000','Earth2000',NULL,'PROJ','EARTH',6378140.0,'EPSG','9001',NULL,6356750.0,0); -- Coordinate system ENh for ProjectedCRS 3D. Should be removed once EPSG has such a coordinate system INSERT INTO "coordinate_system" VALUES('PROJ','ENh','Cartesian',3); INSERT INTO "axis" VALUES('PROJ','1','Easting','E','east','PROJ','ENh',1,'EPSG','9001'); INSERT INTO "axis" VALUES('PROJ','2','Northing','N','north','PROJ','ENh',2,'EPSG','9001'); INSERT INTO "axis" VALUES('PROJ','3','Ellipsoidal height','h','up','PROJ','ENh',2,'EPSG','9001'); -- Consider all WGS84 related CRS are equivalent with an accuracy of 2m INSERT INTO "helmert_transformation" VALUES('PROJ','WGS84_TO_WGS84_G730','WGS 84 to WGS 84 (G730)','','Accuracy 2m','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4326','EPSG','9053','EPSG','1262',2.0,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "helmert_transformation" VALUES('PROJ','WGS84_TO_WGS84_G873','WGS 84 to WGS 84 (G873)','','Accuracy 2m','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4326','EPSG','9054','EPSG','1262',2.0,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "helmert_transformation" VALUES('PROJ','WGS84_TO_WGS84_G1150','WGS 84 to WGS 84 (G1150)','','Accuracy 2m','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4326','EPSG','9055','EPSG','1262',2.0,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "helmert_transformation" VALUES('PROJ','WGS84_TO_WGS84_G1674','WGS 84 to WGS 84 (G1674)','','Accuracy 2m','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4326','EPSG','9056','EPSG','1262',2.0,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "helmert_transformation" VALUES('PROJ','WGS84_TO_WGS84_G1762','WGS 84 to WGS 84 (G1762)','','Accuracy 2m','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4326','EPSG','9057','EPSG','1262',2.0,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); INSERT INTO "helmert_transformation" VALUES('PROJ','WGS84_TO_WGS84_TRANSIT','WGS 84 to WGS 84 (Transit)','','Accuracy 2m','EPSG','9603','Geocentric translations (geog2D domain)','EPSG','4326','EPSG','8888','EPSG','1262',2.0,0,0,0,'EPSG','9001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0); ---- Geoid models ----- INSERT INTO "geoid_model" SELECT 'GEOID99', auth_name, code FROM grid_transformation WHERE auth_name = 'EPSG' AND grid_name LIKE 'g1999%' AND deprecated = 0; INSERT INTO "geoid_model" SELECT 'GEOID03', auth_name, code FROM grid_transformation WHERE auth_name = 'EPSG' AND grid_name LIKE 'geoid03%' AND deprecated = 0; INSERT INTO "geoid_model" SELECT 'GEOID06', auth_name, code FROM grid_transformation WHERE auth_name = 'EPSG' AND grid_name LIKE 'geoid06%' AND deprecated = 0; INSERT INTO "geoid_model" SELECT 'GEOID09', auth_name, code FROM grid_transformation WHERE auth_name = 'EPSG' AND grid_name LIKE 'geoid09%' AND deprecated = 0; -- Geoid12A and Geoid12B are identical INSERT INTO "geoid_model" SELECT 'GEOID12A', auth_name, code FROM grid_transformation WHERE auth_name = 'EPSG' AND grid_name LIKE 'g2012b%' AND deprecated = 0; INSERT INTO "geoid_model" SELECT 'GEOID12B', auth_name, code FROM grid_transformation WHERE auth_name = 'EPSG' AND grid_name LIKE 'g2012b%' AND deprecated = 0; INSERT INTO "geoid_model" SELECT 'GEOID18', auth_name, code FROM grid_transformation WHERE auth_name = 'EPSG' AND grid_name LIKE 'g2018%' AND deprecated = 0; COMMIT; CREATE INDEX geodetic_crs_datum_idx ON geodetic_crs(datum_auth_name, datum_code); CREATE INDEX geodetic_datum_ellipsoid_idx ON geodetic_datum(ellipsoid_auth_name, ellipsoid_code); CREATE INDEX supersession_idx ON supersession(superseded_table_name, superseded_auth_name, superseded_code); CREATE INDEX deprecation_idx ON deprecation(table_name, deprecated_auth_name, deprecated_code); CREATE INDEX helmert_transformation_idx ON helmert_transformation_table(source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code); CREATE INDEX grid_transformation_idx ON grid_transformation(source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code); CREATE INDEX other_transformation_idx ON other_transformation(source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code); CREATE INDEX concatenated_operation_idx ON concatenated_operation(source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code); -- Do an explicit foreign_key_check as foreign key checking is a no-op within -- a transaction. Unfortunately we can't ask for this to be an error, so this -- is just for verbose output. In Makefile, we check this separately PRAGMA foreign_key_check; -- Final consistency checks CREATE TABLE dummy(foo); CREATE TRIGGER final_checks BEFORE INSERT ON dummy FOR EACH ROW BEGIN -- check that view definitions have no error SELECT RAISE(ABORT, 'corrupt definition of coordinate_operation_view') WHERE (SELECT 1 FROM coordinate_operation_view LIMIT 1) = 0; SELECT RAISE(ABORT, 'corrupt definition of crs_view') WHERE (SELECT 1 FROM crs_view LIMIT 1) = 0; SELECT RAISE(ABORT, 'corrupt definition of object_view') WHERE (SELECT 1 FROM object_view LIMIT 1) = 0; SELECT RAISE(ABORT, 'corrupt definition of authority_list') WHERE (SELECT 1 FROM authority_list LIMIT 1) = 0; -- test to check that our custom grid transformation overrides are really needed SELECT RAISE(ABORT, 'PROJ grid_transformation defined whereas EPSG has one') WHERE EXISTS (SELECT 1 FROM grid_transformation g1, grid_transformation g2 WHERE lower(g1.grid_name) = lower(g2.grid_name) AND g1.auth_name = 'PROJ' AND g2.auth_name = 'EPSG'); SELECT RAISE(ABORT, 'Arg! there is now a EPSG:102100 object. Hack in createFromUserInput() will no longer work') WHERE EXISTS(SELECT 1 FROM crs_view WHERE auth_name = 'EPSG' AND code = '102100'); -- check coordinate_operation_view "foreign keys" SELECT RAISE(ABORT, 'One coordinate_operation has a broken source_crs link') WHERE EXISTS (SELECT * FROM coordinate_operation_view cov WHERE cov.source_crs_auth_name || cov.source_crs_code NOT IN (SELECT auth_name || code FROM crs_view)); SELECT RAISE(ABORT, 'One coordinate_operation has a broken target_crs link') WHERE EXISTS (SELECT * FROM coordinate_operation_view cov WHERE cov.target_crs_auth_name || cov.target_crs_code NOT IN (SELECT auth_name || code FROM crs_view)); -- check that grids with NTv2 method are properly registered SELECT RAISE(ABORT, 'One grid_transformation with NTv2 has not its source_crs in geodetic_crs table with type = ''geographic 2D''') WHERE EXISTS (SELECT * FROM grid_transformation g WHERE g.method_name = 'NTv2' AND g.source_crs_auth_name || g.source_crs_code NOT IN (SELECT auth_name || code FROM geodetic_crs WHERE type = 'geographic 2D')); SELECT RAISE(ABORT, 'One grid_transformation with NTv2 has not its target_crs in geodetic_crs table with type = ''geographic 2D''') WHERE EXISTS (SELECT * FROM grid_transformation g WHERE g.method_name = 'NTv2' AND g.target_crs_auth_name || g.target_crs_code NOT IN (SELECT auth_name || code FROM geodetic_crs WHERE type = 'geographic 2D')); -- check that grids with HEIGHT_TO_GEOGRAPHIC3D method are properly registered SELECT RAISE(ABORT, 'One grid_transformation with HEIGHT_TO_GEOGRAPHIC3D has not its source_crs in vertical_crs table') WHERE EXISTS (SELECT * FROM grid_transformation g WHERE g.method_code = 'HEIGHT_TO_GEOGRAPHIC3D' AND g.source_crs_auth_name || g.source_crs_code NOT IN (SELECT auth_name || code FROM vertical_crs)); SELECT RAISE(ABORT, 'One grid_transformation with HEIGHT_TO_GEOGRAPHIC3D has not its target_crs in geodetic_crs table with type = ''geographic 3D''') WHERE EXISTS (SELECT * FROM grid_transformation g WHERE g.method_code = 'HEIGHT_TO_GEOGRAPHIC3D' AND g.target_crs_auth_name || g.target_crs_code NOT IN (SELECT auth_name || code FROM geodetic_crs WHERE type = 'geographic 3D')); -- check that grids with Geographic3D to GravityRelatedHeight method are properly registered SELECT RAISE(ABORT, 'One grid_transformation with Geographic3D to GravityRelatedHeight has not its target_crs in vertical_crs table') WHERE EXISTS (SELECT * FROM grid_transformation g WHERE g.deprecated = 0 AND g.method_name LIKE 'Geographic3D to GravityRelatedHeight%' AND g.target_crs_auth_name || g.target_crs_code NOT IN (SELECT auth_name || code FROM vertical_crs)); SELECT RAISE(ABORT, 'One grid_transformation with Geographic3D to GravityRelatedHeight has not its source_crs in geodetic_crs table with type = ''geographic 3D''') WHERE EXISTS (SELECT * FROM grid_transformation g WHERE g.deprecated = 0 AND g.method_name LIKE 'Geographic3D to GravityRelatedHeight%' AND NOT (g.auth_name = 'EPSG' AND g.code IN (7648, 7649, 7650)) AND -- those are wrongly registered as they use a geocentric CRS. Reported to EPSG g.source_crs_auth_name || g.source_crs_code NOT IN (SELECT auth_name || code FROM geodetic_crs WHERE type = 'geographic 3D')); -- check that transformations intersect the area of use of their source/target CRS -- EPSG, ESRI and IGNF have cases where this does not hold. SELECT RAISE(ABORT, 'The area of use of at least one coordinate_operation does not intersect the one of its source CRS') WHERE EXISTS (SELECT * FROM coordinate_operation_view v, crs_view c, area va, area ca WHERE v.deprecated = 0 AND v.auth_name NOT IN ('EPSG', 'ESRI', 'IGNF') AND v.source_crs_auth_name = c.auth_name AND v.source_crs_code = c.code AND v.area_of_use_auth_name = va.auth_name AND v.area_of_use_code = va.code AND c.area_of_use_auth_name = ca.auth_name AND c.area_of_use_code = ca.code AND NOT (ca.south_lat < va.north_lat AND va.south_lat < ca.north_lat)); SELECT RAISE(ABORT, 'The area of use of at least one coordinate_operation does not intersect the one of its target CRS') WHERE EXISTS (SELECT * FROM coordinate_operation_view v, crs_view c, area va, area ca WHERE v.deprecated = 0 AND v.auth_name NOT IN ('EPSG', 'ESRI', 'IGNF') AND v.target_crs_auth_name = c.auth_name AND v.target_crs_code = c.code AND v.area_of_use_auth_name = va.auth_name AND v.area_of_use_code = va.code AND c.area_of_use_auth_name = ca.auth_name AND c.area_of_use_code = ca.code AND NOT (ca.south_lat < va.north_lat AND va.south_lat < ca.north_lat)); -- check geoid_model table SELECT RAISE(ABORT, 'missing GEOID99 in geoid_model') WHERE NOT EXISTS(SELECT 1 FROM geoid_model WHERE name = 'GEOID99'); SELECT RAISE(ABORT, 'missing GEOID03 in geoid_model') WHERE NOT EXISTS(SELECT 1 FROM geoid_model WHERE name = 'GEOID03'); SELECT RAISE(ABORT, 'missing GEOID06 in geoid_model') WHERE NOT EXISTS(SELECT 1 FROM geoid_model WHERE name = 'GEOID06'); SELECT RAISE(ABORT, 'missing GEOID09 in geoid_model') WHERE NOT EXISTS(SELECT 1 FROM geoid_model WHERE name = 'GEOID09'); SELECT RAISE(ABORT, 'missing GEOID12A in geoid_model') WHERE NOT EXISTS(SELECT 1 FROM geoid_model WHERE name = 'GEOID12A'); SELECT RAISE(ABORT, 'missing GEOID12B in geoid_model') WHERE NOT EXISTS(SELECT 1 FROM geoid_model WHERE name = 'GEOID12B'); SELECT RAISE(ABORT, 'missing GEOID18 in geoid_model') WHERE NOT EXISTS(SELECT 1 FROM geoid_model WHERE name = 'GEOID18'); -- check presence of NZ height shift grids SELECT RAISE(ABORT, 'missing NZ height shift grids') WHERE NOT EXISTS(SELECT 1 FROM grid_alternatives WHERE original_grid_name = 'auckht1946-nzvd2016.gtx'); END; INSERT INTO dummy DEFAULT VALUES; DROP TRIGGER final_checks; DROP TABLE dummy; VACUUM;