Renamed to 'AKExtract'

This commit is contained in:
Matthew Dillon (diogenes) 2013-09-16 20:37:44 -08:00
parent 3ea2ff162b
commit 64b45a2f8d
7 changed files with 27 additions and 27 deletions

View file

@ -1,12 +1,12 @@
SNAPExtract
===========
AKExtract
=========
Extract air temperatures from SNAP datasets
What is it?
-----------
SNAPExtract is a simple tool to assist with extracting point-data from SNAP datasets
AKExtract is a simple tool to assist with extracting point-data from SNAP datasets
Prerequisites
-------------
@ -22,7 +22,7 @@ Installation
1) Clone the repo:
git clone https://github.com/thermokarst/snapextract
git clone https://github.com/thermokarst/akextract
2) Get the data from http://snap.uaf.edu.
@ -33,11 +33,11 @@ Installation
$ make test3
4) If everything passes, you are probably ready to plug this into your project. For
an example check out [SNAPIndices](http://www.github.com/thermokarst/snapindices).
an example check out [AKIndices](http://www.github.com/thermokarst/akindices).
Contact
-------
Do you have an idea for a feature? Find a bug?
Reach me at [matthewrdillon@gmail.com](mailto:matthewrdillon@gmail.com)
Reach me at [mrdillon@gmail.com](mailto:mrdillon@gmail.com)

View file

@ -77,17 +77,17 @@ qthelp:
@echo
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/SNAPIndices.qhcp"
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/AKExtract.qhcp"
@echo "To view the help file:"
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/SNAPIndices.qhc"
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/AKExtract.qhc"
devhelp:
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
@echo
@echo "Build finished."
@echo "To view the help file:"
@echo "# mkdir -p $$HOME/.local/share/devhelp/SNAPIndices"
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/SNAPIndices"
@echo "# mkdir -p $$HOME/.local/share/devhelp/AKExtract"
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/AKExtract"
@echo "# devhelp"
epub:

View file

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# SNAPIndices documentation build configuration file, created by
# AKExtract documentation build configuration file, created by
# sphinx-quickstart on Thu Mar 28 16:33:50 2013.
#
# This file is execfile()d with the current directory set to its containing dir.
@ -40,7 +40,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'SNAPIndices'
project = u'AKExtract'
copyright = u'2013, Matthew Ryan Dillon'
# The version info for the project you're documenting, acts as replacement for
@ -164,7 +164,7 @@ html_last_updated_fmt = '%b %d, %Y'
#html_file_suffix = None
# Output file base name for HTML help builder.
htmlhelp_basename = 'SNAPIndicesdoc'
htmlhelp_basename = 'AKExtractdoc'
# -- Options for LaTeX output --------------------------------------------------
@ -183,7 +183,7 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'SNAPIndices.tex', u'SNAPIndices Documentation and Source',
('index', 'AKExtract.tex', u'AKExtract Documentation and Source',
u'Matthew Ryan Dillon', 'manual'),
]
@ -213,7 +213,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'snapindices', u'SNAPIndices Documentation',
('index', 'akextract', u'AKExtract Documentation',
[u'Matthew Ryan Dillon'], 1)
]
@ -227,8 +227,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'SNAPIndices', u'SNAPIndices Documentation',
u'Matthew Ryan Dillon', 'SNAPIndices', 'One line description of project.',
('index', 'AKExtract', u'AKExtract Documentation',
u'Matthew Ryan Dillon', 'AKExtract', 'One line description of project.',
'Miscellaneous'),
]

View file

@ -1,31 +1,31 @@
************************************
SNAPExtract Documentation and Source
************************************
**********************************
AKExtract Documentation and Source
**********************************
.. toctree::
:maxdepth: 4
.. default-domain:: python
.. automodule:: snapextract
.. automodule:: akextract
SNAPExtract is a Python project, currently supported under version
AKExtract is a Python project, currently supported under version
2.7.x and 3.3.x.
Requirements: gdal, numpy
Option: nose (for testing), sphinx (for docs)
Module: snapextract.backend
Module: akextract.backend
---------------------------
Automatic API Documentation.
.. automodule:: snapextract.backend
.. automodule:: akextract.backend
:members: SNAPDataSet, GeoRefData
Source: backend.py
^^^^^^^^^^^^^^^^^^
.. literalinclude:: ../snapextract/_backend.py
.. literalinclude:: ../akextract/_backend.py
Tests
-----

View file

@ -10,13 +10,13 @@ with open('LICENSE') as f:
license = f.read()
setup(
name='SNAPExtract',
name='AKExtract',
version='0.1.0',
description='Extract climate data from SNAP datasets',
long_description=readme,
author='Matthew Ryan Dillon',
author_email='matthewrdillon@gmail.com',
url='https://github.com/thermokarst/snapextract',
url='https://github.com/thermokarst/akextract',
license=license,
packages=find_packages(exclude=('tests', 'docs'))
)