Commit 1960afb4 authored by Austin Sanders's avatar Austin Sanders
Browse files

Added repo admin files

parent 28ebbc26
Loading
Loading
Loading
Loading

DISCLAIMER.md

0 → 100644
+1 −0
Original line number Diff line number Diff line
This software is preliminary or provisional and is subject to revision. It is being provided to meet the need for timely best science. The software has not received final approval by the U.S. Geological Survey (USGS). No warranty, expressed or implied, is made by the USGS or the U.S. Government as to the functionality of the software and related material nor shall the fact of release constitute any such warranty. The software is provided on the condition that neither the USGS nor the U.S. Government shall be held liable for any damages resulting from the authorized or unauthorized use of the software.
 No newline at end of file

LICENSE.md

0 → 100644
+44 −0
Original line number Diff line number Diff line
Unless otherwise noted, this project is in the public domain in the
United States.

It contains materials that originally came from the United States
Geological Survey, an agency of the United States Department of
Interior.  For more information on their copyright policies, see
https://www.usgs.gov/information-policies-and-instructions/copyrights-and-credits

It also contains materials from contributors that have waived their
copyright interest to the public domain.

Additionally, the authors waive copyright and related rights in the
work worldwide through the CC0 1.0 Universal public domain dedication.

CC0 1.0 Universal Summary
-------------------------

This is a human-readable summary of the [Legal Code (read the full
text)](https://creativecommons.org/publicdomain/zero/1.0/legalcode).


### No Copyright

The authors have associated their contributions to the lidar2image project
with this deed, and have dedicated the work to the public domain
by waiving all of their rights to the work worldwide under copyright
law, including all related and neighboring rights, to the extent
allowed by law.

You can copy, modify, distribute and perform the work, even for
commercial purposes, all without asking permission.


### Other Information

In no way are the patent or trademark rights of any person affected
by CC0, nor are the rights that other persons may have in the work
or in how the work is used, such as publicity or privacy rights.

Unless expressly stated otherwise, the authors who have associated
the lidar2image project with this deed make no warranties about the work,
and disclaim liability for all uses of the work, to the fullest
extent permitted by applicable law. When using or citing the work,
you should not imply endorsement by the authors.
 No newline at end of file

README.md

0 → 100644
+22 −0
Original line number Diff line number Diff line
# lidar2image

This library provides C++ and Python utilities in support of creating a ground control network using an LROC NAC image and coincident LOLA lidar shot data.

## Building the Program

This software manages dependencies using Anaconda.  If you do not have Anaconda, then you must [download](https://www.anaconda.com/download) it before proceeding.

In order to build a minimal set of programs necessary to create the ground control network, a user can follow these steps from a conda-enabled terminal:

1. Create and activate a conda environment.

        conda create -n lidar2image -f environment.yml
        conda activate lidar2image
1. Build the lidar_image_align binary

        cd lidar2image_processing
        mkdir build && cd build
        cmake ..
        make