Skip to content

Commit

Permalink
some docs updated
Browse files Browse the repository at this point in the history
  • Loading branch information
dgursoy committed Mar 30, 2016
1 parent 1172008 commit 2626899
Show file tree
Hide file tree
Showing 9 changed files with 71 additions and 40 deletions.
26 changes: 16 additions & 10 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,22 +1,28 @@
======
DXfile
######
======

.. image:: https://readthedocs.org/projects/dxfile/badge/?version=latest
:target: https://readthedocs.org/projects/dxfile/?badge=latest
:alt: Read the Docs

.. image:: https://anaconda.org/decarlof/dxfile/badges/version.svg
:target: https://anaconda.org/decarlof/dxfile
.. image:: https://anaconda.org/dgursoy/dxfile/badges/version.svg
:target: https://anaconda.org/dgursoy/dxfile
:alt: Anaconda version

.. image:: https://anaconda.org/decarlof/dxfile/badges/downloads.svg
:target: https://anaconda.org/decarlof/dxfile
.. image:: https://anaconda.org/dgursoy/dxfile/badges/downloads.svg
:target: https://anaconda.org/dgursoy/dxfile
:alt: Anaconda downloads

**DXfile** provides:
Features
--------
* The definition of the scientific data exchange.
* A python interface for writing scientific data exchange files.
* XML attribute files for writers with the EPICS Area Detector HDF plug-in.

- The definition of the scientific data exchange.
- A python interface for writing scientific data exchange files.
- XML attribute files for writing scientific data exchange file with the EPICS Area Detector HDF plug in.
Contribute
----------

Project Home Page: http://dxfile.readthedocs.org/
* Documentation: https://github.com/data-exchange/dxfile/tree/master/doc
* Issue Tracker: https://github.com/data-exchange/dxfile/issues
* Source Code: https://github.com/data-exchange/dxfile
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.2
0.4
50 changes: 39 additions & 11 deletions doc/index.rst
Original file line number Diff line number Diff line change
@@ -1,21 +1,49 @@
.. title:: DXfile
======
DXfile
======

=======
Welcome
=======
Scientific Data Exchange :cite:`DeCarlo:14b` is a set of guidelines for storing
scientific data and metadata in a Hierarchical Data Format 5 :cite:`HDF:01` file.

This is the Data Exchange file format :cite:`DeCarlo:14b` web site, `DXfile <https://github.com/data-exchange/dxfile>`_ for short. The DXfile web site provides:
- The definition of the scientific data exchange
- A python interface for writing scientific data exchange files
- XML attribute files for writing scientific data exchange file with the EPICS Area Detector HDF plug in
HDF5 :cite:`HDF:01` has many important characteristics for scientific data
storage. It offers platform-independent binary data storage with optional
compression, hierarchical data ordering, and support for MPI-based
parallel computing. Data are stored with alphanumeric tags, so that one
can examine a HDF5 file’s contents with no knowledge of how the file
writing program was coded. Tools for this examination include the
HDF5-supplied command-line utility :cite:`HDF:02` to examine the contents
of any HDF5 file, or the freely-available Java program :cite:`HDF:03`
to interactively examine the file.

This guide is maintained on
`GitHub <https://github.com/data-exchange/dxfile/tree/master/doc>`_.
At synchrotron facilities using the EPICS :cite:`EPICS:01` software for area
detectors :cite:`AD:01` with the NDFileHDF5 plugin :cite:`AD:02`, is possible
to save Data Exchange files by properly configure the detector and the HDF
schema attribute files .

This reference guide describes the basic design principles of Data
Exchange, examples of their application, a core reference for guidelines
common to most uses, and coding examples.


Features
--------
* The definition of the scientific data exchange.
* A python interface for writing scientific data exchange files.
* XML attribute files for writers with the EPICS Area Detector HDF plug-in.

Contribute
----------

* Documentation: https://github.com/data-exchange/dxfile/tree/master/doc
* Issue Tracker: https://github.com/data-exchange/dxfile/issues
* Source Code: https://github.com/data-exchange/dxfile

Contents
--------

.. toctree::
:maxdepth: 1

source/about
source/introduction
source/reference
source/xraytomo
Expand Down
7 changes: 0 additions & 7 deletions doc/source/about.rst

This file was deleted.

8 changes: 1 addition & 7 deletions doc/source/credits.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
=======
Credits
=======

We kindly request that you cite the following article :cite:`DeCarlo:14b` if you use DXfile... bibliography:: bibtex/cite.bib :style: plain :labelprefix: A

References==========.. bibliography:: bibtex/ref.bib :style: plain :labelprefix: B :all:
=======Credits=======Citation========We kindly request that you cite the following article :cite:`DeCarlo:14b` if you use DXfile... bibliography:: bibtex/cite.bib :style: plain :labelprefix: AReferences==========.. bibliography:: bibtex/ref.bib :style: plain :labelprefix: B :all:
Expand Down
1 change: 0 additions & 1 deletion doc/source/xraytomo.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.. role:: math(raw)
:format: html latex
..

================
X-ray Tomography
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: dxfile
version: '0.3.2'
version: '0.4'

source:
git_url: https://github.com/data-exchange/dxfile.git
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
sphinx
sphinxcontrib-bibtex
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages

setup(
Expand All @@ -8,6 +9,15 @@
packages=find_packages(),
version=open('VERSION').read().strip(),
description = 'Reader/Writer for Data Exchange files.',
license='BSD',
platforms='Any'
license='BSD-3',
platforms='Any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: BSD-3',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
)

0 comments on commit 2626899

Please sign in to comment.