... | ... | @@ -10,11 +10,11 @@ The options available for current stable version (0.1.4) are: |
|
|
| outdir | directory where is/are to be stored output file(s) | str | current dir |
|
|
|
| file_format | format of the output file(s) | str | png |
|
|
|
| timesteps | timesteps to plot (list of numbers or 'all') | list | [0] |
|
|
|
| bounds | values bounds list | list | None (automatic) |
|
|
|
| ticks | colorbar ticks list | list | None (automatic) |
|
|
|
| bounds | values bounds list | list of num | None (automatic) |
|
|
|
| ticks | colorbar ticks list | list of num | None (automatic) |
|
|
|
| colors | colors list or colormap name | list or str | 'jet', for a list check [here](https://matplotlib.org/users/colormaps.html) |
|
|
|
| lon | longitude list | list | None |
|
|
|
| lat | latitude list | list | None |
|
|
|
| lon | longitude list | list of num | None |
|
|
|
| lat | latitude list | list of num | None |
|
|
|
| smooth | plot with smoothing | bool | False |
|
|
|
| subsetting | subset according to given lat/lon | bool | False |
|
|
|
| colorbar | toggle colorbar | bool | True |
|
... | ... | @@ -23,9 +23,9 @@ The options available for current stable version (0.1.4) are: |
|
|
| dpi | output image dot-per-inch | num | 200 |
|
|
|
| fontsize | title fontsize | num | 12 |
|
|
|
| continents | color to fill continents | str | None |
|
|
|
| coordsopts | coordinates linewidth, fontsize, color | list | 0.3,10,grey |
|
|
|
| coastsopts | coastlines linewidth, color | list | 0.5,grey |
|
|
|
| countropts | countries linewidth, color | list | 0.3,grey |
|
|
|
| coordsopts | coordinates linewidth, fontsize, color | list of str | 0.3,10,grey |
|
|
|
| coastsopts | coastlines linewidth, color | list of str | 0.5,grey |
|
|
|
| countropts | countries linewidth, color | list of str | 0.3,grey |
|
|
|
| anim | Toggle Animation | bool | False |
|
|
|
| scatter | data file for additional scatter plot (csv file/dataframe) | str/dataframe | None |
|
|
|
| contours | additional contour variable | str | None |
|
... | ... | @@ -49,8 +49,9 @@ The options available for current stable version (0.1.4) are: |
|
|
| kmz | generate KMZ | bool | False |
|
|
|
| overwrite | overwrite outputs | bool | True |
|
|
|
| background | background orography (values = {bluemarble,shadedrelief,etopo,GIS}) | str | None |
|
|
|
| logo | put a logo (image path, x, y) | list | None |
|
|
|
| logo | put a logo (image path, x, y) | list of str | None |
|
|
|
|
|
|
**Note**: all options which are list of numbers (lat, lon, timesteps ...) can be indicated with the whole list or by a concise notation like: `0-10,2` *(from 0 to 10 every 2 - default every 1)*. If negative numbers are present their "-" symbol should be replaced by an "m", so: `m10-65,5` means *from -10 to 65 every 5*.
|
|
|
**Note**: all options which are list of numbers (lat, lon, timesteps, bounds, ticks ...) can be indicated with the whole list or by a concise string notation like: `0-10,2` *(from 0 to 10 every 2 - default every 1)*. If negative numbers are present their "-" symbol should be replaced by an "m", so: `m10-65,5` means *from -10 to 65 every 5*.
|
|
|
|
|
|
Come back to [How to use](how-to-use) |
|
|
\ No newline at end of file |
|
|
Back to [How to use](how-to-use)
|
|
|
Forward to [Command line examples](command-line-examples) |
|
|
\ No newline at end of file |