We are very interested in how water flows through a maize farm field. This knowledge will help us improve our research on new agricultural products being tested on farms.
How much maize a field produces is very spatially variable. Even if the same farming practices, seeds and fertilizer are applied exactly the same by machinery over a field, there can be a very large harvest at one corner and a low harvest at another corner. We would like to be able to better understand which parts of the farm are likely to produce more or less maize, so that if we try a new fertilizer on part of this farm, we have more confidence that any differences in the maize harvest are due mostly to the new fertilizer changes, and not just random effects due to other environmental factors.
We are tasked to produce an easy to use, reliable and well designed python module that domain experts and data scientists can use to fetch, visualise, and transform publicly available satellite and LIDAR data. In particular, our code should interface with USGS 3DEP and fetch data using their API.
images/
the folder where all snapshot for the project are stored.
logs:
logs/
the folder where script logs are stored.
data:
data/
the folder where the dataset files are stored.
.github/
: the folder where github actions and unit-tests are integrated.
.vscode/
: the folder where local path are stored.
notebooks
: a jupyter notebook for preprocessing the data.
scripts/
: folder where modules are stored.
tests/
: the folder containing unit tests for the scripts.
requirements.txt
: a text file lsiting the projet's dependancies..travis.yml
: a configuration file for Travis CI for unit test.setup.py
: a configuration file for installing the scripts as a package.README.md
: Markdown text with a brief explanation of the project and the repository structure.
conda create --name mlenv python==3.8.1
conda activate mlenv
conda install -c conda-forge pdal python-pdal gdal
conda install geopandas
then
git clone https://github.com/Abel-Blue/agriTech-USGS-LiDAR.git
cd agriTech-USGS-LiDAR
sudo python3 setup.py install