diff --git a/doc/images/projects/liblas/liblas_screenshot.png b/doc/images/projects/liblas/liblas_screenshot.png deleted file mode 100644 index 0cf8d5b0bc..0000000000 Binary files a/doc/images/projects/liblas/liblas_screenshot.png and /dev/null differ diff --git a/doc/images/projects/liblas/logo_liblas.png b/doc/images/projects/liblas/logo_liblas.png deleted file mode 100644 index 6b1d49f5b7..0000000000 Binary files a/doc/images/projects/liblas/logo_liblas.png and /dev/null differ diff --git a/doc/overview/liblas_overview.rst b/doc/overview/liblas_overview.rst deleted file mode 100644 index 30e7ceeeb1..0000000000 --- a/doc/overview/liblas_overview.rst +++ /dev/null @@ -1,66 +0,0 @@ -:Author: Howard Butler -:Reviewer: Cameron Shorter, Jirotech -:Reviewer: Angelos Tzotsos, OSGeo -:Version: osgeolive11.0 -:License: Creative Commons Attribution 3.0 Unported (CC BY 3.0) - -@LOGO_liblas@ -@OSGEO_KIND_liblas@ - - -@NAME_liblas@ -================================================================================ - -LiDAR Data Access -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -libLAS is a C/C++ library for reading and writing the very common `LAS` -`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used to -store data from LiDAR sensors and by LiDAR processing software for data -interchange and archival. - -LiDAR (Light Detection and Ranging) is a form of high precision range detection much like a radar system that -uses laser light as the electromagnetic emission. One of LiDAR systems' -products is a "point cloud" data product that can be conceptualized as a -series of point measurements representing distance from the sensor to a returned -emission. A common storage format for these point cloud data is ASPRS LAS format. - -@SCREENSHOT_liblas@ - -Core Features --------------------------------------------------------------------------------- - -* C/C++/Python APIs for reading, writing, and manipulating LAS data -* `Command line utilities`_ for manipulating LAS data based on `LAStools`_ -* Coordinate reprojection via `GDAL `__ - -Details --------------------------------------------------------------------------------- - -**Website:** @WEB_liblas@ - -**Licence:** BSD - -**Software Version:** |version-liblas| - -**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via `OSGeo4W`_), and Linux - -**API Interfaces:** C, C++, Python - -**Support:** `Communication and Support `_ - - -.. _`LIDAR`: https://en.wikipedia.org/wiki/LIDAR -.. _`LAStools`: http://www.cs.unc.edu/~isenburg/lastools/ -.. _`LAS Format`: http://www.lasformat.org/ -.. _`ASPRS Standards Committee`: https://www.asprs.org/society/committees/standards/lidar_exchange_format.html -.. _`ASPRS LAS format`: https://www.asprs.org/divisions-committees/lidar-division/laser-las-file-format-exchange-activities.html -.. _`Command line utilities`: https://liblas.org/utilities/index.html -.. _`OSGeo4W`: https://trac.osgeo.org/osgeo4w/ -.. _`Wikipedia`: http://en.wikipedia.org/wiki/LIDAR - -@VMDK_liblas@ -@QUICKSTART_liblas@ - -.. presentation-note - libLAS is a C/C++ library for reading and writing the LAS LiDAR format. LiDAR, or Light Detection and Ranging, is a form of high precision range detection, much like radar or sonar, that uses laser light as the electromagnetic emission. diff --git a/doc/quickstart/liblas_quickstart.rst b/doc/quickstart/liblas_quickstart.rst deleted file mode 100644 index c7cc05fd04..0000000000 --- a/doc/quickstart/liblas_quickstart.rst +++ /dev/null @@ -1,156 +0,0 @@ -:Author: Howard Butler -:Reviewer: Felicity Brand (Google Season of Docs 2019) -:Contact: hobu.inc at gmail dot com -:Version: osgeolive5.0 -:License: Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) - -@LOGO_liblas@ -@OSGEO_KIND_liblas@ -@VMDK_liblas@ - - - -******************************************************************************** -@NAME_liblas@ Quickstart -******************************************************************************** - -libLAS is a C/C++ library for reading and writing the very common LAS LiDAR format. The ASPRS LAS format is a sequential binary format used to store data from LiDAR sensors and by LiDAR processing software for data interchange and archival. - -LiDAR (Light Detection and Ranging) is a form of high precision range detection much like a radar system that uses laser light as the electromagnetic emission. One of LiDAR systems' products is a "point cloud" data product that can be conceptualized as a series of point measurements representing distance from the sensor to a returned emission. A common storage format for these point cloud data is ASPRS LAS format. - -.. contents:: - :local: - -Processing -========== - -The libLAS 'command-line utilities' provide the bulk of -user-facing operational software for libLAS, although the underlying libLAS -library is what powers them. Below is a listing of common operations that -you might want to do on LAS data, and the utilities and approaches to -take to complete those tasks. The demo data can be found in :file:`/home/user/data/las/srs.las` - -Reprojecting an LAS file -======================== - -All LAS data are in some sort of coordinate system, even if that coordinate -system is not described in the LAS file. For terrestrial LAS data, these -coordinate system descriptions often map to coordinate systems described -by the `EPSG`_ database. Another source of information about coordinate -systems in https://spatialreference.org. - - -:: - - lasinfo --no-check srs.las - -.. note:: - - The --no-check option tells lasinfo to only print the header information - for the file and to not scan through all of the points. For a 10 point file, - this of course isn't much of a concern, but with a 50 or 500 million point - file, it isn't worth waiting for a full scan of the data if all you - want is header information. - -Our 'lasinfo' invocation tells us that the ``srs.las`` file -is in a UTM North Zone 17 coordinate system: - -:: - - PROJCS["WGS 84 / UTM zone 17N", - GEOGCS["WGS 84", - DATUM["WGS_1984", - SPHEROID["WGS 84",6378137,298.257223563, - AUTHORITY["EPSG","7030"]], - AUTHORITY["EPSG","6326"]], - PRIMEM["Greenwich",0], - UNIT["degree",0.0174532925199433], - AUTHORITY["EPSG","4326"]], - PROJECTION["Transverse_Mercator"], - PARAMETER["latitude_of_origin",0], - PARAMETER["central_meridian",-81], - PARAMETER["scale_factor",0.9996], - PARAMETER["false_easting",500000], - PARAMETER["false_northing",0], - UNIT["metre",1, - AUTHORITY["EPSG","9001"]], - AUTHORITY["EPSG","32617"]] - -Now that we know our input coordinate system, we can make a decision about -what to reproject the data to. In our first example, we're going to use -the venerable plate carrée non-coordinate system, `EPSG:4326`_. - -:: - - las2las srs.las --t_srs EPSG:4326 - -Our process succeeds, but after a quick inspection of the data with -``lasinfo output.las`` we see a problem: - -:: - - ... - Scale Factor X Y Z: 0.01 0.01 0.01 - Offset X Y Z: -0.00 -0.00 -0.00 - ... - Min X, Y, Z: -83.43, 39.01, 170.58, - Max X, Y, Z: -83.43, 39.01, 170.76, - -The ``srs.las`` file had a scale of 0.01, or two decimal places of precision -for its X, Y, and Z coordinates. For UTM data, this is ok, because it implies -an implicit precision of 1 cm. For decimal degree data of the unprojected -Plate Carrée coordinate system, it causes us to lose a bunch of precision. We -need to set our scale values to something that can hold more precision in our -case: - -:: - - las2las --t_srs EPSG:4326 srs.las --scale 0.000001 0.000001 0.01 - -Another quick inspection with 'lasinfo' gives us something -we're more comfortable with: - -:: - - ... - Scale Factor X Y Z: 0.000001 0.000001 0.01 - Offset X Y Z: -0.000000 -0.000000 -0.00 - ... - Min X, Y, Z: -83.427598, 39.012599, 170.58 - Max X, Y, Z: -83.427548, 39.012618, 170.76 - - -Output LAS file to text -======================= -:: - - las2txt input.las --parse xyzti - - -What next? -========== - -* Website: https://liblas.org -* Support: https://liblas.org/community.html - - -.. _`LASzip`: http://laszip.org -.. _`CMake`: http://www.cmake.org/ -.. _`CTest`: http://cmake.org/cmake/help/ctest-2-8-docs.html -.. _`CMake 2.8.0+`: http://www.cmake.org/cmake/help/cmake-2-8-docs.html -.. _`CDash`: http://www.cdash.org/ -.. _`continuous integration`: http://en.wikipedia.org/wiki/Continuous_integration -.. _`libLAS CDash`: http://my.cdash.org/index.php?project=libLAS -.. _`Curses`: http://en.wikipedia.org/wiki/Curses_%28programming_library%29 -.. _`Autoconf`: http://www.gnu.org/software/autoconf/ -.. _`LLVM`: http://llvm.org/ -.. _`OSGeo4W`: http://trac.osgeo.org/osgeo4w/ -.. _`Boost`: http://www.boost.org/ -.. _`DebianGIS`: https://wiki.debian.org/DebianGis -.. _`gdal_translate`: http://www.gdal.org/gdal_translate.html -.. _`EPSG`: https://epsg.org/home.html -.. _`EPSG:4326`: https://spatialreference.org/ref/epsg/4326/ -.. _`Proj.4`: http://trac.osgeo.org/proj/ -.. _`WKT`: http://en.wikipedia.org/wiki/Well-known_text#Spatial_reference_systems -.. _`GDAL`: http://gdal.org -.. _`Autzen_Stadium`: http://liblas.org/samples/Autzen_Stadium.zip diff --git a/licenses.csv b/licenses.csv index a43f9dd4e6..a078011178 100644 --- a/licenses.csv +++ b/licenses.csv @@ -25,7 +25,6 @@ "jts_overview","Jody Garnett","Cameron Shorter, Jirotech","Creative Commons Attribution 3.0 Unported (CC BY 3.0)" "jupyter_overview","jupyter developers team; Massimo Di Stefano","Cameron Shorter, Jirotech","Creative Commons Attribution 3.0 Unported (CC BY 3.0)" "leaflet_overview","Johan Van de Wauw; Vladimir Agafonkin","Cameron Shorter; Angelos Tzotsos, OSGeo","Creative Commons Attribution 3.0 Unported (CC BY 3.0)" -"liblas_overview","Howard Butler","Cameron Shorter, Jirotech","Creative Commons Attribution 3.0 Unported (CC BY 3.0)" "mapbender_overview","Astrid Emde","Cameron Shorter, Jirotech","Creative Commons Attribution 3.0 Unported (CC BY 3.0)" "mapfish_overview","OSGeoLive; Hamish Bowman; Eric Lemoine","Cameron Shorter, Jirotech","Creative Commons Attribution 3.0 Unported (CC BY 3.0)" "mapguide_overview","Trevor Wekel","Cameron Shorter, Jirotech","Creative Commons Attribution 3.0 Unported (CC BY 3.0)" @@ -89,7 +88,6 @@ "istsos_quickstart","Massimiliano Cannata, Milan Antonovic - SUPSI","Cameron Shorter, Jirotech","Creative Commons Attribution 3.0 Unported (CC BY 3.0)" "jupyter_quickstart","Massimo Di Stefano","Cameron Shorter, Jirotech","Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)" "leaflet_quickstart","Vladimir Agafonkin, adopted for live dvd by Johan Van de Wauw","Angelos Tzotsos, OSGeo","" -"liblas_quickstart","Howard Butler","","Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)" "mapbender_quickstart","OSGeoLive; Astrid Emde","","Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)" "mapfish_quickstart","Eric Lemoine, Bruno Binet","","Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)" "mapguide_quickstart","Trevor Wekel","","Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)" diff --git a/locale/de/LC_MESSAGES/overview/liblas_overview.po b/locale/de/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index bc650cbcba..0000000000 --- a/locale/de/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,125 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Andreas Schild , 2018 -# Vicky Vergara , 2020 -# -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2023-03-29 19:22+0000\n" -"Last-Translator: Astrid Emde \n" -"Language-Team: German \n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16.4\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "libLAS" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "LiDAR Datenzugriff" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"libLAS ist eine C/C++ Bibliothek zum Lesen und Schreiben des sehr " -"verbreiteten `LAS` `LiDAR`_ Formats. Das `ASPRS LAS Format`_ ist ein " -"sequentielles Binärformat, das zum Speichern von Daten von LiDAR Sensoren " -"und von LiDAR Prozessierungssoftware für den Datenaustausch und die " -"Archivierung verwendet wird." - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (Light Detection and Ranging) ist eine Form von hochpräziser " -"Bereichsermittlung ähnlich einem Radarsystem, das Laserstrahlen als " -"electromagnetische Emissionen nutzt. Eines der LiDAR Systems' Produkte ist " -"ein \"Punktwolken\"-Daten-Produkt, das eine Serie von Punktmessungen " -"erfasst, die eine Entfernung von einem Sensor zu einerr empfangenen Emission" -" darstellen. Ein übliches Speicherformat für diese Punktwolken ist das ASPRS" -" LAS Format." - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "Kernfunktionen" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "C/C++/Python API zum Lesen, Schreiben und Manipulieren von LAS Daten" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" -"`kommandozeilenbasierte Programme`_ zur Manipulation von LAS Daten basierend" -" auf `LAStools`_" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "Koordinaten Umprojektion über `GDAL `__" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "Details" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "**Webseite:** https://liblas.org/" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "**Lizenz:** BSD" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "**Software Version:** |version-liblas|" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" -"**Unterstützte Plattformen:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "**API Schnittstellen:** C, C++, Python" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "" -"**Support:** `Communication and Support " -"`_" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "Quickstart" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr ":doc:`Quickstart Dokumentation <../quickstart/liblas_quickstart>`" diff --git a/locale/de/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/de/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index 1b63791956..0000000000 --- a/locale/de/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,178 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Vicky Vergara , 2019 -# Astrid Emde , 2021 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:06+0000\n" -"Last-Translator: Astrid Emde , 2021\n" -"Language-Team: German (https://www.transifex.com/osgeo/teams/66156/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "libLAS Quickstart" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common LAS LiDAR " -"format. The ASPRS LAS format is a sequential binary format used to store " -"data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"libLAS ist eine C/C++ Bibliothek zum Lesen und Schreiben des sehr " -"verbreiteten `LAS` `LiDAR`_ Formats. Das `ASPRS LAS Format`_ ist ein " -"sequentielles Binärformat, das zum Speichern von Daten von LiDAR Sensoren " -"und von LiDAR Prozessierungssoftware für den Datenaustausch und die " -"Archivierung verwendet wird." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. A" -" common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (Light Detection and Ranging) ist eine Form von hochpräziser " -"Bereichsermittlung ähnlich einem Radarsystem, das Laserstrahlen als " -"electromagnetische Emissionen nutzt. Eines der LiDAR Systems' Produkte ist " -"ein \"Punktwolken\"-Daten-Produkt, das eine Serie von Punktmessungen " -"erfasst, die eine Entfernung von einem Sensor zu einerr empfangenen Emission" -" darstellen. Ein übliches Speicherformat für diese Punktwolken ist das ASPRS" -" LAS Format." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "Verarbeitung" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "" -"The libLAS 'command-line utilities' provide the bulk of user-facing " -"operational software for libLAS, although the underlying libLAS library is " -"what powers them. Below is a listing of common operations that you might " -"want to do on LAS data, and the utilities and approaches to take to complete" -" those tasks. The demo data can be found in " -":file:`/home/user/data/las/srs.las`" -msgstr "" -"Die libLAS kommandozeilenbasierten Dienstprogramme stellen den Großteil der " -"benutzerorientierten Betriebssoftware für libLAS bereit, obwohl die zugrunde" -" liegende libLAS-Bibliothek die Stärke beinhaltet. Im Folgenden finden Sie " -"eine Liste der allgemeinen Vorgänge, die Sie möglicherweise für LAS-Daten " -"ausführen möchten, sowie die Dienstprogramme und Ansätze, die Sie zum " -"Ausführen dieser Aufgaben ausführen müssen. Die Demodaten finden Sie unter " -":file:'/home/user/data/las/srs.las'" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "Reprojektion einer LAS-Datei" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "" -"All LAS data are in some sort of coordinate system, even if that coordinate " -"system is not described in the LAS file. For terrestrial LAS data, these " -"coordinate system descriptions often map to coordinate systems described by " -"the `EPSG`_ database. Another source of information about coordinate " -"systems in https://spatialreference.org." -msgstr "" -"Alle LAS-Daten befinden sich in einer Art Koordinatensystem, auch wenn " -"dieses Koordinatensystem nicht in der LAS-Datei beschrieben ist. Bei " -"terrestrischen LAS-Daten werden diese Koordinatensystembeschreibungen häufig" -" den Koordinatensystemen zugeordnet, die von der Datenbank `EPSG`_ " -"beschrieben werden. Eine weitere Informationsquelle über Koordinatensysteme" -" in http://spatialreference.org." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "" -"The --no-check option tells lasinfo to only print the header information for" -" the file and to not scan through all of the points. For a 10 point file, " -"this of course isn't much of a concern, but with a 50 or 500 million point " -"file, it isn't worth waiting for a full scan of the data if all you want is " -"header information." -msgstr "" -"Die Option --no-check weist lasinfo an, nur die Kopfzeileninformationen zur " -"Datei zu drucken und nicht alle Punkte zu durchsuchen. Für eine 10-Punkte-" -"Datei ist dies natürlich kein großes Problem, aber bei einer 50- oder " -"500-Millionen-Punkt-Datei lohnt es sich nicht, auf einen vollständigen Scan " -"der Daten zu warten, wenn Sie nur Header-Informationen benötigen." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "" -"Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM " -"North Zone 17 coordinate system:" -msgstr "" -"Unser \"lasinfo\"-Aufruf sagt uns, dass sich die Datei ''srs.las'' in einem " -"UTM North Zone 17-Koordinatensystem befindet:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "" -"Now that we know our input coordinate system, we can make a decision about " -"what to reproject the data to. In our first example, we're going to use the" -" venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" -"Nun, da wir unser Eingabekoordinatensystem kennen, können wir eine " -"Entscheidung darüber treffen, wohin die Daten reprojiziert werden sollen. " -"In unserem ersten Beispiel verwenden wir das ehrwürdige Platten-Carrée-" -"Nicht-Koordinatensystem `EPSG:4326`_." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "" -"Our process succeeds, but after a quick inspection of the data with " -"``lasinfo output.las`` we see a problem:" -msgstr "" -"Unser Prozess war erfolgreich, aber nach einer schnellen Überprüfung der " -"Daten mit ''lasinfo output.las'' sehen wir ein Problem:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "" -"The ``srs.las`` file had a scale of 0.01, or two decimal places of precision" -" for its X, Y, and Z coordinates. For UTM data, this is ok, because it " -"implies an implicit precision of 1 cm. For decimal degree data of the " -"unprojected Plate Carrée coordinate system, it causes us to lose a bunch of " -"precision. We need to set our scale values to something that can hold more " -"precision in our case:" -msgstr "" -"Die Datei ''srs.las'' hatte eine Skala von 0,01 oder zwei Dezimalstellen der" -" Genauigkeit für ihre X-, Y- und Z-Koordinaten. Für UTM-Daten ist dies in " -"Ordnung, da dies eine implizite Genauigkeit von 1 cm impliziert. Bei " -"Dezimalgraddaten des nicht projizierten Platten-Carrée-Koordinatensystems " -"verlieren wir dadurch eine Reihe von Präzisionen. Wir müssen unsere " -"Maßstabswerte auf etwas festlegen, das in unserem Fall präziser sein kann:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "" -"Another quick inspection with 'lasinfo' gives us something we're more " -"comfortable with:" -msgstr "" -"Eine weitere schnelle Untersuchung mit 'lasinfo' gibt uns etwas, mit dem wir" -" uns wohler fühlen:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "Ausgabe der LAS-Datei als Text" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "Was kommt als Nächstes?" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "Webseite: https://liblas.org" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "Support: https://liblas.org/community.html" diff --git a/locale/en/LC_MESSAGES/copyright.po b/locale/en/LC_MESSAGES/copyright.po index a6ebc2d26e..b49c098b24 100644 --- a/locale/en/LC_MESSAGES/copyright.po +++ b/locale/en/LC_MESSAGES/copyright.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OSGeoLive 14.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-17 13:25+0000\n" +"POT-Creation-Date: 2024-08-17 14:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -421,14 +421,6 @@ msgstr "" msgid "Cameron Shorter; Angelos Tzotsos, OSGeo" msgstr "" -#: ../../build/licenses.csv:1 -msgid "liblas_overview" -msgstr "" - -#: ../../build/licenses.csv:1 -msgid "Howard Butler" -msgstr "" - #: ../../build/licenses.csv:1 msgid "mapbender_overview" msgstr "" @@ -863,10 +855,6 @@ msgstr "" msgid "Vladimir Agafonkin, adopted for live dvd by Johan Van de Wauw" msgstr "" -#: ../../build/licenses.csv:1 -msgid "liblas_quickstart" -msgstr "" - #: ../../build/licenses.csv:1 msgid "mapbender_quickstart" msgstr "" diff --git a/locale/en/LC_MESSAGES/overview/liblas_overview.po b/locale/en/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index b713b33836..0000000000 --- a/locale/en/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,102 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , 2020. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 13.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-02 08:38-0600\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format " -"used to store data from LiDAR sensors and by LiDAR processing software " -"for data interchange and archival." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned " -"emission. A common storage format for these point cloud data is ASPRS " -"LAS format." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:71 -msgid "Quickstart" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:73 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr "" - diff --git a/locale/en/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/en/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index 7288c83b6f..0000000000 --- a/locale/en/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,129 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , 2020. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 13.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-02 08:38-0600\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:15 -msgid "libLAS Quickstart" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:17 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common LAS " -"LiDAR format. The ASPRS LAS format is a sequential binary format used to " -"store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:19 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned " -"emission. A common storage format for these point cloud data is ASPRS LAS" -" format." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:25 -msgid "Processing" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:27 -msgid "" -"The libLAS 'command-line utilities' provide the bulk of user-facing " -"operational software for libLAS, although the underlying libLAS library " -"is what powers them. Below is a listing of common operations that you " -"might want to do on LAS data, and the utilities and approaches to take to" -" complete those tasks. The demo data can be found in " -":file:`/home/user/data/las/srs.las`" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:34 -msgid "Reprojecting an LAS file" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:36 -msgid "" -"All LAS data are in some sort of coordinate system, even if that " -"coordinate system is not described in the LAS file. For terrestrial LAS " -"data, these coordinate system descriptions often map to coordinate " -"systems described by the `EPSG`_ database. Another source of information" -" about coordinate systems in https://spatialreference.org." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:49 -msgid "" -"The --no-check option tells lasinfo to only print the header information " -"for the file and to not scan through all of the points. For a 10 point " -"file, this of course isn't much of a concern, but with a 50 or 500 " -"million point file, it isn't worth waiting for a full scan of the data if" -" all you want is header information." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:55 -msgid "" -"Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM " -"North Zone 17 coordinate system:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:79 -msgid "" -"Now that we know our input coordinate system, we can make a decision " -"about what to reproject the data to. In our first example, we're going " -"to use the venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:87 -msgid "" -"Our process succeeds, but after a quick inspection of the data with " -"``lasinfo output.las`` we see a problem:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:99 -msgid "" -"The ``srs.las`` file had a scale of 0.01, or two decimal places of " -"precision for its X, Y, and Z coordinates. For UTM data, this is ok, " -"because it implies an implicit precision of 1 cm. For decimal degree data" -" of the unprojected Plate Carrée coordinate system, it causes us to lose " -"a bunch of precision. We need to set our scale values to something that " -"can hold more precision in our case:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:110 -msgid "" -"Another quick inspection with 'lasinfo' gives us something we're more " -"comfortable with:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:124 -msgid "Output LAS file to text" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:131 -msgid "What next?" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:133 -msgid "Website: https://liblas.org" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "Support: https://liblas.org/community.html" -msgstr "" - diff --git a/locale/es/LC_MESSAGES/overview/liblas_overview.po b/locale/es/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index 01ed0e8096..0000000000 --- a/locale/es/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,124 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Vicky Vergara , 2018 -# MarPetra , 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:09+0000\n" -"Last-Translator: MarPetra , 2020\n" -"Language-Team: Spanish (https://www.transifex.com/osgeo/teams/66156/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "libLAS" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "Acceso a datos LiDAR" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"libLAS es una biblioteca de C/C++ para leer y escribir el muy común formato " -"`LAS` `LiDAR`_ . El `ASPRS LAS format`_ es un secuencial formato binario " -"utilizado para almacenar datos de los sensores de LiDAR y por procesamiento " -"LiDAR software para intercambio de datos y archivo." - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (Light Detection and Ranging o detección de luz y rango) es una forma " -"de detección de alta precisión, como un sistema de radar que utiliza luz de " -"láser como emisión electromagnética. Uno de los productos de los sistemas " -"LiDAR es una \"point cloud\" o nube de puntos, que puede ser " -"conceptualizada como una serie de medidas entre puntos que representan las " -"distancias desde el sensor y a las emisiones devueltas. Un formato común de" -" almacenamiento de datos para las nubes de puntos es LAS ASPRS." - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "Características Principales" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "" -"C / C + + API de Python para lectura, escritura y manipulación de datos de " -"LAS" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" -"`Command line utilities`_ para manipular datos LAS basados en `LAStools`_" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "Coordinación de reproyección a través de `GDAL `__" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "Detalles" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "**Sitio web:** https://liblas.org/" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "**Licencia:** BSD" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "**Versión de software:** |version-liblas|" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" -"**Plataformas compatibles:** Plataformas cruzadas C++, Linux, Mac OSX y " -"Windows (a través de `OSGeo4W`_)" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "**Interfaces API:** C, C++, Python" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "" -"**Soporte:** `Comunicación y soporte `_" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "Inicio Rápido" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr "" -":doc:`Documentación de Inicio Rápido <../quickstart/liblas_quickstart>`" diff --git a/locale/es/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/es/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index cce3d83ebf..0000000000 --- a/locale/es/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,179 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Vicky Vergara , 2020 -# MarPetra , 2020 -# -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2023-02-17 06:23+0000\n" -"Last-Translator: Celia Virginia Vergara Castillo \n" -"Language-Team: Spanish \n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0)" -" ? 1 : 2);\n" -"X-Generator: Weblate 4.15.2\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "libLAS Inicio Rápido" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common LAS LiDAR " -"format. The ASPRS LAS format is a sequential binary format used to store " -"data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"libLAS es una biblioteca C/C++ para leer y escribir el formato muy común de " -"LAS LiDAR. El formato ASPRS LAS es un formato binario secuencial utilizado " -"para almacenar datos de sensores LiDAR y por el software de procesamiento " -"LiDAR para el intercambio de datos y el archivo." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. A" -" common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (Light Detection and Ranging) es una forma de detección de rango de " -"alta precisión muy similar a un sistema de radar que utiliza la luz láser " -"como emisión electromagnética. Uno de los productos de los sistemas LiDAR es" -" un producto de datos de \"nube de puntos\" que se puede conceptualizar como" -" una serie de mediciones de puntos que representan la distancia desde el " -"sensor hasta una emisión devuelta. Un formato de almacenamiento común para " -"estos datos de nube de puntos es el formato ASPRS LAS." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "Procesamiento" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "" -"The libLAS 'command-line utilities' provide the bulk of user-facing " -"operational software for libLAS, although the underlying libLAS library is " -"what powers them. Below is a listing of common operations that you might " -"want to do on LAS data, and the utilities and approaches to take to complete" -" those tasks. The demo data can be found in " -":file:`/home/user/data/las/srs.las`" -msgstr "" -"Las utilidades de línea de comandos de libLAS proporcionan el volumen del " -"software operativo orientado al usuario para libLAS, aunque la biblioteca " -"libLAS subyacente es lo que las alimenta. A continuación se incluye una " -"lista de las operaciones comunes que podría querer hacer en los datos de " -"LAS, y las utilidades y los enfoques que debe tomar para completar esas " -"tareas. Los datos de demostración se pueden encontrar en " -":file:`/home/user/data/las/srs.las`" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "Reproyectar un archivo LAS" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "" -"All LAS data are in some sort of coordinate system, even if that coordinate " -"system is not described in the LAS file. For terrestrial LAS data, these " -"coordinate system descriptions often map to coordinate systems described by " -"the `EPSG`_ database. Another source of information about coordinate " -"systems in https://spatialreference.org." -msgstr "" -"Todos los datos LAS se encuentran en algún tipo de sistema de coordenadas, " -"incluso si ese sistema de coordenadas no se describe en el archivo LAS. " -"Para los datos LAS terrestres, estas descripciones del sistema de " -"coordenadas a menudo se asignan a los sistemas de coordenadas descritos por " -"la base de datos `EPSG`_. Otra fuente de información sobre los sistemas de " -"coordenadas en https://spatialreference.org." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "" -"The --no-check option tells lasinfo to only print the header information for" -" the file and to not scan through all of the points. For a 10 point file, " -"this of course isn't much of a concern, but with a 50 or 500 million point " -"file, it isn't worth waiting for a full scan of the data if all you want is " -"header information." -msgstr "" -"La opción --no-check indica a lasinfo que solo imprima la información del " -"encabezado del archivo y que no explore todos los puntos. Para un archivo de" -" 10 puntos, esto por supuesto no es una gran preocupación, pero con un " -"archivo de 50 o 500 millones de puntos, no vale la pena esperar un escaneo " -"completo de los datos si todo lo que desea es información del encabezado." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "" -"Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM " -"North Zone 17 coordinate system:" -msgstr "" -"Nuestra invocación de 'lasinfo' nos dice que el archivo ``srs.las`` está en " -"un sistema de coordenadas UTM Norte, Zona 17:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "" -"Now that we know our input coordinate system, we can make a decision about " -"what to reproject the data to. In our first example, we're going to use the" -" venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" -"Ahora que conocemos nuestro sistema de coordenadas de entrada, podemos tomar" -" una decisión sobre a qué reproyectar los datos. En nuestro primer ejemplo, " -"vamos a utilizar el venerable sistema de coordenadas del carrée plate, " -"`EPSG:4326`_." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "" -"Our process succeeds, but after a quick inspection of the data with " -"``lasinfo output.las`` we see a problem:" -msgstr "" -"Nuestro proceso tiene éxito, pero después de una inspección rápida de los " -"datos con ``lasinfo output.las`` se ve un problema:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "" -"The ``srs.las`` file had a scale of 0.01, or two decimal places of precision" -" for its X, Y, and Z coordinates. For UTM data, this is ok, because it " -"implies an implicit precision of 1 cm. For decimal degree data of the " -"unprojected Plate Carrée coordinate system, it causes us to lose a bunch of " -"precision. We need to set our scale values to something that can hold more " -"precision in our case:" -msgstr "" -"El archivo ``srs.las`` tenía una escala de 0.01 o dos decimales de precisión" -" para sus coordenadas X, Y y Z. Para los datos UTM, esto está bien, porque " -"implica una precisión implícita de 1 cm. Para datos de grados decimales del " -"sistema de coordenadas Plate Carrée no proyectado, nos hace perder un montón" -" de precisión. Necesitamos establecer nuestros valores de escala a algo que " -"pueda contener más precisión en nuestro caso:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "" -"Another quick inspection with 'lasinfo' gives us something we're more " -"comfortable with:" -msgstr "" -"Otra inspección rápida con 'lasinfo' nos da algo con lo que nos sentimos más" -" cómodos:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "Salida del archivo LAS al texto" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "¿Qué sigue?" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "Sitio web: https://liblas.org" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "Soporte: https://liblas.org/community.html" diff --git a/locale/fi/LC_MESSAGES/overview/liblas_overview.po b/locale/fi/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index d9e16b7210..0000000000 --- a/locale/fi/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,125 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Santtu Pyykkönen, 2019 -# Vicky Vergara , 2019 -# MarPetra , 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:09+0000\n" -"Last-Translator: MarPetra , 2020\n" -"Language-Team: Finnish (https://www.transifex.com/osgeo/teams/66156/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "libLAS" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "LiDAR Datayhteys" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"libLAS on C/C++-kirjasto, joka lukee ja kirjoittaa hyvin yleisesti käytettyä" -" `LAS` `LiDAR`_-muotoa. `ASPRS LAS format`_ on binaarimuotoinen " -"tietoformaatti, jota käytetään tietojen tallentamiseen LiDAR-antureista ja " -"LiDAR-aineistojen prosessointiohjelmistosta tiedon vaihtoon ja " -"arkistointiin." - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (Lidar Detection and Ranging) on erittäin tiheiden " -"kaukokartoitusaineistojen metodi, joka käyttää tutkien tapaan laservaloa " -"etäisyyksien mittaamiseen. Yksi näistä laserkeilaimilla tuotetuista " -"aineistoista on \"pistepilvi\", joka voidaan ymmärtää erittäin tarkkojen " -"kohdemittauksien pistesarjaksi. Nämä pisteet edustavat etäisyyttä " -"keilaimesta kohteeseensa. Yleinen talletustapa tällaisille pistepilville on " -"ASPRS LAS -tietoformaatti. " - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "Keskeiset ominaisuudet" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "" -"C/C++/python-APIt LAS-datan lukemiseen, kirjoittamiseen ja käsittelyyn" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" -"`Komentorivin työkalut`_ LAS-datan käsittelyyn, jotka perustuvat " -"`LAStools`_-työkaluun" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "Koordinoi uudelleenprojektio `GDAL `__ kautta" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "Tiedot" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "**Verkkosivusto:** https://liblas.org/" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "**Lisenssi:** BSD" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "**Ohjelmisto versio:** |version-liblas|" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" -"**Tuetut alustat:** Poikkialustainen C++ -- Mac OS X, Windows (Via " -"`OSGeo4W`_), ja Linux" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "**API-liittymät:** C, C++, python" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "**Tuki:** `Viestintä ja tuki `_" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "Pika-aloitus" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr "" -":doc:`Pika-aloituksen dokumentaatio <../quickstart/liblas_quickstart>`" diff --git a/locale/fi/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/fi/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index 1cbb04c8c8..0000000000 --- a/locale/fi/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,172 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# MarPetra , 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:06+0000\n" -"Last-Translator: MarPetra , 2020\n" -"Language-Team: Finnish (https://www.transifex.com/osgeo/teams/66156/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "libLAS Pika-aloitus" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common LAS LiDAR " -"format. The ASPRS LAS format is a sequential binary format used to store " -"data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"libLAS on C/C++ -kirjasto hyvin yleisen LAS LiDAR -muodon lukemiseen ja " -"kirjoittamiseen. ASPRS LAS -muoto on peräkkäinen binaarimuoto, jota " -"käytetään tietojen tallentamiseen LiDAR-antureista ja LiDAR-" -"prosessointiohjelmistolla tietojen vaihtoa ja arkistointia varten." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. A" -" common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (valon havaitseminen ja etäisyyden mittaus) on eräänlainen tarkan " -"kantaman havaitsemisen muoto, aivan kuten tutkajärjestelmä, joka käyttää " -"laservaloa sähkömagneettisina säteilyinä. Yksi LiDAR-järjestelmien " -"tuotteista on \"pistepilvi\" -tuotetuote, joka voidaan käsittää " -"pistemittausten sarjaksi, joka edustaa etäisyyttä anturista palautettuun " -"päästöön. Näille pistepilvetiedoille yleinen tallennusmuoto on ASPRS LAS " -"-muoto." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "Käsittely" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "" -"The libLAS 'command-line utilities' provide the bulk of user-facing " -"operational software for libLAS, although the underlying libLAS library is " -"what powers them. Below is a listing of common operations that you might " -"want to do on LAS data, and the utilities and approaches to take to complete" -" those tasks. The demo data can be found in " -":file:`/home/user/data/las/srs.las`" -msgstr "" -"LibLAS 'komentorivin apuohjelmat' tarjoavat suurimman osan " -"käyttäjäystävällisistä libLAS-ohjelmisto-ohjelmistoista, vaikka taustalla " -"oleva libLAS-kirjasto on se, mikä heitä valtaa. Alla on luettelo " -"yleisimmistä toiminnoista, jotka haluat ehkä tehdä LAS-tiedoissa, sekä " -"apuohjelmista ja lähestymistavoista, joita nämä tehtävät suorittavat. " -"Demotiedot löytyvät tiedostosta :file:`/home/user/data/las/srs.las`" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "LAS-tiedoston uudelleenprojektiominen" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "" -"All LAS data are in some sort of coordinate system, even if that coordinate " -"system is not described in the LAS file. For terrestrial LAS data, these " -"coordinate system descriptions often map to coordinate systems described by " -"the `EPSG`_ database. Another source of information about coordinate " -"systems in https://spatialreference.org." -msgstr "" -"Kaikki LAS-tiedot ovat jonkinlaisessa koordinaattijärjestelmässä, vaikka " -"tätä koordinaattijärjestelmää ei kuvata LAS-tiedostossa. Maanpäällisten LAS-" -"tietojen osalta nämä koordinaattijärjestelmän kuvaukset vastaavat usein " -"`EPSG`_-tietokannan kuvaamia koordinaattijärjestelmiä. Toinen tietolähde " -"koordinaattijärjestelmistä osoitteessa https://spatialreference.org." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "" -"The --no-check option tells lasinfo to only print the header information for" -" the file and to not scan through all of the points. For a 10 point file, " -"this of course isn't much of a concern, but with a 50 or 500 million point " -"file, it isn't worth waiting for a full scan of the data if all you want is " -"header information." -msgstr "" -"- No-check-vaihtoehto käskee lasinfo: n tulostamaan vain tiedoston " -"otsikkotiedot ja olemaan skannamatta kaikkien pisteiden läpi. 10-pisteisessä" -" tiedostossa tämä ei tietenkään ole paljon huolestuttavaa, mutta 50 tai 500 " -"miljoonan pisteen tiedostossa ei kannata odottaa tietojen täydellistä " -"tarkistusta, jos haluat vain otsikkotietoja." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "" -"Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM " -"North Zone 17 coordinate system:" -msgstr "" -"Meidän 'lasinfo' kutsumus kertoo meille, että ``srs.las`` tiedosto on UTM " -"North Zone 17 koordinaattijärjestelmä:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "" -"Now that we know our input coordinate system, we can make a decision about " -"what to reproject the data to. In our first example, we're going to use the" -" venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" -"Nyt kun tiedämme syöttökoordinaatistojärjestelmämme, voimme päättää, mistä " -"tiedot projisoidaan. Ensimmäisessä esimerkissä aiomme käyttää kunniallista " -"levykarjakonsentraatiojärjestelmää, `EPSG:4326`_." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "" -"Our process succeeds, but after a quick inspection of the data with " -"``lasinfo output.las`` we see a problem:" -msgstr "" -"Prosessimme onnistuu, mutta kun nopea tarkastus tiedot ``lasinfo " -"output.las`` näemme ongelman:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "" -"The ``srs.las`` file had a scale of 0.01, or two decimal places of precision" -" for its X, Y, and Z coordinates. For UTM data, this is ok, because it " -"implies an implicit precision of 1 cm. For decimal degree data of the " -"unprojected Plate Carrée coordinate system, it causes us to lose a bunch of " -"precision. We need to set our scale values to something that can hold more " -"precision in our case:" -msgstr "" -"``Srs.las``-tiedoston asteikko oli 0,01 tai kaksi desimaalia tarkkuudella " -"sen X-, Y- ja Z-koordinaateille. UTM-tietojen osalta tämä on ok, koska se " -"tarkoittaa implisiittistä tarkkuutta 1 cm. Desimaalitietojen osalta " -"ennakoimattomasta Plate Carrée -koordinaatistojärjestelmästä se saa meidät " -"menettämään joukon tarkkuutta. Meidän on asetettava mittakaava-arvomme " -"johonkin, joka voi tapauksessamme olla tarkempia:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "" -"Another quick inspection with 'lasinfo' gives us something we're more " -"comfortable with:" -msgstr "" -"Toinen nopea tarkastus 'lasinfo' antaa meille jotain olemme mukavampaa:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "Tulosta LAS-tiedosto tekstiksi" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "Mitä seuraavaksi?" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "Verkkosivusto: https://liblas.org" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "Tuki: https://liblas.org/community.html" diff --git a/locale/fr/LC_MESSAGES/overview/liblas_overview.po b/locale/fr/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index 11eb998d62..0000000000 --- a/locale/fr/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,125 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Thomas Gratier , 2017 -# Nicolas Roelandt (Personnel), 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:09+0000\n" -"Last-Translator: Nicolas Roelandt (Personnel), 2020\n" -"Language-Team: French (https://www.transifex.com/osgeo/teams/66156/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "libLAS" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "Accès aux données LiDAR" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"libLAS est une bibliothèque C/C++ pour lire et écrire le format très courant" -" pour le `LiDAR`_ , `LAS`. Le `ASPRS LAS format`_ est un format séquentiel " -"binaire utilisé pour stocker des données de capteurs LiDAR et par les " -"logiciels de traitement de données LiDAR pour l'échange et l'archivage." - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"Le LiDAR (Light Detection and Ranging) est une forme de détection " -"d'intervalles de distance haute-précision un peu comme l'est un système " -"radar qui utilise un laser lumineux comme émission électromagnétique. Un des" -" produits issu des systèmes LIDAR est une donnée de nuages de points qui " -"peut être conceptualisée en une série de mesures de points représentant la " -"distance du capteur par rapport à l'émission retournée. Un format de " -"stockage courant pour ces données de nuages de points est le format LAS " -"ASPRS." - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "Caractéristiques principales" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "API C/C++/Python pour lire, écrire et manipuler des données LAS" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" -"`Command line utilities`_ pour manipuler les données LAS basées sur " -"`LAStools`_" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "Reprojection de coordonnées via `GDAL `__" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "Détails" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "**Site web:** https://liblas.org" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "**Licence:** BSD" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "**Version du logiciel:** |version-liblas|" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" -"**Plates-formes supportées:** C++ multi-plateformes -- Mac OS X, Windows " -"(via `OSGeo4W`_), et Linux" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "**Interfaces de l'API:** C, C++, Python" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "" -"**Support:** `Communication et Support `_" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "Guide de démarrage rapide" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr "" -":doc:`Documentation du guide de démarrage rapide " -"<../quickstart/liblas_quickstart>`" diff --git a/locale/fr/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/fr/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index 4bed74fcac..0000000000 --- a/locale/fr/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,179 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Nicolas Roelandt (Personnel), 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:06+0000\n" -"Last-Translator: Nicolas Roelandt (Personnel), 2020\n" -"Language-Team: French (https://www.transifex.com/osgeo/teams/66156/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "Guide de démarrage rapide de libLAS" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common LAS LiDAR " -"format. The ASPRS LAS format is a sequential binary format used to store " -"data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"libLAS est une bibliothèque C/C++ pour lire et écrire le format très courant" -" pour le LiDAR, LAS. Le format ASPRS LAS est un format séquentiel binaire " -"utilisé pour stocker des données de capteurs LiDAR et par les logiciels de " -"traitement de données LiDAR pour l'échange et l'archivage." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. A" -" common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"Le LiDAR (Light Detection and Ranging) est une forme de détection " -"d'intervalles de distance haute-précision un peu comme l'est un système " -"radar qui utilise un laser lumineux comme émission électromagnétique. Un des" -" produits issu des systèmes LIDAR est une donnée de nuages de points qui " -"peut être conceptualisée en une série de mesures de points représentant la " -"distance du capteur par rapport à l'émission retournée. Un format de " -"stockage courant pour ces données de nuages de points est le format LAS " -"ASPRS." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "Traitement" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "" -"The libLAS 'command-line utilities' provide the bulk of user-facing " -"operational software for libLAS, although the underlying libLAS library is " -"what powers them. Below is a listing of common operations that you might " -"want to do on LAS data, and the utilities and approaches to take to complete" -" those tasks. The demo data can be found in " -":file:`/home/user/data/las/srs.las`" -msgstr "" -"Les utilitaires en ligne de commande de libLAS fournissent un ensemble de " -"logiciels opérationnels orientés utilisateurs pour libLAS, Bien que le " -"bibliothèque libLAS en soit le moteur sous-jacent. Ci-dessous se trouvent " -"une liste d'opérations courantes que pouvez souhaiter réaliser avec des " -"données LIDAR , et les utilitaires et méthodes pour accomplir ces " -"opérations. Les données de démonstration se trouvent dans le fichier " -":file:`/home/user/data/las/srs.las`" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "Reprojeter un fichier LAS" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "" -"All LAS data are in some sort of coordinate system, even if that coordinate " -"system is not described in the LAS file. For terrestrial LAS data, these " -"coordinate system descriptions often map to coordinate systems described by " -"the `EPSG`_ database. Another source of information about coordinate " -"systems in https://spatialreference.org." -msgstr "" -"Toutes les données LAS sont dans une sorte de système de coordonnées, même " -"si ce système de coordonnées n’est pas décrite dans le fichier de LAS. Pour" -" les données terrestres de LAS, ces descriptions de repère carte souvent " -"afin de coordonner les systèmes décrits par la base de données `EPSG`_ . " -"Une autre source d’informations sur les systèmes de coordonnées est " -"https://spatialreference.org." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "" -"The --no-check option tells lasinfo to only print the header information for" -" the file and to not scan through all of the points. For a 10 point file, " -"this of course isn't much of a concern, but with a 50 or 500 million point " -"file, it isn't worth waiting for a full scan of the data if all you want is " -"header information." -msgstr "" -"L’option --no-check indique à lasinfo d'imprimer uniquement les " -"informations d’en-tête pour le fichier et ne pas de parcourir tous les " -"points. Pour un fichier de 10 points, cela n’est bien sûr pas vraiment un " -"sujet de préoccupation, mais avec un fichier de 50 ou 500 millions de " -"points, ce n’est pas la peine d’attendre une analyse complète des données si" -" vous souhaitez seulement les informations d’en-tête." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "" -"Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM " -"North Zone 17 coordinate system:" -msgstr "" -"Notre invocation de 'lasinfo' nous a dit que le fichier ''srs.las'' est " -"dans un système de coordonnées UTM Nord Zone 17 :" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "" -"Now that we know our input coordinate system, we can make a decision about " -"what to reproject the data to. In our first example, we're going to use the" -" venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" -"Maintenant que nous connaissons le système de coordonnées d’entrée, nous " -"pouvons prendre une décision au sujet du système dans lequel reprojeter les" -" données. Dans notre premier exemple, nous allons utiliser le vénérable " -"système non projeté de plate carrée, `EPSG:4326`_." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "" -"Our process succeeds, but after a quick inspection of the data with " -"``lasinfo output.las`` we see a problem:" -msgstr "" -"Notre processus réussit, mais après une inspection rapide des données avec " -"'' lasinfo output.las'' nous voyons un problème :" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "" -"The ``srs.las`` file had a scale of 0.01, or two decimal places of precision" -" for its X, Y, and Z coordinates. For UTM data, this is ok, because it " -"implies an implicit precision of 1 cm. For decimal degree data of the " -"unprojected Plate Carrée coordinate system, it causes us to lose a bunch of " -"precision. We need to set our scale values to something that can hold more " -"precision in our case:" -msgstr "" -"Le fichier '' srs.las'' avait une échelle de 0,01, ou deux décimales de " -"précision pour ses coordonnées X, Y et Z. Pour les données de l’UTM, c’est " -"OK, parce qu’elle implique une précision implicite de 1 cm. Pour les degrés " -"décimaux données du système de coordonnées cartographique plate carrée, il " -"nous amène à perdre beaucoup de précision. Nous devons définir nos valeurs " -"d’échelle à quelque chose qui peut contenir plus de précision dans notre " -"cas :" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "" -"Another quick inspection with 'lasinfo' gives us something we're more " -"comfortable with:" -msgstr "" -"Une autre inspection rapide avec 'lasinfo' nous donne quelque chose, avec " -"que nous sommes plus à l’aise :" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "Exporter le fichier LAS vers un fichier texte" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "Ensuite ?" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "**Site web:** https://liblas.org" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "**Support**: https://liblas.org/community.html" diff --git a/locale/hu/LC_MESSAGES/overview/liblas_overview.po b/locale/hu/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index 45cfdf2fec..0000000000 --- a/locale/hu/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,121 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Zoltan Siki , 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:09+0000\n" -"Last-Translator: Zoltan Siki , 2020\n" -"Language-Team: Hungarian (https://www.transifex.com/osgeo/teams/66156/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "libLAS" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "LiDAR adat hozzáférés" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"A libLAS egy C/C++ könyvtár a nagyon gyakran használt `LAS` `LiDAR`_ " -"formátum olvasására és írására. Az `ASPRS LAS formátum`_ egy szekvenciális " -"bináris formátum, melyet a LiDAR szenzorokból érkező adatok tárolására és a " -"LiDAR feldolgozó szoftverek adatcseréjére és archiválásra használnak." - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (fényérzékelés és távolságmérés) a nagy pontosságú tartomány észlelés " -"egy formája a radar rendszerhez hasonlóan, mely lézer fényt használ az " -"elektromágneses kisugárzáshoz. A LiDAR rendszer egyik eredménye a " -"\"pontfelhő\" adatok, mely a szenzortól a visszaverőig terjedő pontmérések " -"sorozataként fogalmazható meg. A pontfelhő adatok elterjedt tárolási formája" -" az ASPRS LAS formátum." - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "Alapfunkciók" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "C/C++/Python API-k LAS adatok olvasásához, írásához és kezeléséhez" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" -"`Parancssori segédprogramok`_ LAS adatok `LAStools`_-ra alapozott " -"kezeléséhez" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "Vetületi átszámítás `GDAL `__ segítségével" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "Részletek" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "**Honlap:** https://liblas.org/" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "**Licenc:** BSD" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "**Szoftver verzió:** |version-liblas|" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" -"**Támogatott platformok:** több platformos C++ -- Mac OS X, Windows " -"(`OSGeo4W`_), és Linux" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "**API interfészek:** C, C++, Python" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "" -"**Támogatás:** `Communication and Support " -"`_" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "Gyorstalpaló" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr ":doc:`Gyorstalpaló dokumentáció <../quickstart/liblas_quickstart>`" diff --git a/locale/hu/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/hu/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index 9bbbbe6810..0000000000 --- a/locale/hu/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,171 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Zoltan Siki , 2020 -# Vicky Vergara , 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:06+0000\n" -"Last-Translator: Vicky Vergara , 2020\n" -"Language-Team: Hungarian (https://www.transifex.com/osgeo/teams/66156/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "libLAS gyorstalpaló" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common LAS LiDAR " -"format. The ASPRS LAS format is a sequential binary format used to store " -"data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"A libLAS egy C/C++ könyvtár a nagyon gyakran használt LAS LiDAR formátum " -"olvasására és írására. Az ASPRS LAS formátum egy szekvenciális bináris " -"formátum, melyet a LiDAR szenzorokból érkező adatok tárolására és a LiDAR " -"feldolgozó szoftverek adatcseréjére és archiválásra használnak." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. A" -" common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (fényérzékelés és távolságmérés) a nagy pontosságú tartomány észlelés " -"egy formája a radar rendszerhez hasonlóan, mely lézer fényt használ az " -"elektromágneses kisugárzáshoz. A LiDAR rendszer egyik eredménye a " -"\"pontfelhő\" adatok, mely a szenzortól a visszaverőig terjedő pontmérések " -"sorozataként fogalmazható meg. A pontfelhő adatok elterjedt tárolási formája" -" az ASPRS LAS formátum." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "Feldolgozás" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "" -"The libLAS 'command-line utilities' provide the bulk of user-facing " -"operational software for libLAS, although the underlying libLAS library is " -"what powers them. Below is a listing of common operations that you might " -"want to do on LAS data, and the utilities and approaches to take to complete" -" those tasks. The demo data can be found in " -":file:`/home/user/data/las/srs.las`" -msgstr "" -"A libLAS \"parancssori segédprogramok\" biztosítják a libLAS szoftver " -"felhasználó által látható részének zömét, habár az alapjául szolgáló LibLAS" -" könyvtár adja ehhez a teljesítményt. Lentebb egy lista található a gyakori" -" műveletekkel, amit LAS adatokkal és a segédprogramokkal érdemes csinálni, " -"valamint ezen feladatok megoldásához szükséges megközelítéseket. A demo " -"adatok megtalálhatók: file:'/home/user/data/las/srs.las' könyvtárban." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "LAS fájl átvetítése" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "" -"All LAS data are in some sort of coordinate system, even if that coordinate " -"system is not described in the LAS file. For terrestrial LAS data, these " -"coordinate system descriptions often map to coordinate systems described by " -"the `EPSG`_ database. Another source of information about coordinate " -"systems in https://spatialreference.org." -msgstr "" -"Minden LAS adat valamilyen típusú koordináta-rendszerben van, még akkor is " -"ha nem írják le a koordináta-rendszert a LAS fájlban. Földi LAS adatok " -"esetén ezek a koordináta-rendszerek gyakran az `EPSG`_ adatbázisban leírt " -"koordináta-rendszerre hivatkoznak. Egy másik információforrás a koordináta-" -"rendszerekhez a https://spatialreference.org." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "" -"The --no-check option tells lasinfo to only print the header information for" -" the file and to not scan through all of the points. For a 10 point file, " -"this of course isn't much of a concern, but with a 50 or 500 million point " -"file, it isn't worth waiting for a full scan of the data if all you want is " -"header information." -msgstr "" -"A --no-check kapcsoló azt jelenti a lasinfo-nak, hogy csak a fejléc " -"információt írja ki és ne nézze végig az összes pontot. Egy 10 pontos fájl " -"esetén ez nem ad okot az aggodalomra, de 50 vagy 500 millió pontos fájlnál " -"nem éri meg az adatok teljes vizsgálatát kivárni, ha csak a fejléc " -"információra van szüksége." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "" -"Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM " -"North Zone 17 coordinate system:" -msgstr "" -"A 'lasinfo' kérésünk azt mondja, hogy az ``srs.las`` fájl UTM 17-es északi " -"zóna koordináta-rendszerben van." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "" -"Now that we know our input coordinate system, we can make a decision about " -"what to reproject the data to. In our first example, we're going to use the" -" venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" -"Most, hogy ismerjük az input koordináta-rendszert, dönthetünk arról, hogy " -"melyikbe vetítsük át az adatokat. Az első példánkban az `EPSG:4326`_-ot " -"fogjuk használni." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "" -"Our process succeeds, but after a quick inspection of the data with " -"``lasinfo output.las`` we see a problem:" -msgstr "" -"A feldolgozásunk sikeres, de az adatok ``lasinfo output.las`` gyors " -"vizsgálata után láthatjuk a problémát:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "" -"The ``srs.las`` file had a scale of 0.01, or two decimal places of precision" -" for its X, Y, and Z coordinates. For UTM data, this is ok, because it " -"implies an implicit precision of 1 cm. For decimal degree data of the " -"unprojected Plate Carrée coordinate system, it causes us to lose a bunch of " -"precision. We need to set our scale values to something that can hold more " -"precision in our case:" -msgstr "" -"Az ``srs.las`` fájl két tizedes élességgel tartalmazza az X, Y és Z " -"koordinátákat. Az UTM adatokhoz ez megfelelő, ez 1 cm pontosságot jelent. A " -"vetület nélküli földrajzi rendszerek decimális szög adatinál nagy pontosság " -"vesztéssel jár. Az élességet be kell állítanunk, hogy nagyobb élességet " -"kapjunk, esetünkben:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "" -"Another quick inspection with 'lasinfo' gives us something we're more " -"comfortable with:" -msgstr "" -" Egy másik gyors 'lasinfo' vizsgálat eredményével elégedettebbek lehetünk:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "LAS fájl output szövegfájlba" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "Mi a következő?" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "Honlap: https://liblas.org" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "Támogatás: https://liblas.org/community.html" diff --git a/locale/it/LC_MESSAGES/overview/liblas_overview.po b/locale/it/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index bcb492462d..0000000000 --- a/locale/it/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,123 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Valerio Pinna , 2021 -# Stefano Campus , 2021 -# Luca Delucchi , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:09+0000\n" -"Last-Translator: Luca Delucchi , 2022\n" -"Language-Team: Italian (https://www.transifex.com/osgeo/teams/66156/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "libLAS" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "Accesso a dati LiDAR" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"libLAS è una libreria C/C++ per leggere e scrivere il formato comune `LAS` " -"`LiDAR`_. Il `formato ASPRS LAS`_ è un formato binario sequenziale " -"utilizzato per memorizzare i dati dai sensori LiDAR e dal software di " -"elaborazione LiDAR per lo scambio e l'archiviazione dei dati." - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (Light Detection and Ranging) è una forma di rilevamento della " -"distanza ad alta precisione molto simile a un sistema radar che utilizza la " -"luce laser come emissione elettromagnetica. Uno dei prodotti dei sistemi " -"LiDAR è un prodotto di dati \"nuvola di punti\" che può essere " -"concettualizzato come una serie di misure di punti che rappresentano la " -"distanza dal sensore a un'emissione restituita. Un formato di archiviazione " -"comune per questi dati di nuvole di punti è il formato ASPRS LAS." - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "Caratteristiche principali" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "API C/C**/Python per leggere, scrivere e gestire dati LAS" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" -"`Strumenti da linea di comando`_ per gestire dati LAS basati su `LAStools`_" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "Riproiezione di coordinare via `GDAL `__" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "Dettagli" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "**Sito web:** https://liblas.org/" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "**Licenza:** BSD" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "**Versione Software:** |version-liblas|" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" -"**Piattaforme Supportate:** Cross Platform C++-- Mac OS X, Windows (via " -"`OSGeo4W`_), e Linux" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "**Interfacce API:** C, C++, Python" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "" -"**Supporto:** `Comunicazione e Supporto " -"`_" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "Guida rapida" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr ":doc:`Guida rapida <../quickstart/liblas_quickstart>`" diff --git a/locale/it/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/it/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index d8592a9277..0000000000 --- a/locale/it/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,174 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Antonio Rotundo , 2021 -# Stefano Campus , 2021 -# Valerio Pinna , 2021 -# Simone Falceri, 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:06+0000\n" -"Last-Translator: Simone Falceri, 2022\n" -"Language-Team: Italian (https://www.transifex.com/osgeo/teams/66156/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "Guida rapida libLAS" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common LAS LiDAR " -"format. The ASPRS LAS format is a sequential binary format used to store " -"data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"libLAS è una libreria C/C++ per leggere e scrivere il formato LAS LiDAR " -"molto comune. Il formato ASPRS LAS è un formato binario sequenziale usato " -"per memorizzare i dati dai sensori LiDAR e dal software di elaborazione " -"LiDAR per lo scambio e l'archiviazione dei dati." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. A" -" common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (Light Detection and Ranging) è una forma di rilevamento della " -"distanza ad alta precisione molto simile a un sistema radar che utilizza la " -"luce laser come emissione elettromagnetica. Uno dei prodotti dei sistemi " -"LiDAR è un prodotto di dati \"nuvola di punti\" che può essere " -"concettualizzato come una serie di misure di punti che rappresentano la " -"distanza dal sensore a un'emissione restituita. Un formato di archiviazione " -"comune per questi dati di nuvole di punti è il formato ASPRS LAS." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "Processing" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "" -"The libLAS 'command-line utilities' provide the bulk of user-facing " -"operational software for libLAS, although the underlying libLAS library is " -"what powers them. Below is a listing of common operations that you might " -"want to do on LAS data, and the utilities and approaches to take to complete" -" those tasks. The demo data can be found in " -":file:`/home/user/data/las/srs.las`" -msgstr "" -"Le 'utilità a riga di comando' di libLAS forniscono la maggior parte del " -"software operativo rivolto all'utente per libLAS, sebbene la libreria libLAS" -" sottostante sia ciò che le alimenta. Qui sotto c'è un elenco di operazioni " -"comuni che potresti voler fare sui dati LAS, e le utilità e gli approcci da " -"adottare per completare questi compiti. I dati demo possono essere trovati " -"in :file:`/home/user/data/las/srs.las`." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "Riproietta un file LAS" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "" -"All LAS data are in some sort of coordinate system, even if that coordinate " -"system is not described in the LAS file. For terrestrial LAS data, these " -"coordinate system descriptions often map to coordinate systems described by " -"the `EPSG`_ database. Another source of information about coordinate " -"systems in https://spatialreference.org." -msgstr "" -"Tutti i dati LAS sono in qualche tipo di sistema di coordinate, anche se " -"questo sistema di coordinate non è descritto nel file LAS. Per i dati LAS " -"terrestri, queste descrizioni di sistemi di coordinate spesso corrispondono " -"ai sistemi di coordinate descritti dal database `EPSG`_. Un'altra fonte di " -"informazioni sui sistemi di coordinate in https://spatialreference.org." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "" -"The --no-check option tells lasinfo to only print the header information for" -" the file and to not scan through all of the points. For a 10 point file, " -"this of course isn't much of a concern, but with a 50 or 500 million point " -"file, it isn't worth waiting for a full scan of the data if all you want is " -"header information." -msgstr "" -"L'opzione --no-check dice a lasinfo di stampare solo le informazioni di " -"intestazione del file e di non scansionare tutti i punti. Per un file di 10 " -"punti, questo naturalmente non è un gran problema, ma con un file di 50 o " -"500 milioni di punti, non vale la pena aspettare una scansione completa dei " -"dati se tutto ciò che si vuole sono le informazioni di intestazione." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "" -"Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM " -"North Zone 17 coordinate system:" -msgstr "" -"La nostra invocazione 'lasinfo' ci dice che il file ``srs.las`` è in un " -"sistema di coordinate UTM Zona Nord 17:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "" -"Now that we know our input coordinate system, we can make a decision about " -"what to reproject the data to. In our first example, we're going to use the" -" venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" -"Ora che conosci il sistema di coordinate in ingresso, puoi decidere su cosa " -"riproiettare i dati. Nel primo esempio, userai il venerabile sistema di non-" -"coordinate plate carrée, `EPSG:4326`_." - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "" -"Our process succeeds, but after a quick inspection of the data with " -"``lasinfo output.las`` we see a problem:" -msgstr "" -"Il processo ha successo, ma dopo una rapida ispezione dei dati con ``lasinfo" -" output.las`` c'è un problema:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "" -"The ``srs.las`` file had a scale of 0.01, or two decimal places of precision" -" for its X, Y, and Z coordinates. For UTM data, this is ok, because it " -"implies an implicit precision of 1 cm. For decimal degree data of the " -"unprojected Plate Carrée coordinate system, it causes us to lose a bunch of " -"precision. We need to set our scale values to something that can hold more " -"precision in our case:" -msgstr "" -"Il file ``srs.las`` aveva una scala di 0,01, o due cifre decimali di " -"precisione per le sue coordinate X, Y e Z. Per i dati UTM, questo va bene, " -"perché implica una precisione implicita di 1 cm. Per i dati in gradi " -"decimali del sistema di coordinate Plate Carrée non proiettato, questo ci fa" -" perdere un sacco di precisione. Bisogna impostare i valori di scala su " -"qualcosa che possa contenere più precisione nel caso:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "" -"Another quick inspection with 'lasinfo' gives us something we're more " -"comfortable with:" -msgstr "Un'altra rapida ispezione con 'lasinfo' dà qualcosa più ad agio:" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "Risultato del file LAS in testo" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "E ora?" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "Sito web: https://liblas.org" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "Supporto: https://liblas.org/community.html" diff --git a/locale/ja/LC_MESSAGES/overview/liblas_overview.po b/locale/ja/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index e85c49aa82..0000000000 --- a/locale/ja/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# MarPetra , 2020 -# Ko Nagase , 2021 -# -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2024-05-18 20:46+0000\n" -"Last-Translator: Yoichi Kayama \n" -"Language-Team: Japanese \n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.4.3\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "libLAS" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "LiDAR データアクセス" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"ibLAS は一般的な `LAS` `LiDAR`_ フォーマットを読み書きするための C/C++ ライブラリです。 。`ASPRS LAS " -"フォーマット`_ は LiDAR センサや LiDAR " -"処理ソフトウェアがデータの保存、交換,アーカイブに使用しているシーケンシャルなバイナリフォーマットです。" - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (ライダー、Light Detection and Ranging) " -"はレーダーと似た高精度な距離検出の一種で、電磁放射線の代わりにレーザー光線を使用するものです。LiDAR システムは \"点群\" " -"データのように、センサからの距離等を反射波を用いて計測した結果を概念化したデータを出力します。一般的な点群データの保存に使用されているのが ASPRS " -"LAS フォーマットです。" - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "主要機能" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "LAS データの読み込み、書き込み、操作に使用する C/C++/Python API" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "`LAStools`_ に基づく LAS データを操作するための `コマンドラインユーティリティ`_" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "`GDAL `__ 経由での投影法の変換" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "詳細" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "**Webサイト:** https://liblas.org/" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "**ライセンス:** BSD" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "**ソフトウェアバージョン:** |version-liblas|" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" -"**対応プラットフォーム:** クロスプラットフォーム C++ -- Mac OS X, Windows (`OSGeo4W`_ 経由), Linux" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "**API インタフェース:** C, C++, Python" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "**サポート:** `コミュニケーションとサポート `_" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "クイックスタート" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr ":doc:`クイックスタート文書 <../quickstart/liblas_quickstart>`" diff --git a/locale/ja/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/ja/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index 1f74380df9..0000000000 --- a/locale/ja/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,150 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# MarPetra , 2020 -# Vicky Vergara , 2020 -# Ko Nagase , 2021 -# -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2024-05-18 20:46+0000\n" -"Last-Translator: Yoichi Kayama \n" -"Language-Team: Japanese \n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.4.3\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "libLAS クイックスタート" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common LAS LiDAR " -"format. The ASPRS LAS format is a sequential binary format used to store " -"data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" -"ibLAS は一般的な LAS LiDAR フォーマットを読み書きするための C/C++ ライブラリです。 。ASPRS LAS フォーマットは " -"LiDAR センサや LiDAR 処理ソフトウェアがデータの保存、交換,アーカイブに使用しているシーケンシャルなバイナリフォーマットです。" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. A" -" common storage format for these point cloud data is ASPRS LAS format." -msgstr "" -"LiDAR (ライダー、Light Detection and Ranging) " -"はレーダーと似た高精度な距離検出の一種で、電磁放射線の代わりにレーザー光線を使用するものです。LiDAR システムは \"点群\" " -"データのように、センサからの距離等を反射波を用いて計測した結果を概念化したデータを出力します。一般的な点群データの保存に使用されているのが ASPRS " -"LAS フォーマットです。" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "処理方法" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "" -"The libLAS 'command-line utilities' provide the bulk of user-facing " -"operational software for libLAS, although the underlying libLAS library is " -"what powers them. Below is a listing of common operations that you might " -"want to do on LAS data, and the utilities and approaches to take to complete" -" those tasks. The demo data can be found in " -":file:`/home/user/data/las/srs.las`" -msgstr "" -"libLASの 'コマンドライン・ユーティリティ' " -"は、libLAS用のユーザ向けの操作ソフトウェアの大部分を提供していますが、基礎となるlibLAS・ライブラリがその原動力となっています。以下は、LASデータに対して実行する一般的な操作と、これらのタスクを実行するために使用するユーティリティとアプローチの一覧です。デモデータは、" -" :file:`/home/user/data/las/srs.las` にあります。" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "LASファイルの再投影" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "" -"All LAS data are in some sort of coordinate system, even if that coordinate " -"system is not described in the LAS file. For terrestrial LAS data, these " -"coordinate system descriptions often map to coordinate systems described by " -"the `EPSG`_ database. Another source of information about coordinate " -"systems in https://spatialreference.org." -msgstr "" -"その座標系がLASファイルに記述されていない場合でも、すべてのLASデータはある種の座標系にあります。 地上LASデータの場合、これらの座標系の記述は、" -" `EPSG`_ データベースによって記述された座標系にマップされることがよくあります。 https://spatialreference.org " -"の座標系に関する別の情報源。" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "" -"The --no-check option tells lasinfo to only print the header information for" -" the file and to not scan through all of the points. For a 10 point file, " -"this of course isn't much of a concern, but with a 50 or 500 million point " -"file, it isn't worth waiting for a full scan of the data if all you want is " -"header information." -msgstr "" -"--no-" -"checkオプションを指定すると、lasinfoはファイルのヘッダー情報だけを印刷し、すべてのポイントをスキャンしないように指示します。10ポイント・ファイルの場合、これはもちろんそれほど重要なことではありませんが、50または500,000,000ポイント・ファイルの場合、ヘッダー情報だけが必要であれば、データの完全スキャンを待つ価値はありません。" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "" -"Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM " -"North Zone 17 coordinate system:" -msgstr "'lasinfo' を呼び出すと ``srs.las`` ファイルがUTM North Zone 17座標系にあることがわかります。" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "" -"Now that we know our input coordinate system, we can make a decision about " -"what to reproject the data to. In our first example, we're going to use the" -" venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "入力座標系がわかったので、データの再投影先を決定できます。最初の例では、由緒ある 経緯度座標系の `EPSG:4326`_ を使用します。" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "" -"Our process succeeds, but after a quick inspection of the data with " -"``lasinfo output.las`` we see a problem:" -msgstr "私たちのプロセスは成功しましたが、 ``lasinfo output.las`` を使ってデータを調べたところ、問題がありました。" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "" -"The ``srs.las`` file had a scale of 0.01, or two decimal places of precision" -" for its X, Y, and Z coordinates. For UTM data, this is ok, because it " -"implies an implicit precision of 1 cm. For decimal degree data of the " -"unprojected Plate Carrée coordinate system, it causes us to lose a bunch of " -"precision. We need to set our scale values to something that can hold more " -"precision in our case:" -msgstr "" -"``srs.las`` ファイルは、スケールは0.01 つまり、X、Y, " -"Z座標の小数点以下2桁の精度でした。UTMデータの場合、これは1cmの暗黙的な精度を意味するため、問題ありません。投影されていない経緯度座標系の10進数データに対しては、かなり精度を失わせることになります。ここでは、スケール値を、より精度の高い値に設定する必要があります。" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "" -"Another quick inspection with 'lasinfo' gives us something we're more " -"comfortable with:" -msgstr "'lasinfo' で更なる簡単な調査をすることで、快適な作業を提供してくれます。" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "LASファイルをテキストに出力" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "次のステップは何?" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "Webサイト: https://liblas.org" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "サポート: https://liblas.org/community.html" diff --git a/locale/nl/LC_MESSAGES/overview/liblas_overview.po b/locale/nl/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index 9c4e69e204..0000000000 --- a/locale/nl/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,106 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Celine Vilain, 2022 -# -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2023-07-03 08:33+0000\n" -"Last-Translator: Michel Stuyts \n" -"Language-Team: Dutch \n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16.4\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "LiDAR Data Access" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "Kernmogelijkheden" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "Details" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "Snelstart" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr "" diff --git a/locale/nl/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/nl/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index ea1ac63c84..0000000000 --- a/locale/nl/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "libLAS is a C/C++ library for reading and writing the very common LAS LiDAR format. The ASPRS LAS format is a sequential binary format used to store data from LiDAR sensors and by LiDAR processing software for data interchange and archival." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "LiDAR (Light Detection and Ranging) is a form of high precision range detection much like a radar system that uses laser light as the electromagnetic emission. One of LiDAR systems' products is a \"point cloud\" data product that can be conceptualized as a series of point measurements representing distance from the sensor to a returned emission. A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "The libLAS 'command-line utilities' provide the bulk of user-facing operational software for libLAS, although the underlying libLAS library is what powers them. Below is a listing of common operations that you might want to do on LAS data, and the utilities and approaches to take to complete those tasks. The demo data can be found in :file:`/home/user/data/las/srs.las`" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "All LAS data are in some sort of coordinate system, even if that coordinate system is not described in the LAS file. For terrestrial LAS data, these coordinate system descriptions often map to coordinate systems described by the `EPSG`_ database. Another source of information about coordinate systems in https://spatialreference.org." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "The --no-check option tells lasinfo to only print the header information for the file and to not scan through all of the points. For a 10 point file, this of course isn't much of a concern, but with a 50 or 500 million point file, it isn't worth waiting for a full scan of the data if all you want is header information." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM North Zone 17 coordinate system:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "Now that we know our input coordinate system, we can make a decision about what to reproject the data to. In our first example, we're going to use the venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "Our process succeeds, but after a quick inspection of the data with ``lasinfo output.las`` we see a problem:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "The ``srs.las`` file had a scale of 0.01, or two decimal places of precision for its X, Y, and Z coordinates. For UTM data, this is ok, because it implies an implicit precision of 1 cm. For decimal degree data of the unprojected Plate Carrée coordinate system, it causes us to lose a bunch of precision. We need to set our scale values to something that can hold more precision in our case:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "Another quick inspection with 'lasinfo' gives us something we're more comfortable with:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "" diff --git a/locale/pot/copyright.pot b/locale/pot/copyright.pot index 0b012d7331..f3ebbc2fda 100644 --- a/locale/pot/copyright.pot +++ b/locale/pot/copyright.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OSGeoLive 16.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-17 13:25+0000\n" +"POT-Creation-Date: 2024-08-17 14:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -368,14 +368,6 @@ msgstr "" msgid "Cameron Shorter; Angelos Tzotsos, OSGeo" msgstr "" -#: ../../build/licenses.csv:1 -msgid "liblas_overview" -msgstr "" - -#: ../../build/licenses.csv:1 -msgid "Howard Butler" -msgstr "" - #: ../../build/licenses.csv:1 msgid "mapbender_overview" msgstr "" @@ -808,10 +800,6 @@ msgstr "" msgid "Vladimir Agafonkin, adopted for live dvd by Johan Van de Wauw" msgstr "" -#: ../../build/licenses.csv:1 -msgid "liblas_quickstart" -msgstr "" - #: ../../build/licenses.csv:1 msgid "mapbender_quickstart" msgstr "" diff --git a/locale/pot/overview/liblas_overview.pot b/locale/pot/overview/liblas_overview.pot deleted file mode 100644 index 3b491da1ba..0000000000 --- a/locale/pot/overview/liblas_overview.pot +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "libLAS is a C/C++ library for reading and writing the very common `LAS` `LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used to store data from LiDAR sensors and by LiDAR processing software for data interchange and archival." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "LiDAR (Light Detection and Ranging) is a form of high precision range detection much like a radar system that uses laser light as the electromagnetic emission. One of LiDAR systems' products is a \"point cloud\" data product that can be conceptualized as a series of point measurements representing distance from the sensor to a returned emission. A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via `OSGeo4W`_), and Linux" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "**Support:** `Communication and Support `_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr "" - diff --git a/locale/pot/quickstart/liblas_quickstart.pot b/locale/pot/quickstart/liblas_quickstart.pot deleted file mode 100644 index 8f68ed4408..0000000000 --- a/locale/pot/quickstart/liblas_quickstart.pot +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "libLAS is a C/C++ library for reading and writing the very common LAS LiDAR format. The ASPRS LAS format is a sequential binary format used to store data from LiDAR sensors and by LiDAR processing software for data interchange and archival." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "LiDAR (Light Detection and Ranging) is a form of high precision range detection much like a radar system that uses laser light as the electromagnetic emission. One of LiDAR systems' products is a \"point cloud\" data product that can be conceptualized as a series of point measurements representing distance from the sensor to a returned emission. A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "The libLAS 'command-line utilities' provide the bulk of user-facing operational software for libLAS, although the underlying libLAS library is what powers them. Below is a listing of common operations that you might want to do on LAS data, and the utilities and approaches to take to complete those tasks. The demo data can be found in :file:`/home/user/data/las/srs.las`" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "All LAS data are in some sort of coordinate system, even if that coordinate system is not described in the LAS file. For terrestrial LAS data, these coordinate system descriptions often map to coordinate systems described by the `EPSG`_ database. Another source of information about coordinate systems in https://spatialreference.org." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "The --no-check option tells lasinfo to only print the header information for the file and to not scan through all of the points. For a 10 point file, this of course isn't much of a concern, but with a 50 or 500 million point file, it isn't worth waiting for a full scan of the data if all you want is header information." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM North Zone 17 coordinate system:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "Now that we know our input coordinate system, we can make a decision about what to reproject the data to. In our first example, we're going to use the venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "Our process succeeds, but after a quick inspection of the data with ``lasinfo output.las`` we see a problem:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "The ``srs.las`` file had a scale of 0.01, or two decimal places of precision for its X, Y, and Z coordinates. For UTM data, this is ok, because it implies an implicit precision of 1 cm. For decimal degree data of the unprojected Plate Carrée coordinate system, it causes us to lose a bunch of precision. We need to set our scale values to something that can hold more precision in our case:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "Another quick inspection with 'lasinfo' gives us something we're more comfortable with:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "" - diff --git a/locale/pt/LC_MESSAGES/overview/liblas_overview.po b/locale/pt/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index 2629ee29be..0000000000 --- a/locale/pt/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,105 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Eduardo G. S. Pereira , 2019 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:09+0000\n" -"Last-Translator: Eduardo G. S. Pereira , 2019\n" -"Language-Team: Portuguese (Brazil) (https://app.transifex.com/osgeo/teams/66156/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "Funções Principais" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "Detalhes" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "Quickstart" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr "" diff --git a/locale/pt/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/pt/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index 49ffb10a2c..0000000000 --- a/locale/pt/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "libLAS is a C/C++ library for reading and writing the very common LAS LiDAR format. The ASPRS LAS format is a sequential binary format used to store data from LiDAR sensors and by LiDAR processing software for data interchange and archival." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "LiDAR (Light Detection and Ranging) is a form of high precision range detection much like a radar system that uses laser light as the electromagnetic emission. One of LiDAR systems' products is a \"point cloud\" data product that can be conceptualized as a series of point measurements representing distance from the sensor to a returned emission. A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "The libLAS 'command-line utilities' provide the bulk of user-facing operational software for libLAS, although the underlying libLAS library is what powers them. Below is a listing of common operations that you might want to do on LAS data, and the utilities and approaches to take to complete those tasks. The demo data can be found in :file:`/home/user/data/las/srs.las`" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "All LAS data are in some sort of coordinate system, even if that coordinate system is not described in the LAS file. For terrestrial LAS data, these coordinate system descriptions often map to coordinate systems described by the `EPSG`_ database. Another source of information about coordinate systems in https://spatialreference.org." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "The --no-check option tells lasinfo to only print the header information for the file and to not scan through all of the points. For a 10 point file, this of course isn't much of a concern, but with a 50 or 500 million point file, it isn't worth waiting for a full scan of the data if all you want is header information." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM North Zone 17 coordinate system:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "Now that we know our input coordinate system, we can make a decision about what to reproject the data to. In our first example, we're going to use the venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "Our process succeeds, but after a quick inspection of the data with ``lasinfo output.las`` we see a problem:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "The ``srs.las`` file had a scale of 0.01, or two decimal places of precision for its X, Y, and Z coordinates. For UTM data, this is ok, because it implies an implicit precision of 1 cm. For decimal degree data of the unprojected Plate Carrée coordinate system, it causes us to lose a bunch of precision. We need to set our scale values to something that can hold more precision in our case:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "Another quick inspection with 'lasinfo' gives us something we're more comfortable with:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "" diff --git a/locale/sv/LC_MESSAGES/overview/liblas_overview.po b/locale/sv/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index f20209a921..0000000000 --- a/locale/sv/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,105 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Anne Ylinen, 2019 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:09+0000\n" -"Last-Translator: Anne Ylinen, 2019\n" -"Language-Team: Swedish (https://app.transifex.com/osgeo/teams/66156/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "Kärnfunktioner" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "Detaljer" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "Snabbstart" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr "" diff --git a/locale/sv/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/sv/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index 5ca3997662..0000000000 --- a/locale/sv/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "libLAS is a C/C++ library for reading and writing the very common LAS LiDAR format. The ASPRS LAS format is a sequential binary format used to store data from LiDAR sensors and by LiDAR processing software for data interchange and archival." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "LiDAR (Light Detection and Ranging) is a form of high precision range detection much like a radar system that uses laser light as the electromagnetic emission. One of LiDAR systems' products is a \"point cloud\" data product that can be conceptualized as a series of point measurements representing distance from the sensor to a returned emission. A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "The libLAS 'command-line utilities' provide the bulk of user-facing operational software for libLAS, although the underlying libLAS library is what powers them. Below is a listing of common operations that you might want to do on LAS data, and the utilities and approaches to take to complete those tasks. The demo data can be found in :file:`/home/user/data/las/srs.las`" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "All LAS data are in some sort of coordinate system, even if that coordinate system is not described in the LAS file. For terrestrial LAS data, these coordinate system descriptions often map to coordinate systems described by the `EPSG`_ database. Another source of information about coordinate systems in https://spatialreference.org." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "The --no-check option tells lasinfo to only print the header information for the file and to not scan through all of the points. For a 10 point file, this of course isn't much of a concern, but with a 50 or 500 million point file, it isn't worth waiting for a full scan of the data if all you want is header information." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM North Zone 17 coordinate system:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "Now that we know our input coordinate system, we can make a decision about what to reproject the data to. In our first example, we're going to use the venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "Our process succeeds, but after a quick inspection of the data with ``lasinfo output.las`` we see a problem:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "The ``srs.las`` file had a scale of 0.01, or two decimal places of precision for its X, Y, and Z coordinates. For UTM data, this is ok, because it implies an implicit precision of 1 cm. For decimal degree data of the unprojected Plate Carrée coordinate system, it causes us to lose a bunch of precision. We need to set our scale values to something that can hold more precision in our case:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "Another quick inspection with 'lasinfo' gives us something we're more comfortable with:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "" diff --git a/locale/tr/LC_MESSAGES/overview/liblas_overview.po b/locale/tr/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index 2cfd78459a..0000000000 --- a/locale/tr/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,108 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# abc Def , 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:09+0000\n" -"Last-Translator: abc Def , 2020\n" -"Language-Team: Turkish (Turkey) (https://app.transifex.com/osgeo/teams/66156/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "libLAS" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "LiDAR Veri Erişimi" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common `LAS` " -"`LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used " -"to store data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. " -"A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "Çekirdek Nitelikler" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "" -"`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "Ayrıntılar" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "**Web sitesi:** https://liblas.org/" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "**Lisans:** BSD" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "**Yazılım Sürümü:** |version-liblas|" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "" -"**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), and Linux" -msgstr "" -"**Desteklenen Ortamlar:** Çapraz Platform C++ -- Mac OS X, Windows (via " -"`OSGeo4W`_), ve Linux" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "**API Arayüzleri:** C, C++, Python" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "" -"**Support:** `Communication and Support " -"`_" -msgstr "" -"**Destek:** `Communication and Support `_" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "Hızlı başlangıç" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr "" diff --git a/locale/tr/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/tr/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index e3238906a9..0000000000 --- a/locale/tr/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,131 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# abc Def , 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:06+0000\n" -"Last-Translator: abc Def , 2020\n" -"Language-Team: Turkish (Turkey) (https://app.transifex.com/osgeo/teams/66156/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "libLAS Hızlı başlangıç " - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common LAS LiDAR " -"format. The ASPRS LAS format is a sequential binary format used to store " -"data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. A" -" common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "İşleme" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "" -"The libLAS 'command-line utilities' provide the bulk of user-facing " -"operational software for libLAS, although the underlying libLAS library is " -"what powers them. Below is a listing of common operations that you might " -"want to do on LAS data, and the utilities and approaches to take to complete" -" those tasks. The demo data can be found in " -":file:`/home/user/data/las/srs.las`" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "" -"All LAS data are in some sort of coordinate system, even if that coordinate " -"system is not described in the LAS file. For terrestrial LAS data, these " -"coordinate system descriptions often map to coordinate systems described by " -"the `EPSG`_ database. Another source of information about coordinate " -"systems in https://spatialreference.org." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "" -"The --no-check option tells lasinfo to only print the header information for" -" the file and to not scan through all of the points. For a 10 point file, " -"this of course isn't much of a concern, but with a 50 or 500 million point " -"file, it isn't worth waiting for a full scan of the data if all you want is " -"header information." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "" -"Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM " -"North Zone 17 coordinate system:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "" -"Now that we know our input coordinate system, we can make a decision about " -"what to reproject the data to. In our first example, we're going to use the" -" venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "" -"Our process succeeds, but after a quick inspection of the data with " -"``lasinfo output.las`` we see a problem:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "" -"The ``srs.las`` file had a scale of 0.01, or two decimal places of precision" -" for its X, Y, and Z coordinates. For UTM data, this is ok, because it " -"implies an implicit precision of 1 cm. For decimal degree data of the " -"unprojected Plate Carrée coordinate system, it causes us to lose a bunch of " -"precision. We need to set our scale values to something that can hold more " -"precision in our case:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "" -"Another quick inspection with 'lasinfo' gives us something we're more " -"comfortable with:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "Sıradaki Ne?" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "Web sitesi: https://liblas.org" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "Destek: https://liblas.org/community.html" diff --git a/locale/zh_Hans/LC_MESSAGES/overview/liblas_overview.po b/locale/zh_Hans/LC_MESSAGES/overview/liblas_overview.po deleted file mode 100644 index 96f4a9e440..0000000000 --- a/locale/zh_Hans/LC_MESSAGES/overview/liblas_overview.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: zh_Hans\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../../build/doc/overview/liblas_overview.rst:15 -msgid "libLAS" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:18 -msgid "LiDAR Data Access" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:20 -msgid "libLAS is a C/C++ library for reading and writing the very common `LAS` `LiDAR`_ format. The `ASPRS LAS format`_ is a sequential binary format used to store data from LiDAR sensors and by LiDAR processing software for data interchange and archival." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:25 -msgid "LiDAR (Light Detection and Ranging) is a form of high precision range detection much like a radar system that uses laser light as the electromagnetic emission. One of LiDAR systems' products is a \"point cloud\" data product that can be conceptualized as a series of point measurements representing distance from the sensor to a returned emission. A common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:38 -msgid "Core Features" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:40 -msgid "C/C++/Python APIs for reading, writing, and manipulating LAS data" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:41 -msgid "`Command line utilities`_ for manipulating LAS data based on `LAStools`_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:42 -msgid "Coordinate reprojection via `GDAL `__" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:45 -msgid "Details" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:47 -msgid "**Website:** https://liblas.org/" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:49 -msgid "**Licence:** BSD" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:51 -msgid "**Software Version:** |version-liblas|" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:53 -msgid "**Supported Platforms:** Cross Platform C++ -- Mac OS X, Windows (via `OSGeo4W`_), and Linux" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:55 -msgid "**API Interfaces:** C, C++, Python" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:57 -msgid "**Support:** `Communication and Support `_" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:72 -msgid "Quickstart" -msgstr "" - -#: ../../build/doc/overview/liblas_overview.rst:74 -msgid ":doc:`Quickstart documentation <../quickstart/liblas_quickstart>`" -msgstr "" diff --git a/locale/zh_Hans/LC_MESSAGES/quickstart/liblas_quickstart.po b/locale/zh_Hans/LC_MESSAGES/quickstart/liblas_quickstart.po deleted file mode 100644 index 8472ab880a..0000000000 --- a/locale/zh_Hans/LC_MESSAGES/quickstart/liblas_quickstart.po +++ /dev/null @@ -1,131 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2011~2019, OSGeo -# This file is distributed under the same license as the OSGeoLive package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Supaplex , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: OSGeoLive 14.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-21 10:22-0500\n" -"PO-Revision-Date: 2017-09-20 16:06+0000\n" -"Last-Translator: Supaplex , 2022\n" -"Language-Team: Chinese (https://app.transifex.com/osgeo/teams/66156/zh/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:18 -msgid "libLAS Quickstart" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:20 -msgid "" -"libLAS is a C/C++ library for reading and writing the very common LAS LiDAR " -"format. The ASPRS LAS format is a sequential binary format used to store " -"data from LiDAR sensors and by LiDAR processing software for data " -"interchange and archival." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:22 -msgid "" -"LiDAR (Light Detection and Ranging) is a form of high precision range " -"detection much like a radar system that uses laser light as the " -"electromagnetic emission. One of LiDAR systems' products is a \"point " -"cloud\" data product that can be conceptualized as a series of point " -"measurements representing distance from the sensor to a returned emission. A" -" common storage format for these point cloud data is ASPRS LAS format." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:28 -msgid "Processing" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:30 -msgid "" -"The libLAS 'command-line utilities' provide the bulk of user-facing " -"operational software for libLAS, although the underlying libLAS library is " -"what powers them. Below is a listing of common operations that you might " -"want to do on LAS data, and the utilities and approaches to take to complete" -" those tasks. The demo data can be found in " -":file:`/home/user/data/las/srs.las`" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:37 -msgid "Reprojecting an LAS file" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:39 -msgid "" -"All LAS data are in some sort of coordinate system, even if that coordinate " -"system is not described in the LAS file. For terrestrial LAS data, these " -"coordinate system descriptions often map to coordinate systems described by " -"the `EPSG`_ database. Another source of information about coordinate " -"systems in https://spatialreference.org." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:52 -msgid "" -"The --no-check option tells lasinfo to only print the header information for" -" the file and to not scan through all of the points. For a 10 point file, " -"this of course isn't much of a concern, but with a 50 or 500 million point " -"file, it isn't worth waiting for a full scan of the data if all you want is " -"header information." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:58 -msgid "" -"Our 'lasinfo' invocation tells us that the ``srs.las`` file is in a UTM " -"North Zone 17 coordinate system:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:82 -msgid "" -"Now that we know our input coordinate system, we can make a decision about " -"what to reproject the data to. In our first example, we're going to use the" -" venerable plate carrée non-coordinate system, `EPSG:4326`_." -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:90 -msgid "" -"Our process succeeds, but after a quick inspection of the data with " -"``lasinfo output.las`` we see a problem:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:102 -msgid "" -"The ``srs.las`` file had a scale of 0.01, or two decimal places of precision" -" for its X, Y, and Z coordinates. For UTM data, this is ok, because it " -"implies an implicit precision of 1 cm. For decimal degree data of the " -"unprojected Plate Carrée coordinate system, it causes us to lose a bunch of " -"precision. We need to set our scale values to something that can hold more " -"precision in our case:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:113 -msgid "" -"Another quick inspection with 'lasinfo' gives us something we're more " -"comfortable with:" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:127 -msgid "Output LAS file to text" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:134 -msgid "What next?" -msgstr "接下來呢?" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:136 -msgid "Website: https://liblas.org" -msgstr "" - -#: ../../build/doc/quickstart/liblas_quickstart.rst:137 -msgid "Support: https://liblas.org/community.html" -msgstr "" diff --git a/projects_info.csv b/projects_info.csv index 417a2f3104..136436e9aa 100644 --- a/projects_info.csv +++ b/projects_info.csv @@ -126,7 +126,7 @@ Y | inspire | NA | N | Y | Geospatial Standards | | Infrastructure for Spatial I ###################### | | | | | | | | | | | | N | mapslicer | 1.0rc2 | Y | Y | Spatial Tools | | Create Map Tiles | | https://mapproxy.org/ | | MapSlicer | Y N | geomajas | 2.4.0 | Y | Y | Browser Facing GIS | 14 | Browser GIS Client | geomajas | http://www.geomajas.org | OSGeo_project | Geomajas | Y -N | liblas | 1.8.1 | Y | Y | Geospatial Libraries | | LiDAR Data Access | liblas | https://liblas.org/ | | libLAS | N +N | liblas | retired | Y | Y | Geospatial Libraries | 14 | LiDAR Data Access | liblas | https://liblas.org/ | | libLAS | N N | 52nWSS | retired | Y | Y | | 6.5 | Web Security Service, retired after OSGeoLive 6.5 | | http://52north.org/security | | 52 North WSS | N N | atlasstyler | retired | Y | Y | | 6 | Style Editor, retired after OSGeoLive 6.0 | Geopublishing | http://en.geopublishing.org/AtlasStyler | | AtlasStyler | N N | cartaro | retired | Y | Y | | 10 | Geospatial CMS | | http://cartaro.org | | Cartaro | N