We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc1d85f commit 9b91f6aCopy full SHA for 9b91f6a
demo.qmd
@@ -8,6 +8,7 @@
8
library(sf)
9
sf::write_sf(spData::world, "world.gpkg")
10
plot(spData::world)
11
+julia = JuliaCall::julia_setup() # setup Julia
12
```
13
14
## Python
@@ -22,7 +23,7 @@ world.plot()
22
23
## Julia
24
25
```{julia}
-#| echo: true
26
+import Pkg; Pkg.add("GeoDataFrames")
27
using GeoDataFrames
28
world = GeoDataFrames.read("world.gpkg")
29
index.qmd
@@ -63,4 +63,5 @@ Activate the Julia environment:
63
using Pkg
64
Pkg.activate(".")
65
Pkg.instantiate()
66
+Pkg.add("GeoDataFrames")
67
0 commit comments