pub const DEPTH_MAX: u8 = 29;Expand description
Constant = 29, i.e. the largest possible depth we can store on a signed positive long (4 bits for base cells + 2 bits per depth + 2 remaining bits (1 use in the unique notation).
use cdshealpix::{DEPTH_MAX};
assert_eq!(29, DEPTH_MAX);