-
Is there any roadmap available regarding Lets-plot ? is the plan to offer all the capabilities of ggplot2 through Lets-plot or is there parts of ggplot2 that will never be available in Lets-plot ? |
Beta Was this translation helpful? Give feedback.
Replies: 12 comments 47 replies
-
No, we don't do roadmaps. We have a list of priority tasks in the beginning of each quarter and we do short-term planning every week depending on ongoing feedback and resources available. As for ggplot2 API we are expecting to have most of it in some form in Lets-plot eventually. For example currently trying to rework our coordinate systems in order to support polar coordinate system and various map projections. Which in particular ggplot2 capabilities do you have in mind? |
Beta Was this translation helpful? Give feedback.
-
Yes, it does work this way currently. Whatever the original CRS is we retroject it to WGS84 lon/lat coordinates and then re-project coordinates according to selected coordinate system. At minimum, we can try to add for UTM projection to
In ggplot2 this (or similar) is done by defining I've just checked how it works with Do you also require to be able to set the image coordinates? Currently its left-lower pixel is always at [0,0]. |
Beta Was this translation helpful? Give feedback.
-
Yes, natural limits in your example would be x:[0,9], y:[0:14]. X-limits [2,8] is what I call "narrowed". Any wider limit like x:[-1, 10] would work.
In |
Beta Was this translation helpful? Give feedback.
-
It's very cool you've chosen to use Lets-Plot instead of Plotly/Folium!
Livemap in Lets-Plot does also support multiple layers of overlays but for the moment they are only: point, path, polygon, tile (and derived like
Absolutely! Please keep us updated. |
Beta Was this translation helpful? Give feedback.
-
Hi Eric! Btw, have you ever considered using PyCharm for some of your projects? There is Lets-Plot in SciView plugin for PyCharm allowing visualization right in the IDE. However, the "SciView" option is only available in "pro" edition. |
Beta Was this translation helpful? Give feedback.
-
Hi @egayer! In the recent release 2.5.1 we've added features we discussed here. Note that We've added support for UTM and other CRS-s as well, via the In short, when you draw a DEM image and a GeoDataFrame on the same chart, you will pass EPSG code of the image's CRS to There are also few other examples in the CHANGELOG. Why don't you give it a try? ) Note, image overlay on live-map is not yet supported, may be next time. |
Beta Was this translation helpful? Give feedback.
-
Are In general in lets-plot, positional "no data" values are dropped, and not positional (color, fill) are replaced with |
Beta Was this translation helpful? Give feedback.
-
Hi @egayer , just my update on the progress. Also, I was able to many-folds improve |
Beta Was this translation helpful? Give feedback.
-
Hi, you already can try lets-plot 3.0.0rc1: Some "breaking" changes: Python 3.6 is no longer supported, |
Beta Was this translation helpful? Give feedback.
-
Hi @egayer , could you share some sources of DEM files and shape-files? |
Beta Was this translation helpful? Give feedback.
-
Hi @egayer , It took a while but finally your "data guide" made it to production :) See "example notebook" in the "Data" section: https://lets-plot.org/pages/charts.html Thanx for contribution! |
Beta Was this translation helpful? Give feedback.
-
Hi @alshan, I tried to for example I would like to plot these 3 lines as independent lines (variable1) and coloured by
but there is no break between the different lines. I thought one trick would be to insert NaNs to separate the lines :
but the different lines are still joined :( thanks for your help and directions ! |
Beta Was this translation helpful? Give feedback.
The gap you see between the data and axis is likely the effect of positional scales "expand".
Try to set the multiplicative and additive "expand" to zero: