File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
dataframe-geo-jupyter/src/main/kotlin/org/jetbrains/kotlinx/dataframe/jupyter Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ internal class IntegrationGeo : JupyterIntegration() {
55
55
}
56
56
57
57
render<GeoDataFrame <* >> {
58
- println (" GeoDataFrame with ${it.crs} CRS and inner dataframe:" )
58
+ println (" GeoDataFrame with ${it.crs?.name?.code } CRS and inner dataframe:" )
59
59
it.df
60
60
}
61
61
@@ -72,7 +72,7 @@ internal class IntegrationGeo : JupyterIntegration() {
72
72
val generatedDf = execute(
73
73
codeWithTypeCastGenerator = replCodeGeneratorImpl.process(geo.df, kProperty),
74
74
expression = " (${kProperty.name} .df as DataFrame<*>)" ,
75
- ).let { " `" + it.toString() + " `" }
75
+ ).let { " `$it `" }
76
76
val name = execute(" GeoDataFrame($generatedDf , ${kProperty.name} .crs)" ).name
77
77
name
78
78
}
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ repositories {
17
17
mavenCentral()
18
18
}
19
19
20
-
21
20
dependencies {
22
21
api(projects.dataframe)
23
22
You can’t perform that action at this time.
0 commit comments