Skip to content
Snippets Groups Projects
Commit 77efd5ea authored by User expired's avatar User expired
Browse files

added information about srid 82344

parent c208d6d2
No related branches found
No related tags found
No related merge requests found
Upcoming version: Upcoming version:
----------------- -----------------
- added information about srid 82344 (Nikolaus Krismer)
- updated geoserver and geoserver-shell (Nikolaus Krismer) - updated geoserver and geoserver-shell (Nikolaus Krismer)
- gradle version upgrade (Nikolaus Krismer) - gradle version upgrade (Nikolaus Krismer)
- moving targetSrid to config file (Nikolaus Krismer) - moving targetSrid to config file (Nikolaus Krismer)
......
According to [this website](https://www.doag.org/formes/servlet/DocNavi?action=getFile&did=2515316&key=) 82344 is used
by oracle and not an epsg code (it is an SDO code).
SDO 82344 matches SRID 32632 and therefore we need to transform the srid in the database tables.
In PostGIS this can be achieved by using the function UpdateGeometryColumn('st_edges', 'geometry' 32632).
...@@ -3,7 +3,7 @@ INSERT into spatial_ref_sys ( ...@@ -3,7 +3,7 @@ INSERT into spatial_ref_sys (
) values ( ) values (
82344, 82344,
'epsg', 'epsg',
4258, 82344,
'+title=ETRF_1989_UTM_Zone_32N +proj=utm +zone=32 +ellps=WGS84 +lat_0=0 +lon_0=21.45233333333333 +k=0.999600 +x_0=500000.0 +y_0=0 +pm=greenwich +units=m', '+title=ETRF_1989_UTM_Zone_32N +proj=utm +zone=32 +ellps=WGS84 +lat_0=0 +lon_0=21.45233333333333 +k=0.999600 +x_0=500000.0 +y_0=0 +pm=greenwich +units=m',
'PROJCS["UTM Zone 32, Northern Hemisphere (WGS 84)", GEOGCS["GCS_ETRF_1989", DATUM["WGS 84", SPHEROID["WGS_1984", 6378137.0, 298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","62580"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.0174532925199433] AUTHORITY["EPSG","4258"]], PROJECTION["Transverse_Mercator"], 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["m",1.0], AUTHORITY["EPSG","82344"]]' 'PROJCS["UTM Zone 32, Northern Hemisphere (WGS 84)", GEOGCS["GCS_ETRF_1989", DATUM["WGS 84", SPHEROID["WGS_1984", 6378137.0, 298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","62580"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.0174532925199433] AUTHORITY["EPSG","42580"]], PROJECTION["Transverse_Mercator"], PARAMETER["false_easting", 500000.0], PARAMETER["false_northing", 0.0], PARAMETER["central_meridian", 9.0], PARAMETER["scale_factor", 0.999600], PARAMETER["latitude_of_origin", 0.0], UNIT["m",1.0], AUTHORITY["EPSG","82344"]]'
); );
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment