Modul for geodetic and surveying calculations
Project description
What is PyVerm?
PyVerm is a Python-Package for geodetic and surveying calculations. The main focus is on calculations for surveying in switzerland, but PyVerm should be as versatile as possible. In addition to its use in education and research, it should also be possible to use it as a component for software development.
PyVerm is currently in its first phase of development.
How to install PyVerm?
You can install PyVerm with pip.
pip install pyverm
Requirements Python 3.6 or higher
How to use PyVerm?
For more examples and information’s you should visit the documentation.
import pyverm
standpoint = pyverm.Point(2600000, 1200000, 0)
orientation = 123.4567
station = pyverm.station(standpoint, orientation)
new_point = station.survey(pyverm.ObservationPolar(
reduced_horizontal_angle=375.00,
reduced_distance=575.1234
)
)
azimuth = pyverm.azimuth(standpoint, new_point)
How to contribute?
Bug Reports
If you find a bug, please open an bug report on GitHub.
Ideas
If you have a brilliant idea for a new feature, please open an feature request GitHub.
Code
In the current development phase, I prefer to write the code myself. But for special things you can contact me via GitHub.
License
PyVerm is licensed under the GNU General Public License version 3.
Links
Documentation pyverm.readthedocs.io
Sourcecode github.com/doppelmeter/pyverm
License GNU GPLv3
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.