Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
uav-pipeline/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
47 lines (38 sloc)
1.19 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# uav-pipeline | |
UAV data processing pipelines and data products for Plant Science | |
## Click an element to view details | |
```mermaid | |
flowchart LR | |
start[Start] | |
ug[GRYFN UAV] | |
ut[3rd party UAV] | |
s[RGB, HSI, LiDAR sensor] | |
st[Thermal sensor] | |
sm[Multispectral sensor] | |
style start fill:#ffffff | |
style ug fill:#ffffff | |
style ut fill:#ffffff | |
style s fill:#ffffff | |
style st fill:#ffffff | |
style sm fill:#ffffff | |
ws[<a href='PlantScience/uav-pipeline/blob/main/workflow_general/workflow.md'>View workflow</a>] | |
wst[<a href='PlantScience/uav-pipeline/blob/main/workflow_thermal/workflow.md'>View workflow</a>] | |
wsm[<a href='PlantScience/uav-pipeline/blob/main/workflow_multispectral/workflow.md'>View workflow</a>] | |
style ws stroke-width:2px | |
style wst stroke-width:2px | |
style wsm stroke-width:2px | |
dws[View data product guide] | |
dwst[<a href='PlantScience/uav-pipeline/blob/main/workflow_thermal/data_product.md'>View data product guide</a>] | |
style dws stroke-width:2px | |
style dwst stroke-width:2px | |
start --> ug | |
start --> ut | |
ug --> s | |
ug --> st | |
ut --> sm | |
s --> ws | |
st --> wst | |
sm --> wsm | |
ws --> dws | |
wst --> dwst | |
``` | |