/usr/lib/python2.7/dist-packages/hydroffice.bag-0.2.15.egg-info/PKG-INFO is in python-hydroffice.bag 0.2.15-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | Metadata-Version: 1.1
Name: hydroffice.bag
Version: 0.2.15
Summary: A package to manage Bathymetric Attributed Grid (BAG) data files.
Home-page: https://bitbucket.org/gmasetti/hyo_bag/
Author: Giuseppe Masetti (CCOM,UNH); Brian R. Calder (CCOM,UNH)
Author-email: gmasetti@ccom.unh.edu, brc@ccom.unh.edu
License: LGPLv3 license
Description: HydrOffice BAG
==============
.. image:: https://img.shields.io/pypi/v/hydroffice.bag.svg
:target: https://pypi.python.org/pypi/hydroffice.bag
:alt: PyPi version
.. image:: https://img.shields.io/badge/docs-stable-brightgreen.svg
:target: http://giumas.github.io/hyo_bag/stable
:alt: Stable Documentation
.. image:: https://img.shields.io/badge/docs-latest-brightgreen.svg
:target: http://giumas.github.io/hyo_bag/latest
:alt: Latest Documentation
.. image:: https://ci.appveyor.com/api/projects/status/thng6eg4g05s8mi4?svg=true
:target: https://ci.appveyor.com/project/giumas/hyo-bag
:alt: AppVeyor Status
.. image:: https://travis-ci.org/hydroffice/hyo_bag.svg?branch=master
:target: https://travis-ci.org/hydroffice/hyo_bag
:alt: Travis-CI Status
General Info
------------
.. image:: https://bitbucket.org/ccomjhc/hyo_bag/raw/tip/hydroffice/bag/media/favicon.png
:alt: logo
HydrOffice is a research development environment for ocean mapping. It provides a collection of hydro-packages, each of them dealing with a specific issue of the field.
The main goal is to speed up both algorithms testing and research-2-operation.
The BAG hydro-package collects tools for working with BAG files. BAG is a data format by the `ONS-WG <http://www.opennavsurf.org/>`_ (Open Navigation Surface Working Group).
Dependencies
------------
For the BAG library, you will need:
* ``python`` *[>=2.7, >=3.4]*
* ``numpy``
* ``h5py``
* ``lxml``
* ``gdal`` *[<2.0]*
* ``PyInstaller`` *[for freezing the tools]*
For running some of the example scripts, you might also need:
* ``matplotlib``
Other info
----------
* Bitbucket: `https://bitbucket.org/ccomjhc/hyo_bag <https://bitbucket.org/ccomjhc/hyo_bag>`_
* Project page: `http://www.hydroffice.org <http://www.hydroffice.org>`_
* License: LGPLv3 license (See `LICENSE <https://bitbucket.org/ccomjhc/hyo_bag/raw/tip/LICENSE>`_)
"""""""
History
-------
0.2
~~~
2016-05-27
- Added option to read a slice of rows for elevation and uncertainty layers
2016-03-21
- Added option to reproject layers into user-defined EPSG
2015-10-24
- Split BAG Explorer as stand-alone hydro-package
2015-10-09
- Added BAG Explorer
- Started Schematron schema for BAG Metadata profile
0.1
~~~
2015-03-31
- Initial commit.
"""""""
Credits
-------
Authors
~~~~~~~
HydrOffice BAG is written and maintained by:
- `Giuseppe Masetti <mailto:gmasetti@ccom.unh.edu>`_
- `Brian Calder <mailto:brc@ccom.unh.edu>`_
Contributors
~~~~~~~~~~~~
The following wonderful people contributed directly or indirectly to this project:
- `Matt Wilson <mailto:matt.wilson@noaa.gov>`_
Please add yourself here alphabetically when you submit your first pull request.
"""""""
How to contribute
=================
Every open source project lives from the generous help by contributors that sacrifice their time and this is no different.
To make participation as pleasant as possible, this project adheres to the `Code of Conduct`_ by the Python Software Foundation.
Here are a few hints and rules to get you started:
- Add yourself to the AUTHORS.txt_ file in an alphabetical fashion. Every contribution is valuable and shall be credited.
- If your change is noteworthy, add an entry to the changelog_.
- No contribution is too small; please submit as many fixes for typos and grammar bloopers as you can!
- Don't *ever* break backward compatibility.
- *Always* add tests and docs for your code. This is a hard rule; patches with missing tests or documentation won't be merged.
If a feature is not tested or documented, it does not exist.
- Obey `PEP 8`_ and `PEP 257`_.
- Write `good commit messages`_.
- Ideally, `collapse`_ your commits, i.e. make your pull requests just one commit.
.. note::
If you have something great but aren't sure whether it adheres -- or even can adhere -- to the rules above: **please submit a pull request anyway**!
In the best case, we can mold it into something, in the worst case the pull request gets politely closed.
There's absolutely nothing to fear.
Thank you for considering to contribute! If you have any question or concerns, feel free to reach out to us.
.. _`Code of Conduct`: http://www.python.org/psf/codeofconduct/
.. _AUTHORS.txt: https://bitbucket.org/ccomjhc/hyo_bag/raw/tip/AUTHORS.rst
.. _changelog: https://bitbucket.org/ccomjhc/hyo_bag/raw/tip/HISTORY.rst
.. _`PEP 8`: http://www.python.org/dev/peps/pep-0008/
.. _`PEP 257`: http://www.python.org/dev/peps/pep-0257/
.. _collapse: https://www.mercurial-scm.org/wiki/RebaseExtension
.. _`good commit messages`: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
"""""""
Banner
======
.. code-block:: python
| ========================================================== |
| _ _ _ _____ __ __ _ |
| | | | | | | | _ |/ _|/ _(_) |
| | |_| |_ _ __| |_ __| | | | |_| |_ _ ___ ___ |
| | _ | | | |/ _\ | '__| | | | _| _| |/ __/ _ \ |
| | | | | |_| | (_| | | \ \_/ / | | | | | (_| __/ |
| \_| |_/\__, |\__,_|_| \___/|_| |_| |_|\___\___| |
| __/ | |
| |___/ |
| |
| ---------------------------------------------------------- |
| Office Tools to Facilitate |
| Hydrographic Surveys, Data Review and |
| Nautical Chart Compilation |
| |
| ---------------------------------------------------------- |
| For comments/suggestions: |
| - matt.wilson@noaa.gov |
| - brc@ccom.unh.edu |
| - gmasetti@ccom.unh.edu |
| |
| ========================================================== |
Keywords: hydrography ocean mapping survey bag openns
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Office/Business :: Office Suites
|