We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Might extend to many other geometries/attributes.
Plotting of points with a color doesn't seem to work.
using GeoInterface, ArchGDAL, Plots geom = ArchGDAL.createpoint.(rand(10), rand(10)) plot(geom, seriestype=:scatter, marker_z=rand(10))
If we bypass our recipe however, we get colors
plot(Tuple.(GeoInterface.coordinates.(geom)), seriestype=:scatter, marker_z=rand(10))
Also note that a label is now automatically added.
The text was updated successfully, but these errors were encountered:
Hmm, if I pass a label to the first plot, you get 10 labels, implicating our recipes is sending 10 series of a single(?) point to the backend.
edit: If you pass a matrix as colors, like marker_z=rand(1,10), you do end up with different colors.
marker_z=rand(1,10)
Sorry, something went wrong.
Relates to JuliaPlots/Plots.jl#3880
Simple fix passing colors as an adjoint: plot(geom, seriestype=:scatter, marker_z=rand(10)')
plot(geom, seriestype=:scatter, marker_z=rand(10)')
No branches or pull requests
Might extend to many other geometries/attributes.
Plotting of points with a color doesn't seem to work.
If we bypass our recipe however, we get colors
Also note that a label is now automatically added.
The text was updated successfully, but these errors were encountered: