1#!/usr/bin/env python3
 2
 3"""This should be the only place where concrete project-specific SIDs are instantiated.
 4
 5The rest of the code, core and project, should use "from chart import project; sid=project.sid(...)"
 6
 7Or, for legacy code, "from chart.project import SID; sid=SID(...)"
 8
 9"""
10
11from chart.sids.sid_epssg import SID_EPSSG
12
13SIDS = [
14    SID_EPSSG(visible=False, operational=False),
15    SID_EPSSG(scid='EPSSGA',
16            sid_num=1,
17            default=True,
18            description='EPSSGA DESCRIPTION'),
19]