Source code for hipscat.pixel_tree.pixel_alignment_types

from enum import Enum


[docs] class PixelAlignmentType(str, Enum): """The type of alignment between catalog trees. Like a join, the types describe if nodes should be included if they do not appear in the other catalog"""
[docs] INNER = "inner"
[docs] OUTER = "outer"
[docs] LEFT = "left"
[docs] RIGHT = "right"