1/**
2 * Enum to used for Meridians to determine the
3 * direction they should face and what type
4 * of meridian they are
5 */
6export enum Orientation {
7  HORIZONTAL,
8  VERTICAL,
9}
10