From 214997f3d589359baeb9f5e4baee7dda43f80d1f Mon Sep 17 00:00:00 2001
From: Geoff Cureton <geoff.cureton@ssec.wisc.edu>
Date: Tue, 27 Mar 2018 21:57:11 +0000
Subject: [PATCH] Adding .gitignore, .gitattributes, LICENSE, and README.md
 files.

---
 .gitattributes |  3 ++
 .gitignore     | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++
 LICENSE        |  0
 README.md      |  0
 4 files changed, 87 insertions(+)
 create mode 100644 .gitattributes
 create mode 100644 .gitignore
 create mode 100644 LICENSE
 create mode 100644 README.md

diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..5c88932
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,3 @@
+*.h5 filter=lfs diff=lfs merge=lfs -text
+*.nc filter=lfs diff=lfs merge=lfs -text
+*.hdf filter=lfs diff=lfs merge=lfs -text
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8e18231
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,84 @@
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+
+# Distribution / packaging
+.Python
+env/
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+*.egg-info/
+.installed.cfg
+*.egg
+
+# PyInstaller
+#  Usually these files are written by a python script from a template
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*,cover
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+### Various OS Files ###
+.DS_Store
+._.DS_Store
+Thumbs.db
+
+# pycharm projects
+.idea
+
+# Compiled object files
+*.o
+
+# Fortran modules
+*.mod
+
+# C extensions
+*.so
+
+# Archive library files
+*.a
+
+# VIM swap files
+.*.sw*
+
+### Various OS Files ###
+.DS_Store
+._.DS_Store
+Thumbs.db
+
+# repos specific ignores
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..e69de29
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e69de29
-- 
GitLab