From nobody Sat Oct 16 07:48:44 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 60A7517F3967; Sat, 16 Oct 2021 07:48:56 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HWZyP6gpjz4Tvc; Sat, 16 Oct 2021 07:48:45 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3D199162A6; Sat, 16 Oct 2021 07:48:44 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19G7miur011481; Sat, 16 Oct 2021 07:48:44 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19G7mia2011480; Sat, 16 Oct 2021 07:48:44 GMT (envelope-from git) Date: Sat, 16 Oct 2021 07:48:44 GMT Message-Id: <202110160748.19G7mia2011480@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Jimmy Olgeni Subject: git: 6ee22804e409 - main - devel/libght: fix typos in pkg-descr and reformat. List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: olgeni X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 6ee22804e40961be5d2243f3969f82bb1a91bfa2 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by olgeni: URL: https://cgit.FreeBSD.org/ports/commit/?id=6ee22804e40961be5d2243f3969f82bb1a91bfa2 commit 6ee22804e40961be5d2243f3969f82bb1a91bfa2 Author: Jimmy Olgeni AuthorDate: 2021-10-15 22:13:32 +0000 Commit: Jimmy Olgeni CommitDate: 2021-10-16 07:09:27 +0000 devel/libght: fix typos in pkg-descr and reformat. --- devel/libght/pkg-descr | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/devel/libght/pkg-descr b/devel/libght/pkg-descr index 8461006eceb8..71d4200a95d6 100644 --- a/devel/libght/pkg-descr +++ b/devel/libght/pkg-descr @@ -1,19 +1,22 @@ -A file format and library for storing and rapidly accessing point cloud data, in - particular LIDAR data. +A file format and library for storing and rapidly accessing point +cloud data, in particular LIDAR data. -GeoHashTree organizes points into a tree structure for fast spatial access. The -tree structure itself encodes the significant bits of at each node, so child nod -es can omit them. The result is a smaller file than if all the points were store -d with full precision. Each node includes statistical information about the chil -dren below (e.g. average/median Z value) permitting fast overview generation. Ad -ditional attributes are attached to the tree at parent nodes, below which all ch -ildren share the attribute value. This reduces duplicate data storage further. +GeoHashTree organizes points into a tree structure for fast spatial +access. The tree structure itself encodes the significant bits of +at each node, so child nodes can omit them. The result is a smaller +file than if all the points were stored with full precision. Each +node includes statistical information about the children below (e.g. +average/median Z value) permitting fast overview generation. +Additional attributes are attached to the tree at parent nodes, +below which all children share the attribute value. This reduces +duplicate data storage further. -The advantage of a GeoHashTree file over a LAS file is fast access and filtering -, since the tree encodes useful information at each node to speed searches over -the full set of points in the file. LASZ zipped files can be smaller, but will b -e less efficient at overviews, searching and sub-setting. GHT is a good working -format for applications that will be filtering and querying large sets of LIDAR -data. +The advantage of a GeoHashTree file over a LAS file is fast access +and filtering, since the tree encodes useful information at each +node to speed searches over the full set of points in the file. +LASZ zipped files can be smaller, but will be less efficient at +overviews, searching and sub-setting. GHT is a good working format +for applications that will be filtering and querying large sets of +LIDAR data. WWW: https://github.com/pramsey/libght