Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nens/sufriblib
https://github.com/nens/sufriblib
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nens/sufriblib
- Owner: nens
- License: gpl-3.0
- Created: 2013-05-28T08:44:39.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-21T14:40:28.000Z (over 11 years ago)
- Last Synced: 2024-04-12T01:12:29.643Z (7 months ago)
- Language: Python
- Size: 2.44 MB
- Stars: 1
- Watchers: 34
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE.rst
Awesome Lists containing this project
README
sufriblib
=========Parse .RIB and .RMB files according to the SUFRIB 2.1 standard.
For their specification, see the included PDF "UNIFORMERING RIOOL
INSPECTIEBESTANDEN SUFRIB versie 2.1 revisie 0 28-08-2007-1.pdf".Usage
=====The main two functions are in sufriblib.parsers;
rib, errors = sufriblib.parsers.parse_rib(path)
rmb, errors = sufriblib.parsers.parse_rmb(path)
If there are errors, errors is a list containing them and rib/rmb will
be None; if there are no errors, rib will be a sufriblib.rib.RIB
object and rmb will be a sufriblib.rmb.RMB object and errors will be
an empty list.