Skip to content

Commit 66bf244

Browse files
alshanileasile
authored andcommitted
Update to Lets-Plot Kotlin API v1.1.0, Lets-Plot v1.5.4
Add lets-plot-gt.json Capitalize Lets-Plot library name
1 parent 4a24203 commit 66bf244

File tree

6 files changed

+32
-10
lines changed

6 files changed

+32
-10
lines changed

docs/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ List of supported libraries:
162162
- [dataframe](https://github.com/nikitinas/krangl-typed) - Kotlin framework for structured data processing
163163
- [deeplearning4j](https://github.com/eclipse/deeplearning4j) - Deep learning library for the JVM
164164
- [deeplearning4j-cuda](https://github.com/eclipse/deeplearning4j) - Deep learning library for the JVM (CUDA support)
165-
- default - Default imports: dataframe and lets-plot libraries
165+
- default - Default imports: dataframe and Lets-Plot libraries
166166
- [exposed](https://github.com/JetBrains/Exposed) - Kotlin SQL framework
167167
- [fuel](https://github.com/kittinunf/fuel) - HTTP networking library
168168
- [gral](https://github.com/eseifert/gral) - Java library for displaying plots
@@ -175,7 +175,8 @@ List of supported libraries:
175175
- [krangl](https://github.com/holgerbrandl/krangl) - Kotlin DSL for data wrangling
176176
- [kravis](https://github.com/holgerbrandl/kravis) - Kotlin grammar for data visualization
177177
- [lets-plot](https://github.com/JetBrains/lets-plot-kotlin) - ggplot-like interactive visualization for Kotlin
178-
- [lets-plot-dataframe](https://github.com/JetBrains/lets-plot-kotlin) - A bridge between lets-plot and dataframe libraries
178+
- [lets-plot-dataframe](https://github.com/JetBrains/lets-plot-kotlin) - A bridge between Lets-Plot and dataframe libraries
179+
- [lets-plot-gt](https://github.com/JetBrains/lets-plot-kotlin) - Lets-Plot visualisation for GeoTools toolkit
179180
- [mysql](https://github.com/mysql/mysql-connector-j) - MySql JDBC Connector
180181
- [numpy](https://github.com/Kotlin/kotlin-numpy) - Kotlin wrapper for Python NumPy package
181182
- [plotly](https://github.com/mipt-npm/plotly.kt) - An experimental plotly.kt integration module. Supports static plots and HTML dashboards.

libraries/default.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"description": "Default imports: dataframe and lets-plot libraries",
2+
"description": "Default imports: dataframe and Lets-Plot libraries",
33
"init": [
44
"%use dataframe, lets-plot-dataframe"
55
]

libraries/lets-plot-dataframe.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"description": "A bridge between lets-plot and dataframe libraries",
2+
"description": "A bridge between Lets-Plot and dataframe libraries",
33
"properties": {
44
"v": "0.0.10-dev-15"
55
},

libraries/lets-plot-gt.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"description": "Lets-Plot visualisation for GeoTools toolkit",
3+
"link": "https://github.com/JetBrains/lets-plot-kotlin",
4+
"properties": {
5+
"api": "1.1.0",
6+
"gt": "[23,)"
7+
},
8+
"repositories": [
9+
"https://repo.osgeo.org/repository/release",
10+
"https://jetbrains.bintray.com/lets-plot-maven"
11+
],
12+
"dependencies": [
13+
"org.jetbrains.lets-plot-kotlin:lets-plot-kotlin-geotools:$api",
14+
"org.geotools:gt-geojson:$gt"
15+
],
16+
"imports": [
17+
"jetbrains.letsPlot.toolkit.geotools.toSpatialDataset"
18+
]
19+
}

libraries/lets-plot.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"description": "ggplot-like interactive visualization for Kotlin",
33
"properties": {
4-
"api": "1.0.0",
5-
"lib": "1.5.2",
6-
"js": "1.5.2",
4+
"api": "1.1.0",
5+
"lib": "1.5.4",
6+
"js": "1.5.4",
77
"isolatedFrame": ""
88
},
99
"link": "https://github.com/JetBrains/lets-plot-kotlin",
@@ -23,7 +23,9 @@
2323
"jetbrains.letsPlot.scale.*",
2424
"jetbrains.letsPlot.facet.*",
2525
"jetbrains.letsPlot.sampling.*",
26-
"jetbrains.letsPlot.export.*"
26+
"jetbrains.letsPlot.export.*",
27+
"jetbrains.letsPlot.tooltips.layer_tooltips",
28+
"jetbrains.letsPlot.tooltips.tooltips_none"
2729
],
2830
"init": [
2931
"import jetbrains.letsPlot.LetsPlot",

src/test/kotlin/org/jetbrains/kotlin/jupyter/test/replTests.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -614,9 +614,9 @@ class ReplWithResolverTest : AbstractReplTest() {
614614
@file:DependsOn("org.geotools:gt-shapefile:[23,)")
615615
@file:DependsOn("org.geotools:gt-cql:[23,)")
616616
617-
%use lets-plot(api=1.0.1-dev-1)
617+
%use lets-plot(api=1.1.0)
618618
619-
@file:DependsOn("org.jetbrains.lets-plot-kotlin:lets-plot-kotlin-geotools:1.0.1-dev-1")
619+
@file:DependsOn("org.jetbrains.lets-plot-kotlin:lets-plot-kotlin-geotools:1.1.0")
620620
621621
import jetbrains.letsPlot.toolkit.geotools.toSpatialDataset
622622
""".trimIndent()

0 commit comments

Comments
 (0)