Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/fourcolors.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Apply graph coloring to assign colors to polygons such that no two adjacent poly
Default: "CODE"
- `ncolors`: Number of colors to use. Default: 4 (four color theorem). Use more for fewer regions
(e.g., 7 for continents) to get distinct colors for each.
- `colors`: Vector of color names or RGB tuples. Default: [:tomato, :skyblue, :lightgreen, :gold]
- `colors`: Vector of color names or R/G/B strings. Default: [:tomato, :skyblue, :lightgreen, :gold]
If `ncolors` > length(colors), colors will cycle.
- `index`: If true, return only the color indices without plotting. Default: false
- `kw...`: Additional keyword arguments passed to `plot` for visualization.
Expand Down
4 changes: 2 additions & 2 deletions src/pscoast.jl
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ function coast_parser(first::Bool, clip::String; kwargs...)
toTrack == "" && (POSTMAN[]["plusZzero"] = "y")# If toTrack the extra column is added by the grdtrack call below
end
end
if (!occursin("-E+l", cmd) && !occursin("-E+L", cmd)) # I.e., no listings only

if (!(occursin("-E", cmd) && have_opt_M)) # I.e., no DCW parse -R
cmd, = parse_R(d, cmd, O=O, del=true, RIr=false, noGlobalR=have_opt_M) # If have_opt_M we don't set the -R limits in globals
if (!have_opt_M) # If Dump no -R & -B
cmd = parse_J(d, cmd, default="guess", map=true, O=O)[1]
Expand Down
Loading