aboutsummaryrefslogtreecommitdiff
path: root/data/sql/nkg_post_customizations.sql
blob: 68bf0dbf7221a79f3ee72bdc8dc34775c56336b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

-- Append NKG to authority references
UPDATE
   authority_to_authority_preference
SET
   allowed_authorities = allowed_authorities || ',NKG'
WHERE
   source_auth_name = 'EPSG' AND target_auth_name = 'EPSG';

INSERT INTO "authority_to_authority_preference"
    (source_auth_name,target_auth_name, allowed_authorities)
VALUES
    ('NKG', 'EPSG', 'NKG,PROJ,EPSG');