Skip to content

Commit

Permalink
rm reverse again
Browse files Browse the repository at this point in the history
  • Loading branch information
dmetivie committed Apr 23, 2024
1 parent 555617a commit ebdf08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/geo_makie_features.jl
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ function map_with_stations(LON_idx, LAT_idx, value::AbstractArray{V}; station_na
add_feature!(ax[k], coastline(precision_scale), color=:black, linewidth=0.75)
add_feature!(ax[k], borders(precision_scale), linestyle=:dash, color=:black, linewidth=0.75)

sc = GeoMakie.scatter!(ax[k], LON_idx, LAT_idx; color=value[k], markersize=15, GeoMakie.Reverse(:plasma), colorrange =(0, 1))
sc = GeoMakie.scatter!(ax[k], LON_idx, LAT_idx; color=value[k], markersize=15, :plasma, colorrange =(0, 1))
if show_value == true
GeoMakie.text!(ax[k], LON_idx, LAT_idx; text=string.(value), color=:black, font=:bold, offset=(8, 10), align=(:left, :top), fontsize=18)
# [annotate!(ax, "$(value[j])", (LON_idx[j] - lon_shift[j], LAT_idx[j] - lat_shift[j]), fontsize=fontsize, weight="bold") for j = 1:size(station_name, 1)]
Expand Down

0 comments on commit ebdf08f

Please sign in to comment.