heightmap-rgb-gen
Version:
Map generator from heightmap (comma separated numbers file). It process a heightmap as input and generates a png with a graduated color scale (customizable through the arguments)
35 lines (24 loc) • 818 B
Markdown
# heightmap-rgb-gen
Cli tool for generating heightmap from comma separated numbers
## Installation
Use the package manager [npm](https://www.npmjs.com/) to install heightap-rgb-gen.
```bash
npm install heightmap-rgb-gen
```
## Usage
Save a file called *heightmap* with csv numbers inside and run
```bash
npx heightmap-rgb-gen
```
## Example
This file (*heightmap*)
```node
0,4,2,6,3,0,1,6,8
```
generates this 3x3 pixel png

## Example 2
```bash
npx heightmap-rgb-gen heightmap.txt 10 10 'faf450' '0254ff' 10
```
Requires a 100 comma separated numbers inside *heightmap.txt* file. It generates a png image *heightmap.png* of 10x10 pixels with 10 colors from #faf450 to #0254ff.