Skip to content

Commit a0054a0

Browse files
authored
Merge PR#156 to draft-1.5 from ASPRSorg/issue-71-alt-1.5
Implements normalized wiki links and add introductory chapter to LAS 1.5 Also includes the following: minor updates to patch github actions normalize page break notation update OGC links
2 parents 2e630da + df162fa commit a0054a0

File tree

7 files changed

+28
-14
lines changed

7 files changed

+28
-14
lines changed

.github/workflows/pdf.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,16 @@ jobs:
2828
- name: Spelling
2929
run: |
3030
make spelling
31-
- uses: actions/upload-artifact@v3
31+
- uses: actions/upload-artifact@v4
3232
with:
3333
name: PDF
3434
path: build/latex/LAS.pdf
35-
- uses: actions/upload-artifact@v3
35+
if-no-files-found: error
36+
- uses: actions/upload-artifact@v4
3637
with:
3738
name: Misspelled
3839
path: build/spelling/output.txt
40+
if-no-files-found: ignore
3941

4042

4143

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
build/
2+
.vscode

source/01_intro.txt

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,8 @@ Summary of LAS 1.4 revisions (GitHub Issue numbers included when applicable):
145145
(`I-55 <https://github.com/ASPRSorg/LAS/issues/55>`_)
146146
* Clarified how and when certain header fields should be zero-filled.
147147
(`I-101 <https://github.com/ASPRSorg/LAS/issues/101>`_)
148+
* Added Official LAS Wiki section.
149+
(`I-71 <https://github.com/ASPRSorg/LAS/issues/71>`_)
148150
* More closely aligned data types with C99 definitions.
149151
(`I-115 <https://github.com/ASPRSorg/LAS/issues/115>`_)
150152

@@ -178,7 +180,7 @@ The additions of LAS 1.4 include:
178180

179181
* Added definitions for "LAS Domain Profile" and "LAS Domain Profile
180182
Description".
181-
* Added links to official LAS wiki: https://github.com/ASPRSorg/LAS/wiki
183+
* Added references to :ref:`Official LAS Wiki <laswiki_link>`.
182184

183185

184186
Conformance
@@ -207,17 +209,22 @@ this standard can be directed to ASPRS:
207209
OGC
208210
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
209211

210-
LAS has been recognized by the Open Geospatial Consortium (`OGC`_) in 2018 as an
212+
LAS has been recognized by the Open Geospatial Consortium (`OGC`_) since 2018 as an
211213
OGC Community Standard. The OGC version of the document with forward material
212214
about standards that LAS references and its status within the standard body can
213-
be found at https://portal.opengeospatial.org/files/17-030r1.
215+
be found at https://www.ogc.org/publications/standard/las/.
214216

215217
Future recognition and activity on OGC referencing activities of LAS can be
216-
followed at http://www.opengeospatial.org/standards/community.
218+
followed at https://www.ogc.org/publications/.
217219

218-
.. _`OGC`: http://www.opengeospatial.org
220+
.. _`OGC`: https://www.ogc.org
219221

220-
.. raw:: latex
221222

222-
\newpage
223+
.. _laswiki_link:
223224

225+
Official LAS Wiki
226+
................................................................................
227+
228+
The official LAS wiki hosts supplemental guidance pages, links to external
229+
resources, public registries, and more LAS-related resources.
230+
The wiki can be found at https://github.com/ASPRSorg/LAS/wiki.

source/02.00_definition.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
.. raw:: latex
2+
3+
\newpage
4+
15
LAS Format Definition
26
--------------------------------------------------------------------------------
37

source/02.04_header.sub

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ file can be uniquely identified, globally.
227227
.. note::
228228

229229
Example implementations of representing the Project ID fields as a GUID can
230-
be found on the official LAS wiki: https://github.com/ASPRSorg/LAS/wiki
230+
be found on the :ref:`Official LAS Wiki <laswiki_link>`.
231231

232232
**Version Number**
233233

@@ -445,8 +445,8 @@ The Time Offset field can be used to optimize :ref:`GPS Time <gpstime_link>` pre
445445
Offset GPS Time for a point record is equal to standard GPS Time, minus :math:`10^6` * Time Offset.
446446

447447
For example, Adjusted Standard GPS Time uses a total offset of 1 billion (:math:`10^9`) seconds, which would be specified by a Time Offset of 1000.
448-
This achieves 100 nanosecond precision for the years 2007-2015. The LAS wiki provides
449-
`recommended values <https://github.com/ASPRSorg/LAS/wiki/Suggested-LAS-1.5-Time-Offset-Values>`_
448+
This achieves 100 nanosecond precision for the years 2007-2015. The
449+
:ref:`Official LAS Wiki <laswiki_link>` provides recommended values
450450
and year ranges that users are encouraged to use to maximize compatibility between datasets.
451451

452452
This value must be set to zero if there are no point records in the file,

source/02.06_point.sub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ and the vertical units are meters.
668668
.. note::
669669

670670
Users seeking further clarity regarding LAS waveform encoding are encouraged
671-
to learn more on the official LAS wiki: https://github.com/ASPRSorg/LAS/wiki
671+
to learn more on the :ref:`Official LAS Wiki <laswiki_link>`.
672672

673673

674674
.. raw:: latex

source/04_optional_vlrs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,6 @@ absolute digitizer voltage using the formula:
306306
.. note::
307307

308308
Users seeking further clarity regarding LAS waveform encoding are encouraged
309-
to learn more on the official LAS wiki: https://github.com/ASPRSorg/LAS/wiki
309+
to learn more on the :ref:`Official LAS Wiki <laswiki_link>`.
310310

311311

0 commit comments

Comments
 (0)