#gis #data #format #grid #reading-writing #serde #isg

libisg

libisg — 读取/写入 ISG 2.0 格式

6 个版本

新版本 0.2.5 2024年8月16日
0.2.4 2024年8月1日
0.2.3 2024年7月29日

#53地理空间 类别中

Download history 99/week @ 2024-07-20 1023/week @ 2024-07-27 63/week @ 2024-08-03 123/week @ 2024-08-10

每月 1,308 次下载

MIT/Apache

120KB
3K SLoC

libisg

Crates.io Version GitHub Actions Workflow Status docs.rs Crates.io License

库读取/写入 ISG 2.0 格式

use std::fs;

use libisg;
use libisg::{Data, DataBounds, ISG};

let s = fs::read_to_string("Example 1.isg").unwrap();

let isg = libisg::from_str(&s).unwrap();


let (a_max, b_max, delta_a, delta_b) = match isg.header.data_bounds {
    DataBounds::GridGeodetic { lat_max, lon_max, delta_lat, delta_lon, .. } => {
        (lat_max, lon_max, delta_lat, delta_lon)
    },
    _ => unimplemented!("`Example 1.isg` is grid geodetic"),
};

match &isg.data {
    Data::Grid(data) => {
        for (nrow, row) in data.iter().enumerate() {
            for (ncol, value) in row.iter().enumerate() {
                let a = a_max - delta_a * nrow;
                let b = b_max - delta_b * ncol;
                // do something
            }
        }
    }
    Data::Sparse(data) => {
        for row in data {
            let (a, b, value) = row;
            // do something
        }
    }
}

特性

  • 支持 ISG 格式的序列化/反序列化
  • 支持 serde(需要 serde 功能)

许可证

MIT 或 Apache-2.0

参考

规范:https://www.isgeoid.polimi.it/Geoid/format_specs.html

依赖

~170KB