Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wenzeslaus/forestfrag3d-poster
Poster for Generalized 3D Fragmentation Index Paper (Petras et al. 2017)
https://github.com/wenzeslaus/forestfrag3d-poster
3d 3d-raster forestry fragmentation gis grass-gis lidar point-cloud r3-forestfrag spatial-pattern trees
Last synced: 23 days ago
JSON representation
Poster for Generalized 3D Fragmentation Index Paper (Petras et al. 2017)
- Host: GitHub
- URL: https://github.com/wenzeslaus/forestfrag3d-poster
- Owner: wenzeslaus
- Created: 2018-03-19T16:11:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-05T02:53:16.000Z (almost 7 years ago)
- Last Synced: 2024-11-20T10:54:57.618Z (3 months ago)
- Topics: 3d, 3d-raster, forestry, fragmentation, gis, grass-gis, lidar, point-cloud, r3-forestfrag, spatial-pattern, trees
- Language: TeX
- Homepage: https://doi.org/10.1186/s40965-017-0021-8
- Size: 8.71 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Poster for Generalized 3D Fragmentation Index
This is a repository for with a poster for the following paper.
## Paper (How to Cite This Work)
Vaclav Petras, Douglas J. Newcomb and Helena Mitasova.
Generalized 3D fragmentation index derived from lidar point clouds.
In: Open Geospatial Data, Software and Standards 2017 2:9.
https://doi.org/10.1186/s40965-017-0021-8## Where the Poster was Presented
* NCSU CNR Graduate Research Symposium, February 2, 2018
## Build Dependencies
To build this poster, pdflatex is required.
A Makefile is used to describe building, so you can just run:make
## Rasterization
To create a rasterized version (some plotters have trouble with the PDF)
use:make rasterized
You can use this file to create a small PNG of the poster. It is best
rescaled in Gimp using Sinc (Lanczos3) method.To create a minimum size image which will be still readable (although
not necessarily nice) use:# renders fonts with low quality
gs -sDEVICE=png16m -dDownScaleFactor=2 -r50 \
-o poster.png poster.pdf
# optimizes compression
optipng -o9 poster.png
# simplify colors (destroys some colors, esp. gradients)
pngnq -n 128 -s 3 poster.png
# overwrite the original file
mv poster-nq8.png poster.png