1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// pub fn load_full() -> Vec<u8> {
//     include_bytes!("../combined-with-oceans.pb").to_vec()
// }

pub fn load_reduced() -> Vec<u8> {
    include_bytes!("../combined-with-oceans.reduce.pb").to_vec()
}

pub fn load_compressed() -> Vec<u8> {
    include_bytes!("../combined-with-oceans.reduce.compress.pb").to_vec()
}

pub fn load_preindex() -> Vec<u8> {
    include_bytes!("../combined-with-oceans.reduce.preindex.pb").to_vec()
}