Skip to content

Commit

Permalink
add package versions to preface
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldorman committed May 8, 2024
1 parent 04c6a4f commit 6749cf8
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
40 changes: 40 additions & 0 deletions geckodriver.log
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,43 @@ Gtk-Message: 12:03:06.707: Not loading module "atk-bridge": The functionality is
1705313104189 geckodriver INFO Listening on 127.0.0.1:41321
1705313104991 geckodriver INFO Listening on 127.0.0.1:33763
1705313105755 geckodriver INFO Listening on 127.0.0.1:47579
1715150297597 geckodriver INFO Listening on 127.0.0.1:56477
1715150298340 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "56847" "-no-remote" "-profile" "/tmp/rust_mozprofileTYlpvH"
*** You are running in headless mode.
Gtk-Message: 09:38:18.598: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
1715150434357 geckodriver INFO Listening on 127.0.0.1:40743
1715150435062 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "56515" "-no-remote" "-profile" "/tmp/rust_mozprofileeAqeO0"
*** You are running in headless mode.
Gtk-Message: 09:40:35.258: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
1715150473420 geckodriver INFO Listening on 127.0.0.1:60997
1715150474240 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "44745" "-no-remote" "-profile" "/tmp/rust_mozprofilexG1N2V"
*** You are running in headless mode.
Gtk-Message: 09:41:14.502: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
1715150566136 geckodriver INFO Listening on 127.0.0.1:55175
1715150566837 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "42467" "-no-remote" "-profile" "/tmp/rust_mozprofileSg2Ry5"
*** You are running in headless mode.
Gtk-Message: 09:42:47.023: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
1715150697465 geckodriver INFO Listening on 127.0.0.1:52113
1715150697643 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "54277" "-no-remote" "-profile" "/tmp/rust_mozprofilepypmpn"
*** You are running in headless mode.
Gtk-Message: 09:44:57.901: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
1715150828451 geckodriver INFO Listening on 127.0.0.1:54773
1715150829136 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "42397" "-no-remote" "-profile" "/tmp/rust_mozprofileURvzeL"
*** You are running in headless mode.
Gtk-Message: 09:47:09.373: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
1715150959709 geckodriver INFO Listening on 127.0.0.1:45795
1715150960436 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "41567" "-no-remote" "-profile" "/tmp/rust_mozprofile9svxlw"
*** You are running in headless mode.
Gtk-Message: 09:49:20.628: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
1715150992505 geckodriver INFO Listening on 127.0.0.1:50107
1715150993229 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--headless" "--remote-debugging-port" "45849" "-no-remote" "-profile" "/tmp/rust_mozprofileKSqqiO"
*** You are running in headless mode.
Gtk-Message: 09:49:53.444: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
31 changes: 31 additions & 0 deletions preface.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,37 @@ To run the code examples, you can [download](https:/geocompx/geocomp
└── 08-mapping.qmd
```

## Software

Python version used when rendering the book:

```{python}
#| echo: false
import sys
print(sys.version)
```

Versions of the main packages used in the book:

```{python}
#| echo: false
import subprocess
packages = [
'numpy',
'pandas',
'shapely',
'geopandas',
'rasterio',
'matplotlib',
'rasterstats'
]
result = ''
for i in packages:
x = 'pip freeze | grep ^%s==' % i
result += subprocess.run(x, shell=True, executable='/bin/bash', capture_output=True, text=True).stdout
print(result)
```

## Acknowlegements

We acknowledge Robin Lovelace, Jakub Nowosad, and Jannes Muenchow---authors of [Geocomputation with R](https://r.geocompx.org/) (Robin and Jakub also author the present book), a book on the same topic for a different programming language (R). The structure, topics, and most of the theoretical discussions were adapted from that earlier publication.
Expand Down

0 comments on commit 6749cf8

Please sign in to comment.