# 雷切 **Repository Path**: netfox/sextion ## Basic Information - **Project Name**: 雷切 - **Description**: An aardio library (sextion.aardio, sextion.convert.aardio) intended for rapidly editing cross section files of hydraulic models (e.g., MIKE11, HEC-RAS, Hydro Lab). A GUI aardio project (Sextion Editor) using the library is also provided for normal users. - **Primary Language**: 其他 - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2020-10-30 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Introduction 雷切(sextion) is an aardio library (sextion.aardio, sextion.convert.aardio) intended for rapidly editing cross section files of hydraulic models (e.g., MIKE11, HEC-RAS, Hydro Lab). An GUI aardio project using the library is also provided as Sextion Editor for normal users. Supported platform: Windows XP 32bit and above. Current features: * Cross section data format conversion among MIKE11, Hydro Lab, ZDM. Future features: * Capacities for visually editing cross section file in Sextion Editor. # Instruction For normal users: Download the realease of Sextion Editor and execute `Sextion Editor.exe`. For developers: Install [aardio](http://www.aardio.com/) and play with the Sextion Editor project folder. The sextion libraries are in the `Sextion Editor\lib` folder. Here are some examples of the APIs in the libraries. For details, refer to the source code. ```javascript import console; import sextion.convert; var csSet, err = sextion.convert.from(strSrc=string.load("res\mike11-test.txt")); var str = sextion.convert.to(csSet=csSet; format="hlab"); console.log(str); ``` # Change Log ##### 20200525 - 0.0.1 * Initial release.