{"id":18722507,"url":"https://github.com/mdsumner/gdal-builds","last_synced_at":"2025-08-01T16:37:05.405Z","repository":{"id":216743696,"uuid":"742211367","full_name":"mdsumner/gdal-builds","owner":"mdsumner","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-11T03:10:25.000Z","size":223,"stargazers_count":3,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-11T04:22:40.759Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mdsumner.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-12T01:29:11.000Z","updated_at":"2025-02-11T03:10:28.000Z","dependencies_parsed_at":"2024-02-11T02:23:35.030Z","dependency_job_id":"3ef5cc7c-d4ca-4443-ad7f-3ae36c6773ee","html_url":"https://github.com/mdsumner/gdal-builds","commit_stats":{"total_commits":179,"total_committers":1,"mean_commits":179.0,"dds":0.0,"last_synced_commit":"0755f5862300e50e4f7a0b479e0e5232463f9ddc"},"previous_names":["mdsumner/gdal-builds"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdsumner%2Fgdal-builds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdsumner%2Fgdal-builds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdsumner%2Fgdal-builds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdsumner%2Fgdal-builds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mdsumner","download_url":"https://codeload.github.com/mdsumner/gdal-builds/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239587244,"owners_count":19663892,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T13:41:47.617Z","updated_at":"2025-02-19T02:48:04.922Z","avatar_url":"https://github.com/mdsumner.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\"\n)\n```\n\n# gdal-builds\n\n\u003c!-- badges: start --\u003e\n\u003c!-- badges: end --\u003e\n\nThe goal of gdal-builds is to create a single image with all geospatial libs up to date and with R and Python packages using them in alignment. \n\nThe builds are here: \n\nhttps://github.com/mdsumner/gdal-builds/pkgs/container/gdal-builds\n\n\nWe also push to docker hub for Singularity but that's not named sensibly yet so I'm not including it here. \n\n\n\nThis builds: \n\n- `rocker-gdal-dev`, this starts with [rocker/verse](https://rocker-project.org/images/) and adds GDAL from latest commit, and latest release PROJ and GEOS, with a number of R packages that all use these versions \n- `rocker-gdal-dev-python`, this adds a large number of python packages also aligned to the GDAL, PROJ, and GEOS versions. \n\nYou can do this to get into an interactive session, you'll see bleeding edge GDAL and very recent PROJ and geos installs. \n\n```\ndocker run --rm -ti ghcr.io/mdsumner/gdal-builds:rocker-gdal-dev-python  bash\n\n```\n\nRStudio server is included which is why we start with bash explicitly rather than spin up the server. \n\nIn there you can start R,  and you can immediately do\n\n```R\nlibrary(reticulate)\ngdal \u003c- import(\"osgeo.gdal\")\nrioxarray \u003c- import(\"rioxarray\")\ngeopandas \u003c- import(\"geopandas\")\n```\nand see that `show_versions()` of them all are in alignment (hurrah!). \n\n\nIF you want `/vsicurl` to work then you must run with this, for example: \n\n```\ndocker run --rm -ti --security-opt seccomp=unconfined ghcr.io/mdsumner/gdal-builds:rocker-gdal-dev \n```\n\n\n## NOTES\n\nI have an odd mix of pip installs that reflects me getting them to not install static binaries (I haven't succeed in aligning versions of HDF and NetCDF yet). \n\nAll very much WIP, I started by removing the rstudio and tidyverse stuff, but I've gone back to \"verse\" as the starting point because I can now host the image as an rstudio or jupyter server from HPC (story to be told in future). \n\nWe might unpick to multiple builds again, to reduce the size and to separate R and Python but this is all together is what I want for now. \n\nNote it's a very large image, like 6-7Gb and that's bigger than it could be. \n\nSee the versions of libs GEOS, PROJ, GDAL - these reports are as at 2024-03-11. \n\n\n```R\nterra::gdal()\nterra::gdal(lib = \"PROJ\")\nterra::gdal(lib = \"GEOS\")\n\nlibrary(reticulate)\nimport(\"geopandas\")$show_versions()\n\n\nimport(\"rioxarray\")$show_versions()\nimport(\"shapely\")$geos_version_string\n\n```\n\n```\n[1] \"3.9.0dev-0b6e5ab467\"\n[1] \"9.4.0\"\n[1] \"3.12.1\"\n\nSYSTEM INFO\n-----------\npython     : 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0]\nexecutable : /usr/bin/python3\nmachine    : Linux-5.15.0-94-generic-x86_64-with-glibc2.35\n\nGEOS, GDAL, PROJ INFO\n---------------------\nGEOS       : 3.12.1\nGEOS lib   : None\nGDAL       : 3.9.0dev-0b6e5ab467\nGDAL data dir: None\nPROJ       : 9.4.0\nPROJ data dir: /usr/local/share/proj\n\nPYTHON DEPENDENCIES\n-------------------\ngeopandas  : 0.14.3\nnumpy      : 1.26.4\npandas     : 2.2.1\npyproj     : 3.6.1\nshapely    : 2.0.3\nfiona      : 1.9.6\ngeoalchemy2: None\ngeopy      : None\nmatplotlib : 3.8.3\nmapclassify: None\npygeos     : None\npyogrio    : 0.7.2\npsycopg2   : None\npyarrow    : 15.0.1\nrtree      : None\nrioxarray (0.15.1) deps:\n  rasterio: 1.3.9\n    xarray: 2024.2.0\n      GDAL: 3.9.0dev-0b6e5ab467\n      GEOS: 3.12.1\n      PROJ: 9.4.0\n PROJ DATA: /root/.local/share/proj:/usr/local/share/proj:/usr/local/share/proj\n GDAL DATA: /usr/local/lib/R/site-library/terra//gdal\n\nOther python deps:\n     scipy: 1.12.0\n    pyproj: 3.6.1\n\nSystem:\n    python: 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0]\nexecutable: /usr/bin/python3\n   machine: Linux-5.15.0-94-generic-x86_64-with-glibc2.35\n[1] \"3.12.1\"\n\n```\n\n\n```R\nsystem(\"python3 -m pip list\")\n\n\nPackage                       Version\n----------------------------- -------------\naffine                        2.3.1\nalabaster                     0.7.16\nasciitree                     0.3.3\nattrs                         23.2.0\nBabel                         2.14.0\nboto3                         1.34.59\nbotocore                      1.34.59\ncachetools                    5.3.3\nCartopy                       0.22.0\ncertifi                       2024.2.2\ncffi                          1.16.0\ncftime                        1.6.3\ncharset-normalizer            3.3.2\nclick                         8.1.7\nclick-plugins                 1.1.1\ncligj                         0.7.2\ncloudpickle                   3.0.0\ncontourpy                     1.2.0\ncoverage                      7.4.3\ncycler                        0.12.1\nCython                        3.0.9\ndask                          2024.2.1\ndelocate                      0.10.7\ndevscripts                    2.22.1ubuntu1\ndocutils                      0.20.1\nexceptiongroup                1.2.0\nfasteners                     0.19\nfiona                         1.9.6\nfonttools                     4.49.0\nfsspec                        2024.2.0\ngeoarrow-c                    0.1.2\ngeoarrow-pandas               0.1.1\ngeoarrow-pyarrow              0.1.2\ngeopandas                     0.14.3\nh5netcdf                      1.3.0\nh5py                          3.10.0\nhypothesis                    6.99.2\nidna                          3.6\nimagesize                     1.4.1\nimportlib                     1.0.4\nimportlib_metadata            7.0.2\niniconfig                     2.0.0\nJinja2                        3.1.3\njmespath                      1.0.1\njsonschema                    4.21.1\njsonschema-specifications     2023.12.1\nkiwisolver                    1.4.5\nlocket                        1.0.0\nMarkupSafe                    2.1.5\nmatplotlib                    3.8.3\nmypy                          1.9.0\nmypy-extensions               1.0.0\nnetCDF4                       1.6.5\nnumcodecs                     0.12.1\nnumpy                         1.26.4\nnumpydoc                      1.6.0\nodc-geo                       0.4.3\npackaging                     24.0\npandas                        2.2.1\npartd                         1.4.1\npillow                        10.2.0\npip                           24.0\nplatformdirs                  4.2.0\npluggy                        1.4.0\npooch                         1.8.1\npyaml                         23.12.0\npyarrow                       15.0.1\npyarrow-hotfix                0.6\npycparser                     2.21\nPygments                      2.17.2\npyogrio                       0.7.2\npyparsing                     3.1.2\npyproj                        3.6.1\npyshp                         2.3.1\npystac                        1.9.0\npystac-client                 0.7.6\npytest                        8.1.1\npytest-cov                    4.1.0\npytest-randomly               3.10.1\npython-dateutil               2.9.0.post0\npytz                          2024.1\nPyYAML                        6.0.1\nrasterio                      1.3.9\nreferencing                   0.33.0\nrequests                      2.31.0\nrioxarray                     0.15.1\nrpds-py                       0.18.0\nrpy2                          3.5.15\nrpy2-arrow                    0.1.1\ns3transfer                    0.10.0\nscipy                         1.12.0\nsetuptools                    59.6.0\nshapely                       2.0.3\nsix                           1.16.0\nsnowballstemmer               2.2.0\nsnuggs                        1.4.7\nsortedcontainers              2.4.0\nSphinx                        7.2.6\nsphinx-click                  5.1.0\nsphinx-rtd-theme              2.0.0\nsphinxcontrib-applehelp       1.0.8\nsphinxcontrib-devhelp         1.0.6\nsphinxcontrib-htmlhelp        2.0.5\nsphinxcontrib-jquery          4.1\nsphinxcontrib-jsmath          1.0.1\nsphinxcontrib-qthelp          1.0.7\nsphinxcontrib-serializinghtml 1.1.10\nstackstac                     0.5.0\ntabulate                      0.9.0\ntomli                         2.0.1\ntoolz                         0.12.1\ntyping_extensions             4.10.0\ntzdata                        2024.1\ntzlocal                       5.2\nurllib3                       2.0.7\nwheel                         0.37.1\nxarray                        2024.2.0\nzarr                          2.17.1\nzipp                          3.17.0\n\n```\n\nAvailable R packages: \n\n```R\nsessioninfo::package_info(\"installed\")\n\n\n package           * version    date (UTC) lib source\n abind               1.4-5      2016-07-21 [1] CRAN (R 4.3.2)\n archive             1.1.7      2023-12-11 [1] RSPM (R 4.3.0)\n arrow               14.0.2.1   2024-02-23 [1] RSPM (R 4.3.0)\n askpass             1.2.0      2023-09-03 [1] RSPM (R 4.3.0)\n assertthat          0.2.1      2019-03-21 [1] RSPM (R 4.3.0)\n aws.s3              0.3.21     2020-04-07 [1] RSPM (R 4.3.0)\n aws.signature       0.6.0      2020-06-01 [1] RSPM (R 4.3.0)\n backports           1.4.1      2021-12-13 [1] RSPM (R 4.3.0)\n base64enc           0.1-3      2015-07-28 [1] RSPM (R 4.3.0)\n base64url           1.4        2018-05-14 [1] CRAN (R 4.3.2)\n batchtools          0.9.17     2023-04-20 [1] CRAN (R 4.3.2)\n BH                  1.84.0-0   2024-01-10 [1] CRAN (R 4.3.2)\n BiocManager         1.30.22    2023-08-08 [1] RSPM (R 4.3.0)\n bit                 4.0.5      2022-11-15 [1] RSPM (R 4.3.0)\n bit64               4.0.5      2020-08-30 [1] RSPM (R 4.3.0)\n blob                1.2.4      2023-03-17 [1] RSPM (R 4.3.0)\n blogdown            1.19       2024-02-01 [1] RSPM (R 4.3.0)\n blueant             0.12.0     2024-03-11 [1] Github (AustralianAntarcticDivision/blueant@3f6561b)\n bookdown            0.37       2023-12-01 [1] RSPM (R 4.3.0)\n boot                1.3-28.1   2022-11-22 [2] CRAN (R 4.3.2)\n bowerbird           0.15.0     2024-03-11 [1] https://scar.r-universe.dev (R 4.3.2)\n brew                1.0-10     2023-12-16 [1] RSPM (R 4.3.0)\n brio                1.1.4      2023-12-10 [1] RSPM (R 4.3.0)\n broom               1.0.5      2023-06-09 [1] RSPM (R 4.3.0)\n bslib               0.6.1      2023-11-28 [1] RSPM (R 4.3.0)\n cachem              1.0.8      2023-05-01 [1] RSPM (R 4.3.0)\n callr               3.7.5      2024-02-19 [1] RSPM (R 4.3.0)\n cellranger          1.1.0      2016-07-27 [1] RSPM (R 4.3.0)\n checkmate           2.3.1      2023-12-04 [1] CRAN (R 4.3.2)\n class               7.3-22     2023-05-03 [2] CRAN (R 4.3.2)\n classInt            0.4-10     2023-09-05 [1] CRAN (R 4.3.2)\n cli                 3.6.2      2023-12-11 [1] RSPM (R 4.3.0)\n clipr               0.8.0      2022-02-22 [1] RSPM (R 4.3.0)\n cluster             2.1.4      2022-08-22 [2] CRAN (R 4.3.2)\n codetools           0.2-19     2023-02-01 [2] CRAN (R 4.3.2)\n colorspace          2.1-0      2023-01-23 [1] RSPM (R 4.3.0)\n commonmark          1.9.1      2024-01-30 [1] RSPM (R 4.3.0)\n conflicted          1.2.0      2023-02-01 [1] RSPM (R 4.3.0)\n CopernicusMarine    0.2.3      2024-01-25 [1] RSPM (R 4.3.0)\n countrycode         1.5.0      2023-05-30 [1] RSPM (R 4.3.0)\n covr                3.6.4      2023-11-09 [1] RSPM (R 4.3.0)\n cpp11               0.4.7      2023-12-02 [1] RSPM (R 4.3.0)\n crayon              1.5.2      2022-09-29 [1] RSPM (R 4.3.0)\n credentials         2.0.1      2023-09-06 [1] RSPM (R 4.3.0)\n crew                0.9.0      2024-02-08 [1] CRAN (R 4.3.2)\n crew.cluster        0.3.0      2024-02-08 [1] CRAN (R 4.3.2)\n crosstalk           1.2.1      2023-11-23 [1] RSPM (R 4.3.0)\n crsmeta             0.3.0      2020-03-29 [1] RSPM (R 4.3.0)\n curl                5.2.0      2023-12-08 [1] RSPM (R 4.3.0)\n data.table          1.15.0     2024-01-30 [1] RSPM (R 4.3.0)\n DBI                 1.2.2      2024-02-16 [1] RSPM (R 4.3.0)\n dbplyr              2.4.0      2023-10-26 [1] RSPM (R 4.3.0)\n desc                1.4.3      2023-12-10 [1] RSPM (R 4.3.0)\n devtools            2.4.5      2022-10-11 [1] RSPM (R 4.3.0)\n DiagrammeR          1.0.11     2024-02-02 [1] RSPM (R 4.3.0)\n diffobj             0.3.5      2021-10-05 [1] RSPM (R 4.3.0)\n digest              0.6.34     2024-01-11 [1] RSPM (R 4.3.0)\n distill             1.6        2023-10-06 [1] RSPM (R 4.3.0)\n docopt              0.7.1      2020-06-24 [1] RSPM (R 4.3.2)\n dotCall64           1.1-1      2023-11-28 [1] CRAN (R 4.3.2)\n downlit             0.4.3      2023-06-29 [1] RSPM (R 4.3.0)\n dplyr               1.1.4      2023-11-17 [1] RSPM (R 4.3.0)\n dsn                 0.0.1.9011 2024-03-11 [1] Github (hypertidy/dsn@15743da)\n dtplyr              1.3.1      2023-03-22 [1] RSPM (R 4.3.0)\n duckdb              0.9.2-1    2023-11-28 [1] RSPM (R 4.3.0)\n e1071               1.7-14     2023-12-06 [1] CRAN (R 4.3.2)\n ellipsis            0.3.2      2021-04-29 [1] RSPM (R 4.3.0)\n evaluate            0.23       2023-11-01 [1] RSPM (R 4.3.0)\n fansi               1.0.6      2023-12-08 [1] RSPM (R 4.3.0)\n farver              2.1.1      2022-07-06 [1] RSPM (R 4.3.0)\n fastmap             1.1.1      2023-02-24 [1] RSPM (R 4.3.0)\n fields              15.2       2023-08-17 [1] CRAN (R 4.3.2)\n fontawesome         0.5.2      2023-08-19 [1] RSPM (R 4.3.0)\n forcats             1.0.0      2023-01-29 [1] RSPM (R 4.3.0)\n foreign             0.8-85     2023-09-09 [2] CRAN (R 4.3.2)\n fs                  1.6.3      2023-07-20 [1] RSPM (R 4.3.0)\n fst                 0.9.8      2022-02-08 [1] RSPM (R 4.3.0)\n fstcore             0.9.18     2023-12-02 [1] RSPM (R 4.3.0)\n furrr               0.3.1      2022-08-15 [1] CRAN (R 4.3.2)\n future              1.33.1     2023-12-22 [1] CRAN (R 4.3.2)\n future.batchtools   0.12.1     2023-12-20 [1] CRAN (R 4.3.2)\n gargle              1.5.2      2023-07-20 [1] RSPM (R 4.3.0)\n gdalcubes           0.7.0      2024-03-07 [1] CRAN (R 4.3.2)\n generics            0.1.3      2022-07-05 [1] RSPM (R 4.3.0)\n geodata             0.5-9      2023-10-13 [1] CRAN (R 4.3.2)\n geometries          0.2.4      2024-01-15 [1] CRAN (R 4.3.2)\n geosphere           1.5-18     2022-11-15 [1] CRAN (R 4.3.2)\n gert                2.0.1      2023-12-04 [1] RSPM (R 4.3.0)\n getip               0.1-4      2023-12-10 [1] CRAN (R 4.3.2)\n ggplot2             3.5.0      2024-02-23 [1] RSPM (R 4.3.0)\n gh                  1.4.0      2023-02-22 [1] RSPM (R 4.3.0)\n gitcreds            0.1.2      2022-09-08 [1] RSPM (R 4.3.0)\n globals             0.16.3     2024-03-08 [1] CRAN (R 4.3.2)\n glue                1.7.0      2024-01-09 [1] RSPM (R 4.3.0)\n googledrive         2.1.1      2023-06-11 [1] RSPM (R 4.3.0)\n googlesheets4       1.1.1      2023-06-11 [1] RSPM (R 4.3.0)\n gridExtra           2.3        2017-09-09 [1] RSPM (R 4.3.0)\n gtable              0.3.4      2023-08-21 [1] RSPM (R 4.3.0)\n haven               2.5.4      2023-11-30 [1] RSPM (R 4.3.0)\n here                1.0.1      2020-12-13 [1] CRAN (R 4.3.2)\n highr               0.10       2022-12-22 [1] RSPM (R 4.3.0)\n hms                 1.1.3      2023-03-21 [1] RSPM (R 4.3.0)\n htmltools           0.5.7      2023-11-03 [1] RSPM (R 4.3.0)\n htmlwidgets         1.6.4      2023-12-06 [1] RSPM (R 4.3.0)\n httpuv              1.6.14     2024-01-26 [1] RSPM (R 4.3.0)\n httr                1.4.7      2023-08-15 [1] RSPM (R 4.3.0)\n httr2               1.0.0      2023-11-14 [1] RSPM (R 4.3.0)\n ids                 1.0.1      2017-05-31 [1] RSPM (R 4.3.0)\n igraph              2.0.2      2024-02-17 [1] RSPM (R 4.3.0)\n ini                 0.3.1      2018-05-20 [1] RSPM (R 4.3.0)\n isoband             0.2.7      2022-12-20 [1] RSPM (R 4.3.0)\n jquerylib           0.1.4      2021-04-26 [1] RSPM (R 4.3.0)\n jsonlite            1.8.8      2023-12-04 [1] RSPM (R 4.3.0)\n KernSmooth          2.23-22    2023-07-10 [2] CRAN (R 4.3.2)\n knitr               1.45       2023-10-30 [1] RSPM (R 4.3.0)\n labeling            0.4.3      2023-08-29 [1] RSPM (R 4.3.0)\n Lahman              11.0-0     2023-05-04 [1] RSPM (R 4.3.0)\n later               1.3.2      2023-12-06 [1] RSPM (R 4.3.0)\n lattice             0.21-9     2023-10-01 [2] CRAN (R 4.3.2)\n lazyeval            0.2.2      2019-03-15 [1] RSPM (R 4.3.0)\n leaflet             2.2.1      2023-11-13 [1] RSPM (R 4.3.0)\n leaflet.providers   2.0.0      2023-10-17 [1] RSPM (R 4.3.0)\n lifecycle           1.0.4      2023-11-07 [1] RSPM (R 4.3.0)\n listenv             0.9.1      2024-01-29 [1] CRAN (R 4.3.2)\n littler             0.3.19     2023-12-17 [1] RSPM (R 4.3.2)\n lubridate           1.9.3      2023-09-27 [1] RSPM (R 4.3.0)\n lwgeom              0.2-14     2024-02-21 [1] CRAN (R 4.3.2)\n magrittr            2.0.3      2022-03-30 [1] RSPM (R 4.3.0)\n maps                3.4.2      2023-12-15 [1] CRAN (R 4.3.2)\n MASS                7.3-60     2023-05-04 [2] CRAN (R 4.3.2)\n Matrix              1.6-1.1    2023-09-18 [2] CRAN (R 4.3.2)\n memoise             2.0.1      2021-11-26 [1] RSPM (R 4.3.0)\n mgcv                1.9-0      2023-07-11 [2] CRAN (R 4.3.2)\n mime                0.12       2021-09-28 [1] RSPM (R 4.3.0)\n miniUI              0.1.1.1    2018-05-18 [1] RSPM (R 4.3.0)\n mirai               0.12.1     2024-02-02 [1] CRAN (R 4.3.2)\n modelr              0.1.11     2023-03-22 [1] RSPM (R 4.3.0)\n munsell             0.5.0      2018-06-12 [1] RSPM (R 4.3.0)\n nanoarrow           0.4.0.1    2024-02-23 [1] RSPM (R 4.3.0)\n nanonext            0.13.2     2024-03-01 [1] CRAN (R 4.3.2)\n ncdf4               1.22       2023-11-28 [1] CRAN (R 4.3.2)\n ncmeta              0.3.6      2023-11-01 [1] RSPM (R 4.3.0)\n nlme                3.1-163    2023-08-09 [2] CRAN (R 4.3.2)\n nnet                7.3-19     2023-05-03 [2] CRAN (R 4.3.2)\n nycflights13        1.0.2      2021-04-12 [1] RSPM (R 4.3.0)\n openssl             2.1.1      2023-09-25 [1] RSPM (R 4.3.0)\n packrat             0.9.2      2023-09-05 [1] RSPM (R 4.3.0)\n palr                0.4.0      2024-03-11 [1] Github (AustralianAntarcticDivision/palr@4a68082)\n parallelly          1.37.1     2024-02-29 [1] CRAN (R 4.3.2)\n pillar              1.9.0      2023-03-22 [1] RSPM (R 4.3.0)\n pkgbuild            1.4.3      2023-12-10 [1] RSPM (R 4.3.0)\n pkgconfig           2.0.3      2019-09-22 [1] RSPM (R 4.3.0)\n pkgdown             2.0.7      2022-12-14 [1] RSPM (R 4.3.0)\n pkgload             1.3.4      2024-01-16 [1] RSPM (R 4.3.0)\n plogr               0.2.0      2018-03-25 [1] RSPM (R 4.3.0)\n png                 0.1-8      2022-11-29 [1] RSPM (R 4.3.0)\n praise              1.0.0      2015-08-11 [1] RSPM (R 4.3.0)\n prettyunits         1.2.0      2023-09-24 [1] RSPM (R 4.3.0)\n processx            3.8.3      2023-12-10 [1] RSPM (R 4.3.0)\n profvis             0.3.8      2023-05-02 [1] RSPM (R 4.3.0)\n progress            1.2.3      2023-12-06 [1] RSPM (R 4.3.0)\n PROJ                0.4.5.9003 2024-03-11 [1] Github (hypertidy/PROJ@37836a8)\n proj4               1.0-14     2024-01-14 [1] RSPM (R 4.3.0)\n promises            1.2.1      2023-08-10 [1] RSPM (R 4.3.0)\n proxy               0.4-27     2022-06-09 [1] CRAN (R 4.3.2)\n ps                  1.7.6      2024-01-18 [1] RSPM (R 4.3.0)\n purrr               1.0.2      2023-08-10 [1] RSPM (R 4.3.0)\n R.methodsS3         1.8.2      2022-06-13 [1] RSPM (R 4.3.0)\n R.oo                1.26.0     2024-01-24 [1] RSPM (R 4.3.0)\n R.utils             2.12.3     2023-11-18 [1] RSPM (R 4.3.0)\n r2d3                0.2.6      2022-02-28 [1] RSPM (R 4.3.0)\n R6                  2.5.1      2021-08-19 [1] RSPM (R 4.3.0)\n raadfiles           0.1.4.9003 2024-03-11 [1] Github (AustralianAntarcticDivision/raadfiles@9793954)\n raadtools           0.6.0.9035 2024-03-11 [1] Github (AustralianAntarcticDivision/raadtools@e5ced96)\n ragg                1.2.7      2023-12-11 [1] RSPM (R 4.3.0)\n rappdirs            0.3.3      2021-01-31 [1] RSPM (R 4.3.0)\n raster              3.6-26     2023-10-14 [1] RSPM (R 4.3.0)\n rcmdcheck           1.4.0      2021-09-27 [1] RSPM (R 4.3.0)\n rcmip6              0.0.2.9000 2024-03-11 [1] Github (eliocamp/rcmip6@0a417ed)\n RColorBrewer        1.1-3      2022-04-03 [1] RSPM (R 4.3.0)\n Rcpp                1.0.12     2024-01-09 [1] RSPM (R 4.3.0)\n RcppTOML            0.2.2      2023-01-29 [1] CRAN (R 4.3.2)\n readr               2.1.5      2024-01-10 [1] RSPM (R 4.3.0)\n readxl              1.4.3      2023-07-06 [1] RSPM (R 4.3.0)\n redland             1.0.17-18  2024-02-24 [1] RSPM (R 4.3.0)\n rematch             2.0.0      2023-08-30 [1] RSPM (R 4.3.0)\n rematch2            2.1.2      2020-05-01 [1] RSPM (R 4.3.0)\n remotes             2.4.2.1    2023-07-18 [1] RSPM (R 4.3.0)\n renv                1.0.4      2024-02-21 [1] RSPM (R 4.3.0)\n reprex              2.1.0      2024-01-11 [1] RSPM (R 4.3.0)\n reproj              0.4.3      2022-10-28 [1] RSPM (R 4.3.0)\n reticulate        * 1.35.0     2024-01-31 [1] CRAN (R 4.3.2)\n rex                 1.2.1      2021-11-26 [1] RSPM (R 4.3.0)\n rJava               1.0-11     2024-01-26 [1] RSPM (R 4.3.0)\n rlang               1.1.3      2024-01-10 [1] RSPM (R 4.3.0)\n RMariaDB            1.3.1      2023-10-26 [1] RSPM (R 4.3.0)\n rmarkdown           2.25       2023-09-18 [1] RSPM (R 4.3.0)\n RNetCDF             2.9-1      2024-01-09 [1] RSPM (R 4.3.0)\n roxygen2            7.3.1      2024-01-22 [1] RSPM (R 4.3.0)\n rpart               4.1.21     2023-10-09 [2] CRAN (R 4.3.2)\n RPostgres           1.4.6      2023-10-22 [1] RSPM (R 4.3.0)\n rprojroot           2.0.4      2023-11-05 [1] RSPM (R 4.3.0)\n rsconnect           1.2.1      2024-01-31 [1] RSPM (R 4.3.0)\n rslurm              0.6.2      2023-02-24 [1] CRAN (R 4.3.2)\n RSQLite             2.3.5      2024-01-21 [1] RSPM (R 4.3.0)\n rstudioapi          0.15.0     2023-07-07 [1] RSPM (R 4.3.0)\n rticles             0.26       2023-12-20 [1] RSPM (R 4.3.0)\n rversions           2.1.2      2022-08-31 [1] RSPM (R 4.3.0)\n rvest               1.0.4      2024-02-12 [1] RSPM (R 4.3.0)\n s2                  1.1.6      2023-12-19 [1] CRAN (R 4.3.2)\n sass                0.4.8      2023-12-06 [1] RSPM (R 4.3.0)\n scales              1.3.0      2023-11-28 [1] RSPM (R 4.3.0)\n sds                 0.0.1.9004 2024-03-11 [1] Github (hypertidy/sds@87c5694)\n selectr             0.4-2      2019-11-20 [1] RSPM (R 4.3.0)\n servr               0.29       2024-02-09 [1] RSPM (R 4.3.0)\n sessioninfo         1.2.2      2021-12-06 [1] RSPM (R 4.3.0)\n sf                  1.0-15     2023-12-18 [1] CRAN (R 4.3.2)\n sfheaders           0.4.4      2024-01-17 [1] CRAN (R 4.3.2)\n shiny               1.8.0      2023-11-17 [1] RSPM (R 4.3.0)\n sourcetools         0.1.7-1    2023-02-01 [1] RSPM (R 4.3.0)\n sp                  2.1-3      2024-01-30 [1] CRAN (R 4.3.2)\n spam                2.10-0     2023-10-23 [1] CRAN (R 4.3.2)\n spatial             7.3-17     2023-07-20 [2] CRAN (R 4.3.2)\n stars               0.6-4      2023-09-11 [1] CRAN (R 4.3.2)\n stringi             1.8.3      2023-12-11 [1] RSPM (R 4.3.0)\n stringr             1.5.1      2023-11-14 [1] RSPM (R 4.3.0)\n survival            3.5-7      2023-08-14 [2] CRAN (R 4.3.2)\n sys                 3.4.2      2023-05-23 [1] RSPM (R 4.3.0)\n systemfonts         1.0.5      2023-10-09 [1] RSPM (R 4.3.0)\n terra               1.7-71     2024-01-31 [1] CRAN (R 4.3.2)\n testit              0.13       2021-04-14 [1] RSPM (R 4.3.0)\n testthat            3.2.1      2023-12-02 [1] RSPM (R 4.3.0)\n textshaping         0.3.7      2023-10-09 [1] RSPM (R 4.3.0)\n tibble              3.2.1      2023-03-20 [1] RSPM (R 4.3.0)\n tidyr               1.3.1      2024-01-24 [1] RSPM (R 4.3.0)\n tidyselect          1.2.0      2022-10-10 [1] RSPM (R 4.3.0)\n tidyverse           2.0.0      2023-02-22 [1] RSPM (R 4.3.0)\n timechange          0.3.0      2024-01-18 [1] RSPM (R 4.3.0)\n tinytex             0.49       2023-11-22 [1] RSPM (R 4.3.0)\n tufte               0.13       2023-06-22 [1] RSPM (R 4.3.0)\n tzdb                0.4.0      2023-05-12 [1] RSPM (R 4.3.0)\n units               0.8-5      2023-11-28 [1] CRAN (R 4.3.2)\n urlchecker          1.0.1      2021-11-30 [1] CRAN (R 4.3.2)\n usethis             2.2.3      2024-02-19 [1] RSPM (R 4.3.0)\n utf8                1.2.4      2023-10-22 [1] RSPM (R 4.3.0)\n uuid                1.2-0      2024-01-14 [1] RSPM (R 4.3.0)\n vapour              0.9.5.9010 2024-03-11 [1] Github (hypertidy/vapour@5e67be7)\n vctrs               0.6.5      2023-12-01 [1] RSPM (R 4.3.0)\n viridis             0.6.5      2024-01-29 [1] RSPM (R 4.3.0)\n viridisLite         0.4.2      2023-05-02 [1] RSPM (R 4.3.0)\n visNetwork          2.1.2      2022-09-29 [1] RSPM (R 4.3.0)\n vroom               1.6.5      2023-12-05 [1] RSPM (R 4.3.0)\n waldo               0.5.2      2023-11-02 [1] RSPM (R 4.3.0)\n webshot             0.5.5      2023-06-26 [1] RSPM (R 4.3.0)\n whatarelief         0.0.1.9012 2024-03-11 [1] Github (hypertidy/whatarelief@4520ba7)\n whisker             0.4.1      2022-12-05 [1] RSPM (R 4.3.0)\n whoami              1.3.0      2019-03-19 [1] RSPM (R 4.3.0)\n withr               3.0.0      2024-01-16 [1] RSPM (R 4.3.0)\n wk                  0.9.1      2023-11-29 [1] CRAN (R 4.3.2)\n xaringan            0.29       2024-02-09 [1] RSPM (R 4.3.0)\n xfun                0.42       2024-02-08 [1] RSPM (R 4.3.0)\n ximage              0.0.0.9011 2024-03-11 [1] Github (hypertidy/ximage@4d8e7ab)\n xml2                1.3.6      2023-12-04 [1] RSPM (R 4.3.0)\n xopen               1.0.0      2018-09-17 [1] RSPM (R 4.3.0)\n xtable              1.8-4      2019-04-21 [1] RSPM (R 4.3.0)\n yaml                2.3.8      2023-12-11 [1] RSPM (R 4.3.0)\n zip                 2.3.1      2024-01-27 [1] RSPM (R 4.3.0)\n\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdsumner%2Fgdal-builds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmdsumner%2Fgdal-builds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdsumner%2Fgdal-builds/lists"}