hdf-compass


Namehdf-compass JSON
Version 0.6.0 PyPI version JSON
download
home_pagehttps://github.com/HDFGroup/hdf-compass/
SummaryAn experimental viewer program for HDF5 and related formats.
upload_time2016-06-15 15:09:32
maintainerNone
docs_urlNone
authorHDFGroup
requires_pythonNone
licenseBSD-like license
keywords data hdf bag ascii grid opendap
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            HDF Compass
===========

.. image:: https://badge.fury.io/py/hdf_compass.svg
    :target: https://badge.fury.io/py/hdf_compass
    :alt: PyPI Status

.. image:: https://readthedocs.org/projects/hdf-compass/badge/?version=stable
    :target: http://hdf-compass.readthedocs.org/en/stable/?badge=stable
    :alt: Stable Documentation Status
    
.. image:: https://readthedocs.org/projects/hdf-compass/badge/?version=latest
    :target: http://hdf-compass.readthedocs.org/en/latest/?badge=latest
    :alt: Latest Documentation Status
    
.. image:: https://ci.appveyor.com/api/projects/status/tfg350xo8t7h70ix?svg=true
    :target: https://ci.appveyor.com/project/giumas/hdf-compass
    :alt: AppVeyor Status

.. image:: https://travis-ci.org/giumas/hdf-compass.svg?branch=develop
    :target: https://travis-ci.org/giumas/hdf-compass
    :alt: Travis-CI Status
        
Welcome to the project!  HDF Compass is an experimental viewer program for
HDF5 and related formats, designed to complement other more complex
applications like HDFView.  Strong emphasis is placed on clean minimal design,
and maximum extensibility through a plugin system for new formats.

HDF Compass is written in Python, but ships as a native application on
Windows, OS X, and Linux, by using PyInstaller and Py2App to package the app.

Binary executables are available for Windows (Windows 7 or later) and Mac OS X (Yosemite or later) at
the Project Page listed below.

Bug reports and pull requests are welcome!  For non-trivial PRs please
open an issue first, so the core developers can give feedback on your idea.



Development Environment
-----------------------

You will need:

* `Python 2.7 <https://www.python.org/downloads/>`_ *(support for Python 3.4+ in progress)*
* `NumPy <https://github.com/numpy/numpy>`_
* `Matplotlib <https://github.com/matplotlib/matplotlib>`_
* `wxPython Phoenix 3.0.2 <https://github.com/wxWidgets/Phoenix>`_ *(later releases have not been tested)*
* `Cartopy <https://github.com/SciTools/cartopy>`_
* `h5py <https://github.com/h5py/h5py>`_ *[HDF plugin]*
* `hydroffice.bag <https://bitbucket.org/ccomjhc/hyo_bag>`_ *[BAG plugin]*
* `Pydap <https://github.com/robertodealmeida/pydap>`_ *[OPeNDAP plugin]*
* `Requests <https://github.com/kennethreitz/requests>`_ *[HDF Rest API plugin]*

For packaging the app:

* `PyInstaller <https://github.com/pyinstaller/pyinstaller>`_ (Linux & Windows, experimental for OS X) *(>= 3.0)*
* `Py2App <https://bitbucket.org/ronaldoussoren/py2app>`_ (OS X)


Running the Program  
-------------------

    ``$ python HDFCompass.py``
      
      
Note: If you are using the Anaconda distribution on the Mac, you will see the
message: "This program needs access to the screen.  Please run with a Framework
build of python...".  In this case use the pythonw command:

    ``$ pythonw HDFCompass.py``
           
Note: on Mac, HDF Compass doesn't create an initial window, use the system Application
menu to open a file or remote resource.
    
Packaging on OS X
-----------------

    ``$ python setup.py py2app``
    
Packaging on Windows
--------------------

Single-file:

    ``$ pyinstaller --clean -y HDFCompass.1file.spec``

Single-folder (useful for debugging the ``pyinstaller`` settings):

    ``$ pyinstaller --clean -y HDFCompass.1folder.spec``
    
Other info
----------

* Github: `http://github.com/HDFGroup/hdf-compass <http://github.com/HDFGroup/hdf-compass>`_
* Project page: `https://www.hdfgroup.org/projects/compass/ <https://www.hdfgroup.org/projects/compass/>`_
* License: BSD-like HDF Group license (See `COPYING <https://raw.githubusercontent.com/HDFGroup/hdf-compass/master/COPYING>`_)
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/HDFGroup/hdf-compass/",
    "name": "hdf-compass",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "data hdf bag ascii grid opendap",
    "author": "HDFGroup",
    "author_email": "help@hdfgroup.org",
    "download_url": "https://files.pythonhosted.org/packages/99/2e/278564e1d19a268feea830d366ce7fde42d58f32dac19c37fa87a1d839d4/hdf_compass-0.6.0.tar.gz",
    "platform": "UNKNOWN",
    "description": "HDF Compass\r\n===========\r\n\r\n.. image:: https://badge.fury.io/py/hdf_compass.svg\r\n    :target: https://badge.fury.io/py/hdf_compass\r\n    :alt: PyPI Status\r\n\r\n.. image:: https://readthedocs.org/projects/hdf-compass/badge/?version=stable\r\n    :target: http://hdf-compass.readthedocs.org/en/stable/?badge=stable\r\n    :alt: Stable Documentation Status\r\n    \r\n.. image:: https://readthedocs.org/projects/hdf-compass/badge/?version=latest\r\n    :target: http://hdf-compass.readthedocs.org/en/latest/?badge=latest\r\n    :alt: Latest Documentation Status\r\n    \r\n.. image:: https://ci.appveyor.com/api/projects/status/tfg350xo8t7h70ix?svg=true\r\n    :target: https://ci.appveyor.com/project/giumas/hdf-compass\r\n    :alt: AppVeyor Status\r\n\r\n.. image:: https://travis-ci.org/giumas/hdf-compass.svg?branch=develop\r\n    :target: https://travis-ci.org/giumas/hdf-compass\r\n    :alt: Travis-CI Status\r\n        \r\nWelcome to the project!  HDF Compass is an experimental viewer program for\r\nHDF5 and related formats, designed to complement other more complex\r\napplications like HDFView.  Strong emphasis is placed on clean minimal design,\r\nand maximum extensibility through a plugin system for new formats.\r\n\r\nHDF Compass is written in Python, but ships as a native application on\r\nWindows, OS X, and Linux, by using PyInstaller and Py2App to package the app.\r\n\r\nBinary executables are available for Windows (Windows 7 or later) and Mac OS X (Yosemite or later) at\r\nthe Project Page listed below.\r\n\r\nBug reports and pull requests are welcome!  For non-trivial PRs please\r\nopen an issue first, so the core developers can give feedback on your idea.\r\n\r\n\r\n\r\nDevelopment Environment\r\n-----------------------\r\n\r\nYou will need:\r\n\r\n* `Python 2.7 <https://www.python.org/downloads/>`_ *(support for Python 3.4+ in progress)*\r\n* `NumPy <https://github.com/numpy/numpy>`_\r\n* `Matplotlib <https://github.com/matplotlib/matplotlib>`_\r\n* `wxPython Phoenix 3.0.2 <https://github.com/wxWidgets/Phoenix>`_ *(later releases have not been tested)*\r\n* `Cartopy <https://github.com/SciTools/cartopy>`_\r\n* `h5py <https://github.com/h5py/h5py>`_ *[HDF plugin]*\r\n* `hydroffice.bag <https://bitbucket.org/ccomjhc/hyo_bag>`_ *[BAG plugin]*\r\n* `Pydap <https://github.com/robertodealmeida/pydap>`_ *[OPeNDAP plugin]*\r\n* `Requests <https://github.com/kennethreitz/requests>`_ *[HDF Rest API plugin]*\r\n\r\nFor packaging the app:\r\n\r\n* `PyInstaller <https://github.com/pyinstaller/pyinstaller>`_ (Linux & Windows, experimental for OS X) *(>= 3.0)*\r\n* `Py2App <https://bitbucket.org/ronaldoussoren/py2app>`_ (OS X)\r\n\r\n\r\nRunning the Program  \r\n-------------------\r\n\r\n    ``$ python HDFCompass.py``\r\n      \r\n      \r\nNote: If you are using the Anaconda distribution on the Mac, you will see the\r\nmessage: \"This program needs access to the screen.  Please run with a Framework\r\nbuild of python...\".  In this case use the pythonw command:\r\n\r\n    ``$ pythonw HDFCompass.py``\r\n           \r\nNote: on Mac, HDF Compass doesn't create an initial window, use the system Application\r\nmenu to open a file or remote resource.\r\n    \r\nPackaging on OS X\r\n-----------------\r\n\r\n    ``$ python setup.py py2app``\r\n    \r\nPackaging on Windows\r\n--------------------\r\n\r\nSingle-file:\r\n\r\n    ``$ pyinstaller --clean -y HDFCompass.1file.spec``\r\n\r\nSingle-folder (useful for debugging the ``pyinstaller`` settings):\r\n\r\n    ``$ pyinstaller --clean -y HDFCompass.1folder.spec``\r\n    \r\nOther info\r\n----------\r\n\r\n* Github: `http://github.com/HDFGroup/hdf-compass <http://github.com/HDFGroup/hdf-compass>`_\r\n* Project page: `https://www.hdfgroup.org/projects/compass/ <https://www.hdfgroup.org/projects/compass/>`_\r\n* License: BSD-like HDF Group license (See `COPYING <https://raw.githubusercontent.com/HDFGroup/hdf-compass/master/COPYING>`_)",
    "bugtrack_url": null,
    "license": "BSD-like license",
    "summary": "An experimental viewer program for HDF5 and related formats.",
    "version": "0.6.0",
    "project_urls": {
        "Download": "UNKNOWN",
        "Homepage": "https://github.com/HDFGroup/hdf-compass/"
    },
    "split_keywords": [
        "data",
        "hdf",
        "bag",
        "ascii",
        "grid",
        "opendap"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9143e65179d34d807b0d2984b9dbd7c01d4d9a9c2341647f4672174fffe55c68",
                "md5": "4ac00e41d8b23bfe965fb2fe6a2aca27",
                "sha256": "11980aa9df02838495dc7ffc892b7d6bb69c334c2385993cea6745425469876f"
            },
            "downloads": -1,
            "filename": "hdf_compass-0.6.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4ac00e41d8b23bfe965fb2fe6a2aca27",
            "packagetype": "bdist_wheel",
            "python_version": "2.7",
            "requires_python": null,
            "size": 253897,
            "upload_time": "2016-06-15T12:55:25",
            "upload_time_iso_8601": "2016-06-15T12:55:25.927680Z",
            "url": "https://files.pythonhosted.org/packages/91/43/e65179d34d807b0d2984b9dbd7c01d4d9a9c2341647f4672174fffe55c68/hdf_compass-0.6.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "992e278564e1d19a268feea830d366ce7fde42d58f32dac19c37fa87a1d839d4",
                "md5": "3d037a8499c1c4b9b8eaa2ad70302e2a",
                "sha256": "2228198f0d0be32f7857d1c2c9b6244e7ceda04063c4772dcac9187b9849e6ce"
            },
            "downloads": -1,
            "filename": "hdf_compass-0.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "3d037a8499c1c4b9b8eaa2ad70302e2a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 494768,
            "upload_time": "2016-06-15T15:09:32",
            "upload_time_iso_8601": "2016-06-15T15:09:32.827259Z",
            "url": "https://files.pythonhosted.org/packages/99/2e/278564e1d19a268feea830d366ce7fde42d58f32dac19c37fa87a1d839d4/hdf_compass-0.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d4654610ab4e96c510b5e6861824b7b11e6b7beb1951a13646dca7b611589e7",
                "md5": "5171f02a7749c4a6bcc247c14f809cd0",
                "sha256": "fbd391031da3cba56b6b666867d6a808954082f9698912586c489327e033a333"
            },
            "downloads": -1,
            "filename": "hdf_compass-0.6.0.zip",
            "has_sig": false,
            "md5_digest": "5171f02a7749c4a6bcc247c14f809cd0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 555637,
            "upload_time": "2016-06-15T15:09:51",
            "upload_time_iso_8601": "2016-06-15T15:09:51.874223Z",
            "url": "https://files.pythonhosted.org/packages/7d/46/54610ab4e96c510b5e6861824b7b11e6b7beb1951a13646dca7b611589e7/hdf_compass-0.6.0.zip",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2016-06-15 15:09:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "HDFGroup",
    "github_project": "hdf-compass",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "appveyor": true,
    "lcname": "hdf-compass"
}
        
Elapsed time: 0.24702s