struct S2Cells::CellUnion

Defined in:

s2_cells/cell_union.cr

Constructors

Instance Method Summary

Constructor Detail

def self.get_difference(x : CellUnion, y : CellUnion) : CellUnion #

[View source]
def self.get_intersection(cell_union : CellUnion, cell_id : CellId) : CellUnion #

[View source]
def self.get_intersection(x : CellUnion, y : CellUnion) : CellUnion #

[View source]
def self.get_union(x : CellUnion, y : CellUnion) : CellUnion #

[View source]
def self.new(cell_ids : Array(CellId) | Nil = nil, raw : Bool = true) #

[View source]

Instance Method Detail

def ==(other : CellUnion) : Bool #

[View source]
def cell_id(i : Int32) : CellId #

[View source]
def cell_ids : Array(CellId) #

[View source]
def contains(other : CellUnion | CellId | Cell | Point) : Bool #

[View source]
def denormalize(min_level : Int32, level_mod : Int32) : Array(CellId) #

[View source]
def expand(min_radius : Angle, max_level_diff : Int32) #

[View source]
def expand(level : Int32) #

[View source]
def get_rect_bound : LatLngRect #

[View source]
def hash : UInt64 #
Description copied from class Object

Generates an UInt64 hash value for this object.

This method must have the property that a == b implies a.hash == b.hash.

The hash value is used along with #== by the Hash class to determine if two objects reference the same hash key.

Subclasses must not override this method. Instead, they must define hash(hasher), though usually the macro def_hash can be used to generate this method.


[View source]
def intersects(other : CellUnion | CellId) : Bool #

[View source]
def normalize #

[View source]
def num_cells : Int32 #

[View source]
def to_s : String #
Description copied from class Object

Returns a nicely readable and concise string representation of this object, typically intended for users.

This method should usually not be overridden. It delegates to #to_s(IO) which can be overridden for custom implementations.

Also see #inspect.


[View source]