Skip to content

Commit

Permalink
Adding some docs, fixing broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
brycefrank committed Apr 20, 2019
1 parent e7d8ce6 commit 44c6d34
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 5 deletions.
2 changes: 2 additions & 0 deletions docs/advanced/groundfilter.rst
@@ -0,0 +1,2 @@
Ground Filtering
================
Empty file.
21 changes: 21 additions & 0 deletions docs/advanced/understandingcomponents.rst
@@ -0,0 +1,21 @@
Understanding the Components
============================

The key to an advanced usage of `pyfor` is understanding the base classes of the package. A full
understanding of these allows for flexible and creative ways of conducting your processing task.
This document outlines these classes in a qualitative way. See the documentation for particulars.

Cloud
-----

Grid
----

Raster
------

Raster Derivatives
-------------------

CloudDataFrame
--------------
2 changes: 2 additions & 0 deletions pyfortest/test_collection.py
Expand Up @@ -34,6 +34,8 @@ def make_test_collection():
out = cloud.LASData(points, pc.data.header)
out.write(os.path.join(data_dir, 'mock_collection', '{}.las'.format(i)))

make_test_collection()

class CollectionTestCase(unittest.TestCase):
def setUp(self):
make_test_collection()
Expand Down
5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

6 changes: 6 additions & 0 deletions setup.py
Expand Up @@ -10,4 +10,10 @@
url='https://github.com/brycefrank/pyfor',
license='LICENSE.txt',
description='Tools for forest resource point cloud analysis.',
install_requires = [ # Dependencies from pip
'laspy',
'laxpy',
'python-coveralls',
''
]
)

0 comments on commit 44c6d34

Please sign in to comment.