[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/18: gnu: Add h3.
From: |
guix-commits |
Subject: |
04/18: gnu: Add h3. |
Date: |
Mon, 8 May 2023 05:51:47 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 53809e5f4bb369ae634e11531ef647ea2282b170
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Fri Apr 28 00:43:01 2023 +0100
gnu: Add h3.
* gnu/packages/geo.scm (h3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/geo.scm | 26 +++++++++++++++++++++++++-
1 file changed, 25 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index cd56f50bf0..7b327a930d 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -14,7 +14,7 @@
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2020 Christopher Baines <mail@cbaines.net>
;;; Copyright © 2020, 2021, 2022, 2023 Felix Gruber <felgru@posteo.net>
-;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
+;;; Copyright © 2021, 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2021, 2023 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2021 Clément Lassieur <clement@lassieur.org>
;;; Copyright © 2021, 2022 Nikolay Korotkiy <sikmir@disroot.org>
@@ -227,6 +227,30 @@ data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and
IEG. There are more
than 600 operators available.")
(license license:bsd-3)))
+(define-public h3
+ (package
+ (name "h3")
+ (version "4.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/uber/h3")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0x764xzna8ka6yhgv2y4hb158a61y3g9a6835qckqp7wfkpqvb7f"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON")))
+ (home-page "https://h3geo.org/")
+ (synopsis "Hexagonal hierarchical geospatial indexing system")
+ (description "H3 is a geospatial indexing system using a hexagonal grid
+that can be (approximately) subdivided into finer and finer hexagonal grids,
+combining the benefits of a hexagonal grid with S2's hierarchical
+subdivisions.")
+ (license license:asl2.0)))
+
(define-public memphis
(package
(name "memphis")
- branch master updated (0e09e8ab15 -> 12c529c071), guix-commits, 2023/05/08
- 04/18: gnu: Add h3.,
guix-commits <=
- 01/18: gnu: openttd-engine: Update to 13.1., guix-commits, 2023/05/08
- 09/18: gnu: python-pytest-astropy: Simplify package., guix-commits, 2023/05/08
- 03/18: gnu: python-pytest-doctestplus: Update to 0.12.1., guix-commits, 2023/05/08
- 06/18: gnu: Add python-h3., guix-commits, 2023/05/08
- 07/18: gnu: Add python-timezonefinder., guix-commits, 2023/05/08
- 05/18: gnu: Sort use-module alphabetically in (gnu packages geo)., guix-commits, 2023/05/08
- 08/18: gnu: python-pytest-filter-subpackage: Update to 0.1.2., guix-commits, 2023/05/08
- 02/18: gnu: tio: Update to 2.5., guix-commits, 2023/05/08
- 10/18: gnu: python-extension-helpers: Update to 1.0.0., guix-commits, 2023/05/08
- 13/18: gnu: python-pytest-remotedata: Update to 0.4.0., guix-commits, 2023/05/08