Re: [postgis-users] Missing ESRI authority SRIDs in 'spatial_ref_sys'

2023-09-20 Thread karsten
Hi Marco, while I don't know why it might be missing you can simply add it to your table via SQL (got the insert from epsg.io as well) INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 54044, 'ESRI', 54044, 'None', 'PROJCS["World_Hammer_Aitoff",GEOGCS["WGS 84",

[postgis-users] Missing ESRI authority SRIDs in 'spatial_ref_sys'

2023-09-20 Thread Marco Boeringa
Hi, I noticed there are missing ESRI authority SRIDs in the PostGIS 'spatial_ref_sys' table. E.g. the Hammer-Aitof projection, SRID 54044 (https://epsg.io/54044) is missing. Any technical reasons why this is the case, or is the table due for an update? Marco __